:root {
  --ink: #17141d;
  --ink-soft: #2b2633;
  --paper: #ffffff;
  --paper-warm: #fbfaf7;
  --mist: #f2f4f8;
  --line: rgba(23, 20, 29, 0.12);
  --muted: #666f85;
  --mint: #56c9a6;
  --mint-soft: #d0f3e8;
  --purple: #6d28d9;
  --purple-soft: #e8dcfb;
  --pink: #d9286d;
  --pink-soft: #f8d8e5;
  --orange: #f38c3a;
  --orange-soft: #ffe7d5;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 30px 80px rgba(26, 18, 38, 0.13);
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; background: var(--paper); color: var(--ink); transform: translateY(-180%); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(23, 20, 29, 0.05);
  backdrop-filter: blur(18px);
}

.nav-shell { height: 80px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 800; letter-spacing: .13em; }
.brand img { width: 28px; height: 33px; object-fit: contain; }
.brand span { background: linear-gradient(100deg, var(--mint) 0%, #7aaecb 50%, var(--purple) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-light span { color: var(--paper); background: none; -webkit-text-fill-color: currentColor; }

.site-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; font-weight: 700; }
.site-nav > a:not(.nav-cta) { color: rgba(23, 20, 29, 0.74); transition: color .2s ease; }
.site-nav > a:not(.nav-cta):hover, .site-nav > a.active { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; padding: 11px 17px; border-radius: 999px; background: var(--ink); color: var(--paper); }
.nav-cta span { color: var(--mint); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); align-items: center; justify-content: center; flex-direction: column; gap: 6px; cursor: pointer; }
.nav-toggle > span:not(.sr-only) { width: 18px; height: 2px; background: var(--paper); border-radius: 99px; transition: transform .2s ease; }
.nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 890px;
  padding: 150px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 17%, rgba(109, 40, 217, .09), transparent 28%),
    radial-gradient(circle at 72% 46%, rgba(86, 201, 166, .11), transparent 30%),
    var(--paper-warm);
}

