@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #EFE9DD;
  --paper-deep: #E3DCCE;
  --ink: #0E1218;
  --muted: #5B636A;
  --line: #D2C9B8;
  --action: #C6E04A;
  --action-ink: #1A2208;
  --accent: #1F7A8C;
  --shell: 1120px;
  --radius: 14px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body.concept {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.58;
  font-size: 16.5px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.concept a { color: inherit; text-decoration: none; }
body.concept img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 12px;
  z-index: 10000;
  border-radius: 8px;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.shell { width: min(100% - 48px, var(--shell)); margin-inline: auto; }

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ink) 49.5%, var(--accent) 50.5%);
  align-self: center;
}
.wordmark .brand {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.wordmark .labs {
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
}

.concept-header { background: var(--paper); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-join {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 7px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-join:hover { background: var(--ink); color: var(--paper); }
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: auto;
  background: currentColor;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 3px;
  height: 12px;
  background: var(--accent);
  border-radius: 1px;
  flex-shrink: 0;
}

.actions { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
  cursor: pointer;
  min-height: 48px;
}
.btn-action { background: var(--action); color: var(--action-ink); }
.btn-action:hover { filter: brightness(0.97); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.text-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-bottom-color: var(--accent); }

main { flex: 1; }

/* Home hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: end;
  padding: 48px 0 40px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero-eyebrow::before {
  content: "";
  width: 3px;
  height: 12px;
  background: var(--accent);
  border-radius: 1px;
}
.hero h1 {
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 17ch;
  margin-bottom: 16px;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 24px;
  line-height: 1.55;
}

.proof-card {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(14, 18, 24, 0.06);
}
.proof-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted);
}
.proof-meta .dot { color: var(--accent); }
.proof-card figure {
  padding: 0 10px 10px;
  background: var(--paper-deep);
}
.proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  background: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.proof-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--paper);
}
.proof-stat { text-align: center; }
.proof-stat .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #8B9499;
  margin-bottom: 3px;
}
.proof-stat .val {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.proof-stat.before .val {
  color: #A8B0B6;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.proof-stat.after .val { color: var(--action); }
.proof-arrow { font-size: 1.1rem; color: #8B9499; font-weight: 600; }

.why {
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}
.why-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.why-row > .section-label { margin-bottom: 0; padding-top: 3px; }
.why-point h3 {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.why-point p {
  font-size: 0.94rem;
  color: var(--muted);
  max-width: 34ch;
  line-height: 1.55;
}

.product { padding: 48px 0 56px; }
.product-frame {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.product-stage {
  background: var(--ink);
  padding: 16px 16px 0;
  display: block;
}
.product-stage img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 10px 10px 0 0;
}
.product-dock {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid #1F2A30;
}
.product-dock .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #8B9499;
  margin-bottom: 6px;
}
.product-dock .kicker::before {
  content: "";
  width: 3px;
  height: 11px;
  background: var(--accent);
  border-radius: 1px;
}
.product-dock h2 {
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.product-dock .caption {
  font-size: 0.88rem;
  color: #8B9499;
  margin-top: 5px;
}
.verbs { display: flex; gap: 6px; flex-wrap: wrap; }
.verb {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 7px 12px;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  border: 1px solid #2A383E;
}
.verb strong {
  font-weight: 600;
  color: #A8B0B6;
  margin-right: 4px;
}
.product-dock .dock-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.product-dock .dock-link:hover { color: var(--action); }

.studio { padding: 0 0 48px; }
.studio-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.studio-band .section-label { color: #8B9499; }
.studio-band .section-label::before { background: var(--accent); }
.studio-band h2 {
  font-weight: 700;
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 24ch;
}
.studio-band .lead {
  color: #A8B0B6;
  max-width: 44ch;
  font-size: 0.98rem;
  margin-bottom: 8px;
  line-height: 1.55;
}
.studio-facts {
  list-style: none;
  display: grid;
  gap: 12px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.studio-facts li { font-size: 0.92rem; color: #A8B0B6; }
.studio-facts strong {
  display: block;
  color: var(--paper);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.close-band {
  border-top: 1px solid var(--line);
  padding: 48px 0 56px;
  text-align: center;
}
.close-band .headline {
  font-weight: 700;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 28ch;
  margin: 0 auto 10px;
}
.close-band .sub {
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* Sweeply product page */
.product-hero { padding: 40px 0 32px; }
.crumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 500;
}
.crumb a { color: var(--accent); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.product-hero h1 {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 14px;
}
.lede {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 42ch;
  margin-bottom: 22px;
  line-height: 1.55;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 6px 11px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.side-note {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
}
.side-note strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.side-note p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

.proof {
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.proof-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.proof h2 {
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.proof .copy p { color: var(--muted); max-width: 36ch; margin-bottom: 18px; line-height: 1.55; }
.mb-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
}
.mb-callout .was { color: #8B9499; text-decoration: line-through; font-size: 0.95rem; }
.mb-callout .now { color: var(--action); font-size: 1.25rem; letter-spacing: -0.02em; }
.mb-callout .arrow { color: #8B9499; }

.device-frame {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.device-frame .bezel { padding: 10px; background: var(--paper-deep); }
.device-frame img { border-radius: 10px; width: 100%; }
.device-frame .caption-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.device-frame .caption-bar span:last-child { color: #A8B0B6; }

.flow { padding: 56px 0 48px; }
.flow-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  align-items: end;
}
.flow-head h2 {
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
  line-height: 1.2;
}
.flow-head p { color: var(--muted); max-width: 34ch; line-height: 1.55; }
.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.flow-card {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.flow-card .card-copy { padding: 18px 18px 10px; }
.flow-card .verb {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 6px;
  padding: 0;
  border: 0;
  background: transparent;
}
.flow-card h3 {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}
.flow-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.flow-card .frame-inner {
  margin: 8px 10px 10px;
  background: var(--ink);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid var(--line);
}
.flow-card .frame-inner img {
  border-radius: 8px;
  margin-inline: auto;
  max-height: 320px;
  width: auto;
}
.flow-card .mini-caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8B9499;
  text-align: center;
  padding: 6px 4px 2px;
}

.privacy-band { padding: 0 0 64px; }
.privacy-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.privacy-copy { padding: 36px 40px; background: var(--paper); }
.privacy-copy h2 {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  max-width: 16ch;
  line-height: 1.2;
}
.privacy-copy > p { color: var(--muted); margin-bottom: 18px; max-width: 42ch; line-height: 1.55; }
.negatives { list-style: none; display: grid; gap: 8px; margin-bottom: 20px; }
.negatives li {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 14px;
  background: var(--paper-deep);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.privacy-aside {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.privacy-aside h3 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.25;
}
.privacy-aside p { color: #A8B0B6; margin-bottom: 0; line-height: 1.55; font-size: 0.95rem; }
.privacy-aside .btn-action { align-self: start; }

/* Testers */
.tester-hero {
  padding: 36px 0 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.tester-hero h1 {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 10px;
  max-width: 16ch;
}
.trust-strip { display: grid; gap: 9px; margin-bottom: 20px; }
.trust-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 500;
}
.trust-line::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 0.45em;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
}
.trust-line span { color: var(--muted); font-weight: 400; }
.expect {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}
.expect h2 {
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.expect ol {
  margin-left: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 5px;
  line-height: 1.5;
}
.peek {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-deep);
}
.peek .bezel { padding: 8px; }
.peek img { border-radius: 8px; }
.peek .caption-bar {
  padding: 9px 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: space-between;
}
.peek .caption-bar span:last-child { color: #A8B0B6; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 26px 22px;
  box-shadow: 0 12px 32px rgba(14, 18, 24, 0.05);
  border-top: 3px solid var(--accent);
}
.form-card > h2,
.form-card form > h2 {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.form-card .hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  margin-top: 12px;
}
.form-card input[type="text"],
.form-card input[type="email"] {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
}
.form-card input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
  background: #fff;
}
.field-help {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.45;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0 14px;
  font-size: 0.92rem;
  color: var(--ink);
}
.consent input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  flex-shrink: 0;
}
#security-check { min-height: 24px; margin-bottom: 8px; }
#form-status {
  font-size: 13px;
  color: var(--muted);
  min-height: 1.2em;
  margin-bottom: 12px;
}
.form-card .btn-action {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  border: none;
}
.form-card .btn-action:disabled { opacity: 0.55; cursor: not-allowed; }
.privacy-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.privacy-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.success {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
}
.success[hidden] { display: none; }
.success .status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 6px;
}
.success h2 {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.success p { color: var(--muted); font-size: 0.92rem; margin-bottom: 6px; line-height: 1.55; }

/* Footer */
.concept-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 24px;
  background: var(--paper-deep);
  margin-top: auto;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-main .tagline {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
}
.footer-nav a {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .hero,
  .why-row,
  .product-dock,
  .studio-band,
  .hero-grid,
  .proof-layout,
  .flow-grid,
  .privacy-panel,
  .flow-head,
  .tester-hero { grid-template-columns: 1fr; }
  .why-row > .section-label { margin-bottom: 8px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px;
    z-index: 20;
    box-shadow: 0 12px 28px rgba(14, 18, 24, 0.08);
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a {
    padding: 12px 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-join { display: none; }
  .product-stage { padding: 12px 12px 0; }
  .product-dock { padding: 20px 18px; }
  .studio-band { padding: 28px 22px; }
  .hero {
    align-items: start;
    padding: 28px 0 24px;
    gap: 20px;
  }
  .hero h1,
  .product-hero h1,
  .tester-hero h1 { font-size: 1.5rem; max-width: 18ch; }
  .actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .actions .btn,
  .actions .text-link {
    width: 100%;
    text-align: center;
    justify-content: center;
    min-height: 48px;
  }
  .actions .text-link {
    display: inline-flex;
    align-items: center;
    border-bottom: 0;
    padding: 12px 16px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
  }
  .peek { display: none; }
  .tester-hero { display: flex; flex-direction: column; }
  .privacy-copy,
  .privacy-aside { padding: 28px 22px; }
  .footer-main { flex-direction: column; gap: 20px; }
  .footer-nav a { min-height: 44px; display: inline-flex; align-items: center; }
}
