/* ============================================================
   JoyCast v2 — vanilla port of the Figma Sites mirror.
   Source of truth: /tmp/joycast-map.json (Desktop 1024 / Tablet 800
   / Mobile 375). Sizes/colors/spacings derived from Figma JSON.
   Fonts: the exact Inter woff2 subsets shipped by Figma, so text
   metrics match the original 1:1 (not Google Fonts Inter).
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('/woff/v2/Inter_1/Inter_1-english.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00A0,U+00A2-00A9,U+00AC-00AE,U+00B0-00B7,U+00B9-00BA,U+00BC-00BE,U+00D7,U+00F7,U+2000-206F,U+2074,U+20AC,U+2122,U+2190-21BB,U+2212,U+2215,U+F8FF,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter';
  src: url('/woff/v2/Inter_1/Inter_1-rest-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+00A1,U+00AA-00AB,U+00AF,U+00B8,U+00BB,U+00BF-00D6,U+00D8-00F6,U+00F8-00FF,U+0131,U+0152-0153,U+02B0-02FF;
}
@font-face {
  font-family: 'Inter';
  src: url('/woff/v2/Inter_1/Inter_1-latin-extended-a.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-0130,U+0132-0151,U+0154-017F;
}
@font-face {
  font-family: 'Inter';
  src: url('/woff/v2/Inter_1/Inter_1-latin-extended-b.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0180-024F;
}

:root {
  --text: #1d1d1f;
  --muted: #86868b;
  --muted-2: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-dark: #0a0a0a;
  --bubble: rgba(255, 255, 255, 0.5);
  --grad-from: #0085f6;
  --grad-via: #ba53f8;
  --grad-to: #f24b04;
  --grad-cta: linear-gradient(135deg, #1976d2 0%, #8244c1 100%);
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.08);
  --r-bubble: 16px;
  --r-button: 9.6px;
  --r-card: 20px;
  /* Figma desktop frame is 1024 wide with 22px side padding, so the
     real content column is 980px. Containers use 1024 max-width and
     22px padding so the inner column lands exactly on 980. */
  --frame: 1024px;
  --inner: 980px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }

.muted { color: var(--muted); }
.muted-strong { color: var(--muted-2); font-weight: 700; }

