/* ============================================================
   GRABO SOFTWARE — clean blue/white design system
   Single accent: blue (#2563EB). Lots of white. Calm, trustworthy SaaS.
   Fonts: Outfit (display) · Inter (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  /* ink + paper */
  --ink:      #0E1B2E;   /* near-navy text */
  --ink-2:    #2B3A4F;
  --slate:    #56657C;   /* muted body */
  --mute:     #8A97AB;
  --line:     #E3EAF3;
  --line-2:   #EEF3F9;
  --paper:    #FFFFFF;
  --paper-2:  #F4F8FD;   /* light blue-gray section */
  --paper-3:  #ECF2FB;

  /* brand blue */
  --blue:      #2563EB;
  --blue-600:  #1D55D6;
  --blue-700:  #1E40AF;
  --blue-tint: #EAF1FE;  /* icon tiles, badges */
  --blue-line: #C9DBFB;

  /* navy (dark sections) */
  --navy:      #0B1A30;
  --navy-2:    #122441;
  --navy-line: #25344C;
  --cream:     #EAF1FB;
  --cream-mute:#9DB0C9;

  /* status */
  --green:     #16A34A;
  --green-tint:#E6F6ED;

  --f-display: 'Outfit','Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --f-body:    'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --f-mono:    'JetBrains Mono','SF Mono','Fira Code',monospace;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 3px rgba(14,27,46,.06), 0 4px 12px rgba(14,27,46,.04);
  --shadow:    0 8px 28px rgba(14,27,46,.08), 0 2px 8px rgba(14,27,46,.04);
  --shadow-lg: 0 24px 60px rgba(14,27,46,.14), 0 8px 20px rgba(14,27,46,.07);
  --shadow-blue: 0 10px 26px rgba(37,99,235,.30);

  --wrap: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.65;
  color: var(--slate); background: var(--paper);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
svg { width: 1.1em; height: 1.1em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--f-display); color: var(--ink); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; }
.accent { color: var(--blue); }
.h-xl { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.55rem, 3vw, 2.15rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem,1.5vw,1.28rem); line-height: 1.6; color: var(--ink-2); }

