:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --color-primary: #0b1b3a;
  --color-primary-strong: #061127;
  --color-accent: #ff6b4a;
  --color-accent-soft: #ff947e;
  --color-surface: #f4f2ef;
  --color-surface-alt: #ffffff;
  --color-text: #121826;
  --color-text-muted: #5b6476;
  --color-border: rgba(18, 24, 38, 0.12);
  --color-success: #1f9d74;
  --shadow-soft: 0 24px 60px rgba(8, 20, 41, 0.12);
  --shadow-strong: 0 30px 90px rgba(7, 14, 30, 0.2);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(140deg, #fdf6f0 0%, #eef6ff 55%, #f5fbff 100%);
  min-height: 100vh;
}

.page {
  position: relative;
  overflow: hidden;
}

.page::before,
.page::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  z-index: 0;
}

.page::before {
  background: #ffe8da;
  top: -180px;
  right: -140px;
}

.page::after {
  background: #d9ecff;
  bottom: -260px;
  left: -220px;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.6rem, 2.2rem + 2vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 1.5rem + 1.6vw, 3rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.25rem;
}

p {
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.cta-button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  font-weight: 600;
  font-family: var(--font-display);
  background: var(--color-surface-alt);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.cta-button.primary {
  background: linear-gradient(120deg, var(--color-accent), #ffb07f);
  color: #1c120d;
}

.cta-button.ghost {
  background: transparent;
  border-color: rgba(18, 24, 38, 0.2);
  box-shadow: none;
}

.icon-button {
  border: 1px solid rgba(18, 24, 38, 0.2);
  background: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.icon-button.danger {
  border-color: rgba(230, 84, 78, 0.3);
  color: #d84f45;
}

.link-button {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  margin-top: 0.75rem;
  font-family: var(--font-display);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-heading p {
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .cta-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
