/* ============================================================
   Bondi POS — marketing site. Counter design system.
   ============================================================ */
:root {
  --blue: oklch(0.48 0.16 257);
  --blue-d: oklch(0.40 0.15 257);
  --bright: oklch(0.62 0.18 252);
  --ink: #141829;
  --ink-2: #2b3050;
  --muted: #6a7088;
  --muted-2: #9aa0b5;
  --canvas: #eef1f7;
  --surface: #ffffff;
  --line: #e7ebf3;
  --line-2: #f0f2f7;
  --soft: color-mix(in oklch, var(--blue) 9%, white);
  --bright-soft: color-mix(in oklch, var(--bright) 14%, white);
  --green: #15803d;
  --green-soft: #dcfce7;
  --amber: #f59e0b;
  --glow: color-mix(in oklch, var(--blue) 30%, transparent);
  --bright-glow: color-mix(in oklch, var(--bright) 34%, transparent);
  --r: 18px;
  --r-sm: 12px;
  --maxw: 1180px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; font-family: var(--font); color: var(--ink); background: var(--surface);
  -webkit-font-smoothing: antialiased; font-variant-numeric: tabular-nums; line-height: 1.5;
}
h1, h2, h3, p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--blue); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: none; cursor: pointer;
  font-family: var(--font); font-weight: 800; border-radius: 999px; white-space: nowrap; transition: transform .12s, box-shadow .15s, background .15s; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-md { padding: 12px 20px; font-size: 14.5px; }