.hero::before { content: ""; position: absolute; inset: 0; opacity: .32; pointer-events: none; background-image: linear-gradient(rgba(23, 20, 29, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 20, 29, .025) 1px, transparent 1px); background-size: 48px 48px; }
.hero-glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(90px); opacity: .15; pointer-events: none; }
.hero-glow-a { top: 80px; right: 6%; background: var(--purple); }
.hero-glow-b { bottom: 120px; left: -120px; background: var(--mint); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.hero-copy { padding: 54px 0 80px; }
.eyebrow, .kicker { margin: 0 0 20px; color: var(--muted); font-size: .77rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 28px; height: 2px; background: var(--mint); }
.hero h1, .inner-hero h1, .legal-hero h1, .error-page h1 { margin: 0; font-size: clamp(3.7rem, 6.2vw, 6.2rem); line-height: .94; letter-spacing: -.067em; font-weight: 800; }
.hero h1 span { background: linear-gradient(100deg, #3ebc98 0%, #6f9ec8 46%, #8751e5 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: var(--muted); font-size: 1.16rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: .95rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: var(--paper); box-shadow: 0 14px 30px rgba(23, 20, 29, .18); }
.button-primary span { color: var(--mint); }
.button-ghost { border-color: var(--line); background: rgba(255, 255, 255, .55); }
.button-light { color: var(--ink); background: var(--paper); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; padding: 0; margin: 36px 0 0; color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-proof li { position: relative; padding-left: 14px; }
.hero-proof li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--pink); }

.product-stage { position: relative; min-height: 650px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(109, 40, 217, .13); border-radius: 50%; }
.orbit-one { width: 560px; height: 560px; }
.orbit-two { width: 420px; height: 420px; border-color: rgba(86, 201, 166, .22); }
.phone { position: relative; z-index: 2; width: 338px; height: 666px; padding: 10px; border: 2px solid rgba(255,255,255,.8); border-radius: 45px; background: var(--ink); box-shadow: 0 50px 100px rgba(41, 26, 63, .26), inset 0 0 0 1px rgba(255,255,255,.08); transform: rotate(1.5deg); }
.phone::before { content: ""; position: absolute; z-index: 3; top: 9px; left: 50%; width: 106px; height: 25px; border-radius: 0 0 15px 15px; background: var(--ink); transform: translateX(-50%); }
.phone-top { position: absolute; z-index: 4; top: 16px; left: 0; width: 100%; display: flex; justify-content: space-between; padding: 0 28px; color: var(--paper); font-size: .68rem; }
.phone-sensors { letter-spacing: 2px; font-size: .4rem; }
.phone-content { position: relative; height: 100%; padding: 43px 17px 14px; border-radius: 35px; background: #f8fbfc; overflow: hidden; }
.app-head { display: flex; align-items: flex-start; justify-content: space-between; }
.app-head div { display: flex; flex-direction: column; }
.app-head small { color: var(--muted); font-size: .68rem; }
.app-head strong { margin-top: -1px; font-size: 1.33rem; letter-spacing: -.04em; }
.app-head em { color: var(--mint); font-style: normal; }
.app-head img { width: 22px; height: auto; }
.balance-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 15px; }
.balance-row > span { min-height: 73px; padding: 9px; border-radius: 13px; background: var(--paper); box-shadow: 0 8px 22px rgba(23,20,29,.05); }
.balance-row i { display: block; width: 17px; height: 17px; margin-bottom: 5px; border-radius: 50%; }
.balance-row i.mint { background: var(--mint); }.balance-row i.orange { background: var(--orange); }.balance-row i.pink { background: var(--pink); }
.balance-row small, .balance-row strong { display: block; }
.balance-row small { color: var(--muted); font-size: .52rem; }
.balance-row strong { font-size: .72rem; }
.scan-card { display: flex; min-height: 138px; margin-top: 14px; padding: 24px; border-radius: 20px; color: var(--paper); background: linear-gradient(128deg, var(--mint) 0%, #6faece 48%, #9b62e0 100%); flex-direction: column; justify-content: flex-end; box-shadow: 0 18px 30px rgba(109,40,217,.13); }
.scan-card svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; margin-bottom: 12px; }
.scan-card strong { font-size: 1.25rem; line-height: 1.1; }
.scan-card span { margin-top: 5px; font-size: .68rem; opacity: .84; }
.table-card { display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; margin-top: 12px; padding: 12px; border-radius: 15px; background: var(--paper); box-shadow: 0 9px 24px rgba(23,20,29,.05); }
.table-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; color: var(--paper); background: linear-gradient(145deg, var(--pink), var(--orange)); }
.table-icon svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.table-card > span:nth-child(2) { display: flex; flex-direction: column; }
.table-card strong { font-size: .76rem; }.table-card small { color: var(--muted); font-size: .56rem; }.table-card b { color: var(--muted); }
.recent-head { display: flex; justify-content: space-between; margin-top: 17px; }.recent-head strong { font-size: .83rem; }.recent-head small { color: var(--muted); font-size: .55rem; }
.recent-empty { display: grid; place-items: center; min-height: 89px; margin-top: 7px; border: 1px solid rgba(23,20,29,.05); border-radius: 14px; color: #a2a7b1; background: var(--paper); }
.recent-empty span { font-size: 1.7rem; line-height: 1; }.recent-empty small { margin-top: -17px; font-size: .59rem; }
.app-nav { position: absolute; left: 12px; right: 12px; bottom: 12px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 7px; border-radius: 18px; background: rgba(255,255,255,.94); box-shadow: 0 8px 24px rgba(23,20,29,.07); }
.app-nav span { min-height: 40px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: var(--muted); font-size: .8rem; }.app-nav small { font-size: .49rem; }.app-nav .active { color: #2b9d80; background: var(--mint-soft); border-radius: 12px; }
.floating-pill { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; background: rgba(255,255,255,.88); box-shadow: 0 16px 38px rgba(23,20,29,.12); backdrop-filter: blur(14px); font-size: .75rem; font-weight: 800; }
.floating-pill-a { left: 0; top: 205px; }.floating-pill-a span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--purple); color: var(--paper); }
.floating-pill-b { right: -12px; bottom: 125px; }.floating-pill-b i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(86,201,166,.16); }
.hero-strip { position: relative; z-index: 2; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: .77rem; letter-spacing: .12em; }
.hero-strip strong { color: var(--ink); }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1fr 360px; gap: 90px; align-items: end; margin-bottom: 62px; }
.section-heading.wide { grid-template-columns: 1fr 430px; }
.section-heading h2, .table-copy h2, .intelligence-copy h2, .faq-heading h2, .cta-card h2, .about-card h2 { margin: 0; font-size: clamp(2.7rem, 4.6vw, 4.8rem); line-height: .98; letter-spacing: -.06em; }
.section-heading > p:last-child, .section-heading.wide > p, .table-copy > p, .intelligence-copy > p, .faq-heading > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.kicker { color: var(--pink); }
.kicker-light { color: var(--mint); }

