/* Everi-Circle marketing site — Direction D "Live circle"
   Tokens mirror app/src/config/theme.ts (Logo Spectrum). */

@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/syne-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("fonts/dm-sans-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #0F1117;
  --ink-2: #1E2230;
  --muted: #4A5163;
  --faint: #8B90A0;
  --line: #D4D7E0;
  --wash: #ECEEF3;
  --surface: #F5F6FA;
  --teal: #20B8D0;
  --teal-dark: #1090A8;
  --teal-deep: #087088;
  --teal-light: #60D8E8;
  --teal-pale: #E0F5F8;
  --coral: #E8553A;
  --amber: #F0A030;
  --amber-dark: #CC8010;
  --purple: #9060D0;
  --purple-light: #B888E8;
  --pink: #D060A0;
  --pink-light: #E888C0;
  --pink-deep: #802060;
  --pink-text: #A84080;
  --lime: #8AB030;
  --lime-light: #B8D848;
  --lime-deep: #507010;
  --lime-pale: #F0F8E0;
  --pink-pale: #FAE8F2;
  --slate: #4A5060;
  --slate-light: #606878;
  --r-card: 24px;
  --r-inner: 16px;
  --font-display: "Syne", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --gutter: clamp(20px, 4.4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal-deep); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; margin: 0; line-height: 1; }
p { margin: 0; }
.syne { font-family: var(--font-display); }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.wrap { max-width: 1312px; margin: 0 auto; padding: 0 var(--gutter); }
.kente { height: 3px; opacity: 0.4; background: repeating-linear-gradient(90deg, var(--amber) 0 24px, var(--teal) 24px 48px); }
section[id], .feature[id] { scroll-margin-top: 88px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 22px; border-radius: 999px;
  background: var(--ink); color: #FFFFFF; font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(15, 17, 23, 0.18); }
.btn svg { flex-shrink: 0; }
.btn-teal { background: linear-gradient(135deg, var(--teal-light), var(--teal)); box-shadow: 0 6px 20px rgba(32, 184, 208, 0.28); height: 44px; }
.btn-teal:hover { box-shadow: 0 10px 26px rgba(32, 184, 208, 0.4); }
.store-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-row[hidden] { display: none; }
[hidden] { display: none !important; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 20; background: rgba(255, 255, 255, 0.86); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--wash); }
.nav .wrap { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img { width: 36px; height: 36px; }
.brand span { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; border-radius: 12px; color: var(--ink); cursor: pointer; }
.nav-toggle:hover { background: var(--surface); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 88px 0 0; text-align: center; background: radial-gradient(ellipse 60% 50% at 50% 100%, var(--teal-pale) 0%, #FFFFFF 70%); }
.hero .wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero .eyebrow { color: var(--teal-dark); }
.hero h1 { font-size: clamp(52px, 7vw, 96px); line-height: 0.96; letter-spacing: -0.035em; max-width: 1000px; }
.hero .lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); max-width: 640px; }
.hero .store-row { margin-top: 8px; }
.stage { position: relative; width: min(1100px, 100%); height: 720px; margin-top: 40px; display: flex; justify-content: center; align-items: flex-start; }

/* floating chips */
.chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px 12px 12px; border-radius: 999px; background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(15, 17, 23, 0.14); font-size: 14px; font-weight: 500; white-space: nowrap; z-index: 2;
  animation: chip 9s ease-in-out infinite;
}
.chip .av { width: 32px; height: 32px; border-radius: 999px; flex-shrink: 0; }
.chip .paid { color: var(--lime-deep); font-weight: 700; font-size: 12px; margin-left: 4px; }
.chip-1 { left: 40px; top: 120px; animation-delay: 0.6s; }
.chip-2 { left: 90px; top: 330px; animation-delay: 3.4s; }
.chip-3 { right: 60px; top: 190px; animation-delay: 2s; }
.chip-4 { right: 100px; top: 420px; animation-delay: 5s; }

