* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--nyon-cream);
  color: var(--nyon-ink);
  font-family: var(--nyon-font-ui);
  line-height: 1.55;
}

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--nyon-ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid rgb(48 43 59 / 16%);
  border-radius: 20px;
  background: rgb(255 248 236 / 90%);
  box-shadow: 0 10px 30px rgb(48 43 59 / 8%);
  backdrop-filter: blur(14px);
}

.brand img { width: 132px; height: auto; }

.site-header nav { display: flex; align-items: center; gap: 22px; }

.site-header nav a { font-size: 14px; font-weight: 800; text-decoration: none; }

.site-header .nav-cta {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--nyon-radius-control);
  background: var(--nyon-ink);
  color: white;
}

main,
footer { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  margin-top: 28px;
  padding: clamp(34px, 6vw, 76px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: 36px;
  overflow: hidden;
  border: 1.5px solid rgb(48 43 59 / 16%);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 12%, rgb(255 255 255 / 72%) 0 7%, transparent 7.5%),
    linear-gradient(142deg, var(--nyon-cream) 0 48%, #c7d8ce 100%);
  box-shadow: var(--nyon-shadow-card);
}

.hero::after {
  position: absolute;
  inset: 0 0 0 55%;
  content: '';
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(var(--nyon-ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--nyon-ink) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow,
.launch-label {
  margin: 0 0 12px;
  color: var(--nyon-success);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .96;
  letter-spacing: -.055em;
}

h1 em {
  font-style: normal;
  background: linear-gradient(transparent 68%, var(--nyon-pink) 68% 91%, transparent 91%);
}

.hero-lede {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--nyon-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--nyon-ink);
  border-radius: var(--nyon-radius-control);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary { background: var(--nyon-ink); color: white; }

.button-secondary { background: white; }

.hero-proof {
  display: grid;
  margin: 36px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-proof li { padding: 0 14px; border-left: 2px solid rgb(48 43 59 / 16%); }
.hero-proof li:first-child { padding-left: 0; border-left: 0; }
.hero-proof b,
.hero-proof span { display: block; }
.hero-proof span { color: var(--nyon-muted); font-size: 13px; }

.hero-art { position: relative; z-index: 2; min-height: 500px; }
.mascot { position: absolute; z-index: 4; right: 12%; bottom: 0; width: 58%; filter: drop-shadow(0 18px 20px rgb(48 43 59 / 16%)); }
.cover { position: absolute; width: 36%; border: 4px solid white; border-radius: 22px; box-shadow: 0 16px 32px rgb(48 43 59 / 18%); }
.cover-one { z-index: 3; top: 0; right: 2%; transform: rotate(6deg); }
.cover-two { z-index: 2; top: 13%; left: 2%; transform: rotate(-7deg); }
.cover-three { z-index: 1; right: 26%; bottom: 2%; transform: rotate(3deg); }

.puzzle-section,
.pricing-section,
.faq { padding: 100px 0; }

.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2,
.pricing-section h2 { margin-bottom: 14px; font-size: clamp(36px, 5vw, 58px); line-height: 1.02; letter-spacing: -.04em; }
.section-heading > p:last-child,
.pricing-copy > p { color: var(--nyon-muted); font-size: 18px; }

.puzzle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.puzzle-grid article,
.faq article {
  padding: 16px;
  border: 1.5px solid rgb(48 43 59 / 16%);
  border-radius: var(--nyon-radius-card);
  background: white;
  box-shadow: var(--nyon-shadow-card);
}
.puzzle-grid img { margin-bottom: 18px; border-radius: 16px; }
.puzzle-grid h3,
.faq h3 { margin-bottom: 6px; font-size: 20px; }
.puzzle-grid p,
.faq p { margin-bottom: 4px; color: var(--nyon-muted); }

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
}

.price-card {
  padding: clamp(28px, 5vw, 48px);
  border: 2px solid var(--nyon-ink);
  border-radius: 28px;
  background: white;
  box-shadow: 10px 10px 0 var(--nyon-butter);
}

.price { display: flex; margin-bottom: 4px; align-items: baseline; gap: 16px; }
.price del { color: var(--nyon-muted); font-size: 22px; }
.price strong { color: var(--nyon-ink); font-size: clamp(46px, 7vw, 72px); line-height: 1; letter-spacing: -.05em; }
.price-note { margin-bottom: 26px; color: var(--nyon-success); font-weight: 900; }
.price-card ul { margin: 0 0 28px; padding-left: 22px; }
.price-card li + li { margin-top: 8px; }
.purchase-placeholder { width: 100%; opacity: .72; cursor: not-allowed; }
.honesty-note { margin: 14px 0 0; color: var(--nyon-muted); font-size: 13px; }

.preview-status {
  display: grid;
  padding: 20px;
  gap: 4px;
  border: 1.5px solid rgb(48 43 59 / 16%);
  border-radius: 16px;
  background: var(--nyon-rose-wash);
}
.preview-status span { color: var(--nyon-muted); }

.faq { border-top: 1.5px solid rgb(48 43 59 / 14%); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

footer {
  display: grid;
  padding: 48px 0 72px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px 30px;
  border-top: 1.5px solid rgb(48 43 59 / 14%);
  color: var(--nyon-muted);
  font-size: 13px;
}
footer img { width: 210px; grid-row: span 2; }
footer p { margin: 0; text-align: right; }

@media (max-width: 900px) {
  .site-header nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: 0; padding: 42px 26px; grid-template-columns: 1fr; }
  .hero::after { inset: 52% 0 0; }
  .hero-art { min-height: 440px; }
  .puzzle-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 20px); margin-top: 10px; padding-left: 12px; }
  .site-header .nav-cta { min-height: 40px; padding: 9px 12px; font-size: 12px; }
  main,
  footer { width: min(100% - 20px, 1180px); }
  .hero { margin-top: 12px; border-radius: 25px; }
  h1 { font-size: clamp(44px, 15vw, 64px); }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-proof li,
  .hero-proof li:first-child { padding: 0 0 0 12px; border-left: 2px solid rgb(48 43 59 / 16%); }
  .hero-art { min-height: 330px; }
  .mascot { right: 6%; width: 64%; }
  .cover { width: 40%; border-width: 3px; border-radius: 16px; }
  .puzzle-section,
  .pricing-section,
  .faq { padding: 68px 0; }
  .puzzle-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .price { flex-direction: column; gap: 2px; }
  footer { grid-template-columns: 1fr; align-items: start; }
  footer img { grid-row: auto; }
  footer p { text-align: left; }
}

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