/* ==========================================================================
   Continue — continue-fashion.com
   Design language: warm paper, ink display type, pastel bento cards, pill UI.
   Written mobile-first; every section reads as a card on a paper background.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Surfaces */
  --paper:      #F4F1EA;
  --paper-2:    #EDE9DF;
  --paper-3:    #FBFAF7;
  --ink:        #121110;
  --ink-soft:   #201E1B;

  /* Pastels */
  --mint:       #C7EFCE;
  --butter:     #F1E76A;
  --blush:      #FAD5DF;
  --sky:        #CEDCF7;
  --sage:       #DBE3D2;
  --clay:       #F7D8C1;
  --coral:      #FF5B3A;

  /* Type colours */
  --fg:         var(--ink);
  --fg-muted:   #6B6660;
  --fg-faint:   #97918A;
  --line:       #DFDACE;
  --line-strong:#CEC7B8;

  /* Type */
  --display: 'Bricolage Grotesque', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans:    'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono:    'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Shape */
  --r-sm:  14px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-2xl: 56px;
  --pill:  999px;

  /* Rhythm */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 11vw, 9.5rem);

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(18,17,16,.06), 0 6px 16px -10px rgba(18,17,16,.22);
  --shadow-md: 0 2px 4px rgba(18,17,16,.05), 0 18px 40px -22px rgba(18,17,16,.35);
  --shadow-lg: 0 4px 8px rgba(18,17,16,.05), 0 44px 90px -40px rgba(18,17,16,.45);

  --ease: cubic-bezier(.22,.68,.36,1);
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--paper);
  color: var(--fg);
  font-family: var(--sans);
  font-size: clamp(1rem, .97rem + .18vw, 1.0625rem);
  line-height: 1.55;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain — barely there, but it stops the flat #F4F1EA looking digital. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }

::selection { background: var(--coral); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: #fff;
  padding: .75rem 1.25rem; border-radius: var(--pill);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- 3. Layout primitives ---------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 760px; }

section { position: relative; }

/* ---------- 4. Typography ------------------------------------------------ */
.display {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 92%;
  line-height: .93;
  letter-spacing: -0.042em;
  text-wrap: balance;
}
.display--xl { font-size: clamp(3.4rem, 13.5vw, 10.5rem); line-height: .88; letter-spacing: -0.05em; }
.display--l  { font-size: clamp(2.5rem, 7.2vw, 5.4rem); letter-spacing: -0.046em; }
.display--m  { font-size: clamp(2rem, 4.6vw, 3.5rem); line-height: .98; letter-spacing: -0.038em; }
.display--s  { font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: 1; letter-spacing: -0.035em; }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }

.lede {
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.3125rem);
  line-height: 1.5;
  color: var(--fg-muted);
  text-wrap: pretty;
}

.muted { color: var(--fg-muted); }

.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--fg-faint);
  text-transform: none;
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}
.eyebrow span { color: var(--coral); font-weight: 500; }
.eyebrow--center { text-align: center; }

.kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* Inline pill glyph that sits inside a display headline, à la the reference. */
.glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  width: 1.14em;
  height: .78em;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--paper);
  margin-inline: .16em .12em;
  transform: translateY(.04em) rotate(-3deg);
  box-shadow: var(--shadow-sm);
}
.glyph--coral { background: var(--coral); color: #fff; }
.glyph--mint  { background: var(--mint); color: var(--ink); }
.glyph__svg { width: .5em; height: .5em; stroke-width: 1.5; }

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .975rem;
  letter-spacing: -0.012em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .28s var(--ease), background-color .28s var(--ease),
              color .28s var(--ease), box-shadow .28s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--ink:hover { --btn-bg: #2c2a26; }

.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: #fff; border-color: var(--ink); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  padding-inline: .5rem;
}
.btn--ghost:hover { box-shadow: none; transform: translateX(3px); }

.btn--sm { padding: .68rem 1.15rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn__icon { width: 1.05em; height: 1.05em; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .8rem;
  border-radius: var(--pill);
  font-size: .78rem;
  font-weight: 500;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.pill--mint { background: var(--mint); border-color: transparent; }
.pill--paper { background: var(--paper-3); }

.swatch {
  width: .6rem; height: .6rem; border-radius: 50%;
  display: inline-block; flex: none;
}
.swatch--clay { background: var(--clay); }
.swatch--sky  { background: var(--sky); }
.swatch--mint { background: var(--mint); }

/* ---------- 6. Cards ----------------------------------------------------- */
.card {
  background: var(--paper-3);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  border: 1px solid rgba(18,17,16,.05);
}
.card--mint   { background: var(--mint); }
.card--butter { background: var(--butter); }
.card--blush  { background: var(--blush); }
.card--sky    { background: var(--sky); }
.card--sage   { background: var(--sage); }
.card--clay   { background: var(--clay); }
.card--paper  { background: var(--paper-3); }

.icon { width: 1.25rem; height: 1.25rem; flex: none; }
.icon--sm { width: 1.05rem; height: 1.05rem; }
.icon--lg { width: 1.6rem; height: 1.6rem; }
.icon--fill { fill: currentColor; stroke-width: 0; }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ---------- 7. Navigation ------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(.75rem, 1.6vw, 1.25rem) 0;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease),
              backdrop-filter .35s var(--ease), padding .35s var(--ease);
}
.nav.is-stuck {
  background: rgba(244,241,234,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(18,17,16,.07);
  padding-block: .6rem;
}

.nav__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand { display: inline-flex; align-items: center; gap: .55rem; }
.nav__mark  { width: 1.85rem; height: 1.85rem; border-radius: 9px; flex: none; }
.nav__word  {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.05em;
}

.nav__links {
  display: none;
  gap: .25rem;
  padding: .3rem;
  border-radius: var(--pill);
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(18,17,16,.06);
  backdrop-filter: blur(8px);
}
.nav__links a {
  padding: .5rem .95rem;
  border-radius: var(--pill);
  font-size: .925rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover { background: var(--ink); color: #fff; }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__actions .btn--ink { display: none; }

.nav__burger {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-content: center; gap: 5px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: rgba(255,255,255,.6);
  cursor: pointer;
}
.nav__burger span[aria-hidden] {
  display: block; width: 15px; height: 1.6px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-of-type { transform: translateY(3.3px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-of-type  { transform: translateY(-3.3px) rotate(-45deg); }

.nav__panel {
  margin: .75rem var(--gutter) 0;
  padding: .75rem;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: .15rem;
  animation: panel-in .3s var(--ease) both;
}
.nav__panel[hidden] { display: none; }
.nav__panel a:not(.btn) {
  display: flex; justify-content: space-between; align-items: center;
  padding: .85rem 1rem; border-radius: var(--r-sm); font-weight: 500;
}
.nav__panel a:not(.btn):hover { background: var(--paper-2); }
.nav__panel a span { color: var(--fg-faint); }
.nav__panel .btn { margin-top: .5rem; }

@keyframes panel-in { from { opacity: 0; transform: translateY(-8px); } }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__actions .btn--ink { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__panel { display: none !important; }
}

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
  padding-top: clamp(7rem, 15vw, 11rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.hero__title { margin-bottom: clamp(1.25rem, 2.4vw, 1.75rem); }
.hero__line { display: block; }
.hero__line .glyph { margin-left: 0; margin-right: .16em; }

.hero__lede { max-width: 44ch; margin-inline: auto; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hero__note {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--fg-faint);
}

.hero__stage {
  position: relative;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding-inline: var(--gutter);
  display: flex;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  inset: 12% 8% 18%;
  background:
    radial-gradient(50% 60% at 22% 30%, rgba(199,239,206,.85), transparent 70%),
    radial-gradient(45% 55% at 78% 26%, rgba(206,220,247,.85), transparent 70%),
    radial-gradient(45% 50% at 50% 88%, rgba(250,213,223,.7), transparent 72%);
  filter: blur(46px);
  z-index: 0;
}

.hero__device {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
  filter: drop-shadow(0 40px 70px rgba(18,17,16,.18));
  animation: float 9s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__chip {
  position: absolute;
  z-index: 2;
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .6rem .95rem;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: .82rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero__chip--1 { top: 12%;  left: 2%;  animation: float 7.5s ease-in-out infinite .4s; }
.hero__chip--2 { top: 38%;  right: 1%; animation: float 8.5s ease-in-out infinite .9s; }
.hero__chip--3 { bottom: 12%; left: 8%; animation: float 8s ease-in-out infinite 1.4s; }

@media (min-width: 1080px) { .hero__chip { display: inline-flex; } }

/* ---------- 9. Ticker ---------------------------------------------------- */
.ticker {
  background: var(--ink);
  color: var(--paper);
  padding: 1.1rem 0;
  overflow: hidden;
  --marquee: 46s;
}
.ticker__track { display: flex; width: max-content; animation: marquee var(--marquee) linear infinite; }
.ticker__list  { display: flex; align-items: center; }
.ticker__list li {
  display: flex; align-items: center; gap: .9rem;
  padding-inline: 1.6rem;
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.ticker__dot { width: .38rem; height: .38rem; border-radius: 50%; background: var(--coral); }
.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 10. Product blocks ------------------------------------------- */
.blocks {
  background: var(--paper-2);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.blocks .section-head { text-align: center; }
.blocks .eyebrow { text-align: center; }

.block { margin-top: clamp(3rem, 6vw, 5rem); }
.block:first-of-type { margin-top: 0; }

.block__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.block__screen {
  order: -1;
  display: flex;
  justify-content: center;
  padding-block: .5rem;
}
.block__screen img {
  width: min(300px, 78%);
  filter: drop-shadow(0 30px 50px rgba(18,17,16,.22));
  border-radius: 34px;
}

.block__copy .block__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: .55rem 0 .85rem;
}
.block__copy p { color: rgba(18,17,16,.72); margin-bottom: 1.4rem; }

.block__aside h4 { font-size: 1.1rem; margin-bottom: .45rem; }
.block__aside p  { color: rgba(18,17,16,.68); font-size: .95rem; }

@media (min-width: 940px) {
  .block__grid {
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: clamp(1.25rem, 2.4vw, 2rem);
  }
  .block__screen { order: 0; }
  .block__screen img { width: 100%; max-width: 320px; }
  .block--flip .block__copy  { order: 3; }
  .block--flip .block__aside { order: 1; }
  .block__copy  { align-self: center; transform: translateY(-14px); }
  .block__aside { align-self: center; transform: translateY(26px); }
  .block--flip .block__copy  { transform: translateY(22px); }
  .block--flip .block__aside { transform: translateY(-18px); }
}

/* ---------- 11. Brand coverage ------------------------------------------- */
.brands {
  background: var(--paper-2);
  padding-block: var(--section);
}
.brands__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }

.brands__copy p { max-width: 40ch; margin-top: 1rem; }

.brands__search {
  position: relative;
  margin-top: 1.75rem;
  max-width: 340px;
}
.brands__searchicon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 1.05rem; height: 1.05rem; color: var(--fg-faint);
}
.brands__search input {
  width: 100%;
  padding: .95rem 1.1rem .95rem 2.6rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  background: var(--paper-3);
  outline: none;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.brands__search input:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(18,17,16,.07); }
.brands__search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.brands__count {
  margin-top: .9rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--fg-faint);
}

.brands__list {
  max-height: min(76vh, 760px);
  overflow-y: auto;
  padding-right: .5rem;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 8%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 8%, #000 88%, transparent);
  scrollbar-width: thin;
}
.brands__list li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .72rem .35rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg-faint);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.brands__list li:hover { color: var(--ink); transform: translateX(4px); }
.brands__list li[hidden] { display: none; }
.brands__dot {
  width: .95rem; height: .95rem; flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.brands__list li:hover .brands__dot,
.brands__list li.is-match .brands__dot {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,91,58,.18);
}
.brands__empty {
  padding: 1.25rem;
  border-radius: var(--r-md);
  background: var(--paper-3);
  color: var(--fg-muted);
  font-size: .95rem;
}

@media (min-width: 900px) {
  .brands__grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); }
  .brands__copy { position: sticky; top: 8rem; }
}

/* ---------- 12. Statement + bento ---------------------------------------- */
.statement {
  background: var(--paper);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  margin-top: -1px;
}
.statement > .shell > .display { max-width: 16ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.bento { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); }

.bento__card {
  background: var(--paper-3);
  border: 1px solid rgba(18,17,16,.06);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento__card h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: .7rem;
  max-width: 18ch;
}
.bento__card p { color: var(--fg-muted); max-width: 46ch; }
.bento__art img { width: 100%; }

@media (min-width: 860px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento__card:nth-child(1) { grid-column: span 6; grid-template-columns: 1.1fr .9fr; align-items: center; }
  .bento__card:nth-child(2),
  .bento__card:nth-child(3) { grid-column: span 3; align-content: space-between; }
}

/* ---------- 13. Social proof + impact ------------------------------------ */
.proof {
  background: var(--paper-2);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.proof__title { max-width: 18ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }

.proof__cards { display: grid; gap: clamp(.85rem, 1.6vw, 1.25rem); }
.proof__card {
  border-radius: var(--r-xl);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.proof__badge {
  display: grid; place-content: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  font-size: 1.1rem;
}
.proof__card h3 { font-size: 1.2rem; margin-bottom: .55rem; letter-spacing: -0.025em; }
.proof__card p  { font-size: .95rem; color: rgba(18,17,16,.7); }

.impact {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  background: var(--paper-3);
  border-radius: var(--r-xl);
  border: 1px solid rgba(18,17,16,.06);
}
.impact dl {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(2, 1fr);
}
.impact dt {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .02em;
  color: var(--fg-faint);
  margin-bottom: .35rem;
}
.impact dd { margin: 0; }
.impact__note {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .87rem;
  color: var(--fg-faint);
  max-width: 62ch;
}

@media (min-width: 760px)  { .proof__cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .impact dl { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 14. Privacy -------------------------------------------------- */
.secure {
  background: var(--paper);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.secure__lede { max-width: 48ch; margin-top: 1.5rem; }
.secure__grid {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: clamp(.85rem, 1.6vw, 1.25rem);
}
.secure__card {
  background: var(--paper-3);
  border: 1px solid rgba(18,17,16,.06);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.4vw, 1.9rem);
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.secure__card:hover { transform: translateY(-4px); }
.secure__card:nth-child(1):hover { background: var(--sky); }
.secure__card:nth-child(2):hover { background: var(--mint); }
.secure__card:nth-child(3):hover { background: var(--blush); }
.secure__card:nth-child(4):hover { background: var(--butter); }
.secure__icon {
  display: grid; place-content: center;
  width: 2.8rem; height: 2.8rem;
  border-radius: var(--r-sm);
  background: var(--paper-2);
  margin-bottom: 1.1rem;
}
.secure__card h3 { font-size: 1.075rem; margin-bottom: .45rem; }
.secure__card p  { font-size: .93rem; color: var(--fg-muted); }
.secure__foot { margin-top: 2rem; color: var(--fg-muted); font-size: .95rem; }
.secure__foot a { text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 640px) { .secure__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .secure__grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- 15. Pricing -------------------------------------------------- */
.pricing {
  background: var(--paper-2);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.pricing .section-head { text-align: center; }
.pricing .eyebrow { text-align: center; }

.plans { display: grid; gap: clamp(.9rem, 1.6vw, 1.25rem); align-items: start; }

.plan {
  border-radius: var(--r-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan--featured { box-shadow: var(--shadow-lg); }
.plan__flag {
  position: absolute;
  top: -.75rem; right: 1.5rem;
  background: var(--ink); color: #fff;
  font-size: .72rem; font-weight: 600;
  padding: .35rem .8rem; border-radius: var(--pill);
}
.plan__name {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(18,17,16,.6);
}
.plan__price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.plan__price small { font-size: .82rem; color: rgba(18,17,16,.6); }
.plan__tagline { font-size: .95rem; color: rgba(18,17,16,.72); min-height: 2.8em; }
.plan__features { display: grid; gap: .6rem; margin-top: .35rem; }
.plan__features li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; }
.plan__features svg { margin-top: .18rem; color: rgba(18,17,16,.55); }
.plans__note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: .85rem;
  color: var(--fg-faint);
}

@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { transform: translateY(-14px); }
}

/* ---------- 16. FAQ ------------------------------------------------------ */
.faq {
  background: var(--paper);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.faq__title { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

.faq__list { display: grid; gap: .6rem; max-width: 860px; margin-inline: auto; }

.faq__item {
  background: var(--paper-3);
  border: 1px solid rgba(18,17,16,.07);
  border-radius: var(--r-md);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq__item[open] { background: var(--paper-2); border-color: rgba(18,17,16,.12); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem clamp(1.1rem, 2.2vw, 1.6rem);
  cursor: pointer;
  font-weight: 500;
  font-size: clamp(.98rem, .95rem + .2vw, 1.06rem);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__marker {
  display: grid; place-content: center;
  width: 1.9rem; height: 1.9rem; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__marker { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }

.faq__answer {
  padding: 0 clamp(1.1rem, 2.2vw, 1.6rem) 1.4rem;
  color: var(--fg-muted);
  max-width: 68ch;
}
.faq__item[open] .faq__answer { animation: faq-in .35s var(--ease) both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } }

.faq__more { margin-top: 2rem; text-align: center; color: var(--fg-muted); font-size: .95rem; }
.faq__more a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 17. Download band -------------------------------------------- */
.download {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--section);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  overflow: hidden;
}
.download .eyebrow { color: rgba(244,241,234,.55); }
.download .eyebrow span { color: var(--coral); }
.download__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.download__copy .muted { color: rgba(244,241,234,.68); max-width: 42ch; margin-top: 1.25rem; }
.download__buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
.download__buttons .btn--ink { --btn-bg: var(--mint); --btn-fg: var(--ink); }
.download__buttons .btn--ink:hover { --btn-bg: #fff; }
.download__buttons .btn--outline { --btn-fg: var(--paper); border-color: rgba(244,241,234,.3); }
.download__buttons .btn--outline:hover { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.download__rating {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: .8rem;
  color: rgba(244,241,234,.6);
}
.stars { display: inline-flex; gap: .12rem; color: var(--butter); }
.download__art { display: flex; justify-content: center; }
.download__art img {
  width: min(300px, 70%);
  border-radius: 34px;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
}

@media (min-width: 900px) {
  .download__grid { grid-template-columns: 1.15fr .85fr; }
  .download__art img { width: 100%; max-width: 320px; }
}

/* ---------- 18. Footer + newsletter -------------------------------------- */
.footer {
  background: var(--paper);
  padding-top: var(--section);
  padding-bottom: 2rem;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  margin-top: -1px;
}

.newsletter {
  display: grid;
  /* A bare `auto` track inflates to the email input's ~20ch intrinsic width and
     blows the card open below 400px — minmax(0,1fr) keeps the track honest. */
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding: clamp(1.75rem, 3.5vw, 3rem);
  background: var(--paper-3);
  border: 1px solid rgba(18,17,16,.07);
  border-radius: var(--r-xl);
}
.newsletter__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.02;
  margin-bottom: .6rem;
  max-width: 16ch;
}
.newsletter .muted { max-width: 42ch; font-size: .95rem; }
.newsletter__copy,
.newsletter__form { min-width: 0; }
.newsletter__form { align-self: center; width: 100%; }
.field {
  display: flex;
  gap: .4rem;
  padding: .4rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(18,17,16,.07); }
.field input {
  flex: 1;
  min-width: 0;
  padding: .6rem 1rem;
  border: 0;
  background: transparent;
  outline: none;
}
.newsletter__note { margin-top: .8rem; font-size: .8rem; color: var(--fg-faint); padding-left: 1rem; }
.newsletter__note.is-error { color: #B3341A; }
.newsletter__note.is-success { color: #1F7A3D; }

@media (min-width: 860px) {
  .newsletter { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: 3rem; }
}

/* Oversized wordmark, cropped by the viewport like the reference footer. */
.footer__wordmark {
  margin-block: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 3.5rem);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4.5rem, 21vw, 19rem);
  line-height: .8;
  letter-spacing: -0.055em;
  color: var(--ink);
  user-select: none;
}

.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}
.footer__about .nav__brand { margin-bottom: 1rem; }
.footer__mission { max-width: 34ch; font-size: .92rem; }
.footer__social { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.footer__social a {
  display: inline-flex;
  padding: .4rem .85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill);
  font-size: .82rem;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.footer__social a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.footer__col h2 {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-weight: 400;
  margin-bottom: 1rem;
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { font-size: .93rem; color: var(--fg-muted); transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--ink); }

.footer__bar {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .75rem;
  font-size: .8rem;
  color: var(--fg-faint);
}
.footer__made { display: flex; flex-wrap: wrap; gap: .5rem; }

@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer__bar {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }
  .footer__legalmeta { text-align: center; }
}

/* ---------- 19. Legal pages ---------------------------------------------- */
.page--legal { background: var(--paper-2); }
.page--legal .nav.is-stuck { background: rgba(237,233,223,.82); }

.legal { padding-top: clamp(7.5rem, 14vw, 10rem); padding-bottom: var(--section); }
.legal__head { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.legal__lede { margin-top: 1.25rem; max-width: 54ch; }
.legal__meta {
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: .76rem;
  color: var(--fg-faint);
}

.legal__toc {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--paper-3);
  border: 1px solid rgba(18,17,16,.07);
  border-radius: var(--r-lg);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.legal__toc .kicker { margin-bottom: .9rem; }
.legal__toc ol { display: grid; gap: .1rem; }
.legal__toc a {
  display: flex; gap: .85rem; align-items: baseline;
  padding: .45rem .5rem;
  border-radius: var(--r-sm);
  font-size: .93rem;
  color: var(--fg-muted);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.legal__toc a:hover { background: var(--paper-2); color: var(--ink); }
.legal__toc a span { font-family: var(--mono); font-size: .74rem; color: var(--fg-faint); }

.legal__section { padding-block: clamp(1.5rem, 3vw, 2.25rem); border-top: 1px solid var(--line); }
.legal__section:first-child { border-top: 0; padding-top: 0; }
.legal__section h2 {
  display: flex; gap: .85rem; align-items: baseline;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.legal__num { font-family: var(--mono); font-size: .8rem; color: var(--coral); font-weight: 400; }

.legal__body p, .legal__body li { color: var(--fg-muted); }
.legal__body p + p, .legal__body ul, .legal__body ol, .legal__body table, .legal__body dl { margin-top: 1rem; }
.legal__body ul, .legal__body ol { display: grid; gap: .6rem; padding-left: 1.1rem; }
.legal__body ul li { list-style: disc; }
.legal__body ol li { list-style: decimal; }
.legal__body strong { color: var(--fg); font-weight: 600; }
.legal__body a { text-decoration: underline; text-underline-offset: 3px; color: var(--fg); }
.legal__body code {
  font-family: var(--mono);
  font-size: .85em;
  background: var(--paper-3);
  border: 1px solid var(--line);
  padding: .1rem .35rem;
  border-radius: 6px;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--paper-3);
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}
.legal__table th, .legal__table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal__table th {
  font-family: var(--mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fg-faint);
  font-weight: 400;
}
.legal__table td { color: var(--fg-muted); }
.legal__table tr:last-child td { border-bottom: 0; }

.legal__dl { display: grid; gap: .75rem; }
.legal__dl > div { display: grid; gap: .15rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.legal__dl dt { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--fg-faint); }
.legal__dl dd { margin: 0; }

.legal__cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); border-radius: var(--r-xl); }
.legal__cta h2 { font-size: 1.2rem; margin-bottom: .6rem; }
.legal__cta a { text-decoration: underline; text-underline-offset: 3px; }
.legal__disclaimer { margin-top: 1rem; font-size: .82rem; color: rgba(18,17,16,.55); }

@media (min-width: 900px) {
  .legal__table { display: table; white-space: normal; }
  .legal__dl { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

/* ---------- 20. 404 ------------------------------------------------------ */
.notfound {
  min-height: 70vh;
  display: grid;
  align-content: center;
  padding-top: clamp(8rem, 15vw, 11rem);
  padding-bottom: var(--section);
  text-align: center;
}
.notfound .eyebrow { text-align: center; }
.notfound .lede { max-width: 44ch; margin: 1.5rem auto 0; }

/* ---------- 21. Reveal on scroll ----------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease) var(--d, 0ms), transform .8s var(--ease) var(--d, 0ms);
}

/* ---------- 22. Preferences & print -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

@media print {
  body::before, .nav, .footer__wordmark, .newsletter, .hero__stage, .ticker { display: none !important; }
  body { background: #fff; }
  .legal { padding-top: 0; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}