/* phone */
.phone {
  width: 360px; height: 740px; border-radius: 48px; background: #FFFFFF;
  border: 10px solid var(--ink); box-shadow: 0 50px 100px rgba(15, 17, 23, 0.25);
  overflow: hidden; display: flex; flex-direction: column;
  animation: bob 6s ease-in-out infinite;
}
.app-head { padding: 44px 20px 14px; background: linear-gradient(135deg, var(--teal), var(--teal-dark), var(--purple)); display: flex; flex-direction: column; gap: 10px; color: #FFFFFF; }
.app-head .row { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.stack { flex-shrink: 0; padding-top: 2px; }
.app-head .title { font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -0.3px; line-height: 1.15; }
.app-head .meta { font-size: 12px; opacity: 0.85; }
.app-head .tabs { display: flex; gap: 18px; margin-top: 4px; font-size: 13px; font-weight: 600; opacity: 0.7; }
.app-head .tabs .on { opacity: 1; border-bottom: 2px solid #FFFFFF; padding-bottom: 6px; }
.stack { display: flex; }
.stack i { width: 24px; height: 24px; border-radius: 999px; border: 2px solid #FFFFFF; display: block; }
.stack i + i { margin-left: -10px; }
.feed { position: relative; flex-grow: 1; background: var(--surface); overflow: hidden; }
.feed-inner { padding: 14px; display: flex; flex-direction: column; gap: 12px; animation: feedScroll 38s ease-in-out infinite; animation-delay: 4s; }
.post { border-radius: var(--r-inner); background: #FFFFFF; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 8px rgba(15, 17, 23, 0.05); }
.post-head { padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.post-head .av { width: 30px; height: 30px; border-radius: 999px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 12px; font-weight: 700; }
.post-head .who { display: flex; flex-direction: column; line-height: 1.2; }
.post-head .who b { font-size: 13px; font-weight: 600; }
.post-head .who span { font-size: 11px; color: var(--faint); }
.post-cap { padding: 0 14px 10px; font-size: 13px; line-height: 1.4; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3px; padding: 0 3px; }
.photo { background-size: cover; background-position: center; }
.photo.tall { height: 84px; }
.photo.wide { height: 150px; }
.post-foot { padding: 10px 14px; display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--faint); }
.post-foot .seen { margin-left: auto; color: var(--teal-dark); font-weight: 600; }
.post-foot .likes { display: flex; align-items: center; gap: 4px; }
.post-foot .likes svg { animation: heart 9s ease-in-out infinite; transform-origin: center; }
.money { padding: 14px; gap: 10px; }
.money .top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 600; color: var(--faint); }
.money .top b { color: var(--lime-deep); font-weight: 700; }
.bar { height: 8px; border-radius: 999px; background: var(--wash); overflow: hidden; }
.bar i { display: block; height: 100%; width: 77%; background: linear-gradient(135deg, var(--lime-light), var(--lime)); animation: fill 9s ease-in-out infinite; }
.money .line { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.money .line span { display: flex; align-items: center; gap: 8px; }
.money .line .av { width: 22px; height: 22px; border-radius: 999px; }
.stamp { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--lime-deep); border: 2px solid var(--lime-deep); padding: 2px 6px; border-radius: 4px; animation: stamp 9s ease-out infinite; }
.claim { padding: 12px 14px; flex-direction: row; align-items: center; gap: 12px; }
.claim .box { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.claim .box svg { animation: check 9s ease-out infinite; }
.claim .txt { display: flex; flex-direction: column; line-height: 1.25; }
.claim .txt b { font-size: 13px; font-weight: 600; }
.claim .txt span { font-size: 12px; color: var(--faint); animation: swapName 9s linear infinite; }
.enter { animation: cardIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.e1 { animation-delay: 0.9s; } .e2 { animation-delay: 1.5s; } .e3 { animation-delay: 2.1s; } .e4 { animation-delay: 2.7s; } .e5 { animation-delay: 3.3s; } .e6 { animation-delay: 3.9s; }
.vid { position: relative; }
.playbtn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 999px; background: rgba(15, 17, 23, 0.55); display: flex; align-items: center; justify-content: center; }
.playbtn svg { margin-left: 3px; }
.playbtn-lg { width: 64px; height: 64px; }
.dur { position: absolute; right: 10px; bottom: 10px; padding: 3px 9px; border-radius: 999px; background: rgba(15, 17, 23, 0.65); color: #FFFFFF; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.post-text { margin: 0 3px; border-radius: 12px; padding: 26px 18px 20px; text-align: center; color: #FFFFFF; font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.35; background: linear-gradient(135deg, var(--purple), var(--pink)); }
.post-text small { display: block; margin-top: 10px; font-family: var(--font-body); font-weight: 500; font-size: 11.5px; opacity: 0.85; letter-spacing: 0.02em; }

/* ---------- features ---------- */
/* NOTE: these sections share an element with .wrap — set only vertical padding
   (a `padding:` shorthand here zeroes .wrap's horizontal gutters; see BUG-059) */
.features { padding-top: 120px; padding-bottom: 40px; display: flex; flex-direction: column; gap: 120px; }
.feature { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; }
.feature.flip .copy { order: 2; }
.feature .copy { display: flex; flex-direction: column; gap: 20px; max-width: 520px; }
.feature h2 { font-size: clamp(36px, 4vw, 56px); }
.feature p { font-size: 18px; line-height: 1.55; color: var(--muted); }
.feature .shot { display: flex; justify-content: center; }
.panel { width: min(460px, 100%); border-radius: 28px; padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.panel-pink { background: var(--pink-pale); }
.panel-lime { background: var(--lime-pale); }
.panel-teal { background: var(--teal-pale); }
.rings { display: flex; gap: 12px; }
.ring { width: 56px; height: 56px; border-radius: 999px; padding: 3px; background: linear-gradient(135deg, var(--coral), var(--amber), var(--teal), var(--purple), var(--pink)); }
.ring i { display: block; width: 100%; height: 100%; border-radius: 999px; border: 3px solid var(--pink-pale); }
.ring.add { background: none; border: 2px dashed var(--pink); display: flex; align-items: center; justify-content: center; padding: 0; }
.big-post { border-radius: 18px; background: #FFFFFF; overflow: hidden; }
.big-post .photo { height: 220px; }
.big-post .cap { padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.big-post .cap span:last-child { color: var(--pink-text); font-weight: 600; white-space: nowrap; }
.ledger-top { display: flex; justify-content: space-between; align-items: baseline; }
.ledger-top .syne { font-size: 20px; font-weight: 700; }
.ledger-top b { font-size: 13px; color: var(--lime-deep); }
.panel .bar { height: 10px; background: #FFFFFF; }
.panel .bar i { width: 42%; animation: none; }
.is-visible .bar i { animation: fillOnce 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s forwards; }
.rowi { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: #FFFFFF; font-size: 14px; }
.rowi b { color: var(--lime-deep); font-weight: 700; }
.rowi .pend { color: var(--amber-dark); font-weight: 600; }
.r1, .r2, .r3 { opacity: 0; }
.is-visible .r1 { animation: rowIn 0.6s ease-out 0.2s forwards; }
.is-visible .r2 { animation: rowIn 0.6s ease-out 0.9s forwards; }
.is-visible .r3 { animation: rowIn 0.6s ease-out 1.6s forwards; }
.task { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 12px; background: #FFFFFF; font-size: 14px; }
.task .box { width: 22px; height: 22px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.task .box.done { background: var(--teal); }
.task .box.live { border: 2px solid var(--teal); }
.task .box.live svg { opacity: 0; }
.is-visible .task .box.live svg { animation: checkOnce 0.5s ease-out 1.2s forwards; }
.task .box.todo { border: 2px solid var(--line); }
.task .t { flex-grow: 1; }
.task .own { color: var(--teal-dark); font-weight: 600; }
.task .own.live { color: var(--faint); }
.is-visible .task .own.live { animation: swapOnce 0.4s linear 1.4s forwards; }
.task .none { color: var(--faint); }
.sched { margin-top: 8px; display: flex; gap: 10px; }
.sched div { flex-grow: 1; padding: 12px; border-radius: 12px; background: #FFFFFF; display: flex; flex-direction: column; gap: 4px; }
.sched small { font-size: 11px; color: var(--faint); font-weight: 600; letter-spacing: 0.04em; }
.sched b { font-size: 14px; font-weight: 600; }

/* ---------- circles marquee ---------- */
.circles { padding: 96px 0; display: flex; flex-direction: column; gap: 40px; overflow: hidden; }
.circles .head { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; padding: 0 var(--gutter); }
.circles .head .eyebrow { color: var(--teal-dark); }
.circles h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.05; }
.track { display: flex; gap: 16px; width: max-content; animation: marquee 28s linear infinite; }
.track:hover { animation-play-state: paused; }
.ccard { width: 300px; height: 170px; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; color: #FFFFFF; }
.ccard b { font-family: var(--font-display); font-size: 24px; font-weight: 800; }
.ccard span { font-size: 13px; opacity: 0.9; }
.c-wedding { background: linear-gradient(135deg, var(--pink-light), var(--pink)); }
.c-birthday { background: linear-gradient(135deg, var(--purple-light), var(--purple)); }
.c-naming { background: linear-gradient(135deg, var(--teal-light), var(--teal)); }
.c-reunion { background: linear-gradient(135deg, #FFD070, var(--amber)); }
.c-harvest { background: linear-gradient(135deg, var(--lime-light), var(--lime)); }
.c-memorial { background: linear-gradient(135deg, var(--slate-light), var(--slate)); }

/* ---------- trust ---------- */
.trust { margin: 0 var(--gutter); padding: 56px 64px; border-radius: 32px; background: var(--surface); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px; }
.trust > div { display: flex; flex-direction: column; gap: 10px; }
.trust svg { color: var(--teal-dark); }
.trust b { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.trust p { font-size: 15px; color: var(--muted); }

/* ---------- lagos ---------- */
.lagos { margin: 96px var(--gutter) 0; padding: 72px 64px; border-radius: 32px; background: var(--ink); color: #FFFFFF; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px; align-items: center; }
.lagos .eyebrow { color: #F0B030; }
.lagos h2 { font-size: clamp(36px, 4vw, 56px); }
.lagos p { font-size: 18px; line-height: 1.55; color: #9BA0B0; }
.lagos .copy { display: flex; flex-direction: column; gap: 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tags span { padding: 8px 14px; border-radius: 999px; border: 1px solid #2E3245; color: #E8EAF0; font-size: 14px; }
.lagos .quote { border-radius: 24px; background: #1A1D2E; border: 1px solid #2E3245; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.lagos .quote p { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1.25; color: #FFFFFF; letter-spacing: -0.02em; }
.lagos .quote small { font-size: 14px; color: #9BA0B0; }

/* ---------- cta ---------- */
.cta { margin: 96px var(--gutter) 0; padding: 96px 64px; border-radius: 40px; background: linear-gradient(135deg, var(--teal), var(--teal-dark) 45%, var(--purple)); display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; color: #FFFFFF; }
.cta h2 { font-size: clamp(40px, 4.6vw, 64px); max-width: 820px; }
.cta p { font-size: 18px; opacity: 0.88; }

/* ---------- footer ---------- */
.footer { padding: 72px 0 40px; }
.footer .wrap { display: flex; flex-direction: column; gap: 28px; }
.footer .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.footer .brand-col { display: flex; flex-direction: column; gap: 10px; }
.footer .brand img { width: 28px; height: 28px; }
.footer .brand span { font-size: 18px; }
.footer .brand-col small { font-size: 14px; color: var(--faint); }
.footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer .col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer .col b { font-weight: 600; }
.footer .col a { color: var(--muted); }
.footer .col a:hover { color: var(--ink); }
.footer .legal { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--faint); }

/* ---------- motion ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes chip { 0%, 8% { opacity: 0; transform: translateY(18px) scale(0.96); } 18%, 78% { opacity: 1; transform: translateY(0) scale(1); } 90%, 100% { opacity: 0; transform: translateY(-10px) scale(0.98); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes feedScroll { 0%, 6% { transform: translateY(0); } 18%, 27% { transform: translateY(-420px); } 38%, 47% { transform: translateY(-900px); } 58%, 67% { transform: translateY(-1450px); } 78%, 90% { transform: translateY(-2100px); } 98%, 100% { transform: translateY(0); } }
@keyframes fill { 0%, 25% { width: 42%; } 60%, 100% { width: 77%; } }
@keyframes stamp { 0%, 50% { opacity: 0; transform: scale(1.7) rotate(-8deg); } 60%, 100% { opacity: 1; transform: scale(1) rotate(-8deg); } }
@keyframes check { 0%, 60% { opacity: 0; transform: scale(0.4); } 70%, 100% { opacity: 1; transform: scale(1); } }
@keyframes swapName { 0%, 60% { color: #8B90A0; } 70%, 100% { color: #1090A8; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes heart { 0%, 40% { transform: scale(1); } 50% { transform: scale(1.35); } 60%, 100% { transform: scale(1); } }
@keyframes rowPaid { 0%, 30% { opacity: 0; } 40%, 100% { opacity: 1; } }
@keyframes rowIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fillOnce { from { width: 42%; } to { width: 77%; } }
@keyframes checkOnce { from { opacity: 0; transform: scale(0.4); } to { opacity: 1; transform: scale(1); } }
@keyframes swapOnce { from { color: #8B90A0; } to { color: #1090A8; } }
.rise { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; } .d3 { animation-delay: 0.4s; } .d4 { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .r1, .r2, .r3, .enter { opacity: 1; }
  .e6 { opacity: 1; }
  .stamp, .claim .box svg, .task .box.live svg { opacity: 1; }
  .panel .bar i { width: 77%; }
  .task .own.live { color: #1090A8; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .feature { gap: 48px; }
  .trust { padding: 40px; gap: 32px; }
  .lagos { padding: 56px 40px; gap: 40px; }
  .chip-1 { left: 0; } .chip-2 { left: 20px; } .chip-3 { right: 0; } .chip-4 { right: 20px; }
}
@media (max-width: 860px) {
  .nav .wrap { height: 64px; gap: 12px; }
  .brand { gap: 10px; }
  .brand img { width: 30px; height: 30px; }
  .brand span { font-size: 18px; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; align-items: stretch; gap: 0; background: #FFFFFF; border-bottom: 1px solid var(--wash); padding: 8px 0; }
  .nav-links a { padding: 14px var(--gutter); font-size: 16px; }
  .nav.open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav .btn-teal { height: 40px; padding: 0 16px; font-size: 14px; }
  .hero { padding-top: 44px; }
  .hero .store-row { width: 100%; }
  .hero .store-row .btn { flex-grow: 1; }
  .stage { height: 640px; margin-top: 16px; }
  .phone { width: 290px; height: 620px; border-width: 8px; border-radius: 40px 40px 0 0; border-bottom: 0; }
  .app-head { padding: 44px 16px 12px; }
  .app-head .title { font-size: 17px; }
  .stack i { width: 22px; height: 22px; }
  .chip { padding: 10px 14px 10px 10px; font-size: 13px; box-shadow: 0 12px 30px rgba(15, 17, 23, 0.16); }
  .chip .av { width: 28px; height: 28px; }
  .chip-1 { left: -6px; top: 290px; } .chip-2 { left: 4px; top: 560px; } .chip-3 { right: -6px; top: 420px; } .chip-4 { display: none; }
  .features { padding-top: 64px; padding-bottom: 24px; gap: 64px; }
  .feature, .lagos { grid-template-columns: 1fr; }
  .feature.flip .copy { order: 0; }
  .feature .copy { gap: 16px; }
  .feature p, .lagos p { font-size: 16px; }
  .panel { padding: 20px; border-radius: 22px; }
  .big-post .photo { height: 150px; }
  .circles { padding: 56px 0; }
  .ccard { width: 200px; height: 120px; border-radius: 18px; padding: 16px; }
  .ccard b { font-size: 18px; }
  .ccard span { display: none; }
  .trust { grid-template-columns: 1fr; padding: 28px 24px; gap: 22px; border-radius: 24px; }
  .lagos { margin-top: 56px; padding: 40px 24px; border-radius: 24px; }
  .lagos .quote { padding: 24px; }
  .lagos .quote p { font-size: 20px; }
  .cta { margin-top: 56px; padding: 48px 24px; border-radius: 28px; }
  .cta .store-row { width: 100%; }
  .cta .store-row .btn { flex-grow: 1; }
  .footer { padding: 48px 0 32px; }
  .footer .cols { gap: 32px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 44px; }
  .btn { padding: 0 16px; font-size: 14px; }
  /* beta-bar at the top already says Beta; the chip doesn't fit next to the Download btn */
  .brand .beta-tag { display: none; }
}

/* ---------- hero pills ---------- */
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 4px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #FFFFFF; border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--ink); box-shadow: 0 4px 14px rgba(15, 17, 23, 0.06); }
.pill svg { color: var(--teal-dark); flex-shrink: 0; }
.d5 { animation-delay: 0.7s; }

/* ---------- what-it-is explainer ---------- */
.explain { padding-top: 112px; display: flex; flex-direction: column; gap: 48px; }
.explain-head { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; margin: 0 auto; max-width: 780px; }
.explain-head h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.02; }
.explain-head p { font-size: 18px; line-height: 1.55; color: var(--muted); }
.contrast { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; width: 100%; }
.c-card { border-radius: var(--r-card); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.c-else { background: var(--wash); }
.c-yours { position: relative; background: #FFFFFF; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(15, 17, 23, 0.08); }
.adire { position: absolute; top: 8px; right: 8px; width: 8px; height: 8px; background: var(--teal); opacity: 0.6; transform: rotate(45deg); }
.c-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.c-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: var(--muted); }
.c-yours li { color: var(--ink); }
.c-card .dot { width: 10px; height: 10px; border-radius: 999px; margin-top: 7px; flex-shrink: 0; }

/* ---------- moments ---------- */
.moments { margin-top: 120px; padding: 112px 0; background: linear-gradient(180deg, var(--pink-pale), #FFFFFF 130%); overflow: hidden; }
.moments-grid { display: grid; grid-template-columns: minmax(0, 11fr) minmax(0, 9fr); gap: 72px; align-items: center; }
.m-copy { display: flex; flex-direction: column; gap: 22px; }
.m-copy h2 { font-size: clamp(38px, 4.4vw, 60px); line-height: 1; }
.m-lede { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 560px; }
.m-facts { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.m-facts li { font-size: 15px; line-height: 1.5; color: var(--muted); padding-left: 18px; position: relative; }
.m-facts li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; background: var(--pink); transform: rotate(45deg); }
.m-facts b { color: var(--ink); }
.phases { position: relative; padding: 10px 0 4px; }
.ph-line { position: absolute; left: 7px; right: 7px; top: 17px; height: 3px; background: var(--pink-pale); border-radius: 999px; overflow: hidden; }
.moments .ph-line { background: rgba(208, 96, 160, 0.18); }
.ph-line i { display: block; height: 100%; width: 2%; background: linear-gradient(90deg, var(--pink-light), var(--pink)); animation: phline 12s ease-in-out infinite; }
.ph-steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.ph { display: flex; flex-direction: column; gap: 6px; }
.ph .pdot { width: 15px; height: 15px; border-radius: 999px; background: #FFFFFF; border: 3px solid rgba(208, 96, 160, 0.35); animation: phdot 12s ease-out infinite; }
.ph b { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.ph small { font-size: 12.5px; line-height: 1.35; color: var(--muted); }
.p1 .pdot { animation-delay: 0.3s; } .p2 .pdot { animation-delay: 3.3s; } .p3 .pdot { animation-delay: 6.3s; } .p4 .pdot { animation-delay: 9.3s; }
.m-visual { position: relative; display: flex; justify-content: center; padding: 24px 0 56px; }
.m-stack { position: relative; width: min(340px, 100%); height: 420px; }
.m-photo { position: absolute; inset: 0; border-radius: 28px; background-size: cover; background-position: center; box-shadow: 0 30px 70px rgba(15, 17, 23, 0.22); animation: xfade 12s ease-in-out infinite; }
.m2 { animation-delay: 4s; opacity: 0; }
.m3 { animation-delay: 8s; opacity: 0; }
.m-live { position: absolute; top: 18px; right: 18px; z-index: 2; padding: 6px 12px; border-radius: 999px; background: rgba(15, 17, 23, 0.72); color: #FFFFFF; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; display: inline-flex; align-items: center; gap: 7px; }
.m-live::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: #FF7059; animation: heart 2s ease-in-out infinite; }
.m-ring { position: absolute; top: -22px; left: -22px; width: 76px; height: 76px; z-index: 2; filter: drop-shadow(0 10px 24px rgba(15, 17, 23, 0.25)); }
.ringdraw { animation: ringdraw 4s ease-in-out infinite; }
.m-chip { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 999px; background: #FFFFFF; box-shadow: 0 16px 40px rgba(15, 17, 23, 0.16); font-size: 13.5px; white-space: nowrap; animation: chip 12s ease-in-out infinite; }
.m-voice { left: -34px; bottom: 96px; animation-delay: 1.2s; }
.m-note { right: -26px; bottom: 24px; animation-delay: 6.2s; font-family: var(--font-display); font-weight: 700; }
.m-note span { font-family: var(--font-body); font-weight: 500; color: var(--faint); font-size: 12.5px; }
.wave { display: inline-flex; align-items: center; gap: 3px; }
.wave i { width: 3px; border-radius: 999px; background: var(--pink); animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(1) { height: 8px; } .wave i:nth-child(2) { height: 14px; animation-delay: 0.15s; } .wave i:nth-child(3) { height: 18px; animation-delay: 0.3s; } .wave i:nth-child(4) { height: 12px; animation-delay: 0.45s; } .wave i:nth-child(5) { height: 7px; animation-delay: 0.6s; }
.vidbox { position: relative; margin: 0 3px; border-radius: 12px; overflow: hidden; height: 310px; background: #ECEEF3; }
.vidbox video { width: 100%; height: 100%; object-fit: cover; display: block; }
.features-lower { padding-top: 96px; }

/* ---------- steps ---------- */
.steps { padding-top: 24px; display: flex; flex-direction: column; gap: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 14px; padding: 32px; border-radius: var(--r-card); border: 1px solid var(--line); }
.step .n { font-family: var(--font-display); font-size: 44px; font-weight: 800; line-height: 1; }
.step h3 { font-size: 22px; font-weight: 700; }
.step p { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- founder note ---------- */
.founder { margin: 96px var(--gutter) 0; }
.founder-grid { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 64px; align-items: center; padding: 64px; border-radius: 32px; background: var(--ink); color: #FFFFFF; }
.f-portrait { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 24px; background-size: cover; background-position: center; }
.f-mark { position: absolute; right: -14px; bottom: -14px; width: 64px; height: 64px; border-radius: 20px; background: var(--ink); display: flex; align-items: center; justify-content: center; border: 1px solid #2E3245; }
.f-note { display: flex; flex-direction: column; gap: 18px; }
.f-note blockquote { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.f-note blockquote p { font-family: var(--font-display); font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.3; color: #FFFFFF; }
.f-sig { display: flex; flex-direction: column; gap: 2px; padding-top: 6px; border-top: 1px solid #2E3245; }
.f-sig b { font-size: 16px; }
.f-sig span { font-size: 13.5px; color: #9BA0B0; }

/* ---------- new keyframes ---------- */
@keyframes xfade { 0%, 27% { opacity: 1; } 36%, 92% { opacity: 0; } 100% { opacity: 1; } }
@keyframes ringdraw { 0% { stroke-dashoffset: 220; } 55%, 100% { stroke-dashoffset: 0; } }
@keyframes phline { 0% { width: 2%; } 78%, 94% { width: 100%; } 100% { width: 2%; } }
@keyframes phdot { 0% { background: #FFFFFF; border-color: rgba(208, 96, 160, 0.35); } 4%, 92% { background: var(--pink); border-color: var(--pink); } 100% { background: #FFFFFF; } }
@keyframes wave { 0%, 100% { transform: scaleY(0.6); } 50% { transform: scaleY(1.4); } }

@media (prefers-reduced-motion: reduce) {
  .m2, .m3 { opacity: 0; }
  .m1 { opacity: 1; }
  .ph .pdot { background: var(--pink); border-color: var(--pink); }
  .ph-line i { width: 100%; }
}

@media (max-width: 860px) {
  .pills { gap: 8px; }
  .pill { font-size: 13px; padding: 8px 12px; }
  .explain { padding-top: 64px; gap: 28px; }
  .contrast { grid-template-columns: 1fr; }
  .c-card { padding: 24px; }
  .moments { margin-top: 64px; padding: 64px 0; }
  .moments-grid { grid-template-columns: 1fr; gap: 40px; }
  .ph-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .ph-line { display: none; }
  .ph .pdot { animation: none; background: var(--pink); border-color: var(--pink); }
  .m-visual { padding: 8px 0 48px; }
  .m-stack { height: 360px; }
  .m-ring { top: -14px; left: -6px; width: 60px; height: 60px; }
  .m-voice { left: -8px; bottom: 84px; }
  .m-note { right: -8px; bottom: 16px; }
  .features-lower { padding-top: 64px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { padding: 24px; }
  .founder { margin-top: 56px; }
  .founder-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; border-radius: 24px; }
  .f-portrait { max-width: 260px; }
}

/* ---------- multi-circle phone home ---------- */
.app-head.home .row svg { margin-top: 4px; }
.circ-row { display: flex; gap: 14px; align-items: flex-start; margin-top: 2px; }
.circ { position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cav { width: 44px; height: 44px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, 0.85); display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 15px; font-weight: 700; }
.cav.add { border-style: dashed; background: transparent; }
.circ.hot .cav { border-color: #FFD070; border-width: 3px; }
.circ-row .circ i { position: absolute; top: -4px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: #E8553A; color: #FFFFFF; font-size: 10px; font-weight: 700; font-style: normal; display: flex; align-items: center; justify-content: center; border: 2px solid #1090A8; }
.circ small { font-size: 9.5px; color: rgba(255, 255, 255, 0.85); font-weight: 500; max-width: 52px; text-align: center; }
.cpill { margin-left: auto; padding: 3px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
@media (max-width: 860px) {
  .circ-row { gap: 10px; }
  .cav { width: 38px; height: 38px; font-size: 13px; }
  .circ small { font-size: 9px; }
  .cpill { font-size: 9.5px; padding: 2px 7px; }
}

/* ---------- beta ---------- */
.beta-bar { background: var(--ink); color: #E8EAF0; font-size: 13.5px; text-align: center; padding: 10px 16px; line-height: 1.4; }
.beta-bar b { color: #FFD070; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; margin-right: 4px; }
/* .brand .beta-tag must out-rank .brand span (font-size 20px) or the chip renders brand-sized */
.brand .beta-tag { align-self: center; padding: 3px 8px; border-radius: 999px; background: #FEF3DC; color: #7A3808; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }
@media (max-width: 860px) { .beta-bar { font-size: 12.5px; padding: 9px 14px; } }

/* ---------- compare: group chat vs circle (replaces founder note) ---------- */
.compare { margin-top: 96px; padding: 96px 0; background: var(--ink); color: #FFFFFF; }
.compare .cmp-head { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; max-width: 720px; margin: 0 auto 48px; }
.compare h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.03; }
.compare .cmp-head p { font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.65); }
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto; }
.cmp-card { border-radius: var(--r-card); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.cmp-chat { background: #1C2130; border: 1px solid rgba(255, 255, 255, 0.08); }
.cmp-app { background: #FFFFFF; color: var(--ink); }
.cmp-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.6; margin-bottom: 6px; }
.bubble { max-width: 85%; padding: 10px 14px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; }
.bubble.in { background: rgba(255, 255, 255, 0.09); color: rgba(255, 255, 255, 0.92); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.out { background: rgba(138, 176, 48, 0.28); color: #E9F2D8; border-bottom-right-radius: 4px; align-self: flex-end; }
.bubble.deleted { font-style: italic; color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.04); }
.chat-day { align-self: center; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.07); border-radius: 999px; padding: 4px 12px; margin: 4px 0; }
.typing { font-size: 13px; font-style: italic; color: rgba(255, 255, 255, 0.4); }
.cmp-verdict { margin-top: auto; padding-top: 14px; font-size: 13.5px; font-weight: 600; }
.cmp-verdict.bad { color: #F0A8A0; border-top: 1px dashed rgba(255, 255, 255, 0.15); }
.cmp-verdict.good { color: #507010; border-top: 1px dashed rgba(15, 17, 23, 0.15); }
.app-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; }
.app-row + .app-row { border-top: 1px solid rgba(15, 17, 23, 0.06); }
.app-ico { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.app-row b { display: block; font-size: 14.5px; }
.app-row small { font-size: 12.5px; color: var(--muted); line-height: 1.4; }
.cmp-lines { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1000px; margin: 40px auto 0; }
.cmp-lines div { border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 16px 18px; font-size: 14.5px; line-height: 1.45; }
.cmp-lines b { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 2px; }
.cmp-lines span { color: rgba(255, 255, 255, 0.7); }
.cmp-close { text-align: center; font-size: 18px; margin-top: 40px; color: rgba(255, 255, 255, 0.85); }
.cmp-close a { color: var(--teal); font-weight: 700; }
@media (max-width: 860px) {
  .cmp-grid, .cmp-lines { grid-template-columns: 1fr; }
  .compare { padding: 72px 0; }
}
