/* ===========================================================================
   theearlybird.co · Paper Signal

   Plain CSS on purpose. No framework and no build step, because this page
   has to load in under a second on a phone on 4G, which is what Meta
   traffic actually arrives on.

   Tokens are copied from the app's tokens.css rather than shared, because
   the whole point of this site is that it ships nothing but itself.
   =========================================================================== */

:root {
  --paper: #EFEDE8; --card: #FBFAF6; --line: #DBD7CC; --dot: #DAD6CB;
  --ink: #1B1C1E; --ink2: #3a3b3e; --ink-line: #34353a; --ink-txt: #F4F2ED; --ink-mut: #8f9094;
  --txt: #17181A; --dim: #6d6a62; --mut: #a09d93;
  --orange: #DF5830; --green: #2FB56B; --green2: #1f8f52; --amber: #EE9B3C; --amber2: #c4761d;
  --gold: #F2C14E; --gold2: #D99A28; --gold-ink: #3a2a06; --peri: #6B68E8; --grey: #9a968a;

  --ff: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --r-card: 20px; --r-panel: 16px; --r-tile: 14px; --r-pill: 999px;
  --sh-card: 0 10px 24px -18px rgba(30, 28, 22, .35);
  --sh-lift: 0 18px 34px -20px rgba(30, 28, 22, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--txt);
  font-family: var(--ff);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* ---- shared keyframes ---------------------------------------------------- */

@keyframes sweep { 0% { background-position: 120% 0; } 100% { background-position: -120% 0; } }
@keyframes pulse { 50% { opacity: .25; } }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes orbshift {
  0% { border-radius: 50%; background-position: 0% 0%; }
  50% { border-radius: 38% 62% 44% 56% / 42% 46% 54% 58%; background-position: 100% 100%; }
  100% { border-radius: 50%; background-position: 0% 0%; transform: rotate(1turn); }
}
@keyframes spin { to { transform: rotate(1turn); } }
@keyframes minishift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes ripple { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(3.2); opacity: 0; } }
@keyframes dotpop { from { transform: scale(.2); } 60% { transform: scale(1.5); } to { transform: scale(1); } }

/* ---- the one label style ------------------------------------------------- */

.k, .eyebrow, .proofline, .appsub, .potk, .toolk, .disc, .sd-top .crumb, .sd-head .st,
.sd-sec, .promptcard .pk, .stg .n, .qdemo .q, .rung .band, .rung .acc, .founder span b,
.ptoggle button, .price .tier, .price .yr, footer a, footer span, .sticky .t, .replay,
.marquee .item, .callout b, .matchmini .l, .live, .scank {
  font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

/* ---- scroll reveal ------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================================
   NAV
   =========================================================================== */

.nav {
  position: sticky; top: 0; z-index: 90;
  background: rgba(239, 237, 232, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(219, 215, 204, .7);
}
.nav .in {
  max-width: 1140px; margin: 0 auto; padding: 13px 22px;
  display: flex; align-items: center; gap: 16px;
}
/* Style A: the bird orange, the word in pixel type, lower case. */
.wordmark { display: inline-flex; align-items: center; gap: 9px; font-family: "Pixelify Sans", var(--ff); font-weight: 600; font-size: 19px; letter-spacing: -.01em; }
.wordmark img { width: 22px; height: 22px; image-rendering: pixelated; }
.wordmark.sm { font-size: 16px; gap: 7px; }
.wordmark.sm img { width: 18px; height: 18px; }
.nav .links { display: flex; gap: 2px; margin-left: auto; align-items: center; }
.nav .links a {
  font-size: 13.5px; font-weight: 600; color: var(--dim);
  padding: 9px 12px; border-radius: var(--r-pill);
  transition: color 180ms var(--ease), background 180ms var(--ease);
}
.nav .links a:hover { color: var(--txt); background: rgba(27, 28, 30, .05); }
.nav .cta {
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 13px;
  padding: 10px 16px; margin-left: 6px;
}
.nav .cta:hover { background: var(--orange); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 22px -10px rgba(223, 88, 48, .6); }
@media (max-width: 760px) { .nav .links a:not(.cta) { display: none; } }

/* ===========================================================================
   SECTION FURNITURE
   =========================================================================== */

section { padding: 100px 0 40px; position: relative; }
@media (max-width: 760px) { section { padding: 70px 0 20px; } }

.k { color: var(--orange); display: flex; align-items: center; gap: 10px; }

h2 {
  font-weight: 800; letter-spacing: -.035em;
  font-size: clamp(34px, 5vw, 56px); line-height: .98;
  margin: 12px 0 18px; text-wrap: balance;
}
h2 em { font-style: normal; color: var(--orange); }

.lead {
  max-width: 60ch; font-size: 16.5px; line-height: 1.6; color: var(--dim);
  margin: 0 0 36px;
}
.lead b { color: var(--txt); font-weight: 700; }

/* ---- buttons ------------------------------------------------------------- */

.btnrow { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: 0; border-radius: var(--r-pill); padding: 15px 24px;
  font-weight: 800; font-size: 15px;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease), border-color 200ms;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-coral { background: var(--orange); color: #fff; }
.btn-coral:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(223, 88, 48, .6); }
.btn-ghost { background: transparent; color: var(--dim); border: 1.4px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--txt); transform: translateY(-1px); }
.btn-gold { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(217, 154, 40, .6); }
.btn-ink { background: var(--ink); color: var(--ink-txt); }
.btn-ink:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -12px rgba(27, 28, 30, .7); }
.btn .rk { width: 16px; height: 16px; transform: rotate(45deg); transition: transform 250ms var(--ease); display: block; }
.btn .rk img { width: 100%; height: 100%; display: block; }
.btn-coral .rk img, .btn-ink .rk img { filter: brightness(0) invert(1); }
.btn-ghost .rk img, .btn-gold .rk img { filter: brightness(0); }
.btn:hover .rk { transform: rotate(45deg) translate(2px, -2px); }
.btn-big { padding: 18px 30px; font-size: 16.5px; }