.flow-section { background: var(--paper); }
.flow-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: stretch; }
.flow-controls { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.flow-tab { position: relative; display: grid; grid-template-columns: 46px 105px 1fr; align-items: center; min-height: 90px; padding: 0 4px; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; cursor: pointer; }
.flow-tab::before { content: ""; position: absolute; inset: 0 auto 0 -18px; width: 4px; background: var(--mint); transform: scaleY(0); transition: transform .2s ease; }
.flow-tab span { color: var(--muted); font-size: .76rem; letter-spacing: .12em; }.flow-tab strong { font-size: 1.05rem; }.flow-tab small { color: var(--muted); font-size: .87rem; }
.flow-tab.active::before { transform: scaleY(1); }.flow-tab.active span { color: var(--pink); }.flow-tab.active strong { color: var(--purple); }
.flow-demo { min-height: 520px; padding: 28px; border-radius: var(--radius-lg); color: var(--paper); background: var(--ink); box-shadow: var(--shadow); }
.demo-topline { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.56); font-size: .72rem; letter-spacing: .12em; }
.demo-topline i { height: 1px; background: rgba(255,255,255,.15); flex: 1; }
.demo-canvas { position: relative; min-height: 360px; display: grid; place-items: center; margin-top: 25px; border-radius: 24px; overflow: hidden; background: radial-gradient(circle at 20% 10%, rgba(86,201,166,.16), transparent 30%), radial-gradient(circle at 83% 82%, rgba(109,40,217,.22), transparent 32%), #211c28; }
.receipt-paper { position: relative; z-index: 2; width: 245px; padding: 26px 24px; color: var(--ink); background: var(--paper); box-shadow: 0 24px 50px rgba(0,0,0,.28); transform: rotate(-3deg); }
.receipt-paper::after { content: ""; position: absolute; bottom: -9px; left: 0; width: 100%; height: 10px; background: linear-gradient(135deg, transparent 5px, white 0) 0 0/10px 10px repeat-x; }
.receipt-logo { font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-align: center; }.receipt-dash { height: 1px; margin: 15px 0; background: repeating-linear-gradient(90deg, var(--ink) 0 4px, transparent 4px 8px); }
.receipt-paper p, .receipt-total { display: flex; justify-content: space-between; gap: 12px; margin: 9px 0; font-size: .68rem; }.receipt-paper b { white-space: nowrap; }.receipt-total { margin-top: 18px; padding-top: 11px; border-top: 2px solid var(--ink); font-size: .8rem; }
.scan-line { position: absolute; z-index: 3; left: 25%; right: 25%; top: 18%; height: 2px; background: linear-gradient(90deg, transparent, var(--mint), transparent); box-shadow: 0 0 18px var(--mint); animation: scan 3s ease-in-out infinite; }
@keyframes scan { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(230px); opacity: 1; } }
.ai-note { position: absolute; z-index: 4; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 11px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(23,20,29,.86); box-shadow: 0 10px 30px rgba(0,0,0,.22); font-size: .65rem; }
.ai-note i { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(86,201,166,.15); }.ai-note span { display: flex; flex-direction: column; }.ai-note small, .ai-note span { color: rgba(255,255,255,.6); }.ai-note strong { color: var(--paper); }
.demo-caption { margin: 22px 4px 0; color: rgba(255,255,255,.7); }

