*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #0a0a0a;
  --cream: #e8e6df;
  --paper: #fafaf7;
  --yellow: #ffe500;
  --white: #ffffff;
  --muted: #374151;
  --mid: #4b5563;
  --dim: #6b7280;
  --soft: #c9c6bd;
  --olive: #3a3520;
  --line: #e5e3dc;
  --ink-soft: #3a3a3a;
  --ink-edge: #2a2a2a;
  --font: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --footer-reveal: clamp(420px, 72vh, 760px);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  overflow-x: clip;
  max-width: 100%;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
  background: var(--yellow);
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.wordmark {
  font: 700 24px/1 var(--font);
  letter-spacing: -0.05em;
  background: transparent;
}

.badge {
  background: var(--yellow);
  border: 1px solid var(--ink);
  padding: 5px 9px;
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.08em;
}

.label {
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-bottom: 14px;
}

.label--yellow {
  color: var(--yellow);
}

.label--dim {
  color: #9ca3af;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  color: var(--mid);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  display: inline-block;
  animation: lobbidot 2s infinite;
  flex: none;
}

@keyframes lobbidot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
}

.btn {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 11px 18px;
  font: 700 13px var(--font);
  text-align: center;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  border-radius: 0;
}

.btn:hover {
  background: var(--yellow);
  color: var(--ink);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--dark:hover {
  background: var(--yellow);
  color: var(--ink);
}

.btn--yellow {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
  padding: 14px 22px;
  font: 700 14px var(--font);
}

.btn--yellow:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--dim);
  padding: 15px 24px;
  font: 700 15px var(--font);
}

.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn--ink-on-yellow {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
  padding: 18px 30px;
  font: 700 16px var(--font);
}

.btn--ink-on-yellow:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  will-change: opacity, transform;
}

.site-header.is-visible,
.site-header.is-menu-open {
  border-bottom-color: var(--ink);
}

.site-header.is-menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    will-change: auto;
    transform: none;
  }

  .site-header.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__nav {
  margin-left: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-header__nav a {
  font: 500 14px var(--font);
  padding: 4px 6px;
}

.site-header__nav .btn {
  padding: 11px 18px;
  font: 700 13px var(--font);
}

.site-header__nav .nav-text {
  font: 500 14px var(--font);
}

.menu-btn {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.mobile-nav {
  display: none;
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 18px 18px;
  flex-direction: column;
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  color: var(--paper);
  font: 500 16px var(--font);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-edge);
  background: transparent;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  background: var(--yellow);
  color: var(--ink);
}

/* Hero */

.hero {
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}

.hero__stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.05) 0 2px,
    transparent 2px 16px
  );
  pointer-events: none;
}

.hero__wash {
  position: absolute;
  inset: -20% 0 auto;
  width: 100%;
  height: 70%;
  background: radial-gradient(
    ellipse 55% 60% at 50% 45%,
    rgba(255, 229, 0, 0.28) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 44px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  min-height: 100vh;
  box-sizing: border-box;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  width: 100%;
  max-width: 860px;
  flex: none;
}

.hero__brand {
  font: 700 clamp(56px, 7.5vw, 84px) / 0.85 var(--font);
  letter-spacing: -0.07em;
  margin: 0;
  animation: hero-in 0.7s ease-out both;
}

.hero__headline {
  font: 500 18px / 1.3 var(--font);
  letter-spacing: -0.02em;
  color: var(--muted);
  max-width: 420px;
  margin: 0;
  text-wrap: balance;
  animation: hero-in 0.7s ease-out 0.08s both;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  animation: hero-in 0.7s ease-out 0.16s both;
}

.hero__cta .btn--yellow {
  padding: 10px 20px;
  font: 700 14px var(--font);
}

.hero__note {
  margin: 0;
  font: 400 13px / 1.4 var(--mono);
  letter-spacing: 0.04em;
  color: var(--mid);
}

.hero__logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__logos li {
  display: flex;
  align-items: center;
}

.hero__logos img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Freehand before → after story */

.hero__story {
  --shot-w: min(620px, 46vw, calc((100vh - 220px) * 1.6));
  margin: 0;
  width: 100%;
  max-width: 1280px;
  flex: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.12fr);
  align-items: center;
  justify-items: center;
  gap: 6px 12px;
  overflow: visible;
  animation: hero-in 0.8s ease-out 0.24s both;
}