/* ===========================================================================
   HERO
   =========================================================================== */

.hero {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center;
  padding-top: 56px; padding-bottom: 30px; min-height: 86vh;
}
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; gap: 34px; min-height: 0; padding-top: 34px; } }

.eyebrow {
  color: var(--dim); display: inline-flex; align-items: center; gap: 10px;
  border: 1.3px solid var(--line); background: var(--card); border-radius: var(--r-pill); padding: 8px 14px 8px 10px;
  margin-bottom: 26px;
}
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }

.hero h1 {
  font-weight: 800; letter-spacing: -.045em;
  font-size: clamp(50px, 8vw, 96px); line-height: .9; margin: 0; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .thesis { max-width: 50ch; font-size: 17.5px; line-height: 1.55; color: var(--dim); margin: 26px 0 30px; }
.hero .thesis b { color: var(--txt); }

.proofline { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; color: var(--mut); }
.proofline .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--dot); }

/* ---- the phone ---------------------------------------------------------- */

.phonewrap { display: flex; justify-content: center; position: relative; }
.phone {
  width: 320px; max-width: 100%; background: #141414; border-radius: 46px; padding: 9px;
  box-shadow: 0 40px 90px -30px rgba(30, 28, 22, .55);
  position: relative; z-index: 2;
  animation: float1 7s ease-in-out infinite;
}
.screen { background: var(--paper); border-radius: 38px; overflow: hidden; position: relative; height: 640px; }
.notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; border-radius: var(--r-pill); background: #141414; z-index: 40; }
.stat { height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 10px 24px 0; font-size: 10px; font-weight: 700; }
.appbar { display: flex; align-items: center; padding: 6px 18px 0; }
.live { margin-left: auto; color: var(--dim); display: flex; align-items: center; gap: 6px; }
.live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }

/* the brain, at board size */
.pbrain { position: relative; width: 110px; height: 110px; margin: 2px auto 0; display: grid; place-items: center; }
.pbrain .halo { position: absolute; inset: -22px; border-radius: 50%; background: radial-gradient(circle, rgba(223, 88, 48, .22), rgba(242, 193, 78, .10) 45%, transparent 70%); filter: blur(12px); animation: breathe 6s ease-in-out infinite; }
.pbrain .orb { width: 60px; height: 60px; position: relative; background: linear-gradient(-45deg, #DF5830, #F2A78C, #1B1C1E, #F4F2ED, #F2C14E, #DF5830); background-size: 500% 800%; filter: blur(5px); animation: orbshift 7s ease-in-out infinite; }
.pbrain .orb::before { content: ""; display: block; position: absolute; top: -8px; right: -20px; bottom: -20px; left: -8px; background: inherit; background-size: inherit; filter: blur(26px); opacity: .45; animation: orbshift 7s ease-in-out infinite; }
.pbrain .ring { position: absolute; inset: 14px; border-radius: 50%; border: 1px solid rgba(27, 28, 30, .14); animation: spin 14s linear infinite; }
.pbrain .ring::before { content: ""; position: absolute; top: -3.5px; left: 50%; width: 6px; height: 6px; margin-left: -3px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(223, 88, 48, .15); }
.scank { text-align: center; color: var(--mut); display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: -4px; }
.scank i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.6s ease-in-out infinite; }

.apphead { font-weight: 800; font-size: 22px; letter-spacing: -.02em; line-height: 1; padding: 10px 18px 0; }
.apphead em { font-style: normal; color: var(--orange); }
.appsub { color: var(--mut); padding: 5px 18px 0; }
.filters { display: flex; gap: 7px; padding: 12px 18px 8px; overflow: hidden; }
.fpill {
  flex: 0 0 auto; font-size: 11px; font-weight: 700;
  color: var(--dim); border: 1.4px solid var(--line); border-radius: var(--r-pill); padding: 7px 13px;
}
.fpill.on { background: var(--ink); color: var(--ink-txt); border-color: var(--ink); }
.fpill.money { color: var(--gold2); border-color: #e7c98a; }

.feedmask {
  position: absolute; left: 0; right: 0; top: 318px; bottom: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, #000 82%, transparent);
}
.autoscroll { padding: 2px 14px; display: flex; flex-direction: column; gap: 13px; animation: feedscroll 26s linear infinite; }
.phonewrap:hover .autoscroll { animation-play-state: paused; }
@keyframes feedscroll { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }

/* the glow behind the phone */
.phonewrap::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 88, 48, .14), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; pointer-events: none;
}

/* ===========================================================================
   THE CARD (copied from the app so the ad and the site match exactly)
   =========================================================================== */

.card {
  background: var(--card); color: var(--txt); border: 1.3px solid var(--line); border-radius: var(--r-card);
  padding: 16px; position: relative; overflow: hidden;
  width: 100%; max-width: 340px; box-shadow: var(--sh-card);
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--sh-lift); }
.card > *:not(.ribbon) { position: relative; z-index: 2; }

/* Legendary flips to ink */
.card.legendary { background: var(--ink); border-color: var(--ink); color: var(--ink-txt); }
.card.legendary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(242, 193, 78, .13) 50%, transparent 70%);
  background-size: 220% 100%; animation: sweep 5s ease-in-out infinite; pointer-events: none; z-index: 1;
}
.card.legendary .tag-ind { background: var(--ink-txt); color: var(--ink); }
.card.legendary .tag-geo { border-color: var(--ink-line); color: var(--ink-mut); }
.card.legendary .tag-geo img { filter: brightness(0) invert(1); }
.card.legendary .potk, .card.legendary .toolk, .card.legendary .matchmini .l, .card.legendary .disc { color: var(--ink-mut); }
.card.legendary .money small { color: var(--gold); }
.card.legendary .matchmini .n { color: var(--green); }
.card.legendary .matchmini .t { background-image: radial-gradient(circle, var(--ink-line) 2.2px, transparent 2.6px); }
.card.legendary .disc.fresh { color: var(--green); }
.card.legendary .tool.more { background: var(--gold); }
.card.legendary .tool.more b { color: var(--gold-ink); }
.card.legendary .launchbtn { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); }
.card.legendary .launchbtn .rk img { filter: brightness(0); }

.ribbon {
  position: absolute; top: 0; right: 0; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; padding: 7px 13px; border-radius: 0 var(--r-card) 0 12px; z-index: 5; overflow: hidden;
}
.ribbon.pill { position: relative; top: auto; right: auto; border-radius: var(--r-pill); padding: 6px 11px; display: inline-block; }
.ribbon .rbg { position: absolute; inset: 0; z-index: 0; }
.ribbon .lbl { position: relative; z-index: 2; }
.r-com { background: var(--grey); }
.r-rising { background: var(--green); }
.r-hot { background: var(--orange); }
.r-rare { background: var(--peri); }
.r-leg { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); }
.r-leg .rbg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .6) 50%, transparent 70%);
  background-size: 220% 100%; animation: sweep 5s ease-in-out infinite;
}