.invite-demo { width: min(490px, 88%); }.invite-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }.invite-head strong { font-size: 1.1rem; }.invite-head span { padding: 5px 9px; border-radius: 999px; color: var(--mint); background: rgba(86,201,166,.12); font-size: .62rem; }
.invite-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }.invite-option { min-height: 104px; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.05); }.invite-option b { display: grid; place-items: center; width: 31px; height: 31px; margin-bottom: 14px; border-radius: 10px; color: var(--ink); background: var(--mint); }.invite-option strong, .invite-option small { display: block; }.invite-option strong { font-size: .75rem; }.invite-option small { margin-top: 3px; color: rgba(255,255,255,.5); font-size: .58rem; }
.friend-row { display: flex; align-items: center; gap: 9px; margin-top: 20px; }.friend-row span { display: grid; place-items: center; width: 38px; height: 38px; margin-left: -4px; border: 2px solid #211c28; border-radius: 50%; color: var(--ink); background: var(--purple-soft); font-size: .62rem; font-weight: 800; }.friend-row span:nth-child(2) { background: var(--mint-soft); }.friend-row span:nth-child(3) { background: var(--pink-soft); }.friend-row small { margin-left: 4px; color: rgba(255,255,255,.5); }
.split-demo { width: min(520px, 90%); }.split-modes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }.split-modes span { padding: 10px 6px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; color: rgba(255,255,255,.55); text-align: center; font-size: .62rem; }.split-modes span.active { border-color: transparent; color: var(--ink); background: var(--mint); font-weight: 800; }.split-items { margin-top: 18px; }.split-items div { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .72rem; }.split-items small { color: rgba(255,255,255,.52); }.claim-chip { padding: 5px 8px; border-radius: 999px; color: var(--ink)!important; background: var(--purple-soft); font-size: .55rem!important; font-weight: 800; }
.settle-demo { width: min(500px, 90%); }.settle-total { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; }.settle-total span { color: rgba(255,255,255,.52); font-size: .72rem; }.settle-total strong { font-size: 1.5rem; }.settle-person { display: grid; grid-template-columns: 37px 1fr auto; gap: 11px; align-items: center; padding: 12px; margin-top: 8px; border-radius: 14px; background: rgba(255,255,255,.05); }.settle-person > span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; color: var(--ink); background: var(--mint-soft); font-size: .6rem; font-weight: 800; }.settle-person p { margin: 0; }.settle-person strong, .settle-person small { display: block; }.settle-person strong { font-size: .74rem; }.settle-person small { color: rgba(255,255,255,.48); font-size: .58rem; }.settle-person b { padding: 5px 8px; border-radius: 999px; color: var(--mint); background: rgba(86,201,166,.1); font-size: .55rem; }.settle-person b.pending { color: var(--orange); background: rgba(243,140,58,.1); }

.open-table { position: relative; color: var(--paper); background: var(--ink); overflow: hidden; }
.open-table::before { content: "OPEN / TABLE"; position: absolute; right: -24px; bottom: -55px; color: rgba(255,255,255,.025); font-size: clamp(6rem, 15vw, 14rem); font-weight: 800; letter-spacing: -.08em; white-space: nowrap; }
.table-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.table-copy > p { color: rgba(255,255,255,.62); max-width: 580px; margin: 24px 0 0; }
.table-steps { list-style: none; padding: 0; margin: 42px 0 0; }
.table-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.12); }
.table-steps li > span { color: var(--mint); font-size: .72rem; letter-spacing: .12em; }
.table-steps p { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 0; }.table-steps strong { font-size: .98rem; }.table-steps small { color: rgba(255,255,255,.48); text-align: right; max-width: 280px; }
.table-visual { position: relative; min-height: 620px; }
.table-qr-card { position: absolute; z-index: 3; top: 44px; left: 10px; width: 250px; padding: 22px; border-radius: 24px; color: var(--ink); background: var(--paper); box-shadow: 0 36px 70px rgba(0,0,0,.3); transform: rotate(-5deg); }
.qr-head { display: flex; align-items: center; justify-content: space-between; font-size: .7rem; font-weight: 800; letter-spacing: .12em; }.qr-head small { padding: 4px 7px; border-radius: 999px; color: #1d735c; background: var(--mint-soft); font-size: .55rem; }
.qr-code { width: 170px; aspect-ratio: 1; margin: 24px auto 18px; border: 10px solid var(--paper); background: repeating-conic-gradient(from 90deg, var(--ink) 0 25%, transparent 0 50%) 0 0/22px 22px, linear-gradient(135deg, transparent 44%, var(--purple) 45% 55%, transparent 56%); box-shadow: 0 0 0 2px var(--ink); }
.table-qr-card > strong, .table-qr-card > p { display: block; text-align: center; }.table-qr-card > strong { letter-spacing: .12em; }.table-qr-card > p { margin: 2px 0 0; color: var(--muted); font-size: .72rem; }
.guest-stack { position: absolute; z-index: 2; top: 138px; right: 0; width: 390px; }
.guest { position: relative; display: grid; grid-template-columns: 46px 1fr auto; gap: 12px; align-items: center; min-height: 76px; padding: 13px 15px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: 0 14px 30px rgba(0,0,0,.15); backdrop-filter: blur(10px); }
.guest-one { transform: translateX(8px); }.guest-two { transform: translateX(40px); }.guest-three { transform: translateX(17px); }.guest-four { transform: translateX(55px); }
.guest > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--ink); background: var(--mint-soft); font-size: .69rem; font-weight: 800; }.guest-two > span { background: var(--purple-soft); }.guest-three > span { background: var(--pink-soft); }.guest-four > span { background: var(--orange-soft); }
.guest p { margin: 0; }.guest strong, .guest small { display: block; }.guest small { color: rgba(255,255,255,.5); font-size: .67rem; }.guest > i { display: grid; place-items: center; min-width: 27px; height: 27px; padding: 0 7px; border-radius: 999px; background: rgba(255,255,255,.09); font-style: normal; font-size: .68rem; }.guest > i.paid { color: var(--ink); background: var(--mint); }.guest > i.pulse { min-width: 10px; width: 10px; height: 10px; padding: 0; background: var(--orange); box-shadow: 0 0 0 6px rgba(243,140,58,.13); }
.status-rail { position: absolute; z-index: 4; right: 7px; bottom: 20px; display: flex; gap: 9px; padding: 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(0,0,0,.2); }
.status-rail span { padding: 6px 10px; border-radius: 999px; color: rgba(255,255,255,.45); font-size: .63rem; }.status-rail span.done { color: var(--ink); background: var(--mint); }