.hero__shot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 0;
  width: 100%;
  overflow: visible;
}

.hero__shot--after {
  z-index: 4;
  padding: 24px 48px 36px;
  box-sizing: content-box;
  overflow: visible;
  gap: 18px;
}

.hero__tag {
  font: 700 11px / 1 var(--mono);
  letter-spacing: 0.16em;
  color: var(--dim);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 5px 9px;
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 var(--ink);
  position: relative;
  z-index: 1;
}

.hero__tag--after {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-14px) rotate(2.5deg);
  z-index: 0;
  margin-bottom: 4px;
}

.hero__frame {
  position: relative;
  width: 100%;
  border: 2.5px solid var(--ink);
  background: var(--paper);
  padding: 7px;
  box-shadow:
    4px 5px 0 rgba(10, 10, 10, 0.12),
    0 0 0 1px rgba(10, 10, 10, 0.04);
}

.hero__frame::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 18%;
  width: 42px;
  height: 14px;
  background: rgba(255, 229, 0, 0.72);
  border: 1px solid rgba(10, 10, 10, 0.35);
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 2;
}

.hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  border: 1.5px solid var(--ink);
  filter: contrast(1.02) saturate(0.92);
}

.hero__shot--before .hero__frame {
  width: min(100%, calc(var(--shot-w) * 0.92));
  height: auto;
  transform: rotate(-3.5deg);
  overflow: visible;
}

.hero__shot--before .hero__frame img {
  filter: grayscale(0.4) contrast(0.95);
}

.hero__stack {
  position: relative;
  width: min(100%, var(--shot-w));
  height: auto;
  margin: 0 auto;
  cursor: pointer;
  outline: none;
  overflow: visible;
  z-index: 2;
}

.hero__stack .hero__frame {
  box-sizing: border-box;
  transform-origin: 55% 60%;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform;
  overflow: visible;
}

.hero__stack .hero__frame:not(.hero__frame--front) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.hero__stack .hero__frame:not(.hero__frame--front) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--paper);
}

.hero__stack .hero__frame--front {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero__stack .hero__frame--front img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__stack .hero__frame:nth-child(1) {
  transform: rotate(10deg) translate(18px, -4px);
  z-index: 1;
}

.hero__stack .hero__frame:nth-child(2) {
  transform: rotate(6.5deg) translate(11px, -2px);
  z-index: 2;
}

.hero__stack .hero__frame:nth-child(3) {
  transform: rotate(3.5deg) translate(5px, 0);
  z-index: 3;
}

.hero__stack .hero__frame:nth-child(4) {
  transform: rotate(1.5deg);
  z-index: 4;
}

.hero__stack .hero__frame:nth-child(4)::before {
  left: auto;
  right: 16%;
  transform: rotate(6deg);
  background: rgba(255, 229, 0, 0.85);
}

.hero__stack .hero__frame:nth-child(1)::before,
.hero__stack .hero__frame:nth-child(2)::before,
.hero__stack .hero__frame:nth-child(3)::before {
  display: none;
}

.hero__stack.is-splayed .hero__frame:nth-child(1),
.hero__stack.is-splayed .hero__frame:nth-child(2),
.hero__stack.is-splayed .hero__frame:nth-child(3),
.hero__stack.is-splayed .hero__frame:nth-child(4) {
  transform: translate(var(--tx, 0), var(--ty, 0)) rotate(var(--rot, 0deg));
  box-shadow:
    6px 8px 0 rgba(10, 10, 10, 0.14),
    0 0 0 1px rgba(10, 10, 10, 0.04);
}

.hero__stack.is-splayed .hero__frame:nth-child(1) { z-index: 11; }
.hero__stack.is-splayed .hero__frame:nth-child(2) { z-index: 12; }
.hero__stack.is-splayed .hero__frame:nth-child(3) { z-index: 13; }
.hero__stack.is-splayed .hero__frame:nth-child(4) { z-index: 14; }

.hero__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  min-width: 88px;
  padding-top: 10px;
  z-index: 1;
  align-self: center;
  position: relative;
}

.hero__arrow-svg {
  overflow: visible;
}