.eyebrow {
  font-family: var(--f-mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before { content:""; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.eyebrow--plain::before { display: none; }
.eyebrow--light { color: #7FB0FF; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 840px; }
.sec { padding: clamp(60px, 8vw, 104px) 0; }
.sec--tight { padding: clamp(44px,5vw,68px) 0; }
.sec--paper2 { background: var(--paper-2); }
.sec--navy { background: var(--navy); color: var(--cream-mute); }
.sec--navy h1,.sec--navy h2,.sec--navy h3 { color: #fff; }

.sec-head { max-width: 720px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 1.12rem; color: var(--slate); }
.sec--navy .sec-head p { color: var(--cream-mute); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--f-body); font-weight: 650; font-size: 1rem;
  padding: 14px 26px; border-radius: 12px; border: 1.5px solid transparent;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s var(--ease), border-color .16s, color .16s;
  white-space: nowrap; letter-spacing: -.01em;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,99,235,.38); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn--outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .92rem; border-radius: 10px; }
.btn--lg { padding: 16px 30px; font-size: 1.06rem; border-radius: 14px; }
.btn--block { display: flex; width: 100%; }

.linkarrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 650; color: var(--blue); }
.linkarrow svg { width: 1.05em; height: 1.05em; transition: transform .16s var(--ease); }
.linkarrow:hover svg { transform: translateX(4px); }

/* ---------- chips ---------- */
.chip { display: inline-flex; align-items: center; gap: .45em; font-family: var(--f-mono); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.chip--live { background: var(--green-tint); color: var(--green); }
.chip--live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.chip--soon { background: var(--blue-tint); color: var(--blue-700); }

/* ============================================================ NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .25s var(--ease), box-shadow .25s, border-color .25s; border-bottom: 1px solid transparent; }
.nav__inner { display: flex; align-items: center; gap: 22px; height: 72px; }
.nav.is-stuck { background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--f-display); font-weight: 900; font-size: 1.45rem; color: var(--ink); letter-spacing: -.03em; }
.brand__tag { font-family: var(--f-mono); font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); transform: translateY(-2px); }
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .96rem; font-weight: 550; color: var(--ink-2); transition: color .15s; }
.nav__link:hover, .nav__link.is-active { color: var(--blue); }
.nav__toggle { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__auth { display: flex; align-items: center; gap: 18px; }
.nav__credits { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-tint); color: var(--blue-700); font-weight: 700; padding: 8px 14px; border-radius: 999px; font-size: .9rem; }
.nav__credits svg { width: 15px; height: 15px; }

@media (max-width: 920px) {
  .nav__toggle { display: inline-flex; margin-left: auto; }
  .nav__spacer { display: none; }
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 24px 22px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease); }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: 13px 0; border-bottom: 1px solid var(--line-2); }
  .nav__auth { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 12px; }
  .nav__auth .btn { width: 100%; }
}

/* ============================================================ HERO */
.hero { padding: 132px 0 76px; position: relative; overflow: hidden; }
.hero::before { content:""; position: absolute; inset: 0 0 auto 0; height: 620px; background: radial-gradient(1100px 480px at 78% -8%, var(--blue-tint), transparent 70%); pointer-events: none; z-index: 0; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin: 18px 0 20px; }
.hero .lead { max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__rating { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero__stars { color: #F5A623; letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating span { font-size: .92rem; color: var(--slate); }
.hero__rating b { color: var(--ink); }

/* ============================================================ DEVICE FRAMES */
.browser { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.browser__bar { height: 40px; background: #F1F5FB; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 15px; }
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #D5DEEA; flex: none; }
.browser__url { margin-left: 12px; flex: 1; height: 22px; max-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 7px; display: flex; align-items: center; padding: 0 11px; font-family: var(--f-mono); font-size: .68rem; color: var(--mute); }
.browser__img { width: 100%; display: block; }
.hero__media { position: relative; }
.hero__badge { position: absolute; right: -14px; bottom: 26px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 12px 16px; display: flex; align-items: center; gap: 11px; }
.hero__badge .bdg-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--green-tint); color: var(--green); display: grid; place-items: center; flex: none; }
.hero__badge .bdg-ic svg { width: 20px; height: 20px; }
.hero__badge b { display:block; font-family: var(--f-display); color: var(--ink); font-size: .98rem; }
.hero__badge span { font-size: .78rem; color: var(--mute); }
@media (max-width: 620px){ .hero__badge { display:none; } }

.phone { width: 100%; max-width: 250px; border-radius: 30px; background: #0E1B2E; padding: 9px; box-shadow: var(--shadow-lg); }
.phone__screen { border-radius: 22px; overflow: hidden; background: #fff; }
.phone__screen img { width: 100%; display: block; }

/* coming-soon preview panel (same frame language, synthesized clean UI) */
.preview { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.preview__bar { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--line-2); }
.preview__ic { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.preview__ic svg { width: 22px; height: 22px; }
.preview__name { font-family: var(--f-display); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.preview__body { padding: 22px 20px 26px; background: linear-gradient(180deg,#fff,#F7FAFE); }
.preview__row { height: 13px; border-radius: 6px; background: var(--paper-3); margin-bottom: 12px; }
.preview__row.w80 { width: 80%; } .preview__row.w60 { width: 60%; } .preview__row.w40 { width: 40%; }
.preview__chipline { height: 38px; border-radius: 10px; background: var(--blue); width: 46%; margin-top: 20px; opacity: .9; }

/* ============================================================ APP FEATURE (large alternating) */
.appfeat { padding: clamp(54px,7vw,90px) 0; }
.appfeat__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.appfeat--flip .appfeat__media { order: 2; }
.appfeat__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.appfeat__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.appfeat__ic svg { width: 21px; height: 21px; }
.appfeat__name { font-family: var(--f-mono); font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.appfeat h2 { margin-bottom: 16px; }
.appfeat__body .lead { margin-bottom: 22px; }
.appfeat__cta { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }

.ticks { display: grid; gap: 13px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 1.04rem; line-height: 1.45; }
.ticks svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 2px; }

/* ============================================================ TRUST / STATS */
.trustbar { display: flex; align-items: center; justify-content: center; gap: clamp(18px,4vw,52px); flex-wrap: wrap; }
.trustbar__item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trustbar__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem,3vw,2.3rem); color: var(--ink); letter-spacing: -.03em; }
.trustbar__num .accent { color: var(--blue); }
.trustbar__lbl { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.trustbar__div { width: 1px; height: 42px; background: var(--line); }
@media (max-width:620px){ .trustbar__div { display:none; } }

/* ============================================================ STEPS */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.step__n { font-family: var(--f-display); font-weight: 800; font-size: 1rem; color: var(--blue); width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--blue-line); display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .98rem; }

/* ============================================================ CTA BAND + FORMS */
.cta-band { background: var(--navy); color: var(--cream); overflow: hidden; position: relative; }
.cta-band::before { content:""; position:absolute; bottom:-220px; left:50%; transform:translateX(-50%); width:820px; height:460px; background: radial-gradient(ellipse, rgba(37,99,235,.32), transparent 65%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color:#fff; }
.cta-band p { color: var(--cream-mute); }

.eform { display: flex; gap: 10px; max-width: 460px; }
.eform--center { margin: 0 auto; }
.eform input[type=email] { flex: 1; min-width: 0; padding: 14px 18px; border-radius: 12px; border: 1.5px solid var(--line); background:#fff; font-family: var(--f-body); font-size: 1rem; color: var(--ink); }
.eform input::placeholder { color: var(--mute); }
.eform input:focus-visible { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.16); }
.eform__msg { font-size: .92rem; margin-top: 12px; min-height: 1.2em; }
.eform__msg.is-ok { color: #36d07a; } .eform__msg.is-err { color: #ff7a6b; }
.eform-note { font-size: .86rem; color: var(--mute); margin-top: 14px; }
.cta-band .eform-note { color: var(--cream-mute); }

/* ============================================================ FAQ */
.faq { display: grid; max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--f-display); font-weight: 700; font-size: 1.14rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; position:absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--blue); transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 44px 24px 0; color: var(--slate); }

/* ============================================================ FOOTER */
.foot { background: var(--navy); color: var(--cream-mute); padding: 70px 0 34px; }
.foot__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--navy-line); }
.foot .brand { color:#fff; margin-bottom: 14px; }
.foot__blurb { font-size: .95rem; max-width: 30ch; color: var(--cream-mute); }
.foot__col h4 { font-family: var(--f-mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:#fff; margin-bottom: 15px; font-weight:600; }
.foot__col a { display:block; padding: 6px 0; color: var(--cream-mute); font-size:.96rem; transition: color .15s; }
.foot__col a:hover { color:#fff; }
.foot__news { display:flex; align-items:center; gap:18px; flex-wrap:wrap; padding:22px 0; border-bottom:1px solid var(--navy-line); }
.foot__news > span { font-size:.95rem; color:var(--cream); font-weight:500; }
.foot__news .eform { margin:0; flex:1; min-width:240px; max-width:380px; }
.foot__news .eform input { background:rgba(255,255,255,.06); border-color:var(--navy-line); color:#fff; }
.foot__news .eform input::placeholder { color:var(--cream-mute); }
.foot__news .eform__msg { flex-basis:100%; }
.foot__bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top: 26px; font-size:.86rem; color: var(--cream-mute); flex-wrap: wrap; }
.foot__bottom a:hover { color:#fff; }

/* ============================================================ APP DETAIL extras */
.applist { display: grid; gap: 10px; }
.approw { display:flex; align-items:center; gap:16px; padding:15px 20px; border:1px solid var(--line); border-radius: var(--r); background:#fff; transition: border-color .18s, transform .18s; }
a.approw:hover { border-color: var(--blue-line); transform: translateX(3px); }
.approw__ic { width: 44px; height: 44px; border-radius: 11px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.approw__ic svg { width: 22px; height: 22px; }
.approw__txt { flex:1; }
.approw__txt strong { color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; }
.approw__txt span { display:block; font-size:.92rem; color: var(--mute); }

.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.infocard { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 30px; }
.infocard h3 { font-size: 1.3rem; margin-bottom: 10px; display:flex; align-items:center; gap:10px; }
.infocard h3 svg { width: 22px; height: 22px; color: var(--blue); }
.taglist { display:flex; flex-wrap:wrap; gap:10px; }
.taglist span { display:inline-flex; align-items:center; gap:.5em; padding:9px 15px; border-radius:999px; background:var(--paper-2); border:1px solid var(--line); font-size:.94rem; color:var(--ink-2); font-weight:500; }
.taglist span::before { content:""; width:6px;height:6px;border-radius:50%;background:var(--blue);flex:none; }

/* pricing */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display:flex; flex-direction:column; }
.price-card--feat { border-color: var(--blue); box-shadow: var(--shadow); position: relative; }
.price-card--solo::before { content:none !important; }
.price-card--feat::before { content:"Most popular"; position:absolute; top:-12px; left:28px; font-family:var(--f-mono); font-size:.66rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; background:var(--blue); color:#fff; padding:5px 11px; border-radius:999px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card__desc { font-size:.96rem; color:var(--slate); min-height: 44px; }
.price-card__price { font-family:var(--f-display); font-weight:800; font-size:2.4rem; color:var(--ink); margin: 16px 0 4px; }
.price-card__price small { font-family:var(--f-body); font-size:.9rem; font-weight:500; color:var(--mute); }
.price-card ul { display:grid; gap:11px; margin: 18px 0 26px; }
.price-card li { display:flex; gap:10px; font-size:.98rem; color:var(--ink-2); }
.price-card li svg { width:20px;height:20px;color:var(--blue);flex:none;margin-top:2px; }
.price-card .btn { margin-top:auto; }

/* ============================================================ reveal */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ============================================================ responsive */
@media (max-width: 980px) {
  .hero__grid, .appfeat__grid, .twocol, .split { grid-template-columns: 1fr; gap: 40px; }
  .appfeat--flip .appfeat__media { order: 0; }
  .appfeat__media { max-width: 560px; margin: 0 auto; }
  .price-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .lead { max-width: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .price-grid, .steps { grid-template-columns: 1fr; }
  .eform { flex-direction: column; } .eform .btn { width: 100%; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 108px; }
}

/* ============================================================ APP FEATURE — name-first title */
.appfeat__tag { font-family: var(--f-display); font-weight: 750; font-size: clamp(1.12rem,1.9vw,1.4rem); line-height: 1.2; color: var(--blue); letter-spacing: -.01em; margin: 2px 0 14px; }
.appfeat h2.appfeat__title { margin-bottom: 4px; }

/* ============================================================ APP DEMOS — animated, CSS-only, on-brand
   Each demo drops into a .browser frame in place of a screenshot. Pure CSS so
   there is no JS runtime surface; frozen to a clean final frame when the user
   prefers reduced motion. Aspect matches the screenshots it replaces. */
.demo { position: relative; aspect-ratio: 16 / 10; width: 100%; overflow: hidden;
  background: linear-gradient(180deg,#FFFFFF,#F4F8FD); color: var(--ink); font-family: var(--f-body); }
.demo, .demo * { box-sizing: border-box; }
.demo .lbl { font-family: var(--f-mono); font-size: .6rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
@media (prefers-reduced-motion: reduce) {
  .demo * { animation: none !important; opacity: 1 !important; }
  .demo .r-hide { opacity: 0 !important; }
}

/* ---- shared little success tag ---- */
.demo .oktag { display: inline-flex; align-items: center; gap: 6px; font-weight: 650; font-size: .74rem; color: var(--green); background: var(--green-tint); border-radius: 999px; padding: 4px 10px; }
.demo .oktag::before { content: "✓"; font-weight: 800; }

/* ============ 1) TILE VISUALIZER — room floor swaps tile styles ============ */
.demo--tiler { background: #E9EEF5; }
.demo--tiler .wall { position: absolute; left: 0; right: 0; top: 0; height: 47%; background: linear-gradient(180deg,#F4F7FB,#E6EDF5); }
.demo--tiler .win { position: absolute; top: 12%; right: 13%; width: 24%; height: 20%; background: linear-gradient(160deg,#CFE3FA,#AFCEF3); border: 5px solid #fff; border-radius: 3px; box-shadow: 0 8px 16px rgba(14,27,46,.12); }
.demo--tiler .plant { position: absolute; top: 20%; left: 10%; width: 8%; height: 26%; background: linear-gradient(180deg,#5FA06B,#3C7A50); border-radius: 40% 40% 8% 8%; opacity: .9; }
.demo--tiler .floorwrap { position: absolute; left: 0; right: 0; bottom: 0; height: 55%; perspective: 460px; overflow: hidden; }
.demo--tiler .floor { position: absolute; left: -30%; right: -30%; top: 0; bottom: 0; transform: rotateX(60deg); transform-origin: center top; }
.demo--tiler .opt { position: absolute; inset: 0; opacity: 0; animation: tilerFade 15s infinite; }
.demo--tiler .opt:nth-child(1){ animation-delay: 0s; }
.demo--tiler .opt:nth-child(2){ animation-delay: 3.75s; }
.demo--tiler .opt:nth-child(3){ animation-delay: 7.5s; }
.demo--tiler .opt:nth-child(4){ animation-delay: 11.25s; }
@keyframes tilerFade { 0%{opacity:0} 2%{opacity:1} 23%{opacity:1} 27%{opacity:0} 100%{opacity:0} }
.opt--marble { background:#E7EAEF; background-image: linear-gradient(115deg, rgba(150,164,186,.45) 1.5px, transparent 1.5px), linear-gradient(55deg, rgba(176,188,206,.32) 1.5px, transparent 1.5px), repeating-linear-gradient(0deg,#0000 0 63px,rgba(255,255,255,.7) 63px 64px), repeating-linear-gradient(90deg,#0000 0 63px,rgba(255,255,255,.7) 63px 64px); background-size: 90px 90px, 60px 60px, 64px 64px, 64px 64px; }
.opt--wood { background:#C69B65; background-image: repeating-linear-gradient(90deg, rgba(120,80,42,.55) 0 2px, transparent 2px 92px), repeating-linear-gradient(0deg, rgba(150,105,60,.25) 0 1px, transparent 1px 26px); }
.opt--slate { background:#3B4654; background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 1px, transparent 1px 52px), repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 52px), radial-gradient(rgba(255,255,255,.05),transparent 60%); }
.opt--hex { background:#EDE7DE; background-image: radial-gradient(circle at 50% 50%, rgba(160,140,110,.35) 0 8%, transparent 9%), radial-gradient(circle at 0 50%, rgba(160,140,110,.35) 0 8%, transparent 9%), radial-gradient(circle at 100% 50%, rgba(160,140,110,.35) 0 8%, transparent 9%); background-size: 46px 40px; }
.demo--tiler .cap { position: absolute; left: 14px; bottom: 16px; z-index: 4; }
.demo--tiler .cap .pill { position: absolute; left: 0; bottom: 0; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; background:#fff; border:1px solid var(--line); border-radius:999px; padding:7px 13px; box-shadow: var(--shadow-sm); font-weight:650; font-size:.8rem; color:var(--ink); opacity:0; animation: tilerFade 15s infinite; }
.demo--tiler .cap .pill:nth-child(1){animation-delay:0s} .demo--tiler .cap .pill:nth-child(2){animation-delay:3.75s} .demo--tiler .cap .pill:nth-child(3){animation-delay:7.5s} .demo--tiler .cap .pill:nth-child(4){animation-delay:11.25s}
.demo--tiler .sw { width:15px; height:15px; border-radius:4px; flex:none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.demo--tiler .badge { position:absolute; top:12px; left:12px; z-index:4; background:#fff; border:1px solid var(--line); border-radius:8px; padding:5px 9px; box-shadow: var(--shadow-sm); }

/* ============ 2) RECEIPT SCANNER — scan a receipt, fields auto-fill ============ */
.demo--receipt { display: grid; grid-template-columns: 40% 60%; align-items: center; padding: 7% 6%; gap: 6%; }
.demo--receipt .paper { position: relative; background:#fff; border-radius:6px; box-shadow: var(--shadow); padding: 14px 13px 18px; overflow: hidden; }
.demo--receipt .paper::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:12px; background: radial-gradient(circle at 6px -2px, transparent 6px, #fff 6px) repeat-x; background-size: 12px 12px; }
.demo--receipt .rlogo { font-family: var(--f-display); font-weight: 800; font-size: .72rem; letter-spacing: .04em; color: var(--ink); text-align:center; margin-bottom: 10px; }
.demo--receipt .rline { height: 6px; border-radius: 3px; background: #E4EAF2; margin: 7px 0; }
.demo--receipt .rline.w40{width:40%} .demo--receipt .rline.w60{width:60%} .demo--receipt .rline.w80{width:80%} .demo--receipt .rline.w50{width:50%}
.demo--receipt .rtot { display:flex; justify-content:space-between; font-family: var(--f-mono); font-weight:700; font-size:.72rem; color:var(--ink); border-top:1.5px dashed #CBD6E4; margin-top:11px; padding-top:9px; }
.demo--receipt .beam { position:absolute; left:0; right:0; height:22px; top:-24px; background: linear-gradient(180deg, rgba(37,99,235,0), rgba(37,99,235,.35)); border-bottom: 2px solid var(--blue); box-shadow: 0 0 18px 2px rgba(37,99,235,.4); animation: rcpBeam 5s infinite; }
@keyframes rcpBeam { 0%{top:-24px;opacity:0} 8%{opacity:1} 46%{top:100%;opacity:1} 54%{top:100%;opacity:0} 100%{top:100%;opacity:0} }
.demo--receipt .fields { display: grid; gap: 8px; }
.demo--receipt .fhd { display:flex; align-items:center; gap:8px; margin-bottom:2px; }
.demo--receipt .frow { display:flex; flex-direction:column; gap:2px; background:#fff; border:1px solid var(--line); border-left:3px solid var(--blue); border-radius:8px; padding:7px 11px; box-shadow: var(--shadow-sm); opacity:0; transform: translateX(10px); animation: rcpRow 5s infinite; }
.demo--receipt .frow:nth-child(2){animation-delay:.15s} .demo--receipt .frow:nth-child(3){animation-delay:.5s} .demo--receipt .frow:nth-child(4){animation-delay:.85s} .demo--receipt .frow:nth-child(5){animation-delay:1.2s}
@keyframes rcpRow { 0%,18%{opacity:0;transform:translateX(10px)} 30%,90%{opacity:1;transform:none} 100%{opacity:1;transform:none} }
.demo--receipt .frow .lbl { font-size:.56rem; }
.demo--receipt .frow b { font-family: var(--f-display); font-size:.86rem; color:var(--ink); }
.demo--receipt .ftag { opacity:0; animation: rcpRow 5s infinite; animation-delay:1.5s; }

/* ============ 3) TILE ID — snap a tile, get matches ============ */
.demo--tileid { display:grid; grid-template-columns: 42% 58%; align-items:center; padding: 7% 6%; gap: 6%; }
.demo--tileid .shot { position:relative; aspect-ratio:1; border-radius:12px; overflow:hidden; box-shadow: var(--shadow); background:#B8927E; background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 40%), repeating-linear-gradient(45deg, rgba(120,80,60,.25) 0 6px, transparent 6px 16px); }
.demo--tileid .reticle { position:absolute; width:46%; height:46%; border:2px solid #fff; border-radius:8px; box-shadow: 0 0 0 2000px rgba(14,27,46,.28); top:27%; left:27%; animation: idScan 5.5s infinite; }
.demo--tileid .reticle::before, .demo--tileid .reticle::after { content:""; position:absolute; background:var(--blue); }
@keyframes idScan { 0%{transform:scale(.7);opacity:0} 10%{opacity:1} 28%{transform:scale(1);opacity:1} 40%{opacity:1} 52%{opacity:0} 100%{opacity:0} }
.demo--tileid .matches { display:grid; gap:7px; }
.demo--tileid .mhd { display:flex; align-items:center; gap:7px; margin-bottom:2px; }
.demo--tileid .mrow { display:flex; align-items:center; gap:9px; background:#fff; border:1px solid var(--line); border-radius:10px; padding:6px 9px; box-shadow: var(--shadow-sm); opacity:0; transform: translateY(8px); animation: idRow 5.5s infinite; }
.demo--tileid .mrow:nth-child(2){animation-delay:2.2s} .demo--tileid .mrow:nth-child(3){animation-delay:2.45s} .demo--tileid .mrow:nth-child(4){animation-delay:2.7s}
@keyframes idRow { 0%,38%{opacity:0;transform:translateY(8px)} 50%,92%{opacity:1;transform:none} 100%{opacity:1;transform:none} }
.demo--tileid .msw { width:30px; height:30px; border-radius:7px; flex:none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.demo--tileid .mtx { flex:1; min-width:0; }
.demo--tileid .mtx b { display:block; font-family:var(--f-display); font-size:.8rem; color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.demo--tileid .mtx span { font-size:.68rem; color:var(--mute); }
.demo--tileid .mpct { font-family:var(--f-mono); font-weight:700; font-size:.72rem; color:var(--blue); flex:none; }

/* ============ 4) GRABO ASSISTANT — answers a call, books, emails you ============ */
.demo--assistant { padding: 6% 7%; display:flex; flex-direction:column; }
.demo--assistant .call { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line); border-radius:12px; padding:9px 13px; box-shadow: var(--shadow-sm); margin-bottom:11px; }
.demo--assistant .call .ava { width:34px; height:34px; border-radius:50%; background:var(--blue-tint); color:var(--blue); display:grid; place-items:center; flex:none; }
.demo--assistant .call .ava svg { width:18px; height:18px; }
.demo--assistant .call b { font-family:var(--f-display); font-size:.86rem; color:var(--ink); }
.demo--assistant .call .live { margin-left:auto; display:inline-flex; align-items:center; gap:6px; font-size:.68rem; font-weight:650; color:var(--green); }
.demo--assistant .call .live::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--green); animation: aPulse 1.4s infinite; }
@keyframes aPulse { 0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,.5)} 70%{box-shadow:0 0 0 6px rgba(22,163,74,0)} }
.demo--assistant .thread { display:flex; flex-direction:column; gap:7px; flex:1; }
.demo--assistant .b { max-width:78%; padding:7px 11px; border-radius:13px; font-size:.78rem; line-height:1.35; opacity:0; transform: translateY(6px); animation: aBub 9s infinite; }
.demo--assistant .b.caller { align-self:flex-start; background:#fff; border:1px solid var(--line); border-bottom-left-radius:4px; color:var(--ink-2); }
.demo--assistant .b.bot { align-self:flex-end; background:var(--blue); color:#fff; border-bottom-right-radius:4px; }
.demo--assistant .b:nth-child(1){animation-delay:.4s} .demo--assistant .b:nth-child(2){animation-delay:1.4s} .demo--assistant .b:nth-child(3){animation-delay:2.6s} .demo--assistant .b:nth-child(4){animation-delay:3.8s}
@keyframes aBub { 0%,4%{opacity:0;transform:translateY(6px)} 12%,92%{opacity:1;transform:none} 100%{opacity:1;transform:none} }
.demo--assistant .summary { margin-top:10px; display:flex; align-items:center; gap:9px; background:var(--green-tint); border:1px solid #B6E6C6; border-radius:11px; padding:8px 12px; opacity:0; transform: translateY(8px); animation: aBub 9s infinite; animation-delay:5s; }
.demo--assistant .summary b { font-family:var(--f-display); font-size:.8rem; color:#137A3B; }
.demo--assistant .summary span { font-size:.68rem; color:#2C7A4B; }
.demo--assistant .summary .book { margin-left:auto; font-size:.64rem; font-weight:700; color:#fff; background:var(--green); border-radius:999px; padding:3px 9px; }

/* ============================================================
   APP LAUNCHER — above-the-fold fast entry to the 4 live apps
   (added 2026-07-03). Compact centered hero + four whole-card
   photo tiles that link straight into each app. Reuses tokens.
   ============================================================ */

/* compact launcher hero: trimmed headline + CTA; tiles are the centerpiece */
.hero--launch { padding: clamp(100px, 11vw, 122px) 0 clamp(44px, 5vw, 64px); }
.hero__head { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.hero__head .eyebrow { justify-content: center; margin-bottom: 14px; }
.hero__h1 { font-family: var(--f-display); color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; font-size: clamp(2.4rem, 5.6vw, 4rem); margin: 0 0 16px; }
.hero__soft { display: block; font-family: var(--f-mono); font-size: clamp(.72rem, 1.5vw, .98rem); letter-spacing: .24em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: .55em; }
.hero__head .lead { max-width: 60ch; margin: 0 auto; }
.hero--launch .hero__cta { justify-content: center; margin-top: 26px; }
.hero--launch .hero__rating { justify-content: center; margin-top: 18px; }

/* 5-across launcher grid */
.launcher { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: clamp(30px, 3.6vw, 46px); }

/* one whole-clickable photo tile per app (the entire <a> is the tap target) */
.tile { display: flex; flex-direction: column; min-height: 300px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.tile:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: var(--r); }

.tile__shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.tile__shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s var(--ease); }
.tile:hover .tile__shot img { transform: scale(1.06); }
.tile__live { position: absolute; top: 10px; left: 10px; z-index: 2; box-shadow: var(--shadow-sm); }

.tile__body { display: flex; flex-direction: column; gap: 5px; flex: 1; padding: 15px 17px 17px; }
.tile__name { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; line-height: 1.15; letter-spacing: -.02em; color: var(--ink); }
.tile__tag { font-size: .95rem; line-height: 1.4; color: var(--slate); }
.tile__open { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: .4em; font-weight: 700; font-size: .95rem; color: var(--blue); }
.tile__open svg { width: 1.05em; height: 1.05em; transition: transform .18s var(--ease); }
.tile:hover .tile__open svg { transform: translateX(4px); }

/* responsive: 5-across >=980px · 2x2 tablet · 1-column mobile */
@media (max-width: 980px) {
  .launcher { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 620px) {
  .launcher { grid-template-columns: 1fr; gap: 16px; }
  .tile { min-height: 0; }
  .hero__head .lead { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tile, .tile__shot img, .tile__open svg { transition: none; }
}

/* ============================================================
   App wall — big video app boxes (home) + video popup   2026-07-06
   ============================================================ */
.hero--apps { padding-bottom: 6px; }
.hero--apps .hero__head { max-width: 780px; }

.appwall { padding: 8px 0 60px; }
.appgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.appgrid > * { grid-column: span 2; }
/* five apps: centre the trailing row rather than leaving a gap at the end */
.appgrid > *:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.appgrid > *:nth-child(5):nth-last-child(1) { grid-column: 4 / span 2; }
@media (max-width: 900px){
  .appgrid { grid-template-columns: repeat(2, 1fr); }
  .appgrid > *, .appgrid > *:nth-child(4):nth-last-child(2), .appgrid > *:nth-child(5):nth-last-child(1) { grid-column: auto; }
}
@media (max-width: 600px){ .appgrid { grid-template-columns: 1fr; } }

.appbox {
  position: relative; display: block; aspect-ratio: 1 / 1;
  border-radius: var(--r-lg); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  text-decoration: none; isolation: isolate;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.appbox:hover, .appbox:focus-visible { transform: translateY(-5px); box-shadow: var(--shadow-lg); outline: none; }
.appbox__thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s var(--ease); }
.appbox:hover .appbox__thumb, .appbox:focus-visible .appbox__thumb { transform: scale(1.04); }
.appbox__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; opacity: 0; transition: opacity .4s var(--ease); }
.appbox.is-playing .appbox__vid { opacity: 1; }
.appbox__scrim { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(6,14,26,0) 28%, rgba(6,14,26,.44) 62%, rgba(6,14,26,.96) 100%); }
.appbox__live { position: absolute; top: 14px; left: 14px; z-index: 4; }
.appbox__play {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  width: 46px; height: 46px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.7); background: rgba(12,26,48,.42);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.appbox__play svg { width: 20px; height: 20px; fill: #fff; margin-left: 2px; }
.appbox__play:hover { transform: scale(1.1); background: var(--blue); border-color: var(--blue); }
.appbox__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 3px; }
.appbox__name { font-family: var(--f-display); font-weight: 800; color:#fff; font-size: clamp(25px, 2.9vw, 34px); line-height: 1.08; letter-spacing: -.01em; text-shadow: 0 1px 3px rgba(6,14,26,.45), 0 2px 20px rgba(6,14,26,.4); }
.appbox__tag { color: rgba(255,255,255,.96); font-size: clamp(14px, 1.4vw, 16.5px); font-weight: 500; text-shadow: 0 1px 10px rgba(6,14,26,.55); }
.appbox__open { margin-top: 10px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color:#fff;
  opacity: 0; transform: translateY(6px); transition: opacity .24s var(--ease), transform .24s var(--ease); }
.appbox__open svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.appbox:hover .appbox__open, .appbox:focus-visible .appbox__open { opacity: 1; transform: none; }
@media (hover: none){ .appbox__open { opacity: 1; transform: none; } }

.appwall__note { text-align: center; margin-top: 26px; color: var(--slate); font-size: 15.5px; }
.appwall__note a { color: var(--blue); font-weight: 700; text-decoration: none; white-space: nowrap; }
.appwall__note a:hover { text-decoration: underline; }

/* video popup (sound) */
.vmodal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 4vh 4vw; }
.vmodal[hidden]{ display: none; }
.vmodal__backdrop { position: absolute; inset: 0; background: rgba(6,12,22,.86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.vmodal__frame { position: relative; z-index: 1; max-width: 94vw; animation: vpop .28s var(--ease); }
.vmodal__vid { display: block; max-height: 84vh; max-width: 94vw; width: auto; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); background:#000; }
.vmodal__close { position: absolute; top: -14px; right: -14px; z-index: 2; width: 40px; height: 40px; border-radius: 999px; border: none;
  background: #fff; color: var(--ink); font-size: 24px; line-height: 1; cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center; }
.vmodal__close:hover { background: var(--paper-2); }
.vmodal__cap { margin-top: 14px; text-align: center; color: #EAF1FB; font-weight: 600; font-size: 15px; }
body.vmodal-open { overflow: hidden; }
@keyframes vpop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce){ .appbox, .appbox__vid, .appbox__open { transition: none !important; } .vmodal__frame { animation: none; } }

/* ---- nav: keep the desktop menu hard-right ---- */
.nav__links { margin-left: auto; }
/* ---- mobile polish (home)  2026-07-06 ---- */
@media (max-width: 600px) {
  .hero--apps { padding-top: 90px; padding-bottom: 4px; }
  .hero__head .lead { font-size: 1.06rem; line-height: 1.5; max-width: 34ch; }
  .hero__rating { justify-content: center; margin-top: 18px; }
  .hero__rating span { font-size: .88rem; }
  .appwall { padding: 4px 0 44px; }
  .appgrid { gap: 14px; }
  .appbox__name { font-size: 27px; }
  .appbox__body { padding: 18px 16px 16px; }
  .appbox__play { width: 42px; height: 42px; }
  .appbox__open { font-size: 15px; opacity: 1; transform: none; }
  .appwall__note { font-size: 15px; }
}