.features-section { background: var(--paper-warm); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(23,20,29,.09); }
.feature-large { grid-column: span 2; }
.feature-accent { color: var(--paper); border-color: transparent; background: linear-gradient(145deg, var(--purple), #8f4ee7 58%, #b08bed); }
.feature-icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; }.feature-icon svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mint-bg { background: var(--mint-soft); color: #24765f; }.purple-bg { background: var(--purple-soft); color: var(--purple); }.pink-bg { background: var(--pink-soft); color: var(--pink); }.orange-bg { background: var(--orange-soft); color: #a55215; }.dark-bg { background: var(--ink); color: var(--mint); }
.feature-number { margin: 42px 0 10px; color: var(--muted); font-size: .69rem; font-weight: 800; letter-spacing: .11em; }.feature-accent .feature-number { color: rgba(255,255,255,.63); }
.feature-card h3 { margin: 0; max-width: 520px; font-size: 1.55rem; line-height: 1.12; letter-spacing: -.035em; }.feature-card > p:last-of-type { max-width: 520px; margin: 15px 0 0; color: var(--muted); }.feature-accent > p:last-of-type { color: rgba(255,255,255,.7); }
.data-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }.data-chips span { padding: 7px 10px; border-radius: 999px; color: #24765f; background: var(--mint-soft); font-size: .67rem; font-weight: 800; }

.intelligence-section { overflow: hidden; }
.intelligence-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.intelligence-copy > p { margin: 25px 0 0; }
.privacy-note { display: flex; gap: 15px; align-items: flex-start; max-width: 530px; margin-top: 34px; padding-top: 25px; border-top: 1px solid var(--line); }.privacy-note > span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; color: #217a61; background: var(--mint-soft); font-weight: 800; }.privacy-note p { margin: 0; }.privacy-note strong, .privacy-note small { display: block; }.privacy-note small { margin-top: 3px; color: var(--muted); }
.intelligence-visual { position: relative; min-height: 520px; }
.signal-core { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: 210px; height: 210px; border-radius: 50%; color: var(--paper); background: var(--ink); box-shadow: 0 30px 70px rgba(23,20,29,.25); transform: translate(-50%,-50%); text-align: center; }
.signal-core > span { position: absolute; top: 35px; color: var(--mint); font-size: .64rem; font-weight: 800; letter-spacing: .16em; }.signal-core > strong { font-size: 1.25rem; line-height: 1.1; }.signal-core > i { position: absolute; inset: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.signal { position: absolute; z-index: 2; width: 155px; min-height: 133px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); box-shadow: 0 18px 48px rgba(23,20,29,.09); }.signal small, .signal strong, .signal span { display: block; }.signal small { color: var(--muted); font-size: .61rem; font-weight: 800; letter-spacing: .1em; }.signal strong { margin-top: 5px; font-size: 2.25rem; line-height: 1; }.signal span { color: var(--muted); font-size: .7rem; }.signal-a { top: 10px; left: 10px; border-top: 4px solid var(--mint); }.signal-b { top: 23px; right: 7px; border-top: 4px solid var(--purple); }.signal-c { right: 0; bottom: 7px; border-top: 4px solid var(--pink); }
.signal-lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(23,20,29,.13); stroke-width: 1.3; stroke-dasharray: 5 7; }

.use-cases { color: var(--paper); background: var(--ink-soft); }
.use-cases .kicker { color: var(--mint); }.use-cases .section-heading > p:last-child { color: rgba(255,255,255,.56); }
.use-case-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.13); }
.use-case { min-height: 300px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,.13); }.use-case:last-child { border-right: 0; }
.use-case > span { color: var(--mint); font-size: .7rem; letter-spacing: .12em; }.use-case h3 { margin: 110px 0 10px; font-size: 1.35rem; }.use-case p { margin: 0; color: rgba(255,255,255,.56); }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; align-items: start; }
.faq-heading > p { margin-top: 25px; }.faq-heading a { color: var(--purple); font-weight: 800; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 2px; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 800; }
.accordion summary::-webkit-details-marker { display: none; }.accordion summary span { display: grid; place-items: center; width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; color: var(--purple); background: var(--purple-soft); font-size: 1.2rem; transition: transform .2s ease; }.accordion details[open] summary span { transform: rotate(45deg); }.accordion details p { max-width: 720px; margin: -5px 45px 25px 2px; color: var(--muted); }

