:root {
  color-scheme: light;
  --ink: #10253f;
  --muted: #607085;
  --paper: #fffdf8;
  --cream: #fff8e9;
  --teal: #08a9a1;
  --teal-dark: #087c79;
  --gold: #ffb400;
  --coral: #ff554f;
  --violet: #6d4bc3;
  --line: rgba(16, 37, 63, 0.12);
  --shadow: 0 24px 70px rgba(16, 37, 63, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: .75rem;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  min-height: 74px;
  margin: 0 auto;
  padding: .65rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: 1.2rem;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: -.025em;
}

.brand img { width: 46px; height: 46px; border-radius: 13px; }

.nav-links { display: flex; align-items: center; gap: 1.3rem; }
.nav-links a { color: var(--muted); font-weight: 640; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--teal-dark); }

.shell { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem; }

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--teal-dark);
  font-size: .87rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 1.5rem; height: 4px; border-radius: 4px; background: var(--coral); }

h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { max-width: 720px; margin: 1.2rem 0 1.4rem; font-size: clamp(3.5rem, 8vw, 6.8rem); }
h2 { margin: 0 0 1.15rem; font-size: clamp(2.3rem, 5vw, 4.2rem); }
h3 { margin: 0 0 .7rem; font-size: 1.35rem; }

.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.35rem); }

.availability {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 680;
  box-shadow: 0 10px 26px rgba(16,37,63,.07);
}

.availability span { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }

.brand-stage { position: relative; display: grid; place-items: center; min-height: 520px; }
.brand-stage::before {
  content: "";
  position: absolute;
  width: 94%;
  aspect-ratio: 1;
  border-radius: 42% 58% 53% 47% / 46% 42% 58% 54%;
  background: linear-gradient(145deg, #ffd66b, #ffad08 62%, #ff755e);
  transform: rotate(-7deg);
}
.brand-stage::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1;
  right: -3%;
  bottom: 8%;
  border-radius: 45%;
  background: var(--violet);
  opacity: .9;
}
.brand-stage img { position: relative; z-index: 1; width: min(78%, 430px); border-radius: 24%; box-shadow: var(--shadow); transform: rotate(3deg); }

.promise { padding: 7rem 0; background: var(--ink); color: white; overflow: hidden; }
.promise-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.promise p { color: #c9d4df; font-size: 1.15rem; }
.feature-list { display: grid; gap: 1rem; }
.feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.4rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.4rem;
}
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--teal); font-size: 1.45rem; }
.feature:nth-child(2) .feature-icon { background: var(--coral); }
.feature:nth-child(3) .feature-icon { background: var(--violet); }
.feature p { margin: 0; font-size: 1rem; }

.boundary { padding: 7rem 0; }
.boundary-card { display: grid; grid-template-columns: 1fr .72fr; gap: 3rem; padding: clamp(2rem, 5vw, 4.5rem); background: var(--cream); border-radius: 2.4rem; }
.boundary-card p { color: var(--muted); font-size: 1.08rem; }
.boundary-note { align-self: center; padding: 1.6rem; background: white; border-radius: 1.4rem; border-left: 6px solid var(--teal); box-shadow: 0 16px 38px rgba(16,37,63,.08); }
.boundary-note strong { display: block; margin-bottom: .45rem; }

.legal-hero { padding-top: 5rem; padding-bottom: 2.4rem; }
.legal-hero h1 { max-width: 850px; font-size: clamp(3rem, 7vw, 5.5rem); }
.legal-hero p { max-width: 740px; color: var(--muted); font-size: 1.15rem; }
.updated { display: inline-block; margin-top: 1rem; color: var(--teal-dark); font-weight: 700; }

.document { max-width: 820px; padding-top: 2rem; padding-bottom: 7rem; }
.document section { padding: 1.7rem 0; border-top: 1px solid var(--line); }
.document h2 { font-size: 1.75rem; letter-spacing: -.025em; }
.document h3 { font-size: 1.15rem; letter-spacing: -.015em; margin-top: 1.5rem; }
.document p, .document li { color: #44566d; }
.document li + li { margin-top: .55rem; }
.callout { margin: 1.6rem 0; padding: 1.4rem; background: var(--cream); border-radius: 1.2rem; }

.support-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 2rem 0; }
.support-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 1.35rem; background: white; box-shadow: 0 13px 34px rgba(16,37,63,.06); }
.support-card p { margin-bottom: 0; }

