:root {
  --bg: #f5ecdf;
  --ink: #080d1b;
  --blue: #324a84;
  --muted: #5a6790;
  --pink: #ff6f92;
  --pink-dark: #ec557c;
  --purple: #a46ce3;
  --card: #fff7ec;
  --line: rgba(8, 13, 27, 0.09);
  --shadow: 0 24px 70px rgba(30, 20, 10, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  width: min(100% - 48px, 1520px);
  margin: 0 auto;
  padding: 30px 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  width: 76px;
  height: auto;
  transition: transform .25s ease;
}
.brand:hover img { transform: rotate(-2deg) scale(1.03); }

.top-link {
  text-decoration: none;
  color: var(--blue);
  border: 1px solid rgba(50, 74, 132, 0.18);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(255,255,255,.22);
}

.hero {
  width: min(100% - 48px, 1400px);
  margin: 28px auto 64px;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
font-family: 'Sora', sans-serif;
  line-height: .98;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  max-width: 790px;
  margin-bottom: 34px;
}

.lead {
  color: var(--blue);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.62;
  max-width: 650px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.05rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button.primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 111, 146, .22);
}
.button.primary:hover {
  transform: translateY(-2px);
  background: var(--pink-dark);
  box-shadow: 0 22px 42px rgba(255, 111, 146, .28);
}

.hero-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(.5deg);
  background: #111;
}
.hero-media img { aspect-ratio: 16 / 9; object-fit: cover; }

.intro {
  width: min(100% - 48px, 1050px);
  margin: 0 auto 80px;
  text-align: center;
}
.intro p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1.35;
  font-weight: 800;
}

.steps {
  width: min(100% - 48px, 1320px);
  margin: 0 auto 88px;
}
.section-heading {
  text-align: center;
  margin-bottom: 36px;
}
.section-heading h2, .final-cta h2 {
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  margin-bottom: 0;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.step-card {
  background: rgba(255, 247, 236, .78);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(30, 20, 10, 0.08);
}
.step-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.step-card div { padding: 26px 28px 32px; }
.step-card span {
  display: inline-flex;
  color: var(--pink);
  font-weight: 900;
  letter-spacing: .1em;
  font-size: .86rem;
  margin-bottom: 10px;
}
.step-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin-bottom: 10px;
  line-height: 1.12;
}
.step-card p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.step-card.large { grid-column: span 1; }

.final-cta {
  width: min(100% - 48px, 980px);
  margin: 0 auto 82px;
  padding: 66px 32px 70px;
  text-align: center;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255,255,255,.45), rgba(164,108,227,.12));
  border: 1px solid var(--line);
}
.final-cta h2 { margin-bottom: 28px; }

.site-footer {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: .98rem;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--blue); font-weight: 800; text-decoration: none; }

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 18px;
  }
  h1 { max-width: 850px; }
  .hero-media { transform: none; }
  .step-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .intro,
  .steps,
  .final-cta,
  .site-footer {
    width: min(100% - 28px, 1400px);
  }
  .site-header { padding-top: 18px; }
  .brand img { width: 62px; }
  .top-link { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 4.3rem); }
  .lead { font-size: 1.05rem; }
  .button { width: 100%; }
  .step-card div { padding: 22px 22px 26px; }
  .final-cta { padding: 44px 22px 48px; }
  .site-footer { flex-direction: column; }
}