.gradient {
  background: linear-gradient(90deg, var(--grad-from) 0%, var(--grad-via) 50%, var(--grad-to) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Header (sticky island bubble) ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 22px;
}
.header__bubble {
  width: 100%;
  max-width: var(--inner);
  height: 80px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: saturate(160%) blur(37.5px);
  backdrop-filter: saturate(160%) blur(37.5px);
  border-radius: var(--r-bubble);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: var(--r-button);
  flex-shrink: 0;
}
.brand__name {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--r-button);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.08px;
  line-height: 23.2px;
  white-space: nowrap;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--dark { background: var(--text); color: #ffffff; }
.btn--gradient {
  background: var(--grad-cta);
  color: #ffffff;
  padding: 18px 32px;
  font-size: 18px;
  border-radius: 100px;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 76px 22px 0;
  text-align: center;
}
.hero__title {
  font-size: 60px;
  font-weight: 700;
  line-height: 72.6px;
  letter-spacing: -1.2px;
  margin: 0 0 32px;
  color: var(--text);
}
.hero__title .gradient { display: inline; }
.hero__lead {
  font-size: 32px;
  font-weight: 600;
  line-height: 38.7px;
  letter-spacing: -0.96px;
  color: var(--muted);
  margin: 0 auto 64px;
  max-width: 980px;
}
.hero__player {
  margin: 64px auto 80px;
  width: min(980px, 100%);
}

/* ---------- Hero player (MacBook video, vanilla port of Figma component) ---------- */
/* MacBook frame: layered absolutely-positioned SVGs inside a 1024:619 box. */
.mbp {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 619;
}
.mbp__layer { position: absolute; }
.mbp__layer--nohit { pointer-events: none; }
.mbp__svg { display: block; width: 100%; height: 100%; }

/* Screen cut-out that holds the video, sits above every frame layer. */
.mbp__screen {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video player: preview loop + main video + play / loading / error states. */
.vp {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  cursor: pointer;
}
.vp__preview,
.vp__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: opacity .3s ease;
}
.vp__preview { z-index: 10; opacity: 1; pointer-events: none; }
.vp__main { z-index: 20; opacity: 0; pointer-events: none; }
.vp.is-playing .vp__preview { opacity: 0; }
.vp.is-playing .vp__main { opacity: 1; pointer-events: auto; }

/* Loading spinner */
.vp__loader {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
}
.vp.is-loading:not(.is-error) .vp__loader { display: flex; }
.vp__spinner {
  width: 64px;
  height: 64px;
  border: 4px solid #3b82f6;
  border-top-color: transparent;
  border-radius: 50%;
  animation: mbp-spin 1s linear infinite;
}
@keyframes mbp-spin { to { transform: rotate(360deg); } }

/* Error message */
.vp__error {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, .8);
  color: #fff;
  text-align: center;
}
.vp.is-error .vp__error { display: flex; }
.vp__error-title { font-size: 20px; margin: 0 0 8px; }
.vp__error-sub { font-size: 14px; opacity: .7; margin: 0; }
.vp__error-url {
  margin: 16px 0 0;
  max-width: 28rem;
  font-size: 12px;
  opacity: .5;
  overflow: auto;
}

/* Play button overlay */
.vp__play {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vp.is-playing .vp__play,
.vp.is-error .vp__play { display: none; }
.vp__play-circle {
  display: flex;
  padding: 32px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, .3);
  transition: transform .2s ease, background .2s ease;
}
.vp:hover .vp__play-circle {
  transform: scale(1.1);
  background: rgba(0, 0, 0, .4);
}
.vp__play-icon {
  width: 80px;
  height: 80px;
  color: #fff;
  opacity: .75;
  transition: opacity .2s ease;
}
.vp:hover .vp__play-icon { opacity: 1; }
.hero__bullets {
  display: grid;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 80px;
  text-align: left;
}
.hero__bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
}
.hero__bullets p { margin: 0; font-size: 21px; line-height: 29px; font-weight: 600; }
.hero__bullets strong { font-weight: 600; }
.hero__bullets .muted { color: var(--muted-2); }
.hero__bullets .check { margin-top: 4px; }
.hero__pitch {
  font-size: 28px;
  font-weight: 600;
  line-height: 33.9px;
  letter-spacing: 0;
  margin: 0 0 28px;
}

