:root {
  --paper:     #FBFAF8;
  --paper-alt: #F1F0EB;
  --ink:       #14140F;
  --body:      #4A4839;
  --muted:     #8A8877;
  --rule:      #E4E2D8;
  --rule-soft: #EDEBE3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Schibsted Grotesk', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.wrap--wide { max-width: 1080px; }

section { padding: clamp(68px, 11vw, 128px) 0; }
section.alt { background: var(--paper-alt); }

h1, h2, h3 { text-wrap: pretty; margin: 0; }
h1 {
  font-size: clamp(34px, 6.2vw, 58px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 28px;
}
h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 18px; color: var(--body); }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(18px, 2.2vw, 20px); color: var(--body); }
.ink { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,250,248,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav__in {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__name { font-weight: 700; letter-spacing: -0.01em; font-size: 16px; }
.nav__links { display: flex; gap: 22px; font-size: 15px; color: var(--body); }
.nav__links a:hover { color: var(--ink); }
@media (max-width: 560px) { .nav__links a.opt { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  font-weight: 600;
  padding: 15px 32px;
  transition: opacity 150ms ease;
}
.btn:hover { opacity: 0.86; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); opacity: 1; }
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }


/* ---------- Hero ---------- */
.hero { padding-top: clamp(72px, 12vw, 132px); }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 580px; }

/* ---------- Question list ---------- */
.qs { list-style: none; margin: 0; padding: 0; }
.qs li {
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(17px, 2.1vw, 19px);
  font-weight: 500;
}
.qs li:first-child { border-top: 1px solid var(--rule); }
.after { margin-top: 30px; }

/* ---------- Builds ---------- */
.builds-intro { max-width: 620px; margin: 0 auto 48px; padding: 0 24px; }
.build { margin-bottom: 56px; }
.build:last-child { margin-bottom: 0; }
.build__meta { max-width: 620px; }
.build__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.build__tag {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
}
.build p { font-size: 16px; margin-bottom: 10px; }
.build .problem { color: var(--muted); }
.build .fix { color: var(--body); }

.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px 40px;
}

/* Screenshot frames. Replace the .shot--empty div with:
   <img src="screenshots/name.png" alt="…"> */
.shot {
  border: 1px solid var(--rule);
  background: #fff;
  margin-bottom: 22px;
  overflow: hidden;
}
.shot--empty {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: repeating-linear-gradient(
    45deg, #F6F5F1, #F6F5F1 10px, #F1F0EB 10px, #F1F0EB 20px);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.shot--empty b { color: var(--body); font-size: 13.5px; font-weight: 600; }
.shot--wide { aspect-ratio: 16 / 9; }


/* Builds are text-only until real screenshots land. Rules give the
   structure the images would otherwise provide. */
.build {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  margin-bottom: 0;
}
.build--lead {
  border-top: 2px solid var(--ink);
  padding-top: 24px;
  margin-bottom: 52px;
}
.build--lead .build__name { font-size: 26px; letter-spacing: -0.02em; }
.build--lead p { font-size: 17px; }
.grid2 { gap: 40px; }


img.shot {
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  background: #fff;
  margin-bottom: 20px;
}
.build--lead img.shot { margin-bottom: 26px; }
.grid2--shots { margin-bottom: 56px; }
.grid2--rest { gap: 36px 40px; }


/* ---------- Waitlist ---------- */
.wl { max-width: 420px; margin-top: 4px; }
.wl__l {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.wl__i {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  padding: 13px 14px;
  margin-bottom: 18px;
  border-radius: 0;
  -webkit-appearance: none;
}
.wl__i:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: var(--ink); }
.wl__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl .btn { width: 100%; text-align: center; border: 0; cursor: pointer; }
.wl .btn[disabled] { opacity: 0.55; cursor: default; }
.wl__msg { margin: 14px 0 0; font-size: 15px; font-weight: 600; min-height: 1px; }
.wl__msg.ok { color: var(--ink); }
.wl__msg.err { color: #9A3B2D; }
.wl__note { margin: 12px 0 0; font-size: 13px; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 32px; margin-bottom: 52px; }
.step__n {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--muted); margin-bottom: 10px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.5px; margin: 0; }

/* ---------- Timeline ---------- */
.tl { list-style: none; margin: 0 0 34px; padding: 0; }
.tl li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.tl li:first-child { border-top: 1px solid var(--rule); }
.tl .d {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.tl .t { font-size: 16.5px; font-weight: 500; }
@media (max-width: 520px) {
  .tl li { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Fit ---------- */
.fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.fit h3 { margin-bottom: 14px; font-size: 16px; }
.fit ul { list-style: none; margin: 0; padding: 0; }
.fit li {
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15.5px;
  color: var(--body);
}

/* ---------- Notes / footer ---------- */
.note-card { border-top: 1px solid var(--rule); padding-top: 22px; }
footer { padding: 56px 0 72px; border-top: 1px solid var(--rule); }
.foot { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; font-size: 14.5px; color: var(--muted); }

/* ---------- Reveal ---------- */
html.js-reveal .reveal { opacity: 0; transform: translateY(12px); }
html.js-reveal .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity 620ms cubic-bezier(.22,.61,.36,1),
              transform 620ms cubic-bezier(.22,.61,.36,1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-reveal .reveal { opacity: 1; transform: none; }
  html.js-reveal .reveal.is-in { transition: none; }
  .btn { transition: none; }
}


/* ---------- Club ---------- */
.price-line {
  font-size: clamp(30px, 4.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--ink);
}
.price-line span { font-size: 17px; font-weight: 400; color: var(--muted); letter-spacing: 0; }
.gets { list-style: none; margin: 0 0 30px; padding: 0; }
.gets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.gets li:first-child { border-top: 1px solid var(--rule); }
.gets .tick { font-weight: 700; color: var(--ink); }
.gets b { display: block; font-weight: 700; margin-bottom: 3px; }
.gets span.d { color: var(--body); font-size: 15.5px; }
