/* =====================================================================
   Beeylo Business — marketing site.
   Light, one amber, big type. The magic is a soft glow behind the product
   and pieces of real interface floating in the feature cards.
   ===================================================================== */

@font-face {
  font-family: "Satoshi";
  src: url("../fonts/satoshi-var.woff2") format("woff2-variations");
  font-weight: 300 900; font-style: normal; font-display: swap;
}

:root {
  --ink: #0f1013; --ink-2: #3a3c43; --muted: #6f717a;
  --cream: #fffdf8; --paper: #ffffff; --ground: #f2f2ef; --column: #edece7;
  --amber: #f5b400; --amber-edge: #e0a300; --amber-lite: #ffe9a8; --amber-wash: #fff9ea;
  --good: #189a55; --late: #b4232f;
  --line: rgba(15,16,19,.09); --line-soft: rgba(15,16,19,.055);
  --f: "Satoshi", -apple-system, "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --edge: clamp(20px, 5vw, 64px); --wrap: 1120px; --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--f); color: var(--ink); background: var(--cream); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
::selection { background: var(--amber-lite); color: var(--ink); }
:focus-visible { outline: 2px solid var(--amber-edge); outline-offset: 3px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--edge)); margin-inline: auto; }

/* ---------- type ---------- */
h1, h2, h3 { font-weight: 800; letter-spacing: -.03em; line-height: 1.02; text-wrap: balance; }
h1 { font-size: clamp(40px, 6.4vw, 84px); font-weight: 900; letter-spacing: -.045em; line-height: .98; }
h2 { font-size: clamp(32px, 4.6vw, 56px); letter-spacing: -.035em; }
h3 { font-size: clamp(19px, 1.9vw, 23px); letter-spacing: -.02em; line-height: 1.2; }
.lede { font-size: clamp(18px, 1.55vw, 21px); color: var(--ink-2); line-height: 1.5; max-width: 34em; text-wrap: pretty; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 22px; border-radius: 12px; border: 1px solid var(--line); font-weight: 700; font-size: 16px; background: var(--paper); cursor: pointer; transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); border-color: var(--amber-edge); color: #111; box-shadow: 0 6px 18px -8px rgba(224,163,0,.7); }
.btn-primary:hover { background: #ffc01f; box-shadow: 0 10px 24px -8px rgba(224,163,0,.8); }
.btn-ghost:hover { border-color: rgba(15,16,19,.22); }
.btn svg { width: 16px; height: 16px; }
.textlink { font-weight: 700; color: var(--ink-2); display: inline-flex; align-items: center; gap: 6px; }
.textlink:hover { color: var(--ink); }
.textlink svg { width: 14px; height: 14px; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--edge); background: color-mix(in srgb, var(--cream) 94%, transparent); border-bottom: 1px solid transparent; transition: border-color .2s; }
.nav.scrolled { border-bottom-color: var(--line-soft); }
.brand { display: flex; align-items: center; gap: 9px; }
.brand .mark { width: 30px; height: 30px; } .brand .word { height: 18px; width: auto; }
.brand .tag { margin-left: 4px; padding: 3px 8px; border-radius: 6px; font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--ink); color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }
.nav .btn { padding: 10px 16px; font-size: 14.5px; }
@media (max-width: 720px) { .nav-links .hide-m { display: none; } }

/* ---------- sections ---------- */
section { padding-block: clamp(76px, 10vw, 150px); position: relative; }
.section-head { max-width: 40em; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { margin-top: 16px; }

/* ---------- the glow ---------- */
/* A soft amber light that sits behind the product. Blurred, low, never in
   the way of the text. This is the whole "magic" budget of the page. */
.glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: visible; }
.glow::before {
  content: ""; position: absolute; left: 50%; top: var(--gy, 55%); width: min(1100px, 120vw); aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(245,180,0,.34), rgba(255,209,102,.16) 45%, rgba(255,253,248,0) 72%);
  filter: blur(40px); opacity: .9;
}

/* ---------- hero ---------- */
.hero { padding-top: clamp(64px, 9vw, 128px); padding-bottom: 0; overflow: visible; }
.hero-copy { position: relative; z-index: 1; max-width: 50em; }
.hero h1 { margin-bottom: 26px; }
.hero .lede { margin-bottom: 30px; }
.hero-note { margin-top: 14px; font-size: 14px; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }

