:root {
  --ink: #000;
  --paper: #fff;
  --wash: #f2f2f7;
  --muted: #8e8e93;
  --hairline: rgba(60, 60, 67, 0.18);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --enter: cubic-bezier(0.16, 1, 0.3, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --rounded: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--rounded);
  letter-spacing: -0.045em;
  font-weight: 800;
}
.brand span {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 7vw;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(1.4) blur(18px);
  border-bottom: 1px solid var(--hairline);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.topbar nav { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.topbar nav a { opacity: .62; transition: opacity 140ms var(--ease); }
.topbar nav a:hover { opacity: 1; }
.pill-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 650;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}
.pill-btn:hover { transform: translateY(-1px); background: #1c1c1e; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - 68px);
  padding: 48px 7vw 64px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.55); }
.spark {
  width: 10px;
  height: 10px;
  background: var(--ink);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  animation: sparkle 2.4s ease-in-out infinite;
}
@keyframes sparkle {
  0%, 100% { transform: scale(.86); opacity: .55; }
  50% { transform: scale(1); opacity: 1; }
}
.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.94;
}
.lede {
  max-width: 34rem;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: #3a3a3c;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.btn-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}
.btn-black:hover { transform: translateY(-2px); background: #1c1c1e; }
.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-stage { display: grid; justify-items: center; }
.stage-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.phone {
  width: min(340px, 78vw);
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.22));
}
.phone-bezel {
  position: relative;
  padding: 12px;
  border-radius: 46px;
  background: #0b0b0c;
  box-shadow: inset 0 0 0 1px #2c2c2e;
}
.island {
  position: absolute;
  z-index: 4;
  top: 22px;
  left: 50%;
  width: 112px;
  height: 28px;
  border-radius: 20px;
  background: #000;
  transform: translateX(-50%);
}
.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 19.4;
  border-radius: 36px;
  background: #111;
}
.look {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 28%, transparent 52%, rgba(0,0,0,.55));
}
.finder i {
  position: absolute;
  z-index: 3;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.78);
}
.finder i:nth-child(1) { top: 18px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 6px 0 0 0; }
.finder i:nth-child(2) { top: 18px; right: 14px; border-left: 0; border-bottom: 0; border-radius: 0 6px 0 0; }
.finder i:nth-child(3) { bottom: 18px; left: 14px; border-right: 0; border-top: 0; border-radius: 0 0 0 6px; }
.finder i:nth-child(4) { bottom: 18px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 6px 0; }

.scan-beam {
  position: absolute;
  z-index: 5;
  left: 8%;
  width: 84%;
  height: 14%;
  border-radius: 18px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.55), transparent);
  mix-blend-mode: overlay;
  opacity: 0;
}
.crop {
  position: absolute;
  z-index: 6;
  border: 1.5px solid rgba(255,255,255,.95);
  border-radius: 14px;
  box-shadow: 0 0 0 400px rgba(255,255,255,0);
  opacity: 0;
  transform: scale(.97);
}
.crop span {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}
.crop.jacket { left: 24%; top: 15%; width: 52%; height: 28%; }
.crop.jeans { left: 24%; top: 41%; width: 52%; height: 49%; }
.crop.shoes { left: 26%; top: 90%; width: 48%; height: 8%; }

.results {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: 16px;
  width: min(248px, calc(100% - 48px));
  display: grid;
  gap: 6px;
  transform: translateX(-50%);
}
.row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 16px 8px 8px;
  border-radius: 16px;
  color: #000;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(12px);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}
.row img {
  width: 52px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: #fff;
}
.row strong {
  display: block;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #000;
}
.row span { display: block; color: #8e8e93; font-size: 10px; font-weight: 500; margin-top: 2px; }
.row b {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #000;
}

.phone.is-scanning .scan-beam {
  animation: beam 5.2s var(--ease) both;
}
.phone.is-scanning .crop.jacket { animation: cropIn .55s var(--enter) .4s both; }
.phone.is-scanning .crop.jeans { animation: cropIn .55s var(--enter) 2s both; }
.phone.is-scanning .crop.shoes { animation: cropIn .55s var(--enter) 3.7s both; }
.phone.is-found .finder { opacity: 0; }
.phone.is-found .crop { opacity: 0; transition: opacity 280ms var(--ease); }
.phone.is-found .row {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--enter), transform 460ms var(--enter);
}
.phone.is-found .row:nth-child(1) { transition-delay: 40ms; }
.phone.is-found .row:nth-child(2) { transition-delay: 120ms; }
.phone.is-found .row:nth-child(3) { transition-delay: 200ms; }

