/* Ornamentry: marketing site.
   Palette comes from the mark: ink and bone, lit with a beige-to-gold metallic gradient.
   The gold lives in accents and gradient type; everything else stays ink and bone. */

:root {
  --ink: #0b0a0a;
  --ink-2: #131111;
  --ink-3: #1b1818;
  --line: rgba(241, 236, 226, .09);
  --line-2: rgba(241, 236, 226, .16);
  --bone: #f1ece2;
  --bone-2: #b9b1a5;
  --bone-3: #7d766d;
  --gold: #d9b574;
  --gold-2: #ecd39f;
  --gold-glow: rgba(217, 181, 116, .3);
  --gold-grad: linear-gradient(120deg, #f6ead2 0%, #e6cb95 28%, #c69a52 52%, #e9cf98 74%, #f8eedb 100%);
  --sand: #ecd9b4;

  --display: "Unbounded", "Segoe UI Variable Display", system-ui, sans-serif;
  --body: "Instrument Sans", "Segoe UI Variable Text", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "JetBrains Mono", "Cascadia Mono", Consolas, monospace;

  --r-s: 10px;
  --r-m: 18px;
  --r-l: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
/* film grain over everything */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .07;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; border-radius: 6px; }
.mono { font-family: var(--mono); }
.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--bone); color: var(--ink); padding: 8px 14px; border-radius: 8px;
}
.skip:focus { top: 12px; }

/* Seigaiha waves, the mark's own motif, as a reusable background */
.seigaiha, .hero-bg, .final-bg {
  --a: transparent;
  --b: rgba(241, 236, 226, .06);
  background-image:
    radial-gradient(circle at 100% 150%, var(--a) 24%, var(--b) 24%, var(--b) 28%, var(--a) 28%, var(--a) 36%, var(--b) 36%, var(--b) 40%, transparent 40%, transparent),
    radial-gradient(circle at 0 150%, var(--a) 24%, var(--b) 24%, var(--b) 28%, var(--a) 28%, var(--a) 36%, var(--b) 36%, var(--b) 40%, transparent 40%, transparent),
    radial-gradient(circle at 50% 100%, var(--b) 10%, var(--a) 10%, var(--a) 23%, var(--b) 23%, var(--b) 30%, var(--a) 30%, var(--a) 43%, var(--b) 43%, var(--b) 50%, var(--a) 50%, var(--a) 63%, var(--b) 63%, var(--b) 71%, transparent 71%, transparent),
    radial-gradient(circle at 100% 50%, var(--b) 5%, var(--a) 5%, var(--a) 15%, var(--b) 15%, var(--b) 20%, var(--a) 20%, var(--a) 29%, var(--b) 29%, var(--b) 34%, var(--a) 34%, var(--a) 44%, var(--b) 44%, var(--b) 49%, transparent 49%, transparent),
    radial-gradient(circle at 0 50%, var(--b) 5%, var(--a) 5%, var(--a) 15%, var(--b) 15%, var(--b) 20%, var(--a) 20%, var(--a) 29%, var(--b) 29%, var(--b) 34%, var(--a) 34%, var(--a) 44%, var(--b) 44%, var(--b) 49%, transparent 49%, transparent);
  background-size: 80px 40px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font: 700 15px/1 var(--display);
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--ink);
  background: var(--gold-grad);
  background-size: 200% 100%;
  background-position: 0 0;
  padding: 16px 24px;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 0 0 0 var(--gold-glow), inset 0 -3px 0 rgba(0, 0, 0, .14);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-position .6s var(--ease);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px) rotate(-1deg); background-position: 100% 0; box-shadow: 0 12px 40px -6px var(--gold-glow), inset 0 -3px 0 rgba(0, 0, 0, .14); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.btn-big { font-size: clamp(15px, 1.4vw, 18px); padding: 20px 30px; }
.btn-sm { font-size: 13px; padding: 11px 18px; }
.btn-ghost {
  background: transparent; color: var(--bone);
  box-shadow: inset 0 0 0 1.5px var(--line-2);
}
.btn-ghost:hover { background: var(--bone); color: var(--ink); box-shadow: none; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px var(--gutter);
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(11, 10, 10, .72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-color: var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font: 700 17px var(--display); letter-spacing: -.01em; }
.brand img { transition: transform .8s var(--ease); }
.brand:hover img { transform: rotate(120deg); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--bone-2); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav-links a:hover { color: var(--bone); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) var(--gutter) clamp(56px, 7vw, 110px);
}
.hero-bg {
  position: absolute; inset: -80px 0 0; z-index: -1;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
}
.hero-bg::after {
  content: ""; position: absolute; width: 60vw; height: 60vw; right: -10vw; top: -10vw;
  background: radial-gradient(circle, var(--gold-glow), transparent 60%);
  filter: blur(40px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 22px;
  font: 600 13px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--bone-2);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); box-shadow: 0 0 12px var(--sand); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