.tagrow { display: flex; gap: 6px; align-items: center; padding-right: 96px; }
.tag-ind { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--ink); color: var(--ink-txt); border-radius: 6px; padding: 5px 9px; white-space: nowrap; }
.tag-geo { font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mut); border: 1.3px solid var(--line); border-radius: var(--r-pill); padding: 4px 9px; display: inline-flex; align-items: center; gap: 4px; }
.tag-geo img { width: 11px; height: 11px; filter: brightness(0); opacity: .5; }
.mrow { display: flex; align-items: flex-end; gap: 12px; margin-top: 13px; }
.potk { color: var(--mut); }
.money { font-size: 46px; font-weight: 800; line-height: .9; letter-spacing: -.035em; margin-top: 3px; }
.money small { font-size: 14px; font-weight: 800; color: var(--orange); letter-spacing: 0; }
.matchmini { margin-left: auto; text-align: right; padding-bottom: 4px; }
.matchmini .n { font-size: 20px; font-weight: 800; line-height: .9; color: var(--green2); }
.matchmini .n.warm { color: var(--amber2); }
.matchmini .l { color: var(--mut); margin-top: 3px; font-size: 8.5px; }
/* ten dots, drawn with a repeating gradient so the markup stays a bar */
.matchmini .t { width: 77px; height: 5px; margin: 5px 0 0 auto; background-image: radial-gradient(circle, var(--dot) 2.2px, transparent 2.6px); background-size: 8px 5px; background-repeat: repeat-x; position: relative; }
.matchmini .f { height: 100%; width: 0; background-image: radial-gradient(circle, var(--green) 2.2px, transparent 2.6px); background-size: 8px 5px; background-repeat: repeat-x; transition: width 1100ms var(--ease); }
.matchmini .f.warm { background-image: radial-gradient(circle, var(--amber) 2.2px, transparent 2.6px); }
.in .matchmini .f, .phone .matchmini .f { width: var(--w); }
.ttl { font-weight: 700; font-size: 14px; line-height: 1.3; margin-top: 11px; }
.disc { color: var(--mut); margin-top: 9px; display: flex; align-items: center; gap: 6px; font-size: 8.5px; }
.disc.fresh { color: var(--green2); }
.disc i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
/* under 24 hours the dot is alive */
.disc.fresh i { width: 8px; height: 8px; background: linear-gradient(135deg, var(--green), var(--gold), var(--orange)); background-size: 300% 300%; animation: minishift 4s ease-in-out infinite; position: relative; }
.disc.fresh i::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1.2px solid var(--green); animation: ripple 2.6s var(--ease) infinite; }
.brow { display: flex; align-items: flex-end; margin-top: 14px; }
.toolk { color: var(--mut); display: block; margin-bottom: 6px; font-size: 8.5px; }
.tools { display: flex; }
.tool { width: 28px; height: 28px; border-radius: 50%; background: #fff; border: 1.5px solid #101112; position: relative; margin-left: -7px; box-shadow: 1.8px 1.8px 0 rgba(16, 17, 18, .45); }
.tool:first-child { margin-left: 0; }
.tool b { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; font-size: 9.5px; color: var(--txt); }
.tool img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; object-fit: contain; padding: 4px; background: #fff; }
.tool.more { background: var(--orange); }
.tool.more b { color: #fff; }
.launchbtn {
  margin-left: auto; background: var(--ink); color: var(--ink-txt); border: 0; border-radius: var(--r-pill);
  padding: 11px 16px; font-weight: 800; font-size: 12px;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.launchbtn.free { background: var(--orange); color: #fff; }
.launchbtn .rk { width: 15px; height: 15px; transform: rotate(45deg); display: block; }
.launchbtn .rk img { width: 100%; height: 100%; display: block; filter: brightness(0) invert(1); }

/* ===========================================================================
   MARQUEE
   =========================================================================== */

.marquee {
  border-top: 1.3px solid var(--line); border-bottom: 1.3px solid var(--line);
  background: var(--card); overflow: hidden; padding: 16px 0; margin-top: 30px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee .track { display: flex; gap: 46px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee .item { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; color: var(--dim); font-size: 10px; }
.marquee .item b { font-size: 20px; font-weight: 800; letter-spacing: -.03em; color: var(--txt); text-transform: none; }
.marquee .item .t { color: var(--gold2); }
.marquee .item .t.rare { color: var(--peri); }
.marquee .item .t.hot { color: var(--orange); }
.marquee .item .t.rising { color: var(--green2); }

/* ===========================================================================
   THE PROBLEM
   =========================================================================== */

.pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.pain {
  background: var(--card); border: 1.3px solid var(--line); border-radius: var(--r-card);
  padding: 26px 24px; position: relative; overflow: hidden;
}
.pain .num { font-size: 64px; font-weight: 800; letter-spacing: -.05em; line-height: .8; color: var(--paper); position: absolute; right: 18px; top: 14px; -webkit-text-stroke: 1px var(--line); }
.pain b { font-weight: 800; font-size: 20px; letter-spacing: -.02em; display: block; margin-bottom: 10px; position: relative; max-width: 70%; }
.pain p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--dim); position: relative; }

/* ===========================================================================
   THE CARD ANATOMY
   =========================================================================== */

.anatomy { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .anatomy { grid-template-columns: 1fr; gap: 30px; } }
.anatomy .bigcard { display: flex; justify-content: center; }
.anatomy .bigcard .card { transform: scale(1.12); transform-origin: center; }
@media (max-width: 900px) { .anatomy .bigcard .card { transform: none; } }
.anatomy .bigcard .card:hover { transform: scale(1.12) translateY(-3px); }
@media (max-width: 900px) { .anatomy .bigcard .card:hover { transform: translateY(-3px); } }

.callouts { display: flex; flex-direction: column; gap: 4px; }
.callout { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1.3px solid var(--line); }
.callout:last-child { border-bottom: 0; }
.callout .dot {
  width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--ink-txt);
  font-weight: 800; font-size: 13px; display: grid; place-items: center; flex: 0 0 auto;
}
.callout b { color: var(--txt); display: block; margin: 7px 0 5px; }
.callout p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--dim); }

/* ===========================================================================
   THE PLAN (launch in five)
   =========================================================================== */

.plan { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
@media (max-width: 900px) { .plan { grid-template-columns: 1fr; gap: 30px; } }

/* the stage demo phone */
.demo-phone .screen { height: 600px; }
.sd-top { display: flex; align-items: center; gap: 10px; padding: 12px 18px 0; }
.sd-top .bk { width: 30px; height: 30px; border-radius: 50%; border: 1.3px solid var(--line); background: var(--card); color: var(--dim); display: grid; place-items: center; font-size: 13px; }
.sd-top .crumb { color: var(--mut); font-size: 8px; }
.sd-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px 0; }
.sd-head .ic { width: 44px; height: 44px; border-radius: 13px; background: var(--orange); display: grid; place-items: center; flex: 0 0 auto; }
.sd-head .ic img { width: 24px; height: 24px; image-rendering: pixelated; filter: brightness(0) invert(1); }
.sd-head h3 { font-weight: 800; font-size: 24px; letter-spacing: -.02em; margin: 0; line-height: 1; }
.sd-head .st { color: var(--mut); margin-top: 4px; font-size: 8.5px; }
.sd-frame { margin: 12px 18px 0; font-size: 12.5px; line-height: 1.5; color: var(--dim); }
.sd-bar { margin: 14px 18px 0; height: 6px; border-radius: var(--r-pill); background: var(--line); overflow: hidden; }
.sd-bar i { display: block; height: 100%; width: 0; background: var(--orange); transition: width 500ms var(--ease); }
.sd-sec { color: var(--mut); padding: 18px 18px 8px; display: flex; align-items: baseline; }
.sd-sec .cnt { margin-left: auto; color: var(--orange); font-size: 16px; letter-spacing: -.02em; text-transform: none; transition: color 300ms; }
.sd-sec .cnt.done { color: var(--green2); }
.dtask {
  margin: 0 15px 7px; background: var(--card); border: 1.3px solid var(--line); border-radius: 13px;
  padding: 11px 12px; display: flex; gap: 11px; align-items: flex-start; transition: all 300ms var(--ease);
}
.dtask .cb { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--line); background: var(--paper); flex: 0 0 auto; display: grid; place-items: center; color: transparent; font-size: 10px; font-weight: 800; transition: all 300ms var(--ease); }
.dtask .tx { font-size: 11.5px; line-height: 1.35; font-weight: 600; background: linear-gradient(currentColor, currentColor) no-repeat 0 55% / 0% 1.5px; transition: background-size 450ms var(--ease), color 300ms; }
.dtask.done { color: var(--mut); }
.dtask.done .cb { background: var(--green); border-color: var(--green); color: #fff; animation: dotpop 400ms var(--ease); }
.dtask.done .tx { background-size: 100% 1.5px; }
.dcta {
  margin: 12px 15px 0; background: var(--ink); color: var(--ink-txt); border: 0; border-radius: var(--r-panel);
  padding: 14px; text-align: center; font-weight: 800; font-size: 13.5px; opacity: .4; transition: all 400ms var(--ease);
}
.dcta.ready { opacity: 1; box-shadow: 0 0 0 6px rgba(223, 88, 48, .18); }
.dcta.fired { background: var(--green); color: #fff; box-shadow: none; }
.dconf { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 30; }
.dconf i { position: absolute; width: 7px; height: 5px; top: -12px; opacity: 0; border-radius: 1px; }
.dconf.go i { animation: conf 1.5s ease-out forwards; }
@keyframes conf { 0% { transform: translateY(0) rotate(0); opacity: 1; } 100% { transform: translateY(640px) rotate(540deg); opacity: 0; } }
.replay {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: var(--card); color: var(--dim); border: 1.3px solid var(--line); border-radius: var(--r-pill); padding: 8px 12px; z-index: 35; opacity: 0; transition: opacity 300ms; font-size: 8.5px;
}
.replay.show { opacity: 1; }

/* the prompt card beside it: ink, like the app */
.promptcard {
  background: var(--ink); color: var(--ink-txt); border-radius: var(--r-card); padding: 18px 18px 16px;
  position: relative; overflow: hidden; max-width: 460px; box-shadow: 0 20px 40px -20px rgba(27, 28, 30, .8);
}
.promptcard > * { position: relative; }
.promptcard .pk { display: flex; align-items: center; gap: 8px; color: var(--ink-mut); font-size: 8.5px; }
.promptcard .pk .ins { background: var(--orange); color: #fff; padding: 3px 7px; border-radius: 5px; }
.promptcard h4 { font-weight: 800; font-size: 18px; letter-spacing: -.02em; margin: 10px 0 0; line-height: 1.05; }
.promptcard .pt { font-size: 12.5px; line-height: 1.55; margin-top: 12px; color: #d9d7cf; }
.promptcard .cprow { display: flex; gap: 8px; margin-top: 14px; }
.promptcard .cprow button { flex: 1; border: 0; border-radius: 12px; padding: 12px; font-weight: 800; font-size: 12.5px; transition: all 200ms var(--ease); }
.promptcard .copy { background: var(--orange); color: #fff; }
.promptcard .copy.copied { background: var(--green); color: #fff; }
.promptcard .openc { background: transparent; color: var(--ink-txt); border: 1.4px solid var(--ink-line) !important; }
.promptcard .openc:hover { border-color: var(--ink-txt) !important; }
.promptnote { font-size: 13px; line-height: 1.55; color: var(--dim); margin: 14px 0 0; max-width: 46ch; }

.stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 46px; }
@media (max-width: 900px) { .stages { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); } }
.stg { background: var(--card); border: 1.3px solid var(--line); border-radius: 18px; padding: 18px 16px; transition: transform 250ms var(--ease), border-color 250ms var(--ease); }
.stg:hover { transform: translateY(-3px); border-color: var(--ink); }
.stg .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--paper); border: 1.3px solid var(--line); display: grid; place-items: center; margin-bottom: 12px; }
.stg .ic img { width: 22px; height: 22px; image-rendering: pixelated; filter: brightness(0); }
.stg .n { color: var(--mut); }
.stg b { font-weight: 800; font-size: 18px; letter-spacing: -.02em; display: block; margin: 5px 0 6px; }
.stg p { margin: 0; font-size: 12.5px; color: var(--dim); line-height: 1.5; }

/* ===========================================================================
   THE MATCH
   =========================================================================== */

.match { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 900px) { .match { grid-template-columns: 1fr; gap: 30px; } }

.qdemo {
  background: var(--card); border: 1.3px solid var(--line); border-radius: 30px; padding: 28px 24px 26px;
  max-width: 420px; margin: 0 auto; position: relative; overflow: hidden; box-shadow: var(--sh-card);
}
/* the five dots */
.qdemo .bars { display: flex; gap: 8px; margin-bottom: 26px; }
.qdemo .bars i { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--dot); overflow: hidden; transition: background 300ms var(--ease); }
.qdemo .bars i span { display: none; }
.qdemo .bars i.on { background: var(--ink); }
.qdemo .q { color: var(--mut); min-height: 14px; }
.qdemo .qt { font-weight: 800; font-size: 24px; letter-spacing: -.02em; line-height: 1.05; margin: 8px 0 0; min-height: 26px; transition: opacity 300ms; }
.qdemo .qt em { font-style: normal; color: var(--orange); }
.qdemo .big { font-size: 104px; font-weight: 800; letter-spacing: -.05em; line-height: .85; color: var(--orange); margin-top: 22px; text-align: left; opacity: 0; transform: scale(.6); transition: all 900ms var(--ease); }
.qdemo .big.show { opacity: 1; transform: none; }
.qdemo .fit { text-align: left; font-weight: 800; font-size: 26px; letter-spacing: -.02em; line-height: 1; margin-top: 6px; opacity: 0; transition: opacity 500ms 300ms; }
.qdemo .fit em { font-style: normal; color: var(--txt); }
.qdemo .fit.show { opacity: 1; }
.qdemo .rows { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.qdemo .row {
  background: var(--paper); border: 1.3px solid var(--line); border-radius: 16px; padding: 10px 13px;
  display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateY(12px); transition: all 600ms var(--ease);
}
.qdemo .row.show { opacity: 1; transform: none; }
.qdemo .row .m { font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.qdemo .row .t { font-size: 11.5px; font-weight: 700; color: var(--dim); flex: 1; filter: blur(3px); user-select: none; }
.qdemo .row .p { font-size: 11px; font-weight: 800; color: var(--green2); }

/* ===========================================================================
   RARITY
   =========================================================================== */

.ladder { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .ladder { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); } }
.rung { background: var(--card); border: 1.3px solid var(--line); color: var(--txt); border-radius: var(--r-card); padding: 18px 16px; position: relative; overflow: hidden; min-height: 176px; transition: transform 300ms var(--ease), box-shadow 300ms var(--ease); box-shadow: var(--sh-card); }
.rung:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.rung.leg { background: var(--ink); border-color: var(--ink); color: var(--ink-txt); }
.rung.leg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(242, 193, 78, .13) 50%, transparent 70%); background-size: 220% 100%; animation: sweep 5s ease-in-out infinite; pointer-events: none; }
.rung > * { position: relative; }
.rung .band { color: var(--mut); margin-top: 32px; }
.rung.leg .band { color: var(--ink-mut); }
.rung .m { font-size: 28px; font-weight: 800; letter-spacing: -.03em; line-height: .9; margin-top: 5px; }
.rung .acc { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 6px; background: var(--paper); color: var(--green2); font-size: 8.5px; }
.rung .acc.pro { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); }
.rung .acc img { width: 11px; height: 11px; image-rendering: pixelated; filter: brightness(0); }
.gateline { margin-top: 26px; font-size: 15px; line-height: 1.6; color: var(--dim); max-width: 64ch; }
.gateline b { color: var(--txt); }

