/* ==========================================================================
   Fortis Sync — Website Design System
   Brand: gold #C9A24A on near-black, ivory/white content surfaces
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --ink:        #0A0A0C;
  --ink-2:      #101014;
  --ink-3:      #17171C;
  --ink-4:      #1F1F26;

  --gold:       #C9A24A;
  --gold-lt:    #E3C77E;
  --gold-dp:    #9C7A26;
  --gold-soft:  rgba(201,162,74,.12);
  --gold-line:  rgba(201,162,74,.28);

  --paper:      #FFFFFF;
  --paper-2:    #F8F7F4;
  --paper-3:    #F1EFEA;

  --text:       #14161A;
  --text-2:     #3D424B;
  --muted:      #6C7179;
  --line:       #E6E3DD;

  --on-dark:    #FFFFFF;
  --muted-dark: #9AA0A9;
  --line-dark:  rgba(255,255,255,.10);
  --panel-dark: rgba(255,255,255,.045);

  --ok:         #16A34A;
  --warn:       #E0A106;
  --bad:        #DC2626;
  --info:       #3B82F6;

  --display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(16,18,22,.05), 0 1px 3px rgba(16,18,22,.06);
  --shadow:    0 6px 20px rgba(16,18,22,.07), 0 2px 6px rgba(16,18,22,.05);
  --shadow-lg: 0 28px 70px rgba(6,7,10,.36);

  --nav-h: 76px;
  --pad: clamp(20px, 4vw, 40px);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; scroll-padding-top:calc(var(--nav-h) + 20px); }
body{
  margin:0;
  font-family:var(--body);
  font-size:16px;
  line-height:1.62;
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
svg{ display:block; width:100%; height:auto; }        /* icons below always set an explicit size */
a{ color:inherit; text-decoration:none; }
button,input,select,textarea{ font:inherit; color:inherit; }
h1,h2,h3,h4,h5{ font-family:var(--display); font-weight:700; line-height:1.14; letter-spacing:-.02em; margin:0 0 .5em; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:4px; }
::selection{ background:var(--gold); color:#0A0A0C; }

/* ---------- Layout ---------- */
.container{ width:min(1240px, 100% - (var(--pad) * 2)); margin-inline:auto; }
.container-narrow{ width:min(880px, 100% - (var(--pad) * 2)); margin-inline:auto; }
.section{ padding:clamp(60px, 8vw, 104px) 0; }
.section-sm{ padding:clamp(44px, 5vw, 68px) 0; }
.bg-paper2{ background:var(--paper-2); }
.bg-paper3{ background:var(--paper-3); }
.bg-ink{ background:var(--ink); color:var(--on-dark); }
.bg-ink h1,.bg-ink h2,.bg-ink h3,.bg-ink h4{ color:var(--on-dark); }
.bg-ink p{ color:var(--muted-dark); }

.grid{ display:grid; gap:20px; }
.g-2{ grid-template-columns:repeat(2,1fr); }
.g-3{ grid-template-columns:repeat(3,1fr); }
.g-4{ grid-template-columns:repeat(4,1fr); }

/* ---------- Type helpers ---------- */
.eyebrow{
  font-family:var(--body);
  font-size:12px; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold); margin:0 0 14px;
}
.h-xl{ font-size:clamp(38px, 5.4vw, 62px); }
.h-lg{ font-size:clamp(30px, 3.6vw, 44px); }
.h-md{ font-size:clamp(24px, 2.4vw, 32px); }
.gold{ color:var(--gold); }
.lead{ font-size:clamp(16px,1.35vw,18px); color:var(--muted); max-width:60ch; }
.bg-ink .lead{ color:var(--muted-dark); }
.center{ text-align:center; }
.center .lead{ margin-inline:auto; }
.section-head{ max-width:720px; margin:0 auto clamp(34px,4vw,52px); text-align:center; }
.section-head p{ margin-bottom:0; }
.section-head-left{ max-width:660px; margin:0 0 clamp(30px,3.5vw,44px); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height:48px; padding:0 24px;
  border-radius:var(--r-sm); border:1px solid transparent;
  font-family:var(--body); font-size:15px; font-weight:600; letter-spacing:-.01em;
  cursor:pointer; white-space:nowrap;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn:active{ transform:translateY(0); }
.btn svg{ width:16px; height:16px; flex:none; }
.btn-gold{ background:var(--gold); color:#12100A; box-shadow:0 6px 18px rgba(201,162,74,.28); }
.btn-gold:hover{ background:var(--gold-lt); box-shadow:0 10px 26px rgba(201,162,74,.36); }
.btn-outline-dark{ border-color:rgba(255,255,255,.26); color:#fff; background:transparent; }
.btn-outline-dark:hover{ border-color:#fff; background:rgba(255,255,255,.07); }
.btn-outline{ border-color:var(--text); color:var(--text); background:transparent; }
.btn-outline:hover{ background:var(--text); color:#fff; }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:var(--ink-3); }
.btn-sm{ min-height:40px; padding:0 16px; font-size:14px; }
.btn-block{ width:100%; }
.btn-row{ display:flex; flex-wrap:wrap; gap:12px; }
.link-gold{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; font-size:15px; color:var(--gold);
}
.link-gold svg{ width:15px; height:15px; flex:none; transition:transform .2s ease; }
.link-gold:hover svg{ transform:translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:120;
  background:var(--ink);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  height:var(--nav-h);
  display:flex; align-items:center; gap:clamp(10px,1.6vw,26px);
}
.brand{ display:flex; align-items:center; gap:11px; flex:none; }
.brand img{ height:38px; width:auto; }
.brand-txt{
  font-family:var(--display); font-weight:800; line-height:.97;
  font-size:17px; letter-spacing:.02em; color:#fff; text-transform:uppercase;
}
.brand-txt span{ display:block; }
.brand-txt span:last-child{ color:var(--gold-lt); letter-spacing:.12em; font-size:15px; }

.nav-links{ display:flex; align-items:center; gap:2px; margin-left:8px; }
.nav-item{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:5px;
  padding:10px 12px; border-radius:var(--r-sm);
  font-size:14.5px; font-weight:500; color:#E6E7EA; white-space:nowrap;
  transition:color .16s ease, background .16s ease;
}
.nav-link:hover,.nav-item:hover>.nav-link{ color:#fff; background:rgba(255,255,255,.06); }
.nav-link[aria-current="page"]{ color:var(--gold-lt); }
.nav-link .caret{ display:block; width:10px; height:10px; opacity:.65; transition:transform .2s ease; }
.nav-link .caret svg{ width:10px; height:10px; }
.nav-item:hover .caret{ transform:rotate(180deg); }
.nav-right{ display:flex; align-items:center; gap:10px; margin-left:auto; }
.nav-search{
  width:40px; height:40px; display:grid; place-items:center; flex:none;
  border-radius:var(--r-sm); border:1px solid transparent; background:transparent;
  color:#C9CBD1; cursor:pointer; transition:.16s;
}
.nav-search svg{ width:18px; height:18px; }
.nav-search:hover{ background:rgba(255,255,255,.07); color:#fff; }
.nav-login{ font-size:14.5px; font-weight:500; color:#E6E7EA; padding:10px 12px; white-space:nowrap; }
.nav-login:hover{ color:#fff; }

/* Dropdown / mega menu */
.dropdown{
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translate(-50%,8px);
  min-width:290px; max-width:calc(100vw - 32px); padding:12px;
  background:#fff; color:var(--text);
  border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:0 24px 60px rgba(8,10,14,.22);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover .dropdown,.nav-item:focus-within .dropdown{
  opacity:1; visibility:visible; pointer-events:auto; transform:translate(-50%,0);
}
.dropdown::before{ content:""; position:absolute; top:-12px; left:0; right:0; height:12px; }
.dd-wide{
  min-width:min(660px,calc(100vw - 32px)); display:grid; grid-template-columns:1fr 1fr; gap:2px;
  left:0; transform:translate(0,8px);
  max-height:calc(100vh - var(--nav-h) - 56px); overflow-y:auto; align-content:start;
}
.dd-group-label:first-child{ padding-top:4px; }
.nav-item:hover .dd-wide,.nav-item:focus-within .dd-wide{ transform:translate(0,0); }
/* last items open right-aligned so they can't spill past the viewport */
.nav-item:nth-last-child(-n+2) .dropdown:not(.dd-wide){ left:auto; right:0; transform:translate(0,8px); }
.nav-item:nth-last-child(-n+2):hover .dropdown:not(.dd-wide),
.nav-item:nth-last-child(-n+2):focus-within .dropdown:not(.dd-wide){ transform:translate(0,0); }
.dd-group-label{
  grid-column:1/-1; font-size:11px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--gold-dp); padding:12px 12px 6px;
}
.dd-link{ display:flex; gap:11px; padding:9px 12px; border-radius:var(--r-sm); transition:background .15s ease; }
.dd-link:hover{ background:var(--paper-2); }
.dd-ico{
  width:34px; height:34px; flex:none; border-radius:var(--r-sm);
  display:grid; place-items:center; background:var(--gold-soft); color:var(--gold-dp);
}
.dd-ico svg{ width:17px; height:17px; }
.dd-t{ display:block; font-size:14px; font-weight:600; line-height:1.35; }
.dd-d{ display:block; font-size:12.5px; color:var(--muted); line-height:1.45; }

/* Mobile */
.nav-toggle{
  display:none; width:44px; height:44px; flex:none;
  border:1px solid var(--line-dark); border-radius:var(--r-sm);
  background:transparent; color:#fff; cursor:pointer;
  place-items:center;
}
.nav-toggle svg{ width:20px; height:20px; }
.nav-toggle .ic-close{ display:none; }
.nav-toggle.is-open .ic-close{ display:block; }
.nav-toggle.is-open .ic-menu{ display:none; }
.mobile-nav{
  display:none; position:fixed; inset:var(--nav-h) 0 0; z-index:110;
  background:var(--ink); overflow-y:auto;
  padding:18px var(--pad) 48px;
  border-top:1px solid var(--line-dark);
}
.mobile-nav.is-open{ display:block; }
.m-group{ border-bottom:1px solid var(--line-dark); }
.m-head{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:16px 2px; background:none; border:0; cursor:pointer;
  font-family:var(--display); font-size:17px; font-weight:600; color:#fff; text-align:left;
}
.m-head svg{ width:14px; height:14px; flex:none; color:var(--gold); transition:transform .22s ease; }
.m-head.is-open svg{ transform:rotate(180deg); }
.m-panel{ display:none; padding:0 2px 14px; }
.m-panel.is-open{ display:block; }
.m-panel a{ display:block; padding:9px 0; font-size:15px; color:#B9BDC4; }
.m-panel a:hover{ color:var(--gold-lt); }
.m-cta{ display:grid; gap:10px; margin-top:22px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(1000px 520px at 78% 12%, rgba(201,162,74,.16), transparent 62%),
    linear-gradient(180deg,#0A0A0C 0%,#101015 58%,#0A0A0C 100%);
  color:#fff;
  padding:clamp(52px,7vw,86px) 0 clamp(56px,7vw,88px);
}
.hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(201,162,74,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,74,.055) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(900px 460px at 24% 40%, #000 10%, transparent 78%);
  -webkit-mask-image:radial-gradient(900px 460px at 24% 40%, #000 10%, transparent 78%);
}
.hero-blueprint{
  position:absolute; right:-4%; bottom:-6%; width:min(560px,52vw); height:auto;
  opacity:.14; color:var(--gold); pointer-events:none;
}
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.04fr);
  gap:clamp(28px,4vw,56px); align-items:center;
}
.hero h1{ font-size:clamp(34px,3.6vw,48px); margin-bottom:20px; }
.hero p.lead{ color:#C4C8CE; margin-bottom:28px; }
.hero-stats{
  display:grid; grid-template-columns:repeat(4,auto); gap:clamp(16px,3vw,42px);
  margin-top:38px; justify-content:start;
}
.stat-n{
  font-family:var(--display); font-size:clamp(22px,2.3vw,29px);
  font-weight:800; color:var(--gold); line-height:1.1;
}
.stat-l{ font-size:12.5px; color:#9AA0A9; line-height:1.35; max-width:96px; }

/* ==========================================================================
   Dashboard mock (signature element)
   ========================================================================== */
.dash{
  border-radius:var(--r-lg); overflow:hidden;
  background:var(--ink-2);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow-lg);
  display:grid; grid-template-columns:172px minmax(0,1fr);
  font-size:11px;
}
.dash-side{ background:#0D0D11; padding:16px 10px; border-right:1px solid rgba(255,255,255,.07); }
.dash-brand{ display:flex; align-items:center; gap:8px; padding:0 6px 16px; }
.dash-brand img{ height:22px; width:auto; }
.dash-brand b{ font-family:var(--display); font-size:10px; letter-spacing:.08em; color:#fff; line-height:1.05; }
.dash-side a{
  display:flex; align-items:center; gap:9px; padding:7px 9px; border-radius:6px;
  color:#8D929B; font-size:11.5px; margin-bottom:1px;
}
.dash-side a.on{ background:rgba(201,162,74,.14); color:var(--gold-lt); }
.dash-side i{ width:5px; height:5px; border-radius:1.5px; background:currentColor; opacity:.7; flex:none; }
.dash-main{ background:#fff; color:#14161A; padding:14px; }
.dash-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.dash-top b{ font-family:var(--display); font-size:14px; }
.dash-chips{ display:flex; align-items:center; gap:7px; }
.dash-chip{
  border:1px solid var(--line); border-radius:6px; padding:4px 8px;
  font-size:10px; color:var(--muted); display:flex; align-items:center; gap:5px;
}
.dash-chip svg{ width:9px; height:9px; flex:none; }
.dash-av{ width:22px; height:22px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--gold-dp)); flex:none; }
.dash-kpis{ display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:10px; }
.kpi{ border:1px solid var(--line); border-radius:9px; padding:9px; }
.kpi-h{ display:flex; align-items:center; gap:5px; font-size:10px; color:var(--muted); margin-bottom:5px; }
.kpi-dot{ width:14px; height:14px; border-radius:4px; display:grid; place-items:center; font-size:8px; flex:none; }
.kpi-n{ font-family:var(--display); font-size:17px; font-weight:800; letter-spacing:-.02em; }
.kpi-d{ font-size:9.5px; margin-top:2px; }
.up{ color:var(--ok); } .down{ color:var(--bad); }
.dash-cols{ display:grid; grid-template-columns:1.35fr 1fr; gap:8px; margin-bottom:8px; }
.dash-cols:last-child{ margin-bottom:0; }
.panel{ border:1px solid var(--line); border-radius:9px; padding:10px; }
.panel-h{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.panel-h b{ font-family:var(--display); font-size:11.5px; }
.panel-h span{ font-size:9.5px; color:var(--info); }
.donut-wrap{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.donut-wrap svg{ width:86px; height:86px; flex:none; }
.legend li{ display:flex; align-items:center; gap:6px; font-size:9.5px; color:var(--text-2); margin-bottom:4px; }
.legend i{ width:6px; height:6px; border-radius:50%; flex:none; }
.rows li{
  display:flex; align-items:center; gap:7px; font-size:10px;
  padding:5px 0; border-bottom:1px dashed var(--line);
}
.rows li:last-child{ border-bottom:0; }
.rows .tag{ margin-left:auto; font-size:9px; font-weight:600; white-space:nowrap; }
.rows .bullet{ width:5px; height:5px; border-radius:50%; flex:none; }
.badge-n{
  width:16px; height:16px; border-radius:4px; flex:none; display:grid; place-items:center;
  background:var(--gold-soft); color:var(--gold-dp); font-size:8.5px; font-weight:700;
}
.panel > svg{ width:100%; max-width:430px; height:auto; margin-inline:auto; }

/* ==========================================================================
   Logo strip
   ========================================================================== */
.logos{ background:var(--paper-2); border-block:1px solid var(--line); padding:30px 0 34px; }
.logos-title{
  text-align:center; font-size:11px; font-weight:700; letter-spacing:.18em;
  text-transform:uppercase; color:var(--muted); margin-bottom:20px;
}
.logos-row{ display:grid; grid-template-columns:repeat(8,1fr); gap:14px; align-items:center; }
.logo-mark{
  display:flex; flex-direction:column; align-items:center; gap:3px;
  padding:8px 4px; text-align:center;
  color:#3A3F47; opacity:.78; transition:opacity .2s ease, color .2s ease;
}
.logo-mark:hover{ opacity:1; color:var(--text); }
.logo-mark svg{ width:22px; height:22px; flex:none; }
.logo-mark b{ font-family:var(--display); font-size:13px; font-weight:800; letter-spacing:-.01em; white-space:nowrap; }
.logo-mark small{ font-size:8.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.fcard{
  position:relative; display:block; padding:22px;
  background:#fff; border:1px solid var(--line); border-radius:var(--r);
  transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.fcard:hover{ border-color:var(--gold-line); transform:translateY(-4px); box-shadow:var(--shadow); }
.fcard .ico{
  width:38px; height:38px; border-radius:10px; display:grid; place-items:center;
  background:var(--gold-soft); color:var(--gold-dp); margin-bottom:14px;
}
.fcard .ico svg{ width:19px; height:19px; }
.fcard h3{ font-size:16.5px; margin-bottom:6px; }
.fcard p{ font-size:14px; color:var(--muted); margin:0; line-height:1.55; }
.fcard .arrow{
  position:absolute; right:18px; bottom:16px; color:var(--muted);
  transition:transform .2s ease, color .2s ease;
}
.fcard .arrow svg{ width:15px; height:15px; }
.fcard:hover .arrow{ transform:translateX(4px); color:var(--gold-dp); }
.fcard.pad-b{ padding-bottom:46px; }

/* ==========================================================================
   AI band
   ========================================================================== */
.ai-band{ position:relative; overflow:hidden; background:var(--ink); color:#fff; padding:clamp(54px,6vw,80px) 0; }
.ai-band h2,.ai-band h4{ color:#fff; }
.ai-band > .crane{ position:absolute; right:-2%; bottom:0; width:min(480px,44vw); height:auto; opacity:.3; color:var(--gold); pointer-events:none; }
.ai-grid{
  position:relative; z-index:2; display:grid;
  grid-template-columns:.95fr 1.3fr .92fr;
  gap:clamp(20px,2.4vw,32px); align-items:center;
}
.ai-grid > div:first-child p{ color:var(--muted-dark); }
.ai-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.ai-card{ padding:15px 13px; }
.ai-card{
  background:var(--panel-dark); border:1px solid var(--line-dark);
  border-radius:var(--r); padding:18px;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.ai-card:hover{ border-color:var(--gold-line); background:rgba(201,162,74,.07); transform:translateY(-3px); }
.ai-card .ico{ width:34px; height:34px; border-radius:9px; display:grid; place-items:center; background:rgba(201,162,74,.14); color:var(--gold-lt); margin-bottom:12px; }
.ai-card .ico svg{ width:17px; height:17px; }
.ai-card h4{ font-size:14.5px; margin-bottom:5px; }
.ai-card p{ font-size:12.5px; color:var(--muted-dark); margin:0; line-height:1.5; }

/* Chat mock */
.chat{
  background:#fff; color:var(--text); border-radius:var(--r);
  box-shadow:var(--shadow-lg); overflow:hidden; font-size:11.5px;
}
.chat p{ color:var(--text); }
.chat-h{ display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border-bottom:1px solid var(--line); }
.chat-h b{ font-family:var(--display); font-size:12.5px; }
.chat-b{ padding:12px; }
.chat-q{ color:var(--muted) !important; margin-bottom:9px; }
.chat-pill{
  display:inline-block; background:var(--gold-soft); color:var(--gold-dp);
  border:1px solid var(--gold-line); border-radius:99px; padding:4px 10px;
  font-size:10.5px; font-weight:600; margin-bottom:10px;
}
.chat-list li{ display:flex; align-items:center; gap:8px; padding:6px 0; border-top:1px solid var(--line); font-size:10.5px; }
.chat-list li b{ font-family:var(--mono); font-size:10px; font-weight:600; }
.chat-list .tag{ margin-left:auto; color:var(--bad); font-size:9.5px; font-weight:600; }
.chat-f{ padding:8px 12px 12px; }
.chat-f span{ display:inline-block; border:1px solid var(--line); border-radius:6px; padding:5px 10px; font-size:10px; color:var(--muted); }

/* ==========================================================================
   Split / staged sections
   ========================================================================== */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,60px); align-items:center; }
.split-3{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(28px,4vw,56px); align-items:center; }
.ticks li{ display:flex; align-items:flex-start; gap:10px; padding:7px 0; font-size:14.5px; color:var(--text-2); }
.ticks .tk{
  width:19px; height:19px; flex:none; border-radius:50%; margin-top:3px;
  display:grid; place-items:center; border:1.5px solid var(--gold); color:var(--gold-dp);
}
.ticks .tk svg{ width:10px; height:10px; }

.phone{
  width:212px; border-radius:24px; padding:9px; background:#0A0A0C;
  border:1px solid #2A2A32; box-shadow:var(--shadow-lg); margin-inline:auto;
}
.phone-scr{ background:#fff; border-radius:17px; overflow:hidden; padding:12px; font-size:11px; }
.phone-h{ display:flex; align-items:center; justify-content:space-between; font-family:var(--mono); font-size:9px; color:var(--muted); margin-bottom:10px; }
.phone-scr svg{ width:112px; height:112px; margin-inline:auto; }

.stage{ background:var(--paper-2); border:1px solid var(--line); border-radius:var(--r-lg); padding:clamp(18px,2.5vw,28px); }
.stage .panel{ background:#fff; }
.stage .panel svg{ width:88px; height:88px; flex:none; }
.bars li{ display:grid; grid-template-columns:100px 1fr 38px; align-items:center; gap:10px; font-size:12px; padding:6px 0; }
.bars .track{ height:6px; border-radius:99px; background:var(--paper-3); overflow:hidden; }
.bars .fill{ display:block; height:100%; border-radius:99px; background:linear-gradient(90deg,var(--gold-dp),var(--gold)); }
.bars .pct{ font-family:var(--mono); font-size:11px; color:var(--muted); text-align:right; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{ background:var(--ink); color:#fff; }
.cta-inner{
  display:flex; align-items:center; justify-content:space-between; gap:clamp(20px,3vw,40px);
  padding:clamp(30px,4vw,44px) 0; flex-wrap:wrap;
}
.cta-inner h2{ font-size:clamp(23px,2.5vw,31px); margin:0; max-width:15ch; color:#fff; }
.cta-inner p{ color:var(--muted-dark); margin:0; max-width:40ch; font-size:15px; }
.cta-ico{
  width:56px; height:56px; flex:none; border-radius:50%; display:grid; place-items:center;
  border:1px solid var(--gold-line); background:var(--gold-soft); color:var(--gold);
}
.cta-ico svg{ width:24px; height:24px; }

/* ==========================================================================
   Interior page hero
   ========================================================================== */
.page-hero{
  position:relative; overflow:hidden; background:var(--ink); color:#fff;
  padding:clamp(46px,6vw,74px) 0 clamp(42px,5vw,62px);
}
.page-hero::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(760px 340px at 80% 0%, rgba(201,162,74,.17), transparent 66%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{ font-size:clamp(32px,4.1vw,50px); margin-bottom:14px; color:#fff; }
.page-hero p{ color:#C4C8CE; max-width:62ch; font-size:clamp(15px,1.3vw,17.5px); margin-bottom:0; }
.crumbs{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; font-size:12.5px; color:var(--muted-dark); margin-bottom:16px; }
.crumbs a,.crumbs span{ display:inline-flex; align-items:center; min-height:26px; }
.crumbs a:hover{ color:var(--gold-lt); }

/* ==========================================================================
   Module list (Platform page)
   ========================================================================== */
.cat-label{
  display:flex; align-items:center; gap:14px;
  font-size:11.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--gold-dp); margin:clamp(34px,4vw,52px) 0 18px;
}
.cat-label::after{ content:""; height:1px; flex:1; background:var(--line); }
.cat-label.first{ margin-top:0; }
.mod{
  display:grid; grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:clamp(18px,3vw,40px); align-items:center;
  padding:clamp(18px,2.5vw,26px);
  border:1px solid var(--line); border-radius:var(--r-lg); background:#fff;
  margin-bottom:16px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.mod:hover{ border-color:var(--gold-line); box-shadow:var(--shadow); }
.mod.flip .mod-visual{ order:-1; }
.mod-ico{
  width:42px; height:42px; border-radius:11px; display:grid; place-items:center;
  background:var(--gold-soft); color:var(--gold-dp); margin-bottom:14px;
}
.mod-ico svg{ width:21px; height:21px; }
.mod h3{ font-size:clamp(19px,1.9vw,23px); margin-bottom:9px; }
.mod p{ font-size:14.5px; color:var(--muted); margin-bottom:14px; line-height:1.6; }
.mod-visual{
  background:var(--ink-2); border:1px solid rgba(255,255,255,.09);
  border-radius:var(--r); padding:12px; color:#fff; font-size:11px;
  display:flex; flex-direction:column; gap:8px;
}
.mv-h{ display:flex; align-items:center; justify-content:space-between; gap:10px; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,.09); }
.mv-h b{ font-family:var(--display); font-size:12px; color:#fff; }
.mv-h span{ font-size:9.5px; color:var(--gold-lt); letter-spacing:.06em; text-transform:uppercase; white-space:nowrap; }
.mv-row{
  display:flex; align-items:center; gap:9px; padding:8px 9px;
  background:rgba(255,255,255,.045); border:1px solid rgba(255,255,255,.06);
  border-radius:7px; font-size:10.5px; color:#C9CDD4;
}
.mv-row b{ font-family:var(--mono); font-size:10px; color:#fff; font-weight:500; }
.mv-row .st{ margin-left:auto; font-size:9px; font-weight:600; padding:2px 7px; border-radius:99px; white-space:nowrap; }
.st-ok{ background:rgba(22,163,74,.16); color:#4ADE80; }
.st-warn{ background:rgba(224,161,6,.16); color:#FCD34D; }
.st-bad{ background:rgba(220,38,38,.16); color:#FCA5A5; }
.st-info{ background:rgba(59,130,246,.16); color:#93C5FD; }
.st-gold{ background:var(--gold-soft); color:var(--gold-lt); }
.chip-row{ display:flex; flex-wrap:wrap; gap:6px; }
.chip{
  font-size:11.5px; padding:4px 10px; border-radius:99px;
  border:1px solid var(--line); color:var(--text-2); background:var(--paper-2);
}

/* ==========================================================================
   Industries
   ========================================================================== */
.ind{
  position:relative; overflow:hidden; border-radius:var(--r);
  border:1px solid var(--line); background:#fff; display:block;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ind:hover{ transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--gold-line); }
.ind-art{
  aspect-ratio:16/10; display:grid; place-items:center;
  background:linear-gradient(160deg,#101015,#1D1D24 60%,#0C0C10);
  color:var(--gold); position:relative;
}
.ind-art::after{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(201,162,74,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,74,.08) 1px,transparent 1px);
  background-size:26px 26px;
}
.ind-art svg{ width:46%; height:auto; position:relative; z-index:2; opacity:.92; }
.ind-b{ padding:15px 16px 18px; }
.ind-b h3{ font-size:16px; margin-bottom:4px; }
.ind-b p{ font-size:13px; color:var(--muted); margin:0; line-height:1.5; }

/* ==========================================================================
   Integrations
   ========================================================================== */
.int{
  display:flex; align-items:center; gap:13px; padding:16px 18px;
  border:1px solid var(--line); border-radius:var(--r); background:#fff;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.int:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--gold-line); }
.int-ico{
  width:38px; height:38px; flex:none; border-radius:9px; display:grid; place-items:center;
  font-family:var(--display); font-weight:800; font-size:14px; color:#fff;
}
.int b{ display:block; font-size:14.5px; font-family:var(--display); }
.int small{ display:block; font-size:12px; color:var(--muted); font-family:var(--body); font-weight:400; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.toggle{
  display:flex; padding:4px; gap:4px; border-radius:99px; width:max-content;
  background:var(--paper-3); border:1px solid var(--line); margin:0 auto 34px;
}
.toggle button{
  border:0; background:transparent; cursor:pointer; border-radius:99px;
  padding:9px 20px; font-size:14px; font-weight:600; color:var(--muted);
  transition:.18s; white-space:nowrap;
}
.toggle button.on{ background:var(--ink); color:#fff; }
.toggle .save{ font-size:11.5px; margin-left:5px; color:var(--gold-dp); }
.toggle button.on .save{ color:var(--gold-lt); }

.plans{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:stretch; }
.plans.three{ grid-template-columns:repeat(3,1fr); max-width:1040px; margin-inline:auto; }
.plan{
  border:1px solid var(--line); border-radius:var(--r-lg); background:#fff;
  padding:26px 22px; display:flex; flex-direction:column; position:relative;
}
.plan.hot{ background:var(--ink); color:#fff; border-color:var(--ink); box-shadow:var(--shadow-lg); }
.plan.hot h3{ color:#fff; }
.plan-flag{
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  background:var(--gold); color:#12100A; font-size:10.5px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; padding:4px 12px; border-radius:99px;
  white-space:nowrap;
}
.plan h3{ font-size:19px; margin-bottom:6px; }
.plan .desc{ font-size:13px; color:var(--muted); min-height:56px; margin-bottom:14px; line-height:1.5; }
.plan.hot .desc{ color:var(--muted-dark); }
.price{ display:flex; align-items:baseline; gap:4px; margin-bottom:2px; }
.price .amt{ font-family:var(--display); font-size:38px; font-weight:800; letter-spacing:-.03em; }
.price .cur{ font-family:var(--display); font-size:20px; font-weight:700; }
.price-sub{ font-size:12.5px; color:var(--muted); margin-bottom:20px; min-height:38px; }
.plan.hot .price-sub{ color:var(--muted-dark); }
.plan > .btn{ margin-bottom:20px; }
.plan-feats{ margin-top:auto; }
.plan-feats li{ display:flex; gap:9px; font-size:13.5px; padding:5px 0; color:var(--text-2); line-height:1.45; }
.plan.hot .plan-feats li{ color:#D7DAE0; }
.plan-feats svg{ width:14px; height:14px; flex:none; margin-top:5px; color:var(--gold-dp); }
.plan.hot .plan-feats svg{ color:var(--gold-lt); }
.plan-note{
  text-align:center; margin-top:30px; font-size:13px; color:var(--muted);
  display:flex; flex-wrap:wrap; gap:8px 22px; justify-content:center;
}
.plan-note span{ display:flex; align-items:center; gap:7px; }
.plan-note i{ width:5px; height:5px; border-radius:50%; background:var(--gold); }

/* Comparison table */
.cmp-wrap{ overflow-x:auto; border:1px solid var(--line); border-radius:var(--r-lg); background:#fff; -webkit-overflow-scrolling:touch; }
.cmp-hint{ display:none; font-size:12.5px; color:var(--muted); margin-top:10px; align-items:center; gap:6px; }
.cmp-hint svg{ width:14px; height:14px; flex:none; color:var(--gold-dp); }
@media (max-width:760px){ .cmp-hint{ display:flex; } }
table.cmp{ width:100%; border-collapse:collapse; min-width:660px; font-size:14px; }
table.cmp th,table.cmp td{ padding:13px 16px; text-align:left; border-bottom:1px solid var(--line); }
table.cmp thead th{ font-family:var(--display); font-size:13.5px; background:var(--paper-2); }
table.cmp td:not(:first-child),table.cmp th:not(:first-child){ text-align:center; }
table.cmp tbody tr:last-child td{ border-bottom:0; }
table.cmp .yes{ color:var(--ok); font-weight:700; }
table.cmp .no{ color:#C9CCD2; }
.cat-row td{ background:var(--paper-2); font-weight:700; font-family:var(--display); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-dp); }

/* ==========================================================================
   Security / resources / about
   ========================================================================== */
.sec-item{ display:flex; gap:15px; padding:18px 0; border-bottom:1px solid var(--line); }
.sec-item:last-child{ border-bottom:0; }
.sec-ico{
  width:40px; height:40px; flex:none; border-radius:10px; display:grid; place-items:center;
  background:var(--gold-soft); color:var(--gold-dp);
}
.sec-ico svg{ width:19px; height:19px; }
.sec-item h3{ font-size:16px; margin-bottom:4px; }
.sec-item p{ font-size:14px; color:var(--muted); margin:0; }

.orb{
  aspect-ratio:1; border-radius:50%; display:grid; place-items:center; color:var(--gold);
  background:radial-gradient(circle at 34% 28%, #23232B, #0B0B0E 68%);
  border:1px solid rgba(201,162,74,.2);
  box-shadow:0 30px 80px rgba(0,0,0,.4), inset 0 0 60px rgba(201,162,74,.08);
  max-width:320px; margin-inline:auto; position:relative; overflow:hidden;
}
.orb::after{
  content:""; position:absolute; inset:0; border-radius:50%;
  background-image:repeating-linear-gradient(0deg,rgba(201,162,74,.13) 0 1px,transparent 1px 22px),
                   repeating-linear-gradient(90deg,rgba(201,162,74,.13) 0 1px,transparent 1px 22px);
}
.orb svg{ width:36%; height:auto; position:relative; z-index:2; }

.tabs{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.tab{
  border:1px solid var(--line); background:#fff; border-radius:99px;
  padding:8px 18px; font-size:13.5px; font-weight:600; color:var(--muted); cursor:pointer;
  transition:.18s;
}
.tab.on{ background:var(--ink); border-color:var(--ink); color:#fff; }
.tab:hover:not(.on){ border-color:var(--gold-line); color:var(--text); }

.res{ display:flex; gap:16px; padding:18px; border:1px solid var(--line); border-radius:var(--r); background:#fff; transition:.2s; }
.res:hover{ border-color:var(--gold-line); box-shadow:var(--shadow); }
.res-art{
  width:124px; flex:none; aspect-ratio:4/3; border-radius:var(--r-sm);
  background:linear-gradient(150deg,#14141A,#22222B); color:var(--gold);
  display:grid; place-items:center; position:relative; overflow:hidden;
}
.res-art::after{
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(201,162,74,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(201,162,74,.09) 1px,transparent 1px);
  background-size:18px 18px;
}
.res-art svg{ width:34%; height:auto; position:relative; z-index:2; }
.res-kind{ font-size:10.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-dp); margin-bottom:6px; }
.res h3{ font-size:16px; margin-bottom:5px; }
.res p{ font-size:13.5px; color:var(--muted); margin-bottom:9px; }

.metric{ text-align:center; padding:22px 12px; border:1px solid var(--line); border-radius:var(--r); background:#fff; }
.metric b{ display:block; font-family:var(--display); font-size:clamp(26px,3vw,36px); font-weight:800; color:var(--gold-dp); line-height:1.1; }
.metric span{ font-size:13px; color:var(--muted); }

.value{ padding:22px; border:1px solid var(--line); border-radius:var(--r); background:#fff; }
.value .n{ font-family:var(--mono); font-size:12px; color:var(--gold-dp); letter-spacing:.1em; margin-bottom:10px; }
.value h3{ font-size:17px; margin-bottom:6px; }
.value p{ font-size:14px; color:var(--muted); margin:0; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  padding:clamp(20px,3vw,32px); box-shadow:var(--shadow);
}
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:6px; }
.field label .req{ color:var(--bad); }
.field input,.field select,.field textarea{
  width:100%; min-height:48px; padding:12px 14px;
  border:1px solid var(--line); border-radius:var(--r-sm); background:#fff;
  font-size:15px; transition:border-color .16s ease, box-shadow .16s ease;
}
.field textarea{ min-height:120px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-soft);
}
.field input::placeholder,.field textarea::placeholder{ color:#A6ABB3; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:12.5px; color:var(--muted); margin:14px 0 0; text-align:center; }
.form-ok{
  display:none; align-items:center; gap:10px; margin-top:16px; padding:13px 15px;
  background:rgba(22,163,74,.08); border:1px solid rgba(22,163,74,.3);
  border-radius:var(--r-sm); font-size:14px; color:#15803D;
}
.form-ok.on{ display:flex; }
.form-ok svg{ width:18px; height:18px; flex:none; }

.contact-item{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.contact-item:last-child{ border-bottom:0; }
.contact-item .ico{ width:40px; height:40px; flex:none; border-radius:10px; display:grid; place-items:center; background:var(--gold-soft); color:var(--gold-dp); }
.contact-item .ico svg{ width:19px; height:19px; }
.contact-item b{ display:block; font-family:var(--display); font-size:15px; margin-bottom:3px; }
.contact-item a,.contact-item p{ font-size:14px; color:var(--muted); margin:0; display:block; }
.contact-item a:hover{ color:var(--gold-dp); }

.map{ border-radius:var(--r); overflow:hidden; border:1px solid var(--line); background:#EDEBE6; }
.map svg{ width:100%; height:auto; display:block; }

.benefit{ display:flex; gap:13px; padding:14px 0; }
.benefit .ico{ width:36px; height:36px; flex:none; border-radius:9px; display:grid; place-items:center; background:var(--gold-soft); color:var(--gold-dp); }
.benefit .ico svg{ width:17px; height:17px; }
.benefit b{ display:block; font-family:var(--display); font-size:15px; margin-bottom:3px; }
.benefit p{ font-size:13.5px; color:var(--muted); margin:0; }

/* FAQ */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:19px 2px; background:none; border:0; cursor:pointer; text-align:left;
  font-family:var(--display); font-size:16.5px; font-weight:600;
}
.faq-q svg{ width:15px; height:15px; flex:none; color:var(--gold-dp); transition:transform .22s ease; }
.faq-q.on svg{ transform:rotate(45deg); }
.faq-a{ display:none; padding:0 2px 20px; font-size:14.5px; color:var(--muted); max-width:80ch; }
.faq-a.on{ display:block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background:var(--ink); color:#fff; padding:clamp(46px,5vw,64px) 0 0; }
.foot-grid{ display:grid; grid-template-columns:1.5fr repeat(4,1fr); gap:clamp(22px,3vw,40px); }
.foot-brand .brand{ margin-bottom:16px; }
.foot-brand p{ font-size:13.5px; color:var(--muted-dark); max-width:34ch; }
.foot-social{ display:flex; gap:9px; margin-top:16px; }
.foot-contact{ list-style:none; margin:16px 0 0; padding:0; display:grid; gap:11px; }
.foot-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--muted-dark); max-width:34ch; }
.foot-contact svg{ width:15px; height:15px; flex:none; margin-top:2px; color:var(--gold); }
.foot-contact span{ display:grid; gap:2px; }
.foot-contact a{ color:var(--muted-dark); display:inline-flex; align-items:center; min-height:26px; }
.foot-contact a:hover{ color:#fff; }
.foot-social a{
  width:36px; height:36px; border-radius:9px; display:grid; place-items:center;
  border:1px solid var(--line-dark); color:var(--muted-dark); transition:.18s;
}
.foot-social a:hover{ border-color:var(--gold-line); color:var(--gold-lt); background:var(--gold-soft); }
.foot-social svg{ width:16px; height:16px; }
.foot-col h4{ font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.foot-col a{ display:block; font-size:13.5px; color:#A9AEB6; padding:5px 0; }
.foot-col a:hover{ color:#fff; }
.foot-bot{
  margin-top:clamp(34px,4vw,48px); padding:20px 0; border-top:1px solid var(--line-dark);
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:12.5px; color:var(--muted-dark);
}
.foot-bot nav{ display:flex; gap:20px; flex-wrap:wrap; align-items:center; }
.foot-bot nav a{ display:inline-flex; align-items:center; min-height:28px; }
.foot-bot a:hover{ color:#fff; }

/* Demo banner */
.demo-flag{
  background:var(--gold-soft); border-bottom:1px solid var(--gold-line);
  color:var(--gold-dp); font-size:12.5px; text-align:center; padding:8px 16px;
}
.demo-flag b{ font-weight:700; }

/* ---------- Reveal ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1240px){
  .nav-link{ padding:10px 9px; font-size:14px; }
  .dd-wide{ min-width:600px; }
}
@media (max-width:1140px){
  .hero-inner{ grid-template-columns:1fr; }
  .dash{ max-width:760px; }
  .hero-blueprint{ opacity:.09; }
}
@media (max-width:1080px){
  :root{ --nav-h:68px; }
  .nav-links,.nav-login,.nav-search{ display:none; }
  .nav-toggle{ display:grid; }
  .nav-right{ gap:8px; }
  .plans,.plans.three{ grid-template-columns:repeat(2,1fr); }
  .logos-row{ grid-template-columns:repeat(4,1fr); gap:8px; }
  .ai-grid{ grid-template-columns:1fr 1fr; }
  .ai-grid > div:first-child{ grid-column:1/-1; }
  .foot-grid{ grid-template-columns:repeat(4,1fr); }
  .foot-brand{ grid-column:1/-1; }
}
@media (max-width:880px){
  .g-4{ grid-template-columns:repeat(2,1fr); }
  .g-3{ grid-template-columns:repeat(2,1fr); }
  .split,.split-3{ grid-template-columns:1fr; }
  .mod{ grid-template-columns:1fr; }
  .mod.flip .mod-visual{ order:0; }
  .dash{ grid-template-columns:1fr; }
  .dash-side{ display:flex; gap:6px; overflow-x:auto; border-right:0; border-bottom:1px solid rgba(255,255,255,.07); padding:10px; }
  .dash-side .dash-brand{ padding:0 8px 0 2px; }
  .dash-side a{ white-space:nowrap; margin-bottom:0; }
  .dash-cols{ grid-template-columns:1fr; }
  .dash-kpis{ grid-template-columns:repeat(2,1fr); }
  .ai-grid{ grid-template-columns:1fr; }
  .ai-cards{ grid-template-columns:repeat(3,1fr); }
  .ai-band > .crane{ opacity:.12; }
}
@media (max-width:680px){
  .g-2,.g-3,.g-4,.plans,.plans.three{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:20px 16px; }
  .stat-l{ max-width:none; }
  .logos-row{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .cta-inner{ flex-direction:column; align-items:flex-start; }
  .cta-inner .btn-row{ width:100%; }
  .cta-inner .btn{ flex:1; }
  .ai-cards{ grid-template-columns:1fr; }
  .res{ flex-direction:column; }
  .res-art{ width:100%; aspect-ratio:16/7; }
  .btn{ min-height:50px; }
  .plan.hot{ margin-top:14px; }
  .toggle{ width:100%; justify-content:center; }
  .toggle button{ flex:1; padding:9px 8px; font-size:13px; }
}
@media (max-width:420px){
  .brand img{ height:32px; }
  .brand-txt{ font-size:15px; }
  .brand-txt span:last-child{ font-size:13px; }
  .btn-row .btn{ width:100%; }
  .bars li{ grid-template-columns:76px 1fr 34px; }
}

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

@media print{
  .site-header,.mobile-nav,.cta-band,.demo-flag{ display:none !important; }
}

/* ==========================================================================
   Photography
   Drop a real JPG into assets/img/photos/ with the same name to replace any
   of the supplied scene illustrations — the frame and crop stay identical.
   ========================================================================== */
.photo{
  position:relative; margin:0; overflow:hidden;
  border-radius:var(--r-lg); border:1px solid var(--line);
  background:var(--ink-2); box-shadow:var(--shadow);
  aspect-ratio:16/11;
}
.photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.photo::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(180deg, rgba(10,10,12,0) 42%, rgba(10,10,12,.72) 100%);
}
.photo figcaption{
  position:absolute; left:0; right:0; bottom:0; z-index:2;
  padding:16px 18px; color:#fff; font-size:13.5px; line-height:1.45;
}
.photo figcaption b{
  display:block; font-family:var(--display); font-size:15px; font-weight:700; margin-bottom:3px;
}
.photo figcaption span{ color:#C9CDD4; }
.photo.tall{ aspect-ratio:4/5; }
.photo.wide{ aspect-ratio:2/1; }
.photo.plain::after{ display:none; }
.photo-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,2vw,22px); }
@media (max-width:880px){ .photo-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .photo-grid{ grid-template-columns:1fr; } .photo{ aspect-ratio:16/10; } }