h1, h2, h3 { font-family: var(--display); margin: 0; letter-spacing: -.03em; }
h1 {
  font-weight: 900;
  font-size: clamp(40px, 5vw, 84px);
  line-height: .92;
  text-transform: uppercase;
}
h1 .line { display: block; }
h1 .line.accent { display: table; } /* shrink to the text so the gradient spans every glyph */
/* gold gradient text */
.accent, .zeros b, .big-count, .card h3 em {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: .08em; /* glyphs overhang the box; keep the last one inside the gradient */
}
.undo-word { position: relative; display: inline-block; }
/* an inline-block escapes its parent's text clip, so it carries the gradient itself */
.accent .undo-word { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.undo-word::after {
  /* a little undo arrow scribble */
  content: "↶"; position: absolute; top: -.42em; right: -.34em;
  font: 400 .42em var(--serif); color: var(--sand); transform: rotate(-12deg);
}
.lede { max-width: 34em; margin: 26px 0 32px; font-size: clamp(17px, 1.3vw, 19px); color: var(--bone-2); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
/* release line + SmartScreen note under the download buttons: quiet, never competing with the CTA */
.dl-info { margin-top: 16px; max-width: 34em; }
.dl-release { margin: 0; font-size: 12.5px; letter-spacing: .02em; color: var(--bone-3); font-variant-numeric: tabular-nums; }
.dl-release[title] { cursor: help; }
.dl-note { margin: 6px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--bone-3); }
.dl-note b { font-weight: 600; color: var(--bone-2); }
.proof { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 0; margin: 30px 0 0; font: 500 13px var(--mono); color: var(--bone-3); }
.proof li::before { content: "✓ "; color: var(--sand); }

/* ---------- hero laptop ---------- */
.laptop { position: relative; margin: 0; width: 100%; max-width: 860px; justify-self: center; }
.laptop::before {
  /* warm light spilling from the screen */
  content: ""; position: absolute; inset: -10% -6% 10%; z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(217, 181, 116, .22), transparent 65%);
  filter: blur(24px);
}
.laptop::after {
  /* contact shadow on the "table" */
  content: ""; position: absolute; left: 4%; right: 4%; bottom: -5%; height: 8%; z-index: -1;
  background: radial-gradient(ellipse at 50% 0, rgba(0, 0, 0, .8), transparent 70%);
}
.lid {
  position: relative;
  width: 88%; margin: 0 auto;
  padding: 1.6% 1.6% 2%;
  background: #080808;
  border-radius: 14px 14px 4px 4px;
  /* a hairline rim that catches the gold light */
  box-shadow:
    inset 0 0 0 1px rgba(236, 211, 159, .22),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
.lid::before {
  /* webcam */
  content: ""; position: absolute; top: .55%; left: 50%; width: 5px; height: 5px; margin-left: -2.5px;
  border-radius: 50%; background: #1d1c1b;
}
.screen {
  position: relative; aspect-ratio: 1234 / 835; overflow: hidden;
  border-radius: 3px; background: #141414;
}
.screen img { width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.screen::after {
  /* faint glass reflection */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .02) 35%, transparent 36%);
}
.deck {
  position: relative;
  height: 0; padding-bottom: 2.4%;
  background: linear-gradient(180deg, #c9bfae 0%, #8f8678 18%, #4a443d 60%, #211e1b 100%);
  border-radius: 1px 1px 14px 14px / 1px 1px 100% 100%;
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, .7);
}
.deck::before {
  /* the lip you open the lid with */
  content: ""; position: absolute; left: 50%; top: 0; width: 13%; height: 45%; transform: translateX(-50%);
  background: linear-gradient(180deg, #6d665c, #9a9183);
  border-radius: 0 0 8px 8px;
}

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--gold-grad);
  color: var(--ink);
  transform: rotate(-1.5deg) scale(1.02);
  margin: 10px 0 40px;
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee span {
  font: 900 clamp(22px, 3vw, 40px)/1 var(--display);
  text-transform: uppercase; letter-spacing: -.02em;
  padding: 18px 28px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee span::after { content: "✺"; font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 9vw, 130px) var(--gutter); }