.cta-section { padding: 0 0 40px; background: var(--paper); }
.cta-card { position: relative; min-height: 385px; display: grid; grid-template-columns: 1fr 350px; gap: 80px; align-items: center; padding: 70px; border-radius: var(--radius-lg); color: var(--paper); background: linear-gradient(135deg, var(--purple) 0%, #8c3fd4 55%, var(--pink) 120%); overflow: hidden; }
.cta-card::before { content: ""; position: absolute; width: 330px; height: 330px; right: -70px; top: -100px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.02); }
.cta-card > *:not(.cta-wordmark) { position: relative; z-index: 2; }
.cta-side p { margin: 0 0 25px; color: rgba(255,255,255,.75); font-size: 1.1rem; }.cta-wordmark { position: absolute; left: 25px; bottom: -78px; color: rgba(255,255,255,.055); font-size: 12rem; font-weight: 800; letter-spacing: -.1em; line-height: 1; }

.site-footer { padding: 80px 0 28px; color: var(--paper); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 55px; }.footer-brand p { max-width: 270px; margin: 22px 0 0; color: rgba(255,255,255,.48); }.site-footer h3 { margin: 0 0 18px; color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }.site-footer .footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }.site-footer .footer-grid a:not(.brand) { color: rgba(255,255,255,.67); font-size: .87rem; }.site-footer .footer-grid a:hover { color: var(--mint); }.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: .04em; }

.inner-page { background: var(--paper-warm); }
.inner-hero { padding: 180px 0 100px; color: var(--paper); background: var(--ink); }
.inner-hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 95px; align-items: end; }
.inner-hero h1 { font-size: clamp(3.2rem, 5.5vw, 5.8rem); }
.inner-intro { margin: 0; color: rgba(255,255,255,.62); font-size: 1.1rem; }
.about-story { background: var(--paper-warm); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.about-card { min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: 46px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); }.about-card.dark { color: var(--paper); background: var(--ink-soft); }.about-card > span { color: var(--pink); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }.about-card.dark > span { color: var(--mint); }.about-card h2 { font-size: clamp(2.3rem, 3.6vw, 4rem); }.about-card p { margin: 25px 0 0; color: var(--muted); }.about-card.dark p { color: rgba(255,255,255,.56); }
.principles-section { background: var(--paper); }.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.principle-grid article { padding: 28px; border-top: 3px solid var(--mint); background: var(--paper-warm); }.principle-grid article:nth-child(2) { border-color: var(--purple); }.principle-grid article:nth-child(3) { border-color: var(--pink); }.principle-grid span { color: var(--muted); font-size: .7rem; letter-spacing: .12em; }.principle-grid h3 { margin: 70px 0 12px; font-size: 1.4rem; }.principle-grid p { margin: 0; color: var(--muted); }
.team-section { background: var(--paper-warm); }.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }.team-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }.initials { display: grid; place-items: center; aspect-ratio: 1; border-radius: 18px; color: var(--ink); background: linear-gradient(145deg, var(--mint-soft), var(--purple-soft)); font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em; }.team-card:nth-child(2) .initials { background: linear-gradient(145deg, var(--purple-soft), var(--pink-soft)); }.team-card:nth-child(3) .initials { background: linear-gradient(145deg, var(--pink-soft), var(--orange-soft)); }.team-card:nth-child(4) .initials { background: linear-gradient(145deg, var(--orange-soft), var(--mint-soft)); }.team-card h3 { margin: 20px 0 2px; font-size: 1.05rem; }.team-card p { margin: 0; color: var(--muted); font-size: .82rem; }