.confirmation-main {
  min-height: calc(100svh - 264px);
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 7rem) 0;
  background: radial-gradient(circle at 50% 0, rgba(255,180,0,.18), transparent 42%), var(--paper);
}

.confirmation-card {
  width: min(100%, 760px);
  text-align: center;
}

.confirmation-logo {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.6rem;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(16,37,63,.14);
}

.confirmation-card .eyebrow { justify-content: center; }
.confirmation-card h1 { margin: 1rem auto 1.25rem; font-size: clamp(3rem, 8vw, 5rem); }
.confirmation-card > p { max-width: 610px; margin: 0 auto; color: var(--muted); font-size: 1.15rem; }
.confirmation-note { max-width: 610px; margin: 2rem auto 0; padding: 1.35rem 1.5rem; text-align: left; background: var(--cream); border-radius: 1.25rem; }
.confirmation-note strong, .confirmation-note span { display: block; }
.confirmation-note span { margin-top: .25rem; color: #44566d; }
.confirmation-card .confirmation-help { margin-top: 1.7rem; font-size: .98rem; }
.confirmation-help a { color: var(--teal-dark); font-weight: 700; }
.primary-link { display: inline-flex; align-items: center; justify-content: center; min-width: 190px; margin-top: 1.8rem; padding: .9rem 1.4rem; color: white; background: var(--ink); border-radius: 999px; font-weight: 750; text-decoration: none; box-shadow: 0 12px 28px rgba(16,37,63,.18); }
.primary-link:hover, .primary-link:focus-visible { background: var(--teal-dark); }
.primary-link[hidden] { display: none; }

.site-footer { background: #f5f1e8; }
.footer-inner { min-height: 190px; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 1.4rem; }
.footer-links a { color: var(--muted); font-weight: 630; text-decoration: none; }
.footer-small { color: var(--muted); font-size: .9rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 780px) {
  .nav { min-height: 66px; padding: .55rem 1.1rem; }
  .brand { gap: .55rem; font-size: 1.08rem; }
  .brand img { width: 42px; height: 42px; border-radius: 12px; }
  .nav-links a:not(:last-child) { display: none; }
  .nav-links { gap: .8rem; }
  .nav-links a { font-size: .96rem; }
  .shell { padding-left: 1.1rem; padding-right: 1.1rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 2.4rem; padding-top: 2.8rem; padding-bottom: 4rem; }
  h1 { margin-top: 1rem; font-size: clamp(3rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero-copy > p { font-size: 1.08rem; }
  .availability { margin-top: 1.6rem; padding: .75rem .95rem; font-size: .94rem; }
  .brand-stage { min-height: 320px; }
  .promise, .boundary { padding: 4.5rem 0; }
  .promise-grid, .boundary-card { grid-template-columns: 1fr; }
  .promise-grid { gap: 2.2rem; }
  .feature { grid-template-columns: 48px 1fr; gap: .85rem; padding: 1.1rem; }
  .feature-icon { width: 48px; height: 48px; border-radius: 15px; }
  .boundary-card { gap: 1.5rem; padding: 1.45rem; border-radius: 1.65rem; }
  .boundary-note { padding: 1.25rem; }
  .legal-hero { padding-top: 2.8rem; padding-bottom: 1.3rem; }
  .legal-hero h1 { margin-bottom: 1rem; font-size: clamp(2.65rem, 12vw, 3.5rem); }
  .legal-hero p { margin-bottom: .5rem; font-size: 1.04rem; }
  .updated { margin-top: .65rem; }
  .document { padding-top: .8rem; padding-bottom: 4.5rem; }
  .document section { padding: 1.35rem 0; }
  .document h2 { font-size: 1.55rem; line-height: 1.14; }
  .document ul, .document ol { padding-left: 1.35rem; }
  .callout { margin: 1.25rem 0; padding: 1.15rem; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { padding: 1.2rem; }
  .confirmation-main { min-height: calc(100svh - 66px); padding: 3rem 0 4rem; }
  .confirmation-logo { width: 80px; height: 80px; border-radius: 22px; }
  .confirmation-card h1 { font-size: clamp(2.7rem, 13vw, 3.6rem); }
  .confirmation-card > p { font-size: 1.05rem; }
  .confirmation-note { padding: 1.2rem; }
  .footer-inner { min-height: 0; grid-template-columns: 1fr; gap: 1.4rem; padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 380px) {
  .nav, .shell { padding-left: .95rem; padding-right: .95rem; }
  .brand span { display: none; }
  .legal-hero h1 { font-size: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