/* ---------- Generic section ---------- */
.section {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 96px 22px;
  text-align: center;
}
.section__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -1.6px;
  margin: 0 0 22px;
}
.section__title--small {
  font-size: 64px;
  letter-spacing: -1.28px;
}
.section__title--invert { color: #ffffff; }
.section__title--invert .gradient {
  background: linear-gradient(90deg, #59a7ff, #c98bff, #ff7fb5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__lead {
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.1px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 auto 64px;
  max-width: 640px;
}
.section__lead--invert { color: rgba(255, 255, 255, 0.7); }
/* ---------- AI-powered (dark, full-bleed) ---------- */
.ai {
  background: #000000;
  color: #ffffff;
  padding: 160px 0 0;
  text-align: center;
}
.ai__head {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 0 22px;
}
.ai__title {
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -1.6px;
  line-height: 1.21;
  margin: 0 0 22px;
}
.ai__lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: -0.1px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto;
  max-width: 640px;
}
.ai__image {
  width: 100%;
  max-width: 1024px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.ai__cols {
  max-width: var(--frame);
  margin: 0 auto;
  padding: 0 22px 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: left;
}
.ai__cols p {
  margin: 0;
  padding-top: 30px;
  background-image: linear-gradient(90deg, #0088ff 0%, #692fff 50%, #c1498a 100%);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.42px;
  color: var(--muted);
}
.ai__cols p strong { color: #ffffff; font-weight: 600; }

/* ---------- Logos (infinite marquee) ---------- */
.section--logos { padding-bottom: 96px; }
.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__track img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(1);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ---------- Quote (Pavel) ---------- */
.section--quote { padding: 0; }
.section--quote .quote {
  max-width: 896px;
  margin: 0 auto;
  padding: 80px 70px;
  text-align: center;
}
.quote p {
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: 0;
  color: var(--text);
  margin: 0 0 40px;
}
.quote__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.quote__avatar {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}
.quote__author > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.quote__name { font-size: 28px; font-weight: 600; line-height: 39.2px; letter-spacing: -0.42px; color: var(--text); }
.quote__role { font-size: 20px; font-weight: 500; line-height: 29px; letter-spacing: -0.1px; color: var(--muted-2); }

/* ---------- More than just noise (2-col: text list + visual) ---------- */
.more {
  display: grid;
  grid-template-columns: 470px 470px;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--inner);
  margin: 0 auto;
  text-align: left;
}
.more__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: flex-start;
}
.more__item h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.42px;
  margin: 0 0 4px;
  color: var(--text);
}
.more__item p {
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.42px;
  color: var(--muted-2);
  margin: 0;
}
.more__visual { margin: 0; }
.more__visual video {
  display: block;
  width: 470px;
  aspect-ratio: 470 / 472;
  border-radius: 28px;
  object-fit: contain;
}

.uses-grid {
  display: grid;
  grid-template-columns: 470px 470px;
  justify-content: space-between;
  gap: 40px 40px;
  max-width: var(--inner);
  margin: 0 auto;
  text-align: left;
}
.use { display: flex; flex-direction: column; gap: 8px; }
.use__head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.use__icon { display: block; flex-shrink: 0; }
.use__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.56px;
  margin: 0;
}
.use__title--calls  { color: #0031ea; }
.use__title--rec    { color: #ff9300; }
.use__title--teach  { color: #0e926f; }
.use__title--stream { color: #e635ce; }
.use__lead {
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--text);
  margin: 0;
}
.use__body {
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--muted);
  margin: 0;
}
.use__body strong { color: var(--text); font-weight: 600; }

/* ---------- How it works — bento grid ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: var(--inner);
  margin: 0 auto;
  text-align: left;
}
.bento__card {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.bento__card--wide { grid-column: 1 / -1; }
.bento__cardicon { width: 40px; height: 40px; margin-bottom: 24px; }
.bento__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.56px;
  line-height: 32px;
  margin: 0 0 12px;
  color: var(--text);
}
.bento__body {
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--muted);
  margin: 0;
}
.bento__card { min-height: 272px; }
.bento__card--wide:first-child { min-height: 303px; }
.bento__card--wide:first-child .bento__body { line-height: 37px; }
.bento__apps {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.bento__apps img { width: 48px; height: 48px; }
.bento__card--privacy {
  min-height: 488px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.bento__icon { width: 80px; height: 80px; margin-bottom: 16px; }
.bento__h2 {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -1.28px;
  line-height: 1.2;
  margin: 0 0 28px;
  color: var(--text);
}
.bento__list {
  display: grid;
  gap: 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0;
  color: var(--text);
}
.bento__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bento__list img { width: 19px; height: 24px; flex-shrink: 0; }

/* ---------- What users say — testimonial cards ---------- */
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 314px);
  justify-content: space-between;
  gap: 18px;
  max-width: var(--inner);
  margin: 0 auto;
  align-items: start;
}
.tcard {
  background: #fafafa;
  border-radius: 16px;
  padding: 32px;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tcard__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tcard__avatar {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.tcard__head > div { display: flex; flex-direction: column; gap: 2px; }
.tcard__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.08px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tcard__badge { width: 16px; height: 16px; }
.tcard__name a { display: inline-flex; }
.tcard__role { font-size: 16px; font-weight: 500; line-height: 22.4px; letter-spacing: -0.08px; color: var(--muted-2); }
.tcard__quote {
  font-size: 18px;
  font-weight: 500;
  line-height: 26.1px;
  letter-spacing: -0.09px;
  margin: 0;
  color: var(--text);
}
.tcard__stars { width: 128px; height: 24px; margin-top: auto; }

/* ---------- Alternatives (title left, list right) ---------- */
.alt {
  display: grid;
  grid-template-columns: 513px 387px;
  justify-content: space-between;
  max-width: var(--inner);
  text-align: left;
}
.alt__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -1.6px;
  margin: 0;
  color: var(--text);
}
.alt__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.alt__item h3 {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.56px;
  margin: 0 0 18px;
  color: var(--text);
}
.alt__item p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.42px;
  color: var(--muted);
}
.alt__item p strong { color: var(--text); font-weight: 600; }