/* ===========================================================================
   THE DROP
   =========================================================================== */

.drop { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
@media (max-width: 900px) { .drop { grid-template-columns: 1fr; } }
.dropcard { display: flex; justify-content: center; }
.dropcard .card { animation: float2 6s ease-in-out infinite; }

/* ===========================================================================
   HONEST
   =========================================================================== */

.honest {
  background: var(--card); border: 1.3px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: var(--r-panel); padding: 30px 28px; max-width: 76ch;
}
.honest p { margin: 0 0 14px; font-size: 15px; line-height: 1.7; color: var(--dim); }
.honest p:last-child { margin-bottom: 0; }
.honest p b { color: var(--txt); }
.founder { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 22px; border-top: 1.3px solid var(--line); }
.founder .av { width: 40px; height: 40px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; flex: 0 0 auto; }
.founder .av img { width: 24px; height: 24px; image-rendering: pixelated; filter: brightness(0) invert(1); }
.founder span { font-size: 13px; color: var(--dim); line-height: 1.45; }
.founder span b { color: var(--txt); display: block; margin-bottom: 3px; }

/* ===========================================================================
   PRICING
   =========================================================================== */

.ptoggle { display: inline-flex; background: var(--card); border: 1.3px solid var(--line); border-radius: var(--r-pill); padding: 4px; margin-bottom: 26px; }
.ptoggle button { background: transparent; border: 0; color: var(--dim); padding: 9px 16px; border-radius: var(--r-pill); transition: all 200ms var(--ease); display: inline-flex; align-items: center; gap: 8px; }
.ptoggle button.on { background: var(--ink); color: var(--ink-txt); }
.ptoggle .save { font-size: 7.5px; background: var(--green); color: #fff; padding: 2px 6px; border-radius: 4px; }

.prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 860px; }
@media (max-width: 760px) { .prices { grid-template-columns: 1fr; } }
.price { background: var(--card); border: 1.3px solid var(--line); border-radius: 24px; padding: 28px 24px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.price.gold { background: var(--ink); color: var(--ink-txt); border-color: var(--ink); }
.price.gold::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 32%, rgba(242, 193, 78, .14) 50%, transparent 68%); background-size: 220% 100%; animation: sweep 5s ease-in-out infinite; pointer-events: none; }
.price > * { position: relative; }
.price .tier { color: var(--mut); display: flex; align-items: center; gap: 8px; }
.price.gold .tier { color: var(--gold); }
.price .tier img { width: 12px; height: 12px; image-rendering: pixelated; filter: brightness(0); }
.price.gold .tier img { filter: brightness(0) invert(1); }
.price .amt { font-size: 54px; font-weight: 800; letter-spacing: -.045em; line-height: .9; margin: 14px 0 6px; }
.price .amt small { font-size: 14px; font-weight: 700; color: var(--dim); letter-spacing: 0; }
.price.gold .amt small { color: var(--ink-mut); }
.price .yr { color: var(--mut); min-height: 14px; text-transform: none; letter-spacing: 0; font-size: 12px; font-weight: 600; }
.price.gold .yr { color: var(--ink-mut); }
.price ul { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 10px; }
.price li { font-size: 13.5px; font-weight: 600; line-height: 1.45; display: flex; gap: 10px; align-items: flex-start; }
.price li i { width: 17px; height: 17px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 9px; font-style: normal; font-weight: 800; flex: 0 0 auto; margin-top: 1px; }
.price li.dim { opacity: .45; }
.price li.dim i { background: var(--dot); color: var(--dim); }
.price .btn { margin-top: auto; justify-content: center; }
.price.gold .btn-ink { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); }
.price .badge { position: absolute; top: 18px; right: 18px; font-size: 7.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(90deg, var(--gold), var(--gold2)); color: var(--gold-ink); padding: 5px 8px; border-radius: var(--r-pill); }

