/* ══════════════════════════════════════════════════════════════════════
   CARD-PAGE — shared structure for the business-card landing pair (S466).
   The card is a widget of the landing page: both /receptionist-l1.html
   (ARAYA OS storefront, card FRONT) and /builder-revolution.html (BR join
   page, card BACK) are Desktop/1_COMMAND/BR_BRAND/FLIP_PAIR_v6.html scaled
   up. This file owns the shared skeleton; each page supplies its palette
   by defining the alias vars below (sourced from components/araya-brand.css
   tokens — never hardcode hex on a page):

     --bg --surface --surface-hi --line   base + surfaces
     --trim                               the ~10% trim color (rule, category)
     --pop                                the tiny pop (ONE job at a time)
     --text --dim                         ink
     --nav-bg                             translucent sticky-nav background
     --maxw --radius                      layout constants

   Fonts ride the araya-brand.css @import (Space Grotesk / Inter) — pages
   must NOT add their own Google Fonts <link> (one source only).
   ══════════════════════════════════════════════════════════════════════ */

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);line-height:1.55;
  font-family:var(--font-body,'Inter',sans-serif);
  -webkit-font-smoothing:antialiased;overflow-x:hidden}
.wrap{max-width:var(--maxw,980px);margin:0 auto;padding:0 22px}
a{color:inherit}
h1,h2,h3{font-family:var(--font-display,'Space Grotesk',sans-serif);line-height:1.08;letter-spacing:-.02em;font-weight:700}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;font-weight:700;font-size:16px;
  font-family:var(--font-display,inherit);border-radius:12px;padding:16px 26px;text-decoration:none;
  cursor:pointer;border:1px solid transparent;transition:.15s;min-height:44px}
.btn-ghost{background:transparent;border-color:var(--line);color:var(--text)}
.btn:focus-visible{outline:2px solid var(--trim);outline-offset:2px}
.micro{font-size:13px;color:var(--dim);margin-top:10px}

/* NAV — conversion chrome only (page renders it; cr-frame is off on card pages) */
.nav{position:sticky;top:0;z-index:60;background:var(--nav-bg);backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.nav .wrap{display:flex;align-items:center;justify-content:space-between;height:64px}
.nav .lockup{display:flex;align-items:center;gap:10px;text-decoration:none}
.nav .btn{padding:10px 16px;font-size:14px}

/* HERO = the card, scaled up: lockup → rule → staggered category → benefit */
.hero{padding:76px 0 64px;text-align:center}
.hero .lockup{display:flex;align-items:center;justify-content:center}
.hero h1{font-size:clamp(42px,7.5vw,76px);margin-top:30px}
.hero .sub{margin-top:20px;font-size:19px;color:var(--dim);max-width:46ch;margin-left:auto;margin-right:auto}
.rule{width:64px;border-bottom:3px solid var(--trim);margin:18px auto 0}
.category{font-family:var(--font-display,inherit);font-size:clamp(12px,1.6vw,15px);font-weight:600;
  letter-spacing:3px;text-transform:uppercase;color:var(--trim);
  margin:22px auto 0;line-height:1.9}
.category .up{display:block;text-align:left}
.category .dn{display:block;text-align:right}

/* footer strip — minimal inline footer, allowed because cr-frame chrome is
   off on these conversion pages (tradeoff noted in the PR) */
.strip{border-top:1px solid var(--line);padding:26px 0 44px;text-align:center;font-size:13.5px;color:var(--dim)}
.strip a{color:var(--dim)}
.strip a:hover{color:var(--text)}
.strip .site{font-family:var(--font-display,inherit);letter-spacing:2px;font-weight:600;color:var(--text);margin-bottom:8px}