.hero__arrow-svg--h {
  width: 100px;
  height: 48px;
  display: block;
}

.hero__arrow-svg--v {
  display: none;
  width: 48px;
  height: 88px;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__brand,
  .hero__headline,
  .hero__cta,
  .hero__story {
    animation: none;
  }

  .hero__stack .hero__frame {
    transition: none;
  }
}

/* Sections */

.section {
  border-bottom: 1px solid var(--ink);
  padding: 88px 0;
}

.section--paper {
  background: var(--paper);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
}

.section h2 {
  font: 700 44px / 1 var(--font);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-lede {
  font: 400 17px / 1.6 var(--font);
  color: var(--muted);
  max-width: 620px;
  margin: 12px 0 40px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}

.section-head h2 {
  flex: none;
}

.section-head__rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
  margin-bottom: 10px;
}

.section-head__meta {
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  color: var(--dim);
  padding-bottom: 8px;
  flex: none;
}

/* Gets / Steps */

.gets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card__num {
  font: 700 40px / 1 var(--font);
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
  paint-order: stroke fill;
}

.card h3 {
  font: 700 20px / 1.2 var(--font);
  letter-spacing: -0.02em;
}

.card p {
  font: 400 15px / 1.55 var(--font);
  color: var(--muted);
}

/* Integrations */

.integrations {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.integrations__row .label {
  margin-bottom: 12px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--ink);
  background: var(--cream);
  padding: 10px 14px;
  font: 500 13px var(--mono);
  letter-spacing: 0.04em;
}

.chip img {
  display: block;
  width: 20px;
  height: 20px;
  flex: none;
  object-fit: contain;
}

.chip--muted {
  background: transparent;
  color: var(--mid);
  border-style: dashed;
}

.chip--muted img {
  opacity: 0.85;
}

/* Compare */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 900px;
}

.compare__item {
  border: 1px solid var(--ink);
  padding: 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.compare__item--before {
  background: var(--cream);
}

.compare__item--after {
  background: var(--yellow);
}

.compare__label {
  font: 500 10px var(--mono);
  letter-spacing: 0.1em;
  color: var(--dim);
  width: 70px;
  flex: none;
  padding-top: 3px;
}

.compare__item--after .compare__label {
  color: var(--mid);
}

.compare__quote {
  font: 700 16px var(--font);
}

.compare__body p {
  margin-top: 6px;
  font: 400 14px / 1.5 var(--font);
  color: var(--mid);
}

.compare__item--after .compare__body p {
  color: var(--olive);
}

/* Moments */

.moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.moment {
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.moment__label {
  border-bottom: 1px solid var(--ink);
  padding: 12px 16px;
  font: 500 10px var(--mono);
  letter-spacing: 0.12em;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.moment__label img {
  display: block;
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink);
}

.moment__body {
  padding: 20px 16px 22px;
}

.moment h3 {
  font: 700 17px / 1.2 var(--font);
}

/* Honest lists */

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.checklist {
  border-top: 1px solid var(--ink);
}

.checklist li {
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  display: flex;
  gap: 14px;
  align-items: baseline;
  font: 400 16px / 1.5 var(--font);
}

.checklist li span {
  font: 700 14px var(--mono);
  flex: none;
}

.checklist--muted li {
  color: var(--mid);
}

.checklist--muted li span {
  color: var(--dim);
}

/* Beta */

.beta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.beta__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.beta__copy .label {
  margin-bottom: 0;
}

.beta__copy h2 {
  font: 700 52px / 1 var(--font);
  letter-spacing: -0.05em;
}

.beta__copy > p {
  font: 400 17px / 1.65 var(--font);
  color: var(--soft);
  max-width: 460px;
}

.beta__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.beta__actions .btn--yellow {
  border-color: var(--yellow);
  padding: 15px 24px;
  font: 700 15px var(--font);
}

.beta__actions .btn--yellow:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.beta__asks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.beta__asks .label {
  margin-bottom: 0;
}

.ask {
  border: 1px solid var(--ink-soft);
  padding: 22px;
  display: flex;
  gap: 16px;
}

.ask__num {
  font: 700 22px var(--font);
  color: var(--yellow);
  line-height: 1;
}

.ask h3 {
  font: 700 16px var(--font);
}

/* FAQ */

#faq h2 {
  margin-bottom: 36px;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  border-top: 1px solid var(--ink);
}

.faq__item {
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
}

.faq__item h3 {
  font: 700 17px var(--font);
}

.faq__item p {
  margin-top: 8px;
  font: 400 15px / 1.6 var(--font);
  color: var(--mid);
}

/* CTA band */

.cta-band {
  background: var(--yellow);
}

.cta-band__inner {
  padding: 80px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font: 700 48px / 1 var(--font);
  letter-spacing: -0.05em;
  text-wrap: balance;
  max-width: 640px;
}

.cta-band__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-band__action p {
  margin: 0;
  font: 400 13px var(--font);
  color: var(--olive);
  text-align: center;
  max-width: none;
}

/* Footer — fixed stage; page scrolls over it */

main {
  position: relative;
  z-index: 1;
  background: var(--cream);
  margin-bottom: var(--footer-reveal);
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: var(--footer-reveal);
  background: var(--ink);
  color: var(--paper);
  overflow: clip;
  pointer-events: none;
}

.site-footer__stage {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: clip;
  pointer-events: none;
}

.site-footer__giant {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translate(-50%, 0);
  margin: 0;
  font: 700 clamp(120px, 32vw, 340px) / 0.7 var(--font);
  letter-spacing: -0.08em;
  color: var(--yellow);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding: 0 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  pointer-events: auto;
}

.site-footer__tagline {
  font: 400 15px / 1.5 var(--font);
  color: rgba(250, 250, 247, 0.72);
  max-width: 320px;
}

.site-footer__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(250, 250, 247, 0.18);
}