.contact-hero { background: radial-gradient(circle at 80% 10%, rgba(109,40,217,.25), transparent 32%), var(--ink); }.contact-section { min-height: 600px; }.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.contact-card { position: relative; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }.contact-card.dark { color: var(--paper); background: var(--ink); }.contact-card.accent { grid-column: span 2; min-height: 230px; color: var(--paper); background: linear-gradient(120deg, var(--purple), var(--pink)); }.contact-card > span { color: var(--pink); font-size: .7rem; font-weight: 800; letter-spacing: .13em; }.contact-card.dark > span, .contact-card.accent > span { color: var(--mint); }.contact-card h2 { margin: auto 0 5px; font-size: clamp(1.5rem, 3vw, 2.6rem); letter-spacing: -.04em; overflow-wrap: anywhere; }.contact-card p { margin: 0; color: var(--muted); }.contact-card.dark p, .contact-card.accent p { color: rgba(255,255,255,.58); }.contact-card b { position: absolute; right: 30px; top: 30px; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--ink); background: var(--mint); }

.legal-hero { padding: 180px 0 75px; color: var(--paper); background: var(--ink); }.legal-hero h1 { font-size: clamp(3.3rem, 6vw, 6rem); }.legal-hero > .shell > p:last-child { margin: 25px 0 0; color: rgba(255,255,255,.5); }.legal-content { max-width: 870px; padding-top: 90px; padding-bottom: 120px; }.legal-content section { padding: 0 0 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }.legal-content h2 { margin: 0 0 15px; font-size: 1.55rem; letter-spacing: -.03em; }.legal-content p, .legal-content li { color: var(--muted); }.legal-content a { color: var(--purple); font-weight: 800; }.legal-content li { margin-bottom: 7px; }.legal-content.short { min-height: 900px; }