@keyframes beam {
  0% { top: 14%; opacity: 0; }
  8% { opacity: 1; }
  32% { top: 20%; }
  36% { opacity: 0; }
  40% { top: 42%; opacity: 0; }
  44% { opacity: 1; }
  64% { top: 62%; }
  68% { opacity: 0; }
  72% { top: 84%; opacity: 0; }
  76% { opacity: 1; }
  96% { top: 88%; }
  100% { opacity: 0; }
}
@keyframes cropIn {
  from { opacity: 0; transform: scale(.97); }
  to { opacity: 1; transform: scale(1); }
}

.how { padding: 88px 7vw 96px; background: var(--wash); }
.how h2, .social h2, .less h2, .download h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.card {
  padding: 12px 12px 22px;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.card-media {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 20px;
  background: #111;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.picker {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.picker-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px 8px;
  color: #000;
  font-size: 13px;
}
.picker-bar span:first-child { color: #8e8e93; }
.picker-bar strong { text-align: center; font-size: 13px; font-weight: 600; }
.picker-add { text-align: right; color: #007aff; font-weight: 600; }
.picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex: 1;
  min-height: 0;
  background: #fff;
}
.pick {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.pick img {
  height: 100%;
  object-fit: cover;
}
.pick.is-on img { filter: brightness(.86); }
.tick {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #007aff;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}
.share-card { background: #111; }
.share-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.72);
}
.mini-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px 14px;
  border-radius: 18px 18px 0 0;
  background: #f2f2f7;
  color: #000;
}
.mini-sheet-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.mini-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}
.mini-sheet-head strong { display: block; font-size: 13px; }
.mini-sheet-head span { color: #8e8e93; font-size: 11px; }
.mini-apps { display: flex; }
.mini-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 58px;
  font-size: 10px;
  font-weight: 600;
}
.mini-app img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}
.card-media.detail-page {
  display: flex;
  flex-direction: column;
  background: var(--wash);
  height: 280px;
}
.detail-page > img {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background: #fff;
}
.detail-sheet {
  padding: 12px 12px 14px;
  background: #fff;
}
.detail-sheet p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.detail-sheet h4 {
  margin: 4px 0 8px;
  font-family: var(--rounded);
  font-size: 16px;
  letter-spacing: -.03em;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 13px;
}
.detail-row span { color: var(--muted); }
.seller-btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.76);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.chip.light { background: rgba(255,255,255,.92); color: #000; }
.card h3 { margin: 18px 8px 8px; font-size: 26px; }
.card > p { margin: 0 8px; color: var(--muted); font-size: 15px; line-height: 1.5; }

.social {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 720px;
  color: #fff;
  background: #000;
}
.social-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 7vw; }
.social .lede { color: rgba(255,255,255,.72); }
.points { list-style: none; margin: 36px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.16); }
.points li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-size: 15px;
}
.points b { color: rgba(255,255,255,.42); width: 28px; }
.social-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 5vw;
  background: #141416;
}
.tt-phone {
  position: relative;
  overflow: hidden;
  width: min(78%, 340px);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.tt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tt-phone.is-found .tt-rail,
.tt-phone.is-scanning .tt-rail { opacity: 0; pointer-events: none; }
.tt-crops {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.tt-crops .crop.shirt { left: 30%; top: 22%; width: 40%; height: 26%; }
.tt-crops .crop.jeans { left: 32%; top: 46%; width: 36%; height: 28%; }
.tt-crops .crop.shoes { left: 34%; top: 74%; width: 32%; height: 12%; }
.tt-phone.is-scanning .crop.shirt { animation: cropIn .55s var(--enter) .4s both; }
.tt-phone.is-scanning .crop.jeans { animation: cropIn .55s var(--enter) 2s both; }
.tt-phone.is-scanning .crop.shoes { animation: cropIn .55s var(--enter) 3.7s both; }
.tt-phone.is-found .crop { opacity: 0; }
.tt-results {
  left: 50%;
  bottom: 16px;
  width: min(248px, calc(100% - 36px));
  transform: translateX(-50%);
}
.tt-phone.is-found .row {
  opacity: 1;
  transform: none;
  transition: opacity 420ms var(--enter), transform 460ms var(--enter);
}
.tt-phone.is-found .row:nth-child(1) { transition-delay: 40ms; }
.tt-phone.is-found .row:nth-child(2) { transition-delay: 120ms; }
.tt-phone.is-found .row:nth-child(3) { transition-delay: 200ms; }
.social .row,
.social .row strong,
.social .row b {
  color: #000;
}
.share-sheet {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px 22px;
  border-radius: 22px 22px 0 0;
  background: #f2f2f7;
  color: #000;
  transform: translateY(108%);
  transition: transform 420ms cubic-bezier(0.05, 0.7, 0.1, 1);
}
.share-sheet,
.share-sheet strong,
.share-sheet .sheet-app {
  color: #000;
}
.tt-phone.is-sheet .share-sheet { transform: none; }
.sheet-handle {
  width: 36px;
  height: 5px;
  margin: 4px auto 14px;
  border-radius: 99px;
  background: rgba(60,60,67,.28);
}
.sheet-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.sheet-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #e5e5ea;
}
.sheet-head strong { display: block; font-size: 14px; }
.sheet-head span { color: var(--muted); font-size: 12px; }
.sheet-apps {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  padding: 2px 4px 4px;
}
.sheet-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: #000;
  font-size: 11px;
  font-weight: 600;
}
.sheet-app img,
.app-dot {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}
.sheet-app img { object-fit: cover; }
.app-dot.messages { background: #34c759; }
.app-dot.notes { background: #ffd60a; }
.app-dot.save { background: #007aff; }
.is-fitfind img {
  box-shadow: 0 0 0 0 rgba(0,0,0,.35);
}
.tt-phone.is-pick .is-fitfind img {
  animation: pickPulse 700ms var(--ease) infinite;
}
@keyframes pickPulse {
  50% { box-shadow: 0 0 0 6px rgba(0,0,0,.12); transform: scale(1.06); }
}
.tt-rail {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  transition: opacity 280ms var(--ease);
}
.tt-avatar {
  position: relative;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.tt-person {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #fa5189, #38e8db);
}
.tt-plus {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fe2c55;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
  transform: translateX(-50%);
}
.tt-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 44px;
}
.tt-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.tt-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}
.tt-action span:last-child {
  font-size: 11px;
  font-weight: 700;
}
.tt-share .tt-icon {
  border-radius: 50%;
}
.tt-phone.is-sharehot .tt-share .tt-icon {
  animation: shareHot .55s ease-in-out infinite alternate;
  background: rgba(255,255,255,.18);
}
@keyframes shareHot {
  to { transform: scale(1.12); background: rgba(255,255,255,.28); }
}

.less {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 96px 7vw;
}
.less-graphic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.deal-alts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.deal {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 22px;
  background: var(--wash);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.deal.found {
  display: flex;
  flex-direction: column;
}
.deal img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff;
}
.deal.found img {
  height: 200px;
  min-height: 0;
}
.deal.cheaper img { height: 132px; }
.deal-tag {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.deal-tag.save { background: #34c759; }
.deal strong { font-size: 14px; letter-spacing: -.02em; }
.deal > span:not(.deal-tag):not(.pricetag) { color: var(--muted); font-size: 12px; }
.deal b { font-size: 18px; }
.deal.cheaper b { color: #248a3d; }
.pricetag {
  position: absolute;
  top: 22px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px 6px 8px;
  border-radius: 3px 6px 6px 3px;
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  transform: rotate(8deg);
  box-shadow: 0 6px 14px rgba(0,0,0,.22);
}
.pricetag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px #111;
}

.download {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 88px 7vw 108px;
  background: var(--wash);
}
.download-icon { border-radius: 22px; margin-bottom: 22px; }
.download p { margin: 12px 0 28px; color: var(--muted); font-size: 17px; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7vw;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 13px;
}
.foot-brand { display: inline-flex; align-items: center; gap: 8px; }
.foot-brand img { border-radius: 6px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; }
.foot-links a { color: var(--ink); font-weight: 600; }
.foot-links a:hover { opacity: .55; }

.doc {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 7vw 96px;
}
.doc h1 { margin: 0 0 8px; font-size: clamp(36px, 5vw, 52px); }
.doc .updated { color: var(--muted); margin: 0 0 28px; }
.doc h2 { margin: 36px 0 12px; font-size: 22px; }
.doc p, .doc li { color: #3a3a3c; line-height: 1.6; }
.doc a { text-decoration: underline; text-underline-offset: 3px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 34px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--ink); }

@media (max-width: 980px) {
  .topbar nav { display: none; }
  .hero, .social, .less { grid-template-columns: 1fr; min-height: auto; }
  .hero { padding-top: 28px; }
  .hero-stage { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .social-visual { min-height: 560px; }
  .less { grid-template-columns: 1fr; }
  .deal-alts { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .phone .crop, .phone .row { opacity: 1; transform: none; }
  .scan-beam { display: none; }
}
