:root {
  --brand: #2d264b;
  --brand-2: #423874;
  --accent: #f0a848;
  --accent-soft: #fbebd3;
  --ink: #1c1830;
  --muted: #6b6580;
  --paper: #f7f6fa;
  --band: #edeaf3;
  --white: #ffffff;
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ── Top ─────────────────────────────────────────────────────────────────── */
.top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 8%, transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  border-radius: 10px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-name em {
  font-style: normal;
  color: var(--brand-2);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--brand-2);
  color: var(--white) !important;
}

@media (max-width: 720px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: min(92vh, 820px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(120% 80% at 10% 0%, #ebe6f5 0%, transparent 55%),
    radial-gradient(90% 70% at 100% 20%, #fbebd3 0%, transparent 45%),
    linear-gradient(165deg, var(--paper), var(--band));
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-visual {
    order: -1;
    min-height: 220px;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.25s var(--ease),
    background 0.2s,
    color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--ink);
}

.btn-accent:hover {
  background: #e8952a;
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--brand) 35%, transparent);
}

.btn-ghost:hover {
  background: color-mix(in srgb, var(--brand) 6%, transparent);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 12s var(--ease) infinite alternate;
}

.orb-a {
  width: min(70%, 340px);
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--brand) 55%, #5a4a8c);
  opacity: 0.35;
}

.orb-b {
  width: min(45%, 220px);
  aspect-ratio: 1;
  background: var(--accent);
  opacity: 0.45;
  animation-delay: -4s;
  translate: 28% 18%;
}

.hero-mark {
  position: relative;
  width: min(42%, 180px);
  border-radius: 28%;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--brand) 35%, transparent);
  animation: rise 1s var(--ease) both;
}

@keyframes drift {
  from {
    transform: translate(-4%, -2%) scale(1);
  }
  to {
    transform: translate(4%, 3%) scale(1.06);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  animation: rise 0.9s var(--ease) 0.08s both;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section {
  padding: clamp(3.5rem, 9vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--brand);
}

.section-lede {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-band {
  max-width: none;
  background: var(--brand);
  color: var(--white);
}

.section-band h2 {
  color: var(--white);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-band .section-lede,
.section-band .fine {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  color: color-mix(in srgb, var(--white) 78%, transparent);
}

.section-band .fine {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps li {
  padding: 1.25rem 0;
  border-top: 2px solid color-mix(in srgb, var(--brand) 18%, transparent);
}

.step-n {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--brand);
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-cta {
  text-align: left;
}

.section-cta .cta-row {
  justify-content: flex-start;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid color-mix(in srgb, var(--brand) 10%, transparent);
  font-size: 0.85rem;
  color: var(--muted);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--brand);
}

.foot-brand img {
  border-radius: 7px;
}

.foot-links {
  display: flex;
  gap: 1rem;
}

.foot-links a {
  color: var(--brand-2);
  text-decoration: none;
}

.foot-links a:hover {
  text-decoration: underline;
}

.will-in {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.will-in.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .will-in {
    opacity: 1;
    transform: none;
  }
}