/* ===========================================================================
   FAQ
   =========================================================================== */

.faq { max-width: 76ch; }
.faq details { border-bottom: 1.3px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 16px; letter-spacing: -.01em; list-style: none; display: flex; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; color: var(--orange); font-size: 20px; font-weight: 700; flex: 0 0 auto; transition: transform 250ms var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--dim); }

/* ===========================================================================
   FINAL
   =========================================================================== */

.final { text-align: center; padding: 120px 0 110px; position: relative; overflow: hidden; }
.final::before {
  content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; left: 50%; top: 50%;
  transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(223, 88, 48, .14), rgba(242, 193, 78, .06) 40%, transparent 62%); pointer-events: none;
}
.final .wrap { position: relative; }
.final h2 { font-size: clamp(44px, 7.5vw, 88px); margin-bottom: 22px; }
.final .lead { margin: 0 auto 34px; }
.final .btnrow { justify-content: center; }
.final .proofline { justify-content: center; }

/* ===========================================================================
   FOOTER
   =========================================================================== */

footer { border-top: 1.3px solid var(--line); padding: 40px 0 120px; }
footer .in { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
footer .links { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
footer a, footer span { color: var(--mut); }
footer a:hover { color: var(--txt); }
.smallprint { margin-top: 24px; font-size: 11.5px; line-height: 1.6; color: var(--mut); max-width: 82ch; }

/* ===========================================================================
   STICKY MOBILE BAR
   =========================================================================== */

.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(251, 250, 246, .94); backdrop-filter: blur(12px); border-top: 1.3px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(110%); transition: transform 400ms var(--ease);
}
.sticky.show { transform: none; }
.sticky .t { color: var(--dim); line-height: 1.4; font-size: 8.5px; }
.sticky .t b { color: var(--green2); display: block; }
.sticky .btn { margin-left: auto; padding: 12px 18px; font-size: 13.5px; }
@media (min-width: 900px) { .sticky { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