/* signup: one field, one button, everywhere the same */
.signup { display: flex; gap: 8px; flex-wrap: wrap; max-width: 560px; }
.signup input { flex: 1 1 260px; padding: 15px 18px; border-radius: 12px; border: 1px solid var(--line); background: var(--paper); outline: none; font-size: 16px; }
.signup input:focus { border-color: var(--amber-edge); box-shadow: 0 0 0 4px var(--amber-lite); }
.signup .btn { white-space: nowrap; }
.signup-ok { margin-top: 12px; font-size: 15px; color: var(--good); font-weight: 700; }

/* ---------- the board replica ---------- */
.stage { position: relative; margin-top: clamp(48px, 6vw, 84px); padding: 0 var(--edge); }
.stage .glow { --gy: 40%; }
.board-frame {
  position: relative; z-index: 1; contain: layout paint;
  width: min(1240px, 100%); margin-inline: auto;
  background: var(--ground); border: 1px solid var(--line);
  border-radius: 22px 22px 0 0; border-bottom: 0;
  box-shadow: 0 40px 100px -30px rgba(15,16,19,.28), 0 0 0 1px rgba(255,255,255,.6) inset;
  overflow: hidden; font-size: 13px;
  --app-ink2: #4c4940; --app-ink3: #8a867c; --app-line: #e7e6e0;
}
.app { display: grid; grid-template-columns: 224px 1fr; min-height: 560px; }
@media (max-width: 860px) { .app { grid-template-columns: 1fr; } .app-side { display: none; } }
.app-side { padding: 22px 14px 16px; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: 4px; }
.app-brand { display: flex; align-items: center; gap: 8px; padding: 0 6px 18px; }
.app-brand img { width: 28px; height: 28px; }
.app-brand b { font-size: 18px; font-weight: 900; letter-spacing: -.02em; } .app-brand b i { color: var(--amber); font-style: normal; }
.app-brand small { display: block; font-size: 10.5px; font-weight: 700; color: var(--app-ink3); letter-spacing: .03em; }
.nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 11px; font-weight: 700; color: var(--app-ink2); font-size: 13px; }
.nav-item.on { background: var(--amber); color: #111; box-shadow: 0 1px 2px rgba(160,110,0,.22); }
.nav-item .n { margin-left: auto; min-width: 22px; padding: 1px 6px; border-radius: 8px; text-align: center; background: #e7e6e0; font-size: 11px; font-weight: 800; font-variant-numeric: tabular-nums; }
.nav-item.on .n { background: rgba(17,17,17,.14); }
.nav-item svg { width: 17px; height: 17px; flex: none; color: var(--app-ink3); } .nav-item.on svg { color: #111; }
.money { margin-top: auto; background: #fff; border: 1px solid var(--app-line); border-radius: 16px; padding: 12px 13px; box-shadow: 0 1px 2px rgba(20,19,15,.05); }
.money .lbl { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 800; color: var(--app-ink2); }
.money .lbl::before { content: "€"; color: var(--amber-edge); font-weight: 900; }
.money .amt { margin-top: 6px; font-size: 19px; font-weight: 900; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.money .late { margin-top: 3px; font-size: 11px; font-weight: 700; color: var(--late); display: flex; align-items: center; gap: 6px; }
.money .late::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--late); }
.money .sub { font-size: 11px; color: var(--app-ink3); margin-top: 2px; }
.app-main { padding: 22px 24px 0; min-width: 0; }
.app-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.app-top h4 { font-size: 22px; font-weight: 900; letter-spacing: -.03em; line-height: 1.2; } .app-top h4 em { font-style: normal; color: var(--amber-edge); }
.app-top .go { display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 10px; background: var(--amber); border: 1px solid var(--amber-edge); font-weight: 800; font-size: 12.5px; color: #111; white-space: nowrap; }
.app-top .go svg { width: 13px; height: 13px; }
.board { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; align-items: start; }
@media (max-width: 640px) { .board { grid-template-columns: 1fr; } .col-done, .col-wait { display: none; } }
.col { background: var(--column); border-radius: 16px 16px 0 0; padding: 12px 10px 0; border-top: 3px solid var(--c, #c9c6bc); min-height: 420px; display: flex; flex-direction: column; gap: 8px; }
.col-now { --c: var(--amber-edge); } .col-wait { --c: #9a968b; } .col-done { --c: var(--good); }
.col-head { display: flex; align-items: center; gap: 8px; padding: 2px 4px 6px; font-weight: 800; font-size: 14px; }
.col-head svg { width: 17px; height: 17px; color: var(--c); } .col-head .n { margin-left: auto; color: var(--app-ink3); font-weight: 800; font-variant-numeric: tabular-nums; }

/* cards: shared by the board, the comparison and the feature fragments */
.card { position: relative; background: #fff; border: 1px solid var(--app-line, #e7e6e0); border-radius: 13px; padding: 11px 12px 10px; box-shadow: 0 1px 2px rgba(20,19,15,.05); display: flex; flex-direction: column; gap: 8px; transition: transform .45s var(--ease), opacity .45s var(--ease); font-size: 13px; --app-ink2: #4c4940; --app-ink3: #8a867c; }
#demo .card { will-change: transform, opacity; }
.card.leaving { transform: translateX(28px) scale(.98); opacity: 0; }
.card.folding { overflow: hidden; transition: height .38s var(--ease), padding .38s var(--ease), margin .38s var(--ease), border-width .38s var(--ease), opacity .2s; }
.card.arriving { animation: arrive .45s var(--ease); }
@keyframes arrive { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.card-top { display: flex; gap: 9px; align-items: flex-start; }
.tile { width: 28px; height: 28px; border-radius: 8px; flex: none; display: grid; place-items: center; font-size: 10.5px; font-weight: 900; letter-spacing: -.02em; }
.card-title { font-weight: 800; font-size: 13px; line-height: 1.3; letter-spacing: -.005em; }
.card-title::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); margin-right: 7px; vertical-align: 2px; }
.col-wait .card-title::before, .col-done .card-title::before, .card.quiet .card-title::before { display: none; }
.card-line { font-size: 12px; color: var(--app-ink3); line-height: 1.35; }
.card-amt { margin-left: auto; font-weight: 800; font-size: 13px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.chip { padding: 2px 8px; border-radius: 6px; background: #edece7; color: #6e6a61; font-size: 11px; font-weight: 800; }
.due { font-size: 11.5px; font-weight: 700; color: var(--app-ink3); } .due.late { color: var(--late); } .due.today { color: #ae520b; }
.card-btn { align-self: flex-end; padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 800; border: 1px solid var(--app-line); background: #fff; }
.col-now .card-btn, .card-btn.p { background: var(--amber); border-color: var(--amber-edge); color: #111; }
.check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; background: var(--good); display: grid; place-items: center; } .check svg { width: 12px; height: 12px; color: #fff; }
.stamp { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; }
.stamp span { padding: 6px 14px; border-radius: 9px; background: rgba(245,180,0,.96); border: 2.5px solid var(--amber-edge); font-size: 18px; font-weight: 900; letter-spacing: .12em; color: #111; transform: rotate(-8deg) scale(1.6); opacity: 0; box-shadow: 0 8px 22px rgba(20,19,15,.18); }
.card.stamped .stamp span { animation: stamp .3s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes stamp { to { transform: rotate(-8deg) scale(1); opacity: 1; } }

/* ---------- three facts ---------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .facts { grid-template-columns: 1fr; } .fact + .fact { border-top: 1px solid var(--line); } }
.fact { padding: clamp(26px, 3.5vw, 44px) clamp(18px, 3vw, 36px); }
.fact + .fact { border-left: 1px solid var(--line); }
@media (max-width: 760px) { .fact + .fact { border-left: 0; } }
.fact b { display: block; font-size: clamp(22px, 2.4vw, 30px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 8px; }
.fact p { color: var(--muted); font-size: 15.5px; }

/* ---------- old vs new ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
@media (max-width: 820px) { .versus { grid-template-columns: 1fr; } }
.pane { border-radius: 20px; padding: 26px; border: 1px solid var(--line); background: var(--paper); }
.pane h3 { margin-bottom: 6px; } .pane p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.pane-old { background: #f6f5f1; }
.pane-new { position: relative; border-color: var(--amber-lite); box-shadow: 0 30px 60px -36px rgba(224,163,0,.55); }
.inbox { list-style: none; display: flex; flex-direction: column; border-top: 1px solid var(--line-soft); }
.inbox li { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; align-items: baseline; padding: 9px 4px; border-bottom: 1px solid var(--line-soft); font-size: 13px; color: var(--ink-2); }
.inbox li b { font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inbox li span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inbox li small { color: var(--muted); font-variant-numeric: tabular-nums; }
.inbox li.unread b { font-weight: 800; }
.inbox li.noise { color: var(--muted); } .inbox li.noise b { color: var(--muted); font-weight: 600; }
.stack { display: flex; flex-direction: column; gap: 10px; }
.versus-note { margin-top: 22px; color: var(--muted); font-size: 15px; text-align: center; }

/* ---------- manifesto ---------- */
.lines { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 48px); }
.lines h2 { font-size: clamp(32px, 5.4vw, 68px); max-width: 15em; }
.lines h2.dim { color: var(--muted); font-weight: 700; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 20px; } }
.step .num { font-size: 44px; font-weight: 900; letter-spacing: -.04em; line-height: 1; color: var(--amber-edge); font-variant-numeric: tabular-nums; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; } .step p { color: var(--ink-2); font-size: 16px; }

/* ---------- pieces of real interface (used by the slideshow) ---------- */
.tones { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px; }
.tones span { padding: 5px 11px; border-radius: 9px; border: 1px solid #e7e6e0; background: #f6f5f2; font-size: 12px; font-weight: 800; color: #4c4940; }
.tones span.on { background: #fdf1ce; border-color: var(--amber-edge); color: #6b4e00; }
.reply { background: var(--amber-wash); border: 1px solid #fdf1ce; border-radius: 12px 12px 0 0; border-bottom: 0; padding: 12px 14px; font-size: 13px; line-height: 1.55; white-space: pre-line; color: var(--ink); }
.dayrow { background: #fff; border: 1px solid #e7e6e0; border-bottom: 0; border-radius: 14px 14px 0 0; overflow: hidden; }
.dayrow .dh { display: flex; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #f0efe9; font-weight: 800; font-size: 13px; }
.dayrow .dh small { color: #8a867c; font-weight: 600; }
.dayrow .dr { display: flex; align-items: center; gap: 12px; padding: 11px 14px; font-size: 13px; }
.dayrow .dr time { font-weight: 800; font-variant-numeric: tabular-nums; width: 46px; }
.dayrow .dr b { font-weight: 800; display: block; } .dayrow .dr small { color: #8a867c; }
.dayrow .dr .card-btn { margin-left: auto; align-self: center; }

/* ---------- what it handles: one feature at a time ----------
   A soft panel. Short words on the left, a stack of real interface on the
   right that turns over by itself. Only the middle card is in focus; the two
   next to it hang back, dimmed and a touch smaller. */
.reel {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.02fr auto; gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4.4vw, 60px);
  border-radius: clamp(20px, 2.4vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(158deg, #f7f6f1 0%, #eceae4 55%, #e4e2db 100%);
  box-shadow: 0 40px 90px -60px rgba(15, 16, 19, .5);
}
.reel-glow { position: absolute; right: -6%; top: 50%; width: min(680px, 70%); aspect-ratio: 1.3; transform: translateY(-50%); pointer-events: none; background: radial-gradient(closest-side, rgba(245, 180, 0, .3), rgba(255, 253, 248, 0) 70%); filter: blur(46px); }
.reel-copy { position: relative; z-index: 2; }

/* the words. One set on top of the other, only the current one lit. */
.reel-words { position: relative; margin-top: 22px; min-height: 8.6em; }
.reel-word { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reel-word.on { position: relative; opacity: 1; transform: none; pointer-events: auto; }
.reel-word h2 { font-size: clamp(36px, 4.6vw, 62px); letter-spacing: -.04em; }
.reel-word p { margin-top: 6px; font-size: clamp(20px, 2.2vw, 30px); font-weight: 800; letter-spacing: -.03em; line-height: 1.12; color: var(--muted); text-wrap: balance; }

/* the two buttons and the counter */
.reel-bar { display: flex; align-items: center; gap: 10px; margin-top: clamp(22px, 3vw, 34px); }
.reel-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; color: var(--ink); transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease); }
.reel-btn:hover { border-color: var(--amber-edge); background: var(--amber-wash); transform: translateY(-1px); box-shadow: 0 8px 20px -12px rgba(224, 163, 0, .9); }
.reel-btn svg { width: 17px; height: 17px; }
.reel-btn[data-reel-prev] svg { transform: rotate(-90deg); }
.reel-btn[data-reel-next] svg { transform: rotate(90deg); }
.reel-count { margin-left: 8px; font-size: 14px; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.reel-count b { color: var(--ink); font-weight: 800; }

/* the stack */
.reel-stage { position: relative; z-index: 1; height: clamp(340px, 38vw, 470px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%); }
.reel-slide { position: absolute; left: 0; right: 0; top: 50%; height: clamp(212px, 24vw, 272px); will-change: transform, opacity; transition: transform .62s var(--ease), opacity .5s var(--ease), filter .5s var(--ease); }
.reel-shot { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 20px 22px 34px; border-radius: 20px; background: var(--ground); border: 1px solid var(--line); box-shadow: 0 26px 55px -30px rgba(15, 16, 19, .5); }
.reel-shot > * { max-width: 430px; width: 100%; margin-inline: auto; }
.reel-tag { position: absolute; left: 22px; bottom: 14px; max-width: none; width: auto; margin: 0; font-size: 12px; font-weight: 800; letter-spacing: .04em; color: #8a867c; }
/* inside the stack a fragment is a whole card again, not one that bleeds off */
.reel-shot .reply { border-radius: 12px; border-bottom: 1px solid #fdf1ce; }
.reel-shot .dayrow { border-radius: 14px; border-bottom: 1px solid #e7e6e0; }
.reel-shot .card { box-shadow: 0 8px 26px -18px rgba(15, 16, 19, .5); }

/* the dots down the right edge */
.reel-dots { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 8px; }
.reel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 4px; background: #cfcdc5; cursor: pointer; transition: height .4s var(--ease), background .4s var(--ease); }
.reel-dot.on { height: 26px; background: var(--ink); }

@media (max-width: 900px) {
  .reel { grid-template-columns: 1fr auto; gap: 22px 18px; }
  .reel-copy { grid-column: 1 / -1; }
  .reel-words { min-height: 6.4em; }
  .reel-stage { height: clamp(320px, 70vw, 420px); }
  .reel-dots { flex-direction: column; }
}
@media (max-width: 520px) {
  .reel-shot { padding: 16px 16px 30px; }
  .reel-tag { left: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .reel-slide, .reel-word { transition: none; }
}

/* ---------- one at a time ---------- */
.focus { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 880px) { .focus { grid-template-columns: 1fr; } }
.keys { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.key { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.key kbd { min-width: 34px; padding: 4px 8px; border-radius: 7px; text-align: center; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 2px 0 var(--line); font: 700 13px var(--f); }
.focus-shot { position: relative; z-index: 1; background: var(--ground); border: 1px solid var(--line); border-radius: 20px; padding: 22px; box-shadow: 0 30px 70px -30px rgba(15,16,19,.25); }
.focus-wrap { position: relative; } .focus-wrap .glow { --gy: 50%; } .focus-wrap .glow::before { width: 90%; }
.dots { display: flex; justify-content: center; gap: 6px; margin-bottom: 18px; }
.dots i { width: 8px; height: 8px; border-radius: 4px; background: #d9d7cf; } .dots i.done { background: var(--amber); } .dots i.cur { width: 22px; background: var(--ink); }
.focus-shot .card { padding: 18px 20px 16px; gap: 12px; }
.focus-shot .card-title { font-size: 17px; }
.focus-shot .sum { font-size: 13.5px; color: var(--app-ink2); line-height: 1.5; }
.focus-shot .reply { border-radius: 12px; border-bottom: 1px solid #fdf1ce; }
.focus-shot .btns { display: flex; gap: 8px; }
.focus-shot .btns span { flex: 1; text-align: center; padding: 8px; border-radius: 9px; border: 1px solid var(--app-line); font-weight: 800; font-size: 12.5px; }
.focus-shot .btns span.p { background: var(--amber); border-color: var(--amber-edge); flex: 2; }
.behind { height: 10px; margin: 0 14px; background: rgba(255,255,255,.7); border: 1px solid #e7e6e0; border-top: 0; border-radius: 0 0 12px 12px; } .behind + .behind { margin: 0 28px; }

/* ---------- versus other tools ---------- */
/* Two columns, row by row. The left side is muted and crossed off, the right
   side carries the dot. No checkmark table: that is the enterprise look we
   are arguing against. */
.compare { border: 1px solid var(--line); border-radius: 20px; background: var(--paper); overflow: hidden; }
.compare-head, .compare .row { display: grid; grid-template-columns: 1fr 1.25fr; }
.compare-head { background: var(--ground); border-bottom: 1px solid var(--line); }
.compare-head span { padding: 14px 24px; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.compare-head span:last-child { color: var(--ink); border-left: 1px solid var(--line); }
.compare .row + .row { border-top: 1px solid var(--line-soft); }
.compare .row span { padding: 18px 24px; font-size: 16px; line-height: 1.45; }
.compare .row span:first-child { color: var(--muted); display: flex; gap: 12px; align-items: flex-start; }
.compare .row span:first-child::before { content: "\00d7"; flex: none; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 2px; color: var(--muted); }
.compare .row span:last-child { color: var(--ink); font-weight: 600; border-left: 1px solid var(--line); background: var(--amber-wash); display: flex; gap: 12px; align-items: flex-start; }
.compare .row span:last-child::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); margin-top: 9px; }
@media (max-width: 720px) {
  .compare-head { display: none; }
  .compare .row { grid-template-columns: 1fr; }
  .compare .row span:last-child { border-left: 0; border-top: 1px dashed var(--line); }
}

/* ---------- founder ---------- */
.note { max-width: 44em; padding: clamp(26px, 4vw, 44px); border-radius: 22px; background: var(--paper); border: 1px solid var(--line); }
.note p { font-size: clamp(17px, 1.5vw, 19px); color: var(--ink-2); margin-bottom: 1em; text-wrap: pretty; }
.note p:last-of-type { margin-bottom: 18px; }
.note .sig { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--muted); } .note .sig b { color: var(--ink); }
.note .sig .av { width: 36px; height: 36px; border-radius: 50%; background: #1f6b57; color: #fff; display: grid; place-items: center; font-weight: 900; }

/* ---------- pricing ---------- */
.price { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .price { grid-template-columns: 1fr; } }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.price li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--ink-2); }
.price li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%; background: var(--amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5' fill='none' stroke='%23111' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.price-card { padding: 34px; border-radius: 22px; background: var(--ink); color: var(--cream); }
.price-card .eyebrow { color: rgba(255,253,248,.6); }
.price-card .big { font-size: clamp(30px, 3.6vw, 44px); font-weight: 900; letter-spacing: -.03em; margin: 14px 0 6px; line-height: 1.05; }
.price-card p { color: rgba(255,253,248,.72); font-size: 15.5px; margin-bottom: 22px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- closing ---------- */
.final { text-align: center; }
.final h2 { margin-inline: auto; max-width: 14em; }
.final .lede { margin: 18px auto 30px; }
.final .signup { margin-inline: auto; justify-content: center; }

footer { padding: 30px var(--edge) 40px; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; font-size: 14px; color: var(--muted); }
footer nav { display: flex; gap: 20px; } footer a:hover { color: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .card, .card.leaving, .card.arriving { transition: none; animation: none; }
  .card.stamped .stamp span { animation: none; opacity: 1; transform: rotate(-8deg); }
}


/* =====================================================================
   The special layer. Four effects, each with a job. Rebuilt from the React
   libraries (Aceternity, Magic UI) in plain CSS so the site stays light.
   ===================================================================== */

/* ---- 1. hero title: words arrive one by one, the last one gets underlined */
.w { display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  [data-words].ready .w { opacity: 0; filter: blur(10px); transform: translateY(.18em); animation: wordIn .7s var(--ease) forwards; animation-delay: calc(var(--i) * 80ms + 120ms); }
  @keyframes wordIn { to { opacity: 1; filter: blur(0); transform: none; } }
}
.under { position: relative; white-space: nowrap; }
.under::after {
  content: ""; position: absolute; left: .02em; right: .02em; bottom: .04em; height: .12em; border-radius: .06em;
  background: var(--amber); z-index: -1; transform-origin: left; transform: scaleX(0);
}
@media (prefers-reduced-motion: no-preference) {
  [data-words].ready .under::after { animation: draw .7s var(--ease) forwards; animation-delay: 900ms; }
  @keyframes draw { to { transform: scaleX(1); } }
}
@media (prefers-reduced-motion: reduce) { .under::after { transform: scaleX(1); } }

/* ---- 2. manifesto: text that lights up as you scroll through it */
.rt-section { padding: 0; height: 240vh; }
.rt-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; }
.rt { font-size: clamp(22px, 3vw, 38px); font-weight: 700; letter-spacing: -.005em; line-height: 1.35; max-width: 26em; text-wrap: balance; display: flex; flex-direction: column; gap: clamp(14px, 2.2vw, 30px); }
.rt .line { display: block; }
.rt .w { color: rgba(15,16,19,.14); transition: color .25s linear; }
.rt .w.on { color: var(--ink); }
.rt .w.dot::after { content: ""; display: inline-block; width: .28em; height: .28em; border-radius: 50%; background: var(--amber); margin-left: .18em; vertical-align: .08em; opacity: 0; transition: opacity .3s; }
.rt .w.dot.on::after { opacity: 1; }
@media (max-width: 720px) { .rt-section { height: auto; padding-block: clamp(76px, 10vw, 150px); } .rt-sticky { position: static; height: auto; } .rt .w { color: var(--ink); } .rt .w.dot::after { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rt .w { color: var(--ink); } }

/* ---- 3. spotlight: a soft amber light follows the cursor over the card */
.spot { position: relative; }
.spot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(245,180,0,.16), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.spot:hover::after { opacity: 1; }
.spot { transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease); }
.pane-new.spot:hover { border-color: rgba(224,163,0,.55); transform: translateY(-2px); box-shadow: 0 30px 60px -30px rgba(224,163,0,.5); }
.price-card.spot::after { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(245,180,0,.22), transparent 60%); }

/* ---- 4. beam: a light travels along the border of the "with Beeylo" pane */
@property --beam { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.beam::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: conic-gradient(from var(--beam), transparent 0 72%, rgba(245,180,0,.0) 76%, var(--amber) 88%, rgba(245,180,0,0) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
@media (prefers-reduced-motion: no-preference) { .beam::before { animation: beam 7s linear infinite; } @keyframes beam { to { --beam: 360deg; } } }

/* ---- 5. dot grid behind the product, fading out at the edges */
.stage::before {
  content: ""; position: absolute; inset: -40px 0 0; z-index: 0; pointer-events: none;
  background: radial-gradient(rgba(15,16,19,.16) 1px, transparent 1.2px) 0 0 / 22px 22px;
  -webkit-mask: radial-gradient(60% 55% at 50% 40%, #000 30%, transparent 75%); mask: radial-gradient(60% 55% at 50% 40%, #000 30%, transparent 75%);
}

/* ---- 6. primary buttons: a sheen sweeps across on hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none; }
.btn-primary:hover::after { left: 120%; }


/* =====================================================================
   The personal layer (borrowed from Flect): a serif word in the headline,
   a warm wash behind the top of the page, a pill in the sentence, a
   hairline email field, and a real person next to the product.
   ===================================================================== */
.serif { font-family: "Instrument Serif", Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; }
h1 .serif { font-size: 1.06em; line-height: 1; }
.lede .serif { color: var(--ink); font-size: 1.08em; }

.hero { text-align: center; padding-top: clamp(56px, 8vw, 110px); }
.hero-copy { margin-inline: auto; }
.hero .lede { margin-inline: auto; margin-bottom: 34px; max-width: 32em; }
.hero-copy .signup { margin-inline: auto; }

.wash { position: absolute; inset: 0 0 auto; height: 120vh; z-index: 0; pointer-events: none;
  background: radial-gradient(90% 60% at 70% 0%, rgba(245,180,0,.22), transparent 60%),
              radial-gradient(70% 50% at 10% 10%, rgba(255,233,168,.55), transparent 60%);
}
.hero > .wrap { position: relative; z-index: 1; }

.pill { display: inline-block; padding: .1em .55em .12em; border-radius: .5em; background: var(--amber-lite); color: #6b4e00; font-weight: 800; font-size: .9em; transform: rotate(-3deg); box-shadow: 0 2px 0 rgba(224,163,0,.35); margin: 0 .1em; }

.signup.line { gap: 0; align-items: center; border-bottom: 1px solid rgba(15,16,19,.18); padding-bottom: 10px; max-width: 520px; }
.signup.line input { border: 0; background: transparent; padding: 12px 6px; box-shadow: none; font-size: 17px; }
.signup.line input:focus { box-shadow: none; }
.signup.line input::placeholder { color: var(--muted); }
.signup.line .btn { border-radius: 999px; padding: 11px 18px; }

.media { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: clamp(44px, 6vw, 72px); align-items: stretch; }
@media (max-width: 760px) { .media { grid-template-columns: 1fr; } }
.photo { margin: 0; border-radius: 26px; overflow: hidden; aspect-ratio: 4 / 4.6; background: #e9dcc4; }
.photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.product { position: relative; border-radius: 26px; overflow: hidden; padding: clamp(22px, 3vw, 36px); text-align: left; display: flex; flex-direction: column; justify-content: center;
  background: radial-gradient(120% 90% at 30% 0%, #fff4c9 0%, #f6e6b8 35%, #efe1c4 70%, #e8dcc6 100%); }
.product::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 80% 100%, rgba(245,180,0,.35), transparent 70%); pointer-events: none; }
.product > * { position: relative; z-index: 1; }
.product .dots { margin-bottom: 14px; }
.product .focus-card { padding: 18px 20px 16px; gap: 12px; box-shadow: 0 30px 60px -30px rgba(15,16,19,.35); }
.product .focus-card .card-title { font-size: 17px; }
.product .sum { font-size: 13.5px; color: #4c4940; line-height: 1.5; }
.product .reply { border-radius: 12px; border-bottom: 1px solid #fdf1ce; }
.product .btns { display: flex; gap: 8px; }
.product .btns span { flex: 1; text-align: center; padding: 8px; border-radius: 9px; border: 1px solid #e7e6e0; background: #fff; font-weight: 800; font-size: 12.5px; }
.product .btns span.p { background: var(--amber); border-color: var(--amber-edge); flex: 2; }

#board .stage { margin-top: clamp(28px, 4vw, 48px); }


/* =====================================================================
   The slide. One rounded panel with sky, a headline that talks about the
   reader's week, and a person. No buttons, no product. This is the one
   place on the page that isn't selling anything, and that is why it sells.
   ===================================================================== */
.slide-wrap { padding: clamp(24px, 4vw, 48px) var(--edge) 0; }
.slide {
  position: relative; overflow: hidden; border-radius: 30px;
  width: min(1320px, 100%); margin-inline: auto;
  padding: clamp(80px, 12vw, 160px) var(--edge) clamp(72px, 10vw, 140px);
  text-align: center; color: #2a2118;
  background: linear-gradient(180deg, #d9e5f1 0%, #e6e6e2 45%, #f3e6d0 100%);
}
.sky { position: absolute; inset: 0; pointer-events: none; }
.sky i {
  position: absolute; border-radius: 50%; filter: blur(46px); opacity: .85;
  background: radial-gradient(closest-side, rgba(255,250,240,.95), rgba(255,240,215,.55) 55%, rgba(255,255,255,0) 75%);
}
.sky i:nth-child(1) { width: 62%; aspect-ratio: 1.6; left: -18%; top: 34%; }
.sky i:nth-child(2) { width: 56%; aspect-ratio: 1.5; right: -16%; top: 6%; opacity: .7; }
.sky i:nth-child(3) { width: 70%; aspect-ratio: 1.8; left: 18%; bottom: -20%; }
@media (prefers-reduced-motion: no-preference) {
  .sky i { animation: drift 26s ease-in-out infinite alternate; }
  .sky i:nth-child(2) { animation-duration: 34s; animation-delay: -8s; }
  .sky i:nth-child(3) { animation-duration: 40s; animation-delay: -16s; }
  @keyframes drift { to { transform: translate(4%, -3%) scale(1.06); } }
}
.slide-copy { position: relative; max-width: 40em; margin-inline: auto; }
.slide h2 { font-size: clamp(30px, 4.4vw, 54px); letter-spacing: -.03em; color: #2a2118; }
.slide h2 .serif { font-size: 1.08em; }
.slide p { margin: 26px auto 0; font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: #3f3428; max-width: 34em; text-wrap: pretty; }
.slide p .serif { color: #2a2118; font-size: 1.08em; }
.slide-photo { position: relative; margin: clamp(44px, 6vw, 72px) auto calc(-1 * clamp(72px, 10vw, 140px)); width: min(520px, 80%); aspect-ratio: 4 / 3; border-radius: 22px 22px 0 0; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(42,33,24,.35); }
.slide-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }


/* ---------- the statement: one big line, one small truth under it ---------- */
.statement { text-align: center; }
.statement .huge { font-size: clamp(56px, 11vw, 150px); font-weight: 900; letter-spacing: -.05em; line-height: .92; }
.statement .huge .serif { font-size: 1.02em; }
.statement .lede { margin: 28px auto 0; max-width: 30em; }
.settings { margin: clamp(36px, 5vw, 56px) auto 0; width: min(520px, 100%); text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 30px 60px -36px rgba(15,16,19,.3); overflow: hidden; }
.settings-head { padding: 12px 18px; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line-soft); background: var(--ground); }
.settings-row { display: grid; grid-template-columns: auto auto 1fr auto; gap: 12px; align-items: center; padding: 16px 18px; font-size: 15px; }
.settings-row .ok { width: 9px; height: 9px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(24,154,85,.15); }
.settings-row b { font-weight: 800; }
.settings-row span:not(.ok) { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.settings-row em { font-style: normal; font-weight: 800; color: var(--good); font-size: 13px; }
.settings-note { padding: 14px 18px 16px; border-top: 1px dashed var(--line); font-size: 14px; color: var(--muted); font-style: italic; font-family: "Instrument Serif", Georgia, serif; font-size: 17px; }