.btn-primary { background: var(--bright); color: #fff; box-shadow: 0 8px 22px var(--bright-glow); }
.btn-primary:hover { box-shadow: 0 12px 30px var(--bright-glow); transform: translateY(-1px); }
.btn-deep { background: var(--blue); color: #fff; box-shadow: 0 8px 22px var(--glow); }
.btn-deep:hover { transform: translateY(-1px); }
.btn-ghost { background: var(--canvas); color: var(--ink); }
.btn-ghost:hover { background: #e3e7f0; }
.btn-white { background: #fff; color: var(--blue); box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.btn-white:hover { transform: translateY(-1px); }
.btn-outline-w { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.btn-outline-w:hover { background: rgba(255,255,255,.2); }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px) saturate(160%); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 14px; height: 68px; }
/* wordmark logo — "Bondi." + POS tag over a barcode rule */
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; line-height: 1; }
.brand .wm-top { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 800; letter-spacing: -0.6px; }
.brand .wm-name { font-size: 21px; color: var(--ink); }
.brand .wm-name .pt { color: var(--blue); }
.brand .wm-pos { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--blue); }
.brand .wm-rule { display: flex; gap: 3px; height: 4px; align-self: stretch; }
.brand .wm-rule i { background: var(--blue); border-radius: 1px; }
.brand--dark .wm-name { color: #fff; }
.brand--dark .wm-name .pt { color: var(--bright); }
.brand--dark .wm-pos { color: var(--bright); }
.brand--dark .wm-rule i { background: var(--bright); }
.nav-links { display: flex; gap: 4px; margin-left: 18px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--ink); background: var(--canvas); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-cta .signin { padding: 9px 14px; font-weight: 700; font-size: 14.5px; color: var(--ink); border-radius: 999px; }
.nav-cta .signin:hover { background: var(--canvas); }
.burger { display: none; }

/* hero */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 540px at 78% -8%, var(--soft), transparent 60%),
  linear-gradient(180deg, #fff, var(--canvas)); }
.hero-in { display: grid; grid-template-columns: 1.04fr 1fr; gap: 48px; align-items: center; padding: 72px 0 84px; }
.hero h1 { font-size: clamp(38px, 4.6vw, 58px); font-weight: 800; letter-spacing: -1.8px; line-height: 1.04; margin: 18px 0 0; }
.hero h1 .hl { color: var(--blue); }
.hero .sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); font-weight: 500; margin-top: 20px; max-width: 480px; }
.hero-cta { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 18px; margin-top: 26px; color: var(--muted); font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.dot { width: 7px; height: 7px; border-radius: 7px; background: var(--green); }

/* product device */
.device { position: relative; }
.till { background: var(--canvas); border-radius: 22px; padding: 14px; box-shadow: 0 30px 70px rgba(20,30,80,.22), 0 0 0 1px rgba(20,30,80,.04); }
.till-top { display: flex; align-items: center; gap: 9px; padding: 4px 8px 12px; }
.till-top .mk { width: 22px; height: 22px; border-radius: 7px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.till-top b { font-size: 13px; }
.till-top .who { margin-left: auto; display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); font-weight: 700; }
.till-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.till-cell { background: #fff; border-radius: 14px; padding: 12px; box-shadow: 0 2px 8px rgba(20,30,80,.05); }
.till-tabs { display: flex; gap: 6px; margin-bottom: 11px; }
.chip { font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.chip.on { background: var(--blue); color: #fff; }
.chip.off { background: var(--canvas); color: var(--muted); }
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.prod { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 10px; }
.prod .nm { font-size: 12px; font-weight: 700; }
.prod .pr { font-size: 16px; font-weight: 800; color: var(--blue); letter-spacing: -0.4px; margin-top: 8px; }
.basket { display: flex; flex-direction: column; }
.basket h4 { font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.bl { display: flex; justify-content: space-between; font-size: 11.5px; padding: 5px 0; border-bottom: 1px solid var(--line-2); }
.bl b { font-weight: 700; }
.charge { margin-top: auto; background: var(--blue); border-radius: 12px; padding: 12px; color: #fff; }
.charge .tot { display: flex; justify-content: space-between; align-items: baseline; }
.charge .tot b { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.charge .go { margin-top: 9px; background: var(--bright); border-radius: 9px; padding: 11px; text-align: center; font-weight: 800; font-size: 13.5px; }
.float { position: absolute; background: #fff; border-radius: 14px; padding: 12px 15px; box-shadow: 0 16px 40px rgba(20,30,80,.16); display: flex; align-items: center; gap: 11px; font-weight: 700; }
.float .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float.f1 { top: -22px; right: -18px; }
.float.f2 { bottom: -24px; left: -26px; }

/* generic section */
section { padding: 84px 0; }
.sec-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; letter-spacing: -1.2px; margin-top: 12px; }
.sec-head p { font-size: 17.5px; color: var(--muted); font-weight: 500; margin-top: 14px; }

/* trust strip */
.trust { background: var(--ink); color: #fff; padding: 30px 0; }
.trust-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-in .lab { font-size: 13.5px; font-weight: 700; color: rgba(255,255,255,.6); }
.stat { text-align: center; }
.stat b { display: block; font-size: 30px; font-weight: 800; letter-spacing: -0.8px; }
.stat span { font-size: 12.5px; color: rgba(255,255,255,.6); font-weight: 600; }

/* features */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; transition: transform .15s, box-shadow .15s; }
.feat:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,30,80,.08); }
.feat .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.feat h3 { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; }
.feat p { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 8px; }

/* showcase */
.show { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.show + .show { margin-top: 96px; }
.show.rev .show-text { order: 2; }
.show-text h2 { font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; letter-spacing: -1px; margin-top: 12px; }
.show-text p { color: var(--muted); font-size: 16.5px; font-weight: 500; margin-top: 14px; }
.show-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.show-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; font-weight: 600; list-style: none; }
.show-list .tick { width: 24px; height: 24px; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.show-visual { background: linear-gradient(160deg, var(--soft), var(--canvas)); border-radius: 24px; padding: 32px; }

/* analytics mock */
.an { background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 16px 40px rgba(20,30,80,.12); }
.an-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.kpi { border-radius: 12px; padding: 13px; }
.kpi.blue { background: var(--blue); color: #fff; }
.kpi.plain { background: var(--canvas); }
.kpi .l { font-size: 11px; font-weight: 700; opacity: .85; }
.kpi .v { font-size: 22px; font-weight: 800; letter-spacing: -0.6px; margin-top: 3px; }
.kpi .d { font-size: 10.5px; font-weight: 700; margin-top: 3px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 110px; padding: 6px 4px 0; }
.bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.bars .bar { width: 100%; max-width: 30px; background: linear-gradient(var(--bright), var(--blue)); border-radius: 6px 6px 0 0; }
.bars .lab { font-size: 10px; color: var(--muted); font-weight: 700; }

/* staff mock */
.staff-card { background: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 16px 40px rgba(20,30,80,.12); }
.staff-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.staff-row:last-child { border-bottom: none; }
.av { width: 38px; height: 38px; border-radius: 999px; background: var(--soft); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-size: 13px; flex-shrink: 0; }
.role-badge { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; padding: 3px 9px; border-radius: 7px; }

/* pricing */
.pricing { background: var(--canvas); }
.toggle { display: inline-flex; background: #fff; border-radius: 999px; padding: 5px; gap: 4px; box-shadow: 0 2px 8px rgba(20,30,80,.06); margin: 0 auto; }
.toggle button { border: none; background: transparent; font-family: var(--font); font-weight: 800; font-size: 14px; padding: 9px 20px; border-radius: 999px; cursor: pointer; color: var(--muted); transition: all .15s; }
.toggle button.on { background: var(--blue); color: #fff; box-shadow: 0 4px 12px var(--glow); }
.toggle .save { font-size: 11px; background: var(--green-soft); color: var(--green); padding: 2px 7px; border-radius: 7px; margin-left: 6px; }
.plan-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; max-width: 920px; margin: 40px auto 0; }
.plan { background: var(--surface); border-radius: 22px; padding: 36px; box-shadow: 0 20px 50px rgba(20,30,80,.10); position: relative; overflow: hidden; }
.plan.hero-plan { background: linear-gradient(165deg, var(--blue), var(--blue-d)); color: #fff; }
.plan .pname { font-size: 14px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; opacity: .9; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; }
.plan .price .amt { font-size: 56px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.plan .price .per { font-size: 16px; font-weight: 600; opacity: .8; }
.plan .billed { font-size: 13.5px; opacity: .8; font-weight: 500; }
.plan .trial-tag { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.16); padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 700; margin-top: 20px; }
.plan-feats { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; font-weight: 600; }
.plan-feats .tick { width: 22px; height: 22px; border-radius: 999px; background: rgba(255,255,255,.2); display: grid; place-items: center; flex-shrink: 0; }
.plan.aside { display: flex; flex-direction: column; gap: 18px; }
.aside-card { background: var(--canvas); border-radius: var(--r); padding: 20px; }
.aside-card h4 { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 9px; }
.aside-card p { font-size: 13.5px; color: var(--muted); font-weight: 500; margin-top: 6px; }

/* checkout modal */
.overlay { position: fixed; inset: 0; z-index: 100; background: rgba(20,24,41,.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px; }
.overlay.open { display: flex; }
.checkout { width: 880px; max-width: 100%; max-height: 92vh; overflow: auto; background: var(--surface); border-radius: 22px;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 40px 100px rgba(0,0,0,.4); }
.co-summary { background: linear-gradient(170deg, var(--blue), var(--blue-d)); color: #fff; padding: 34px; }
.co-summary .bk { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; line-height: 1; margin-bottom: 28px; }
.co-summary .bk .wm-top { display: inline-flex; align-items: baseline; gap: 7px; font-weight: 800; letter-spacing: -0.6px; }
.co-summary .bk .wm-name { font-size: 20px; color: #fff; }
.co-summary .bk .wm-name .pt { color: var(--bright); }
.co-summary .bk .wm-pos { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,.85); }
.co-summary .bk .wm-rule { display: flex; gap: 3px; height: 4px; align-self: stretch; }
.co-summary .bk .wm-rule i { background: rgba(255,255,255,.9); border-radius: 1px; }
.co-line { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; font-size: 14.5px; }
.co-line.big { font-size: 16px; font-weight: 800; border-top: 1px solid rgba(255,255,255,.2); margin-top: 8px; padding-top: 16px; }
.co-line .muted { opacity: .75; font-weight: 500; }
.co-note { margin-top: 22px; background: rgba(255,255,255,.12); border-radius: 12px; padding: 14px; font-size: 13px; font-weight: 500; opacity: .95; line-height: 1.5; }
.co-form { padding: 34px; position: relative; }
.co-form .x { position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; border-radius: 999px; border: none; background: var(--canvas); cursor: pointer; display: grid; place-items: center; color: var(--muted); }
.co-form h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; }
.co-form .lede { color: var(--muted); font-size: 14px; font-weight: 500; margin-top: 6px; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; }
.field .inp { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: 0 13px; background: #fff; transition: border-color .15s; }
.field .inp:focus-within { border-color: var(--blue); }
.field input { flex: 1; border: none; outline: none; font-family: var(--font); font-size: 14.5px; padding: 12px 0; background: transparent; color: var(--ink); font-variant-numeric: tabular-nums; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-secure { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; font-size: 12px; color: var(--muted-2); font-weight: 600; }
.co-success { padding: 56px 40px; text-align: center; grid-column: 1 / -1; }
.co-success .big-tick { width: 80px; height: 80px; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin: 0 auto 22px; }
.co-success h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.6px; }
.co-success p { color: var(--muted); font-size: 16px; font-weight: 500; margin: 12px auto 26px; max-width: 420px; }

/* faq */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-size: 16.5px; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm { width: 26px; height: 26px; flex-shrink: 0; color: var(--blue); transition: transform .2s; }
.faq-item[open] summary .pm { transform: rotate(45deg); }
.faq-item .ans { padding: 0 24px 22px; color: var(--muted); font-size: 15px; font-weight: 500; line-height: 1.6; }

/* final cta */
.cta { background: linear-gradient(160deg, var(--blue), var(--blue-d)); color: #fff; border-radius: 28px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; letter-spacing: -1.2px; position: relative; }
.cta p { font-size: 18px; opacity: .88; font-weight: 500; margin-top: 14px; position: relative; }
.cta .hero-cta { justify-content: center; margin-top: 30px; position: relative; }
.cta .blob { position: absolute; border-radius: 999px; background: rgba(255,255,255,.08); }

/* footer */
footer { background: var(--ink); color: #fff; padding: 56px 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand p { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500; margin-top: 14px; max-width: 280px; }
.foot-col h5 { font-size: 13px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.foot-col a { display: block; color: rgba(255,255,255,.82); font-size: 14.5px; font-weight: 500; padding: 6px 0; }
.foot-col a:hover { color: #fff; }
.foot-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; color: rgba(255,255,255,.5); font-size: 13px; font-weight: 500; gap: 16px; flex-wrap: wrap; }

/* hero promise pill */
.promise-pill { display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff;
  padding: 9px 16px 9px 11px; border-radius: 999px; font-size: 13.5px; font-weight: 700; margin-bottom: 4px; }
.promise-pill .pct { background: var(--bright); color: #fff; font-weight: 800; font-size: 12px; padding: 3px 9px; border-radius: 999px; letter-spacing: .3px; }

/* pledge band */
.pledge { background: var(--ink); color: #fff; }
.pledge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pledge-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r); padding: 26px; }
.pledge-item .big { font-size: 42px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; color: #fff; }
.pledge-item .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.10); color: var(--bright); display: grid; place-items: center; }
.pledge-item h4 { font-size: 17px; font-weight: 800; margin-top: 16px; letter-spacing: -0.2px; }
.pledge-item p { font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,.62); margin-top: 7px; line-height: 1.5; }

/* comparison */
.compare { max-width: 860px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; box-shadow: 0 16px 40px rgba(20,30,80,.06); }
.compare-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.compare-row > div { padding: 15px 22px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
.compare-row:last-child > div { border-bottom: none; }
.compare-row .lbl { font-weight: 700; color: var(--ink); }
.compare-row .c-us { background: var(--soft); color: var(--ink); font-weight: 700; }
.compare-row .c-them { color: var(--muted); font-weight: 600; }
.compare-head > div { font-weight: 800; font-size: 15px; padding-top: 18px; padding-bottom: 18px; }
.compare-head .c-us { color: var(--blue); }
.compare-head .c-them { color: var(--muted); }
.compare-head .c-us .mk { width: 22px; height: 22px; border-radius: 6px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.mini-tick { color: var(--green); flex-shrink: 0; }
.mini-cross { color: #c3c8d8; flex-shrink: 0; }

/* responsive */
@media (max-width: 960px) {
  .pledge-grid { grid-template-columns: 1fr 1fr; }
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .device { max-width: 520px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .show, .show.rev { grid-template-columns: 1fr; gap: 32px; }
  .show.rev .show-text { order: 0; }
  .plan-wrap { grid-template-columns: 1fr; }
  .checkout { grid-template-columns: 1fr; }
  .co-summary { display: none; }
  .nav-links { display: none; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .compare-row > div { padding: 13px 14px; font-size: 13px; gap: 6px; }
  .compare-head > div { font-size: 13.5px; }
  .trust-in { justify-content: center; text-align: center; }
  .cta { padding: 44px 24px; }
  .foot-top { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}

/* ============================================================
   Multi-page additions — sub-page hero, hooks, AI setup,
   hardware kit, feature groups, mobile nav.
   ============================================================ */

/* active nav link */
.nav-links a.active { color: var(--ink); background: var(--canvas); }

/* mobile nav */
.burger { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--ink); }
.mobile-menu { display: none; }

/* sub-page hero (pricing / features) */
.page-hero { position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(900px 480px at 50% -20%, var(--soft), transparent 62%), linear-gradient(180deg, #fff, var(--canvas));
  padding: 80px 0 72px; }
.page-hero .eyebrow { display: block; }
.page-hero h1 { font-size: clamp(34px, 4.2vw, 54px); font-weight: 800; letter-spacing: -1.6px; line-height: 1.05; margin: 14px auto 0; max-width: 820px; }
.page-hero h1 .hl { color: var(--blue); }
.page-hero .sub { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); font-weight: 500; margin: 20px auto 0; max-width: 600px; }
.page-hero .hero-cta { justify-content: center; }
.page-hero .hero-trust { justify-content: center; }

/* 3 hooks band */
.hooks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hook { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; overflow: hidden; }
.hook .num { font-size: 12.5px; font-weight: 800; color: var(--muted-2); letter-spacing: 1.2px; }
.hook .big { font-size: 40px; font-weight: 800; letter-spacing: -1.6px; line-height: 1; margin: 14px 0 2px; color: var(--blue); }
.hook .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--soft); color: var(--blue); display: grid; place-items: center; margin: 8px 0 4px; }
.hook h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; margin-top: 12px; }
.hook p { color: var(--muted); font-size: 14.5px; font-weight: 500; margin-top: 8px; line-height: 1.55; }
.hook .tag { display: inline-block; margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--green); background: var(--green-soft); padding: 4px 11px; border-radius: 999px; }

/* AI setup / photo import showcase */
.setup { background: var(--ink); color: #fff; overflow: hidden; }
.setup .sec-head h2 { color: #fff; }
.setup .sec-head p { color: rgba(255,255,255,.62); }
.setup .sec-head .eyebrow { color: var(--bright); }
.import-flow { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; max-width: 1000px; margin: 0 auto; }
.import-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 20px; }
.import-card .cap { font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

/* drop zone */
.dropzone { position: relative; border-radius: 14px; height: 320px; overflow: hidden;
  background-color: #1b2138;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 12px, transparent 12px 24px);
  border: 2px dashed rgba(255,255,255,.20); transition: border-color .25s, background-color .25s; }
.dropzone.over { border-color: var(--bright); background-color: #232a48; }
.dz-prompt { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: rgba(255,255,255,.5); text-align: center; transition: opacity .3s; }
.dz-prompt .dz-title { font-size: 15px; font-weight: 800; color: rgba(255,255,255,.72); }
.dz-prompt .dz-sub { font-size: 12px; font-weight: 600; letter-spacing: .3px; }
.dz-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transform: scale(1.04); transition: opacity .5s ease, transform .5s ease; }
.dropzone.loaded .dz-prompt { opacity: 0; }
.dropzone.loaded .dz-img { opacity: 1; transform: none; }

.import-arrow { width: 56px; height: 56px; border-radius: 999px; background: var(--bright); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px var(--bright-glow); }

/* build stage (right) */
.build-stage { position: relative; min-height: 320px; }
.build-idle { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: 13.5px; font-weight: 600; transition: opacity .3s; }
.build-loading { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 12px; padding: 0 6px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.build-stage.loading .build-idle { opacity: 0; }
.build-stage.loading .build-loading { opacity: 1; }
.bl-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); }
.bl-track { height: 8px; border-radius: 999px; background: rgba(255,255,255,.10); overflow: hidden; }
.bl-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--bright), #7aa0ff); transition: width .2s linear; }
.extracted { position: relative; display: flex; flex-direction: column; gap: 9px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.build-stage.done .build-idle, .build-stage.done .build-loading { opacity: 0; }
.build-stage.done .extracted { opacity: 1; pointer-events: auto; }
.ex-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 11px 13px; opacity: 0; transform: translateY(6px); }
.build-stage.done .ex-row { animation: exIn .5s ease forwards; }
.build-stage.done .ex-row:nth-child(1) { animation-delay: .05s; }
.build-stage.done .ex-row:nth-child(2) { animation-delay: .18s; }
.build-stage.done .ex-row:nth-child(3) { animation-delay: .31s; }
.build-stage.done .ex-row:nth-child(4) { animation-delay: .44s; }
.build-stage.done .ex-row:nth-child(5) { animation-delay: .57s; }
.ex-row .swatch { width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0; }
.ex-row .nm { font-size: 14px; font-weight: 700; flex: 1; }
.ex-row .cat { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); padding: 3px 9px; border-radius: 999px; }
.ex-row .pr { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
@keyframes exIn { to { opacity: 1; transform: none; } }

/* animated drag cursor carrying the file */
.drag-cursor { position: absolute; top: 0; left: 0; z-index: 5; opacity: 0; pointer-events: none; will-change: transform, opacity; transition: opacity .2s; }
.drag-cursor.show { opacity: 1; }
.drag-cursor .drag-file { transform: rotate(-4deg); width: 132px; padding: 8px; border-radius: 12px; background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.06); overflow: hidden; }
.drag-cursor .df-thumb { display: block; width: 100%; height: 80px; object-fit: cover; object-position: top center; border-radius: 7px; }
.drag-cursor .df-name { display: flex; align-items: center; gap: 5px; margin-top: 7px; padding: 0 2px; font-size: 11.5px; font-weight: 800; letter-spacing: .2px; color: #1a1f36; white-space: nowrap; }
.drag-cursor .drag-arrow { position: absolute; top: -6px; left: -6px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
@media (prefers-reduced-motion: reduce) { .ex-row { opacity: 1; transform: none; animation: none; } }
.setup-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 46px auto 0; }
.setup-step { text-align: center; }
.setup-step .n { width: 34px; height: 34px; border-radius: 999px; background: rgba(255,255,255,.10); color: var(--bright); font-weight: 800; display: grid; place-items: center; margin: 0 auto 12px; font-size: 15px; }
.setup-step h4 { font-size: 15.5px; font-weight: 800; }
.setup-step p { font-size: 13.5px; color: rgba(255,255,255,.6); font-weight: 500; margin-top: 6px; line-height: 1.5; }

/* hardware kit */
.kit-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.kit-list { display: flex; flex-direction: column; gap: 12px; }
.kit-item { display: flex; align-items: center; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
.kit-item .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--soft); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.kit-item .txt { flex: 1; }
.kit-item .txt b { font-size: 15.5px; font-weight: 800; }
.kit-item .txt p { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 2px; }
.kit-item .cost { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.4px; white-space: nowrap; }
.kit-total { background: linear-gradient(165deg, var(--blue), var(--blue-d)); color: #fff; border-radius: var(--r); padding: 30px; text-align: center; }
.kit-total .l { font-size: 13px; font-weight: 700; opacity: .85; text-transform: uppercase; letter-spacing: .6px; }
.kit-total .amt { font-size: 52px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin: 8px 0; }
.kit-total .vs { font-size: 14px; font-weight: 600; opacity: .85; }
.kit-total .vs s { opacity: .7; }
.kit-total .note { margin-top: 18px; background: rgba(255,255,255,.12); border-radius: 12px; padding: 13px; font-size: 13px; font-weight: 500; line-height: 1.5; }

/* feature groups (features page) */
.fgroup { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
.fgroup + .fgroup { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--line); }
.fgroup .side { position: sticky; top: 96px; }
.fgroup .side .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.fgroup .side h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.6px; }
.fgroup .side p { font-size: 14.5px; color: var(--muted); font-weight: 500; margin-top: 10px; line-height: 1.55; }
.fitems { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fitem { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px; }
.fitem .h { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 800; }
.fitem .h .tick { width: 22px; height: 22px; border-radius: 999px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.fitem p { font-size: 13.5px; color: var(--muted); font-weight: 500; margin-top: 8px; line-height: 1.55; }
.fitem.wide { grid-column: 1 / -1; }

/* pricing teaser (landing) */
.price-teaser { background: linear-gradient(165deg, var(--blue), var(--blue-d)); color: #fff; border-radius: 28px; padding: 52px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.price-teaser h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -1.2px; }
.price-teaser p { font-size: 17px; opacity: .88; font-weight: 500; margin-top: 12px; max-width: 460px; }
.price-teaser .big-price { text-align: center; }
.price-teaser .big-price .amt { font-size: 76px; font-weight: 800; letter-spacing: -3px; line-height: 1; }
.price-teaser .big-price .per { font-size: 16px; font-weight: 600; opacity: .85; }
.price-teaser .big-price .foot { font-size: 13px; opacity: .8; font-weight: 600; margin-top: 6px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 24px 18px; flex-direction: column; gap: 4px; box-shadow: 0 20px 40px rgba(20,30,80,.10); }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 8px; font-weight: 700; font-size: 16px; border-bottom: 1px solid var(--line-2); }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu .btn { margin-top: 10px; }
  .hooks-grid { grid-template-columns: 1fr; }
  .import-flow { grid-template-columns: 1fr; }
  .import-arrow { transform: rotate(90deg); margin: 0 auto; }
  .setup-steps { grid-template-columns: 1fr; gap: 22px; }
  .kit-wrap { grid-template-columns: 1fr; gap: 28px; }
  .fgroup { grid-template-columns: 1fr; gap: 22px; }
  .fgroup .side { position: static; }
  .price-teaser { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .price-teaser p { margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .fitems { grid-template-columns: 1fr; }
  .kit-item { flex-wrap: wrap; }
}

/* ============================================================
   Hardware section — visual pop (barcode motif + product frames)
   ============================================================ */
#hardware { position: relative; overflow: hidden; }
#hardware .wrap { position: relative; z-index: 1; }
/* faint oversized barcode motif, top-right corner */
.barcode-band { position: absolute; z-index: 0; pointer-events: none; top: -30px; right: -80px;
  width: 560px; height: 240px; opacity: .06; transform: rotate(-9deg);
  background-image: repeating-linear-gradient(90deg,
    var(--ink) 0 3px, transparent 3px 8px, var(--ink) 8px 10px, transparent 10px 15px,
    var(--ink) 15px 20px, transparent 20px 22px, var(--ink) 22px 24px, transparent 24px 31px); }

.kit-visual { position: relative; border-radius: 24px; padding: 22px; overflow: visible;
  background: linear-gradient(155deg, var(--soft), var(--canvas)); box-shadow: inset 0 0 0 1px rgba(20,30,80,.05); }
.kv-grid { display: grid; grid-template-columns: 1.55fr 1fr; grid-template-rows: 163px 163px auto; gap: 14px; }
/* striped product placeholder */
.ph { background-color: #fff; border: 1.5px dashed color-mix(in oklch, var(--blue) 30%, var(--line));
  border-radius: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 16px;
  background-image: repeating-linear-gradient(135deg, color-mix(in oklch, var(--blue) 7%, transparent) 0 11px, transparent 11px 22px); }
.ph .mono { font-family: "Space Mono", ui-monospace, monospace; font-size: 12px; letter-spacing: .4px; color: var(--blue); }
.ph .tagname { font-size: 13.5px; font-weight: 800; color: var(--ink); white-space: nowrap; }
.ph .sub { font-size: 11.5px; font-weight: 600; color: var(--muted); }
.ph .glyph { color: color-mix(in oklch, var(--blue) 55%, var(--muted)); margin-bottom: 2px; }
.kv-device { grid-row: 1 / 3; }
.kv-small { }
/* photo device cards */
.kv-photo { position: relative; border-radius: 16px; overflow: hidden; background: #dfe3ec; min-height: 0;
  box-shadow: 0 1px 0 rgba(20,30,80,.04); }
.kv-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kv-photo img.kv-focus-low { object-position: center 78%; }
.kv-photo .kv-cap { position: absolute; left: 10px; bottom: 10px; z-index: 2; margin: 0;
  padding: 6px 11px; border-radius: 999px; background: rgba(20,24,41,.72); backdrop-filter: blur(6px);
  color: #fff; font-size: 12.5px; font-weight: 800; }
.kv-photo .kv-cap em { font-style: normal; font-weight: 600; color: rgba(255,255,255,.72); }
/* floating total badge */
.kv-badge { position: absolute; top: -18px; right: -10px; z-index: 3; background: linear-gradient(165deg, var(--blue), var(--blue-d));
  color: #fff; border-radius: 16px; padding: 13px 20px; text-align: center; transform: rotate(3deg);
  box-shadow: 0 16px 36px var(--glow), 0 0 0 4px #fff; }
.kv-badge .l { font-size: 10.5px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; opacity: .85; }
.kv-badge .amt { font-size: 34px; font-weight: 800; letter-spacing: -1.4px; line-height: 1; margin: 3px 0; }
.kv-badge .vs { font-size: 12px; font-weight: 700; opacity: .9; }
.kv-badge .vs s { opacity: .65; }
/* crisp barcode price-tag strip */
.barcode-tag { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; }
.barcode-tag .bars { flex: 1; height: 46px; border-radius: 3px;
  background-image: repeating-linear-gradient(90deg,
    var(--ink) 0 2px, #fff 2px 5px, var(--ink) 5px 9px, #fff 9px 11px, var(--ink) 11px 12px, #fff 12px 16px,
    var(--ink) 16px 21px, #fff 21px 23px, var(--ink) 23px 25px, #fff 25px 30px); }
.barcode-tag .bc-meta { text-align: right; flex-shrink: 0; }
.barcode-tag .bc-meta b { font-size: 13px; font-weight: 800; letter-spacing: .5px; display: block; }
.barcode-tag .bc-meta span { font-family: "Space Mono", ui-monospace, monospace; font-size: 11px; color: var(--muted); }

.kit-side { display: flex; flex-direction: column; gap: 12px; }
.kit-note { background: var(--ink); color: #fff; border-radius: var(--r); padding: 18px 20px; font-size: 13.5px; font-weight: 500; line-height: 1.55; }
.kit-note b { color: var(--bright-soft); font-weight: 800; }

@media (max-width: 960px) {
  .barcode-band { width: 360px; opacity: .05; }
}
@media (max-width: 560px) {
  .kv-grid { grid-template-columns: 1fr; }
  .kv-device { grid-row: auto; min-height: 200px; }
  .kv-badge { position: static; margin-bottom: 12px; }
}