.site-footer__mark {
  font: 700 14px / 1 var(--mono);
  letter-spacing: 0.12em;
  color: var(--yellow);
}

.site-footer__links {
  display: flex;
  gap: 20px;
  font: 400 13px / 1 var(--mono);
  letter-spacing: 0.04em;
}

.site-footer__links a {
  color: var(--paper);
  padding: 3px 5px;
}

.site-footer__links a:hover {
  color: var(--ink);
  background: var(--yellow);
}

/* Mobile sticky bar — hidden on desktop */

.mobile-bar {
  display: none;
}

/* ========== Mobile ========== */

@media (max-width: 900px) {
  body {
    /* Mobile bar clearance lives in the footer, not body —
       body padding created a cream strip in the reveal. */
    padding-bottom: 0;
  }

  .container {
    padding: 0 18px;
  }

  .site-header__inner {
    padding: 0 18px;
    height: 56px;
    gap: 10px;
  }

  .wordmark {
    font-size: 20px;
  }

  .badge {
    padding: 4px 7px;
    font-size: 9px;
  }

  .site-header__nav {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .hero__inner {
    padding: 64px 18px 40px;
    gap: 18px;
    min-height: 0;
  }

  .hero__copy {
    gap: 14px;
    align-items: center;
    text-align: center;
  }

  .hero__brand {
    font-size: 64px;
    letter-spacing: -0.06em;
  }

  .hero__headline {
    font: 500 17px / 1.35 var(--font);
    max-width: none;
  }

  .hero__cta {
    align-items: center;
    margin-top: 4px;
  }

  .hero__cta .btn--yellow {
    display: none;
  }

  .hero__note {
    text-align: center;
    font-size: 12px;
  }

  .hero__logos {
    justify-content: center;
  }

  .hero__story {
    --shot-w: min(100%, 340px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    flex: none;
    margin-top: 28px;
  }

  .hero__shot--before .hero__frame {
    width: min(100%, 320px);
    height: auto;
  }

  .hero__shot--after {
    padding: 8px 18px 24px;
    gap: 12px;
  }

  .hero__tag--after {
    transform: rotate(2.5deg);
    margin-bottom: 0;
  }

  .hero__stack {
    width: min(100%, 340px);
    height: auto;
  }

  .hero__stack .hero__frame:not(.hero__frame--front) {
    height: 100%;
  }

  .hero__stack.is-splayed .hero__frame:nth-child(1) {
    --tx: -18%;
    --ty: 22%;
    --rot: -12deg;
  }

  .hero__stack.is-splayed .hero__frame:nth-child(2) {
    --tx: -10%;
    --ty: -20%;
    --rot: -6deg;
  }

  .hero__stack.is-splayed .hero__frame:nth-child(3) {
    --tx: 16%;
    --ty: -18%;
    --rot: 9deg;
  }

  .hero__stack.is-splayed .hero__frame:nth-child(4) {
    --tx: 12%;
    --ty: 16%;
    --rot: 4deg;
  }

  .hero__arrow {
    padding: 10px 0 14px;
    min-width: 0;
    gap: 8px;
  }

  .hero__arrow-svg--h {
    display: none;
  }

  .hero__arrow-svg--v {
    display: block;
  }

  .section {
    padding: 48px 0;
  }

  .section h2 {
    font: 700 32px / 1.02 var(--font);
    letter-spacing: -0.04em;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
  }

  .section-head__rule {
    display: none;
  }

  .section-head__meta {
    order: -1;
    padding-bottom: 0;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .section-lede {
    font-size: 16px;
    margin: 10px 0 22px;
  }

  .gets {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 20px;
    gap: 9px;
  }

  .card__num {
    font-size: 30px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .integrations {
    gap: 22px;
  }

  .chip {
    padding: 9px 12px;
    font-size: 12px;
  }

  .compare {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }

  .compare__item {
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .compare__label {
    width: auto;
    padding-top: 0;
    font-size: 9px;
  }

  .compare__quote {
    font-size: 15px;
    line-height: 1.3;
  }

  .moments {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .moment__label {
    padding: 10px 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .moment__body {
    padding: 14px 12px 16px;
  }

  .moment h3 {
    font-size: 15px;
  }

  .lists {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .label {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .checklist li {
    padding: 13px 0;
    gap: 12px;
    font-size: 15px;
  }

  .checklist li span {
    font-size: 13px;
  }

  .beta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .beta__copy h2 {
    font: 700 40px / 1 var(--font);
    letter-spacing: -0.045em;
  }

  .beta__copy > p {
    font-size: 16px;
    line-height: 1.6;
    max-width: none;
    margin-bottom: 0;
  }

  .beta__actions {
    flex-direction: column;
  }

  .beta__actions .btn {
    display: block;
    text-align: center;
    padding: 17px;
    font-size: 15px;
  }

  .beta__actions .btn--ghost {
    display: none;
  }

  .ask {
    padding: 18px;
    gap: 14px;
  }

  .ask__num {
    font-size: 20px;
  }

  .ask h3 {
    font-size: 15px;
  }

  #faq h2 {
    margin-bottom: 20px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq__item {
    padding: 18px 0;
  }

  .faq__item h3 {
    font: 700 16px / 1.3 var(--font);
  }

  .faq__item p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.55;
  }

  .cta-band__inner {
    padding: 48px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .cta-band h2 {
    font: 700 34px / 1.02 var(--font);
    letter-spacing: -0.045em;
  }

  .cta-band__action {
    display: none;
  }

  :root {
    --footer-reveal: clamp(400px, 68vh, 580px);
    --mobile-bar-h: calc(72px + env(safe-area-inset-bottom));
  }

  .site-footer__giant {
    top: 8%;
    font-size: clamp(84px, 30vw, 148px);
    letter-spacing: -0.07em;
  }

  .site-footer__inner {
    padding: 0 18px calc(20px + var(--mobile-bar-h));
    gap: 16px;
  }

  .site-footer__tagline {
    font-size: 13px;
    line-height: 1.45;
    max-width: 16rem;
  }

  .site-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
  }

  .mobile-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: var(--paper);
    border-top: 1px solid var(--ink);
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    align-items: center;
    gap: 12px;
  }

  .mobile-bar__title {
    font: 700 13px / 1.2 var(--font);
  }

  .mobile-bar__sub {
    font: 400 11px / 1.3 var(--font);
    color: var(--mid);
  }

  .mobile-bar .btn {
    padding: 14px 20px;
    font: 700 14px var(--font);
    flex: none;
  }

  .mobile-bar > div {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero__brand {
    font-size: 56px;
  }

  .hero__headline {
    font-size: 17px;
  }

  .moments {
    grid-template-columns: 1fr 1fr;
  }
}