/* ---------- Built in chaos (photo left, text right) ---------- */
.section--chaos .chaos {
  display: grid;
  grid-template-columns: 470px 470px;
  justify-content: space-between;
  gap: 40px;
  max-width: var(--inner);
  margin: 0 auto;
  text-align: left;
}
.chaos__text {
  align-self: flex-start;
}
.chaos__text p {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--muted);
  margin: 0 0 16px;
}
.chaos__text p:last-child {
  margin-bottom: 0;
}
.chaos__photo { margin: 0; }
.chaos__photo img {
  width: 470px;
  height: auto;
  border-radius: 28px;
}
.chaos__photo figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  text-align: left;
}

/* ---------- Footer: Built solo + links ---------- */
.footer {
  padding: 80px 22px;
}
.footer__inner {
  position: relative;
  max-width: var(--inner);
  margin: 0 auto;
}
.footer__title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -1.28px;
  color: rgba(0, 0, 0, 0.75);
  margin: 0 0 56px;
}
.footer__text p {
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.48px;
  color: var(--muted);
  margin: 0 0 16px;
}
.footer__text a {
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.footer__text a:hover { color: var(--text); border-color: rgba(0, 0, 0, 0.5); }
.footer__mark {
  position: absolute;
  top: 0;
  right: 0;
  width: 173px;
  height: auto;
}

/* ============================================================
   Responsive: Tablet (≤1024) and Mobile (≤640)
   ============================================================ */
/* ---------- Tablet (641–1023) — Figma 800 variant: single column ---------- */
@media (min-width: 641px) and (max-width: 1023px) {
  .hero__title { font-size: 48px; line-height: 58px; letter-spacing: -0.96px; }
  .hero__lead  { font-size: 24px; line-height: 29px; letter-spacing: -0.72px; }
  .section__title, .ai__title { font-size: 80px; letter-spacing: -1.6px; }
  .section__title--small, .bento__h2 { font-size: 64px; letter-spacing: -1.28px; }
  .footer__title { font-size: 64px; }

  /* The Figma 800 variant stacks every multi-column block to one column */
  .bento, .more, .uses-grid, .tcards, .ai__cols,
  .alt, .section--chaos .chaos { grid-template-columns: 1fr; }
  .alt, .section--chaos .chaos { gap: 32px; }
  .ai__cols { gap: 32px; }
  .more__visual { order: -1; }
  .more__visual video, .chaos__photo img { width: 100%; }
}
/* ============================================================
   Mobile (≤640) — sizes from the Figma Mobile 375 variant:
   Hero 20px, section titles 32px, Absolute privacy 48, Built solo 42.
   ============================================================ */
@media (max-width: 640px) {
  body { overflow-x: hidden; }
  h1, h2, h3, p { overflow-wrap: anywhere; hyphens: auto; }

  .header { padding: 12px; }
  .header__bubble { height: auto; padding: 16px; flex-direction: column; gap: 12px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 22px; }
  .btn { padding: 10px 16px; }

  /* Hero */
  .hero { padding: 40px 22px 0; }
  .hero__title { font-size: 20px; line-height: 1.25; letter-spacing: -0.4px; margin-bottom: 16px; }
  .hero__lead { font-size: 20px; line-height: 30px; letter-spacing: -0.6px; margin-bottom: 40px; }
  .hero__player { margin: 0 auto 48px; }
  .hero__bullets { gap: 14px; margin-bottom: 48px; max-width: 100%; }
  .hero__bullets p { font-size: 16px; line-height: 20px; }
  .hero__pitch { font-size: 20px; line-height: normal; margin-bottom: 20px; }

  /* Sections */
  .section { padding: 64px 22px; }
  .section__title { font-size: 32px; line-height: 1.18; letter-spacing: -0.64px; }
  .section__title--small { font-size: 30px; }
  .section__lead { font-size: 17px; line-height: 1.45; margin-bottom: 40px; }

  /* Stack every multi-column block */
  .bento, .more, .uses-grid, .tcards { grid-template-columns: 1fr; gap: 14px; }
  .alt { grid-template-columns: 1fr; gap: 28px; }
  .ai__cols { grid-template-columns: 1fr; gap: 28px; }
  .section--chaos .chaos { grid-template-columns: 1fr; gap: 28px; }

  /* Bento / cards */
  .bento__card { padding: 28px; min-height: 0 !important; }
  .bento__card--wide:first-child, .bento__card--privacy { min-height: 0 !important; }
  .bento__title { font-size: 28px; }
  .bento__body, .more__item p, .use__body, .alt__item p, .ai__cols p, .bento__list { font-size: 21px; }
  .bento__h2 { font-size: 48px; letter-spacing: -0.96px; }
  .bento__card--privacy { gap: 6px; }

  /* AI section */
  .ai { padding-top: 80px; }
  .ai__title { font-size: 48px; letter-spacing: -0.96px; }
  .ai__cols { padding-bottom: 80px; }

  /* More / Great uses / Alternatives */
  .more__visual video, .chaos__photo img { width: 100%; }
  .more__item h3 { font-size: 21px; }
  .more__item p { line-height: 32px; }
  .use__title, .alt__item h3 { font-size: 28px; }
  .alt__title { font-size: 32px; letter-spacing: -0.64px; }
  .alt__list { gap: 24px; }

  /* Quote */
  .section--quote .quote { padding: 0 22px; }
  .quote p { font-size: 20px; line-height: 1.3; }
  .quote__avatar { width: 56px; height: 56px; }
  .quote__name { font-size: 28px; }
  .quote__role { font-size: 16px; }

  /* What users say */
  .tcard { padding: 24px; }

  /* Chaos */
  .chaos__text { font-size: 24px; }

  /* Footer */
  .footer { padding: 56px 22px; }
  .footer__inner { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 28px; }
  .footer__title { font-size: 42px; letter-spacing: -0.84px; margin-bottom: 28px; }
  .footer__text p { font-size: 20px; letter-spacing: -0.4px; }
  .footer__mark { position: static; width: 130px; }
}

/* ============================================================
   Desktop vertical lock — each section gets its exact Figma frame
   height so the page doesn't drift. Content is vertically centered.
   Only applies ≥1024px; tablet/mobile keep natural flow.
   ============================================================ */
@media (min-width: 1024px) {
  .section .section__title { margin-bottom: 80px; }
  .hero          { min-height: 1472px; }
  .section--logos { min-height: 762px;  padding-top: 160px; padding-bottom: 0; }
  .section--logos .section__title { margin-bottom: 80px; }
  .section--quote { min-height: 568px;  display: flex; flex-direction: column; justify-content: center; }
  .section--howitworks { min-height: 1610px; display: flex; flex-direction: column; justify-content: center; }
  .section--howitworks .section__title { margin-bottom: 80px; }
  .ai            { min-height: 979px; }
  .ai__cols      { padding-bottom: 0; }
  .section--more  { min-height: 1065px; display: flex; flex-direction: column; justify-content: center; }
  .section--uses  { min-height: 945px;  display: flex; flex-direction: column; justify-content: center; }
  .section--testimonials { min-height: 1252px; display: flex; flex-direction: column; justify-content: center; }
  .section--alt   { min-height: 789px;  display: flex; flex-direction: column; justify-content: center; }
  .section--chaos { min-height: 1068px; display: flex; flex-direction: column; justify-content: center; }
  .section--cta   { min-height: 434px;  display: flex; flex-direction: column; justify-content: center; align-items: center; }
}