.error-page { min-height: 100vh; display: grid; place-items: center; color: var(--paper); background: radial-gradient(circle at 70% 30%, rgba(109,40,217,.35), transparent 30%), var(--ink); }.error-page main { width: min(760px, calc(100vw - 48px)); text-align: center; }.error-page .brand { justify-content: center; }.error-page p { margin: 80px 0 15px; color: var(--mint); font-size: .75rem; font-weight: 800; letter-spacing: .15em; }.error-page h1 { margin-bottom: 40px; font-size: clamp(3rem, 7vw, 6.5rem); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--reveal-delay, 0ms); }.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --shell: min(920px, calc(100vw - 40px)); }
  .hero-grid { grid-template-columns: 1fr 420px; gap: 20px; }
  .hero h1 { font-size: clamp(3.6rem, 7.7vw, 5.5rem); }
  .floating-pill-a { left: -25px; }.floating-pill-b { right: -10px; }
  .table-grid { gap: 35px; }.guest-stack { width: 330px; }.table-qr-card { left: -10px; width: 225px; }.qr-code { width: 145px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }.feature-large { grid-column: span 2; }
  .intelligence-grid { gap: 35px; }.faq-grid { gap: 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 32px, 680px); }
  .site-header { background: rgba(255,255,255,.92); border-color: var(--line); backdrop-filter: blur(16px); }
  .nav-shell { height: 70px; }.nav-toggle { display: flex; }
  .site-nav { position: fixed; inset: 70px 0 auto; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 18px 16px 26px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: 0 20px 40px rgba(23,20,29,.12); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }.site-nav > a:not(.nav-cta) { padding: 14px 4px; border-bottom: 1px solid var(--line); }.nav-cta { justify-content: space-between; margin-top: 16px; }
  .hero { min-height: auto; padding-top: 115px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { padding: 20px 0 40px; }.hero h1 { font-size: clamp(3.1rem, 13vw, 5.2rem); }.hero-lede { font-size: 1.03rem; }.product-stage { min-height: 650px; }.phone { width: 320px; height: 630px; }.orbit-one { width: 520px; height: 520px; }.orbit-two { width: 380px; height: 380px; }.floating-pill-a { left: 0; }.floating-pill-b { right: 0; }.hero-strip { flex-direction: column; padding: 22px 0; }
  .section { padding: 88px 0; }.section-heading, .section-heading.wide { grid-template-columns: 1fr; gap: 25px; margin-bottom: 45px; }.section-heading h2, .table-copy h2, .intelligence-copy h2, .faq-heading h2, .cta-card h2 { font-size: clamp(2.7rem, 10vw, 4.2rem); }
  .flow-layout, .table-grid, .intelligence-grid, .faq-grid, .inner-hero-grid { grid-template-columns: 1fr; }.flow-tab { grid-template-columns: 45px 100px 1fr; }.flow-demo { min-height: 500px; }.demo-canvas { min-height: 350px; }
  .table-grid { gap: 35px; }.table-copy > p { font-size: 1rem; }.table-steps p { display: block; }.table-steps small { display: block; margin-top: 3px; text-align: left; }.table-visual { min-height: 620px; max-width: 570px; width: 100%; margin: 0 auto; }.table-qr-card { left: 0; }.guest-stack { right: 0; width: 340px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-large { grid-column: auto; }.feature-card { min-height: 310px; }
  .intelligence-copy { margin-bottom: 25px; }.intelligence-visual { max-width: 600px; width: 100%; margin: 0 auto; }
  .use-case-grid { grid-template-columns: repeat(2, 1fr); }.use-case:nth-child(2) { border-right: 0; }.use-case { min-height: 250px; border-bottom: 1px solid rgba(255,255,255,.13); }.use-case h3 { margin-top: 75px; }
  .cta-card { grid-template-columns: 1fr; gap: 30px; padding: 45px; }.footer-grid { grid-template-columns: 1.5fr 1fr; }.footer-brand { grid-column: span 2; }
  .inner-hero { padding: 145px 0 80px; }.inner-hero-grid { gap: 35px; }.about-grid { grid-template-columns: 1fr; }.principle-grid { grid-template-columns: 1fr; }.principle-grid h3 { margin-top: 45px; }
  .contact-grid { grid-template-columns: 1fr; }.contact-card.accent { grid-column: auto; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 28px); }
  .hero { padding-top: 105px; }.hero h1 { font-size: clamp(3rem, 15vw, 4.3rem); }.hero-actions { flex-direction: column; align-items: stretch; }.hero-proof { gap: 10px 16px; }
  .product-stage { min-height: 580px; }.phone { width: 285px; height: 560px; border-radius: 39px; }.phone-content { padding: 40px 13px 12px; border-radius: 31px; }.phone-top { padding: 0 24px; }.scan-card { min-height: 116px; padding: 18px; }.recent-empty { min-height: 70px; }.app-nav { bottom: 8px; }.floating-pill { font-size: .64rem; padding: 8px 10px; }.floating-pill-a { top: 160px; left: -5px; }.floating-pill-b { bottom: 105px; right: -7px; }.orbit-one { width: 430px; height: 430px; }.orbit-two { width: 330px; height: 330px; }
  .section { padding: 74px 0; }.section-heading h2, .table-copy h2, .intelligence-copy h2, .faq-heading h2, .cta-card h2 { font-size: 2.75rem; }.flow-tab { grid-template-columns: 40px 80px 1fr; min-height: 80px; }.flow-tab small { font-size: .74rem; }.flow-demo { padding: 18px; min-height: 470px; border-radius: 26px; }.demo-canvas { min-height: 345px; }.receipt-paper { width: 218px; padding: 23px 20px; }.ai-note { right: 10px; bottom: 10px; }.invite-options { grid-template-columns: 1fr; }.invite-option { min-height: 72px; }.invite-option b { float: left; margin: 0 10px 0 0; }.split-modes { grid-template-columns: repeat(2,1fr); }
  .table-visual { min-height: 660px; }.table-qr-card { left: 50%; transform: translateX(-50%) rotate(-3deg); }.guest-stack { top: 340px; left: 0; width: 100%; }.guest-one,.guest-two,.guest-three,.guest-four { transform: none; }.status-rail { left: 50%; right: auto; bottom: 0; transform: translateX(-50%); white-space: nowrap; }.status-rail span { padding: 5px 7px; }
  .feature-card { padding: 24px; }.feature-card h3 { font-size: 1.4rem; }
  .intelligence-visual { min-height: 565px; }.signal-core { width: 180px; height: 180px; }.signal { width: 130px; min-height: 118px; padding: 14px; }.signal-a { left: 0; }.signal-b { right: 0; }.signal-c { right: 0; bottom: 0; }
  .use-case-grid { grid-template-columns: 1fr; }.use-case { border-right: 0; min-height: 210px; }.use-case h3 { margin-top: 55px; }
  .cta-card { min-height: 390px; padding: 35px 28px; }.cta-wordmark { font-size: 8rem; bottom: -48px; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }.footer-brand { grid-column: span 2; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .about-card { min-height: 420px; padding: 30px; }.team-grid { grid-template-columns: 1fr 1fr; }.team-card { padding: 14px; }.initials { font-size: 1.8rem; }.team-card h3 { font-size: .92rem; }.team-card p { font-size: .73rem; }
  .contact-card { min-height: 260px; padding: 28px; }.contact-card b { right: 22px; top: 22px; }.legal-content { padding-top: 60px; padding-bottom: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