.sec-head { margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 { max-width: 15em; }
.kicker { margin: 0 0 16px; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
h2 { font-weight: 900; font-size: clamp(34px, 5vw, 72px); line-height: .98; text-transform: uppercase; }

/* ---------- bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 14px;
}
.card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 2.4vw, 32px);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  transition: border-color .3s, transform .4s var(--ease);
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card h3 { font-weight: 700; font-size: clamp(22px, 2vw, 30px); line-height: 1.05; margin-bottom: 14px; }
.card h3 em { font: italic 400 1.15em var(--serif); letter-spacing: 0; padding-right: .08em; }
.card p { margin: 0; color: var(--bone-2); font-size: 16px; max-width: 36em; }
.card code { font: 600 .92em var(--mono); color: var(--sand); }
kbd {
  font: 600 12px var(--mono); color: var(--bone);
  background: var(--ink-3); border: 1px solid var(--line-2); border-bottom-width: 3px;
  border-radius: 6px; padding: 2px 7px;
}

.c-layers { grid-column: span 4; grid-row: span 2; background: radial-gradient(circle at 90% 110%, rgba(217, 181, 116, .24), transparent 55%), var(--ink-2); }
.c-layers h3 { font-size: clamp(32px, 4vw, 60px); font-weight: 900; text-transform: uppercase; }
.layer-pills { list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.layer-pills li {
  font: 600 clamp(14px, 1.3vw, 17px) var(--mono);
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line-2); color: var(--bone-3);
  animation: light 5s steps(1, end) infinite;
}
@keyframes light {
  0%, 100% { background: transparent; color: var(--bone-3); border-color: var(--line-2); }
  8%, 60% { background: var(--bone); color: var(--ink); border-color: var(--bone); }
}
.layer-pills li:nth-child(1) { animation-delay: .0s; } .layer-pills li:nth-child(2) { animation-delay: .12s; }
.layer-pills li:nth-child(3) { animation-delay: .24s; } .layer-pills li:nth-child(4) { animation-delay: .36s; }
.layer-pills li:nth-child(5) { animation-delay: .48s; } .layer-pills li:nth-child(6) { animation-delay: .6s; }
.layer-pills li:nth-child(7) { animation-delay: .72s; } .layer-pills li:nth-child(8) { animation-delay: .84s; }
.layer-pills li:nth-child(9) { animation-delay: .96s; } .layer-pills li:nth-child(10) { animation-delay: 1.08s; }

.c-undo { grid-column: span 2; grid-row: span 2; background: var(--gold-grad); border-color: var(--gold); color: var(--ink); }
.c-undo p { color: rgba(11, 10, 10, .72); }
.timeline { list-style: none; padding: 0 0 0 20px; margin: 26px 0 0; border-left: 2px dashed rgba(11, 10, 10, .35); }
.timeline li { position: relative; display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; font: 500 14px var(--mono); }
.timeline li::before { content: ""; position: absolute; left: -27px; top: 14px; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
.timeline li span { opacity: .6; }
.timeline .first::before { background: var(--bone); box-shadow: 0 0 0 2px var(--ink), 0 0 0 5px rgba(11, 10, 10, .25); }
.timeline .now b { background: var(--ink); color: var(--sand); padding: 0 6px; border-radius: 4px; }

.c-widgets { grid-column: span 3; }
.mini-widgets { position: relative; height: 80px; margin-top: 22px; }
.mw {
  position: absolute; font: 600 14px var(--mono);
  padding: 8px 12px; border-radius: 10px; background: var(--ink-3); border: 1px solid var(--line-2);
  animation: drift 6s var(--ease) infinite alternate;
}
.mw b { color: var(--gold); }
.mw-a { left: 0; top: 10px; font: 900 26px var(--display); padding: 6px 12px; }
.mw-b { left: 38%; top: 0; animation-delay: -2s; }
.mw-c { left: 58%; top: 42px; animation-delay: -4s; }
@keyframes drift { to { transform: translate(14px, -6px) rotate(1.5deg); } }

.c-zero { grid-column: span 3; }
.zeros { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.zeros div { display: flex; flex-direction: column; }
.zeros b { font: 900 clamp(56px, 7vw, 96px)/.9 var(--display); letter-spacing: -.05em; padding-right: .04em; }
.zeros span { font: 500 13px var(--mono); color: var(--bone-3); margin-top: 6px; }

.c-light { grid-column: span 2; }
.meter { height: 8px; border-radius: 99px; background: var(--ink-3); margin-top: 24px; overflow: hidden; }
.meter i { display: block; height: 100%; width: 9%; background: var(--sand); border-radius: 99px; animation: idle 3s ease-in-out infinite; }
@keyframes idle { 50% { width: 4%; } }

.c-multi { grid-column: span 2; }
.screens { display: flex; gap: 10px; margin-top: 22px; }
.scr { position: relative; flex: 1; aspect-ratio: 16 / 10; border: 2px solid var(--line-2); border-radius: 8px; background: var(--ink-3); }
.scr-b { flex: .8; }
.hop {
  position: absolute; width: 26%; height: 20%; top: 18%; left: 12%;
  background: var(--gold-grad); border-radius: 4px;
  animation: hop 4s var(--ease) infinite;
}
@keyframes hop { 0%, 35% { left: 12%; } 50%, 85% { left: 150%; } 100% { left: 12%; } }

.c-share { grid-column: span 2; }
.file { display: flex; align-items: center; gap: 12px; margin-top: 22px; font-size: 14px; color: var(--bone-2); }
.file-ico {
  display: grid; place-items: end center;
  width: 58px; height: 70px; padding-bottom: 8px;
  font: 700 9px var(--mono); color: var(--ink);
  background: linear-gradient(225deg, transparent 12px, var(--bone) 12px);
  border-radius: 6px;
  transform: rotate(-6deg);
  transition: transform .4s var(--ease);
}
.c-share:hover .file-ico { transform: rotate(6deg) translateY(-4px); }

.c-timer { grid-column: span 4; background: linear-gradient(120deg, var(--ink-2) 40%, #221c12); }
.big-count { margin-top: 20px; font-weight: 600; font-size: clamp(34px, 6vw, 84px); line-height: 1.05; letter-spacing: -.04em; font-variant-numeric: tabular-nums; white-space: nowrap; }

.c-preview { grid-column: span 2; }
.c-preview::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px;
  --a: transparent; --b: rgba(217, 181, 116, .35);
  background-image:
    radial-gradient(circle at 50% 100%, var(--b) 10%, var(--a) 10%, var(--a) 23%, var(--b) 23%, var(--b) 30%, var(--a) 30%, var(--a) 43%, var(--b) 43%, var(--b) 50%, var(--a) 50%, var(--a) 63%, var(--b) 63%, var(--b) 71%, transparent 71%);
  background-size: 60px 30px;
  border-radius: 50%;
  opacity: .8;
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps li { position: relative; padding: 28px 0 0; border-top: 2px solid var(--line-2); }
.steps .num { display: block; font: 900 clamp(72px, 10vw, 150px)/.8 var(--display); color: transparent; -webkit-text-stroke: 1.5px var(--bone-3); letter-spacing: -.06em; margin-bottom: 20px; transition: color .4s, -webkit-text-stroke-color .4s; }
.steps li:hover .num { color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-stroke-color: transparent; }
.steps li:last-child .num { -webkit-text-stroke-color: var(--sand); }
.steps li:last-child:hover .num { color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-stroke-color: transparent; }
.steps h3 { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 10px; text-transform: uppercase; font-weight: 700; }
.steps p { margin: 0; color: var(--bone-2); max-width: 30em; }

/* ---------- faq ---------- */
.faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.faq .sec-head { position: sticky; top: 100px; }
.faq h2 { font-size: clamp(34px, 3.8vw, 60px); }
.faq-list { border-top: 1px solid var(--line-2); }
details { border-bottom: 1px solid var(--line-2); }
summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0;
  font: 700 clamp(17px, 1.6vw, 21px)/1.25 var(--display); letter-spacing: -.01em;
  transition: color .2s;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; flex: none;
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  font: 400 22px var(--mono); border: 1px solid var(--line-2);
  transition: transform .3s var(--ease), background .2s, color .2s;
}
summary:hover { color: var(--gold-2); }
details[open] summary::after { transform: rotate(45deg); background: var(--gold-grad); color: var(--ink); border-color: var(--gold); }
details p { margin: 0 0 26px; max-width: 40em; color: var(--bone-2); }

/* ---------- final ---------- */
.final {
  position: relative; overflow: hidden;
  text-align: center;
  padding: clamp(90px, 13vw, 190px) var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.final-bg {
  position: absolute; inset: 0; z-index: -1;
  --b: rgba(217, 181, 116, .16);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 60%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 60%, #000, transparent 75%);
}
.final-mark { width: 96px; height: 96px; animation: spin 40s linear infinite; opacity: .95; }
@keyframes spin { to { transform: rotate(360deg); } }
.final h2 { font-size: clamp(38px, 6.6vw, 108px); }
.final-meta { margin: 0; color: var(--bone-3); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.final .dl-note { margin: -18px 0 0; max-width: 30em; }

/* ---------- footer ---------- */
.foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px;
  max-width: var(--max); margin: 0 auto;
  padding: 28px var(--gutter) 40px;
  border-top: 1px solid var(--line);
  color: var(--bone-3); font-size: 14px;
}
.foot p { margin: 0; }
.foot .brand { font-size: 15px; color: var(--bone); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .laptop { max-width: 760px; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .c-layers, .c-timer { grid-column: span 2; grid-row: auto; }
  .c-undo, .c-widgets, .c-zero, .c-light, .c-multi, .c-share, .c-preview { grid-column: span 1; grid-row: auto; }
  .c-zero { grid-column: span 2; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento > * { grid-column: auto !important; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .faq { grid-template-columns: 1fr; }
  .faq .sec-head { position: static; }
  .zeros b { font-size: 52px; }
  .marquee span { gap: 28px; padding: 14px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
