/* =========================================================
   Veritra Labs — stylesheet
   ========================================================= */
:root {
  --bg: #06080d;
  --bg-2: #0a0e16;
  --surface: #0f1420;
  --surface-2: #141a28;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .14);
  --text: #e8ecf4;
  --muted: #8b94a7;
  --dim: #5d6679;
  --accent: #34e5a8;
  --accent-2: #5b8cff;
  --gold: #f5c86b;
  --red: #ff5d73;
  --grad: linear-gradient(120deg, #34e5a8 0%, #5b8cff 100%);
  --radius: 18px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font);
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; letter-spacing: -.02em; line-height: 1.15; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(52, 229, 168, .3); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.up { color: var(--accent); }
.down { color: var(--red); }
.warn { color: var(--gold); }
.ta-r { text-align: right; }
.muted-xs { color: var(--muted); font-size: 11px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 12px; font-weight: 600; font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; white-space: nowrap;
}
.btn--sm { height: 38px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn--primary { background: var(--grad); color: #04110c; box-shadow: 0 8px 30px -8px rgba(52, 229, 168, .5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(52, 229, 168, .65); }
.btn--ghost { border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .06); }
.btn--block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 72px;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(6, 8, 13, .72); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; height: 100%; gap: 32px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 32px; height: 32px; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.02em; }
.brand__name span { font-weight: 500; color: var(--muted); margin-left: 4px; }
.nav__links { display: flex; gap: 28px; margin-left: auto; font-size: 14.5px; color: var(--muted); }
.nav__links a { position: relative; transition: color .2s; }
.nav__links a:hover, .nav__links a.is-current { color: var(--text); }
.nav__links a.is-current::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--grad); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.lang { display: flex; padding: 3px; border: 1px solid var(--line-2); border-radius: 9px; font-size: 12px; font-weight: 600; }
.lang span { padding: 4px 8px; border-radius: 6px; color: var(--muted); transition: .2s; }
.lang span.is-active { background: rgba(255, 255, 255, .1); color: var(--text); }
.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.burger span:first-child { top: 15px; } .burger span:last-child { top: 23px; }
.nav.is-open .burger span:first-child { top: 19px; transform: rotate(45deg); }
.nav.is-open .burger span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow--a { width: 620px; height: 620px; background: radial-gradient(circle, rgba(52, 229, 168, .45), transparent 65%); top: -160px; right: -120px; }
.glow--b { width: 560px; height: 560px; background: radial-gradient(circle, rgba(91, 140, 255, .45), transparent 65%); top: 180px; left: -260px; }
.grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 60% 30%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 30%, #000 10%, transparent 70%);
  opacity: .55;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px;
  border: 1px solid var(--line-2); border-radius: 99px; background: rgba(255, 255, 255, .03);
  font-size: 13px; color: var(--muted);
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(52, 229, 168, .6); animation: pulse 2s infinite; flex: none; display: inline-block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52, 229, 168, .55); } 70% { box-shadow: 0 0 0 9px rgba(52, 229, 168, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 229, 168, 0); } }
.hero__title { font-size: clamp(40px, 5.6vw, 70px); font-weight: 800; margin: 22px 0 22px; letter-spacing: -.035em; line-height: 1.04; }
.hero__title em, .page-hero__title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: 18px; color: var(--muted); max-width: 560px; }
.hero__actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 56px 0 0; border-top: 1px solid var(--line); }
.hero__stats div { padding: 20px 16px 0 0; }
.hero__stats dt { font-family: var(--font-head); font-size: 30px; font-weight: 700; letter-spacing: -.03em; }
.hero__stats dt small { font-size: 16px; color: var(--muted); margin-left: 2px; }
.hero__stats dd { margin: 4px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }

.hero__visual { position: relative; display: flex; justify-content: center; padding: 20px 0 40px; }
.float-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line-2);
  background: rgba(15, 20, 32, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .8); font-size: 13px;
  animation: floaty 6s ease-in-out infinite;
}
.float-card--a { top: 70px; left: -10px; }
.float-card--b { bottom: 130px; right: -20px; animation-delay: -2s; }
.float-card--c { bottom: 40px; left: 10px; flex-direction: column; align-items: stretch; gap: 4px; min-width: 150px; animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.fc__icon { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-weight: 700; }
.fc__icon--green { background: rgba(52, 229, 168, .15); color: var(--accent); }
.fc__icon--blue { background: rgba(91, 140, 255, .15); color: var(--accent-2); }
.fc__title { font-weight: 600; }
.fc__sub { font-size: 11px; color: var(--muted); }
.fc__label { font-size: 11px; color: var(--muted); }
.fc__big { font-size: 20px; font-weight: 600; color: var(--accent); }

/* ---------- Bars ---------- */
.bar { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: inherit; background: var(--grad); }
.bar--amber span { background: linear-gradient(90deg, var(--gold), #ffa94d); }

/* ---------- Phone ---------- */
.phone {
  --pw: 264px;
  position: relative; width: var(--pw); flex: none; aspect-ratio: 9 / 19.2;
  border-radius: 44px; padding: 9px;
  background: linear-gradient(145deg, #2a303d, #0c0f15 40%, #1d222c);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08) inset, 0 40px 80px -30px rgba(0, 0, 0, .9), 0 0 0 1px #000;
}
.phone--hero { --pw: 290px; z-index: 2; }
.phone__island { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 82px; height: 22px; background: #000; border-radius: 20px; z-index: 5; }
.screen {
  position: relative; height: 100%; border-radius: 36px; overflow: hidden;
  background: #090c13; padding: 12px 14px 0; font-size: 11px; line-height: 1.35;
  display: flex; flex-direction: column; gap: 9px;
}
.screen > * { flex: none; }
.sb { display: flex; justify-content: space-between; align-items: center; padding: 3px 10px 6px; font-size: 11px; font-weight: 600; }
.sb__icons { display: flex; gap: 3px; align-items: flex-end; }
.sb__icons i { width: 3px; background: currentColor; border-radius: 1px; }
.sb__icons i:nth-child(1) { height: 5px; } .sb__icons i:nth-child(2) { height: 7px; } .sb__icons i:nth-child(3) { height: 9px; width: 14px; border-radius: 3px; margin-left: 3px; }
.app-head { display: flex; align-items: center; gap: 8px; }
.app-head__title { font-weight: 700; font-size: 14px; flex: 1; }
.avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #04110c; font-weight: 700; font-size: 10px; display: grid; place-items: center; flex: none; }
.avatar--b { background: linear-gradient(135deg, #f5c86b, #ff7a90); }
.icon-btn { width: 28px; height: 28px; border-radius: 9px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; }
.app-h1 { font-family: var(--font-head); font-size: 20px; font-weight: 700; padding: 2px 2px 0; }
.equity__val { font-size: 25px; font-weight: 600; letter-spacing: -.03em; margin-top: 2px; }
.chg { font-size: 11px; margin-top: 2px; }
.chart { width: 100%; }
.chart--hero { height: 96px; }
.chart path.area { stroke: none; }
.chart path.line { fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; }
.tf { display: flex; justify-content: space-between; background: rgba(255, 255, 255, .04); border-radius: 9px; padding: 3px; }
.tf span { flex: 1; text-align: center; padding: 4px 0; border-radius: 7px; color: var(--muted); font-size: 10px; font-weight: 600; }
.tf span.on { background: rgba(255, 255, 255, .1); color: var(--text); }
.list-title { font-weight: 700; font-size: 12px; margin-top: 2px; }
.quote-list { display: flex; flex-direction: column; gap: 2px; }
.q, .mk { display: flex; align-items: center; gap: 9px; padding: 7px 4px; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.q__logo { width: 28px; height: 28px; border-radius: 9px; background: color-mix(in srgb, var(--c) 22%, transparent); color: var(--c); display: grid; place-items: center; font-weight: 800; font-size: 11px; flex: none; }
.q__name { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.q__name small { color: var(--muted); font-size: 9.5px; }
.q__px { font-size: 11px; transition: color .4s; }
.q__chg { font-size: 10px; min-width: 46px; text-align: right; }
.flash-up { color: var(--accent) !important; }
.flash-down { color: var(--red) !important; }
.tabbar {
  margin-top: auto; display: flex; justify-content: space-around; align-items: center;
  padding: 10px 6px 18px; margin-left: -14px; margin-right: -14px;
  border-top: 1px solid rgba(255, 255, 255, .06); background: rgba(9, 12, 19, .9); color: var(--dim); font-size: 15px;
}
.tabbar .on { color: var(--accent); }
.tabbar__trade { width: 36px; height: 36px; border-radius: 12px; background: var(--grad); color: #04110c; display: grid; place-items: center; font-weight: 800; }

.search { background: rgba(255, 255, 255, .05); border-radius: 10px; padding: 8px 10px; color: var(--muted); }
.chips { display: flex; gap: 6px; }
.chips span { padding: 5px 10px; border-radius: 99px; border: 1px solid rgba(255, 255, 255, .1); color: var(--muted); font-size: 10px; font-weight: 600; }
.chips span.on { background: var(--text); color: #0a0d14; border-color: transparent; }
.mk-list { display: flex; flex-direction: column; }
.spark { width: 52px; height: 22px; flex: none; }
.spark path { fill: none; stroke-width: 1.6; vector-effect: non-scaling-stroke; }
.mk__r { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; min-width: 56px; }
.pill { font-size: 9.5px; padding: 2px 6px; border-radius: 6px; font-family: var(--font-mono); }
.pill.up { background: rgba(52, 229, 168, .14); }
.pill.down { background: rgba(255, 93, 115, .14); }

.sym-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sym-head > div { display: flex; flex-direction: column; align-items: center; }
.sym-head small { color: var(--muted); font-size: 9.5px; }
.back { font-size: 22px; line-height: 1; width: 22px; }
.star { color: var(--gold); }
.px-line { display: flex; align-items: center; gap: 8px; }
.px-big { font-size: 24px; font-weight: 600; letter-spacing: -.03em; }
.candles { width: 100%; height: 118px; }
.tf--sm span { font-size: 9.5px; }
.seg { display: flex; background: rgba(255, 255, 255, .05); border-radius: 10px; padding: 3px; }
.seg span { flex: 1; text-align: center; padding: 7px 0; border-radius: 8px; font-weight: 600; color: var(--muted); font-size: 10.5px; }
.seg span.on.buy { background: rgba(52, 229, 168, .16); color: var(--accent); }
.field-row { display: flex; justify-content: space-between; align-items: center; }
.lev { display: flex; gap: 4px; }
.lev span { padding: 3px 7px; border-radius: 6px; background: rgba(255, 255, 255, .05); font-size: 10px; font-weight: 600; color: var(--muted); }
.lev span.on { background: var(--accent-2); color: #fff; }
.field { display: flex; justify-content: space-between; align-items: center; padding: 9px 10px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .1); font-size: 12px; }
.kv { display: flex; justify-content: space-between; color: var(--muted); font-size: 10.5px; }
.kv .mono { color: var(--text); }
.kv .mono.warn { color: var(--gold); }
.kv .mono.up { color: var(--accent); }
.cta-buy { margin-top: 2px; text-align: center; padding: 12px; border-radius: 12px; background: var(--accent); color: #04110c; font-weight: 700; font-size: 12px; }
.cta-blue { background: var(--accent-2); color: #fff; }
.cta-dark { background: #111; color: #fff; }

.acct { background: linear-gradient(160deg, rgba(91, 140, 255, .14), rgba(52, 229, 168, .06)); border: 1px solid rgba(255, 255, 255, .07); border-radius: 16px; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.acct__row { display: flex; justify-content: space-between; align-items: flex-end; }
.acct__big { font-size: 19px; font-weight: 600; }
.acct__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.acct__grid div { display: flex; flex-direction: column; gap: 2px; }
.acct__grid b { font-size: 11px; }
.pos-list { display: flex; flex-direction: column; gap: 6px; }
.pos { padding: 9px 10px; border-radius: 12px; background: rgba(255, 255, 255, .035); display: flex; flex-direction: column; gap: 4px; }
.pos__t, .pos__m { display: flex; justify-content: space-between; align-items: center; }
.badge { font-size: 8.5px; font-weight: 700; padding: 2px 6px; border-radius: 5px; letter-spacing: .03em; font-family: var(--font-mono); }
.badge.long { color: var(--accent); background: rgba(52, 229, 168, .13); }
.badge.short { color: var(--red); background: rgba(255, 93, 115, .13); }

/* ---- neobank ---- */
.bcard {
  position: relative; border-radius: 16px; padding: 14px; overflow: hidden;
  background: radial-gradient(120% 140% at 100% 0%, #5b8cff 0%, #2b3fa0 40%, #121833 100%);
  box-shadow: 0 16px 30px -16px rgba(91, 140, 255, .7);
}
.bcard::after { content: ""; position: absolute; width: 160px; height: 160px; border-radius: 50%; right: -50px; bottom: -80px; border: 26px solid rgba(52, 229, 168, .18); }
.bcard__top { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 800; margin-bottom: 14px; }
.bcard__chip { width: 26px; height: 19px; border-radius: 4px; background: linear-gradient(135deg, #f5d98f, #b8913d); }
.bcard__bal { font-size: 22px; font-weight: 600; margin: 2px 0 10px; }
.bcard__num { font-size: 10px; opacity: .8; }
.light { color: rgba(255, 255, 255, .7); }
.actions4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; text-align: center; font-size: 9.5px; color: var(--muted); }
.actions4 div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.actions4 span { width: 36px; height: 36px; border-radius: 12px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; color: var(--text); font-size: 14px; }
.ccy { display: flex; flex-direction: column; gap: 5px; }
.ccy__i { display: flex; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 10px; background: rgba(255, 255, 255, .035); }
.ccy__i b { flex: 1; }
.flag { font-size: 14px; }
.tx { display: flex; align-items: center; gap: 9px; }
.tx__ic { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 18%, transparent); color: var(--c); }
.tx__n { flex: 1; display: flex; flex-direction: column; }
.tx__n small { color: var(--muted); font-size: 9.5px; }
.xfer { display: flex; flex-direction: column; gap: 6px; }
.xfer__box { padding: 10px 12px; border-radius: 14px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .07); }
.xfer__row { display: flex; justify-content: space-between; align-items: center; margin-top: 3px; }
.xfer__amt { font-size: 21px; font-weight: 600; }
.ccy-pill { padding: 4px 8px; border-radius: 99px; background: rgba(255, 255, 255, .08); font-weight: 600; font-size: 10px; }
.xfer__rate { display: flex; flex-direction: column; gap: 2px; padding: 2px 12px; border-left: 2px dashed rgba(91, 140, 255, .5); margin-left: 12px; font-size: 10.5px; }
.recip { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 12px; background: rgba(255, 255, 255, .035); }
.keypad { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; font-size: 16px; row-gap: 2px; }
.keypad span { padding: 6px 0; }
.donut-wrap { position: relative; width: 150px; margin: 4px auto 0; }
.donut { width: 150px; height: 150px; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 14; }
.donut__bg { stroke: rgba(255, 255, 255, .06); }
.donut__s { stroke: var(--c); stroke-dasharray: var(--len) 289; stroke-dashoffset: var(--off); stroke-linecap: round; }
.donut__c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut__c b { font-size: 17px; }
.legend { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 10px; font-size: 10px; color: var(--muted); }
.legend div { display: flex; align-items: center; gap: 6px; }
.legend i { width: 8px; height: 8px; border-radius: 3px; background: var(--c); flex: none; }
.legend span { margin-left: auto; color: var(--text); }
.legend--row { display: flex; gap: 16px; margin-top: 8px; }
.bars6 { display: flex; align-items: flex-end; gap: 8px; height: 76px; }
.bars6 div { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 4px; }
.bars6 span { width: 100%; height: var(--h); border-radius: 6px; background: rgba(255, 255, 255, .1); }
.bars6 .on span { background: var(--grad); }
.bars6 small { font-size: 8.5px; color: var(--muted); }

/* ---------- Ticker ---------- */
.ticker { position: relative; margin-top: 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(10, 14, 22, .6); overflow: hidden; }
.ticker::before, .ticker::after { content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker__track { display: flex; width: max-content; animation: marquee 60s linear infinite; }
.ticker__item { display: flex; gap: 10px; align-items: center; padding: 14px 28px; font-family: var(--font-mono); font-size: 13px; white-space: nowrap; border-right: 1px solid var(--line); }
.ticker__item b { font-weight: 600; }
.ticker__item span { color: var(--muted); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Strip ---------- */
.strip { padding: 34px 0; border-bottom: 1px solid var(--line); }
.strip__inner { display: flex; align-items: center; gap: 32px; }
.strip__label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); white-space: nowrap; }
.strip__list { display: flex; flex-wrap: wrap; gap: 10px 28px; color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.strip__list li { position: relative; }
.strip__list li:not(:last-child)::after { content: "·"; position: absolute; right: -16px; color: var(--dim); }

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--alt { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.kicker { display: inline-block; font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); letter-spacing: .04em; margin-bottom: 16px; }
.section__head h2, .about__copy h2, .cta-band h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; }
.section__head p { color: var(--muted); font-size: 17px; margin-top: 18px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards--wide { grid-template-columns: 1fr 1fr; margin-top: 18px; }
.card {
  position: relative; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  transition: border-color .3s, transform .3s; overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(52, 229, 168, .09), transparent 40%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }
.card__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(52, 229, 168, .1); border: 1px solid rgba(52, 229, 168, .2); margin-bottom: 22px; }
.card__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tags li { font-family: var(--font-mono); font-size: 11.5px; padding: 4px 9px; border-radius: 7px; background: rgba(255, 255, 255, .05); color: var(--muted); border: 1px solid var(--line); }
.card--row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.metric { display: flex; align-items: center; gap: 10px; flex: none; }
.metric__from { font-size: 26px; color: var(--dim); text-decoration: line-through; }
.metric__arrow { color: var(--muted); font-size: 22px; }
.metric__to { font-size: 40px; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric__cap { font-size: 12px; color: var(--muted); max-width: 90px; line-height: 1.3; }

/* ---------- Sectors (home) ---------- */
.sectors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sector {
  display: flex; flex-direction: column; padding: 16px 16px 26px; border-radius: 22px; border: 1px solid var(--line);
  background: var(--surface); transition: transform .3s, border-color .3s;
}
.sector:hover { transform: translateY(-4px); border-color: var(--line-2); }
.sector__vis { position: relative; height: 190px; border-radius: 14px; overflow: hidden; margin-bottom: 22px; background: #0a0e16; border: 1px solid var(--line); display: grid; place-items: center; }
.sector--fin .sector__vis { background: radial-gradient(circle at 70% 20%, rgba(52, 229, 168, .15), transparent 60%), #0a0e16; }
.sector--ecom .sector__vis { background: radial-gradient(circle at 30% 10%, rgba(245, 200, 107, .14), transparent 60%), #0a0e16; }
.sector--dms .sector__vis { background: radial-gradient(circle at 70% 90%, rgba(91, 140, 255, .18), transparent 60%), #0a0e16; }
.candles--mini { position: absolute; inset: 20px 16px 16px; width: calc(100% - 32px); height: calc(100% - 36px); }
.sector__chip { position: absolute; top: 12px; left: 12px; font-size: 11px; padding: 5px 9px; border-radius: 8px; background: rgba(0, 0, 0, .5); border: 1px solid var(--line); }
.sector__tag { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); padding: 0 10px; }
.sector h3 { font-size: 21px; margin: 8px 10px 8px; }
.sector p { color: var(--muted); font-size: 14.5px; padding: 0 10px; }
.sector__go { margin: 18px 10px 0; font-weight: 600; font-size: 14px; }
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; width: 86%; }
.mini-grid div { aspect-ratio: 3 / 4; border-radius: 10px; background: linear-gradient(160deg, var(--g1), var(--g2)); display: grid; place-items: center; }
.mini-grid .sh { width: 60%; height: 60%; }
.mini-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; width: 88%; height: 70%; }
.mini-kanban div { display: flex; flex-direction: column; gap: 6px; padding: 8px 6px; border-radius: 10px; background: rgba(255, 255, 255, .03); }
.mini-kanban b { height: 5px; width: 60%; border-radius: 3px; background: rgba(255, 255, 255, .2); margin-bottom: 4px; }
.mini-kanban span { height: 30px; border-radius: 6px; background: rgba(255, 255, 255, .07); border: 1px solid var(--line); }
.mini-kanban span.hl { border-color: var(--accent-2); background: rgba(91, 140, 255, .15); }
.mini-kanban span.ok { border-color: rgba(52, 229, 168, .35); background: rgba(52, 229, 168, .08); }

/* product silhouettes */
.sh { display: block; width: 60%; height: 60%; background: rgba(20, 20, 30, .28); -webkit-mask: var(--m) center / contain no-repeat; mask: var(--m) center / contain no-repeat; }
.sh--tee { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M22 6l-14 8 5 12 6-3v35h26V23l6 3 5-12-14-8c-2 4-6 6-10 6s-8-2-10-6z'/%3E%3C/svg%3E"); }
.sh--bag { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M22 20v-4a10 10 0 0120 0v4h10l4 38H8l4-38h10zm4 0h12v-4a6 6 0 00-12 0v4z'/%3E%3C/svg%3E"); }
.sh--shoe { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M4 40c0-6 2-14 4-18l10 4 8-6c4 6 10 10 18 12 8 2 16 4 16 10v4H4v-6zm0 8h56v4H4z'/%3E%3C/svg%3E"); }
.sh--coat { --m: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M24 4h16l4 6 10 6v42h-8V30l-2 30H20l-2-30v28h-8V16l10-6 4-6zm8 10l-4 6 4 36 4-36-4-6z'/%3E%3C/svg%3E"); }
.sh--xl { width: 55%; height: 70%; }

/* ---------- Tabs & panels ---------- */
.tabs { display: flex; gap: 8px; padding: 6px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); width: fit-content; max-width: 100%; overflow-x: auto; margin-bottom: 40px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { display: flex; align-items: center; gap: 10px; padding: 10px 18px 10px 10px; border-radius: 11px; font-weight: 600; font-size: 14.5px; color: var(--muted); white-space: nowrap; transition: .25s; }
.tab__n { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; background: rgba(255, 255, 255, .06); }
.tab:hover { color: var(--text); }
.tab.is-active { background: rgba(255, 255, 255, .07); color: var(--text); box-shadow: inset 0 0 0 1px var(--line-2); }
.tab.is-active .tab__n { background: var(--grad); color: #04110c; }
.panel { display: none; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.panel.is-active { display: grid; animation: fadeUp .5s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.panel__info h3 { font-size: 26px; margin-bottom: 14px; }
.panel__info > p { color: var(--muted); font-size: 15px; }
.checks { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; }
.checks li { position: relative; padding-left: 28px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 6px; background: rgba(52, 229, 168, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334e5a8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat; }
.phones { display: flex; justify-content: center; gap: 22px; align-items: center; padding: 20px 0; }
.phones .phone { --pw: 256px; }
.phone--lift { transform: translateY(-24px); }

/* ---------- Browser / dashboards ---------- */
.browser { border-radius: 16px; border: 1px solid var(--line-2); background: var(--surface); overflow: hidden; box-shadow: 0 50px 100px -40px rgba(0, 0, 0, .9), 0 0 0 1px rgba(0, 0, 0, .6); min-width: 0; }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: #0c111b; }
.browser__bar > i { width: 11px; height: 11px; border-radius: 50%; background: #2a3040; }
.browser__bar > i:nth-child(1) { background: #ff5f57; } .browser__bar > i:nth-child(2) { background: #febc2e; } .browser__bar > i:nth-child(3) { background: #28c840; }
.browser__url { margin: 0 auto; padding: 4px 14px; border-radius: 7px; background: rgba(255, 255, 255, .05); font-size: 11px; color: var(--muted); }
.browser__body { overflow: hidden; position: relative; }
.dash { display: grid; grid-template-columns: 170px 1fr; width: 980px; font-size: 12px; transform-origin: top left; }
.dash__side { border-right: 1px solid var(--line); padding: 16px 12px; background: #0b0f18; }
.dash__logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-family: var(--font-head); margin-bottom: 18px; padding: 0 6px; }
.dl-mark { width: 18px; height: 18px; border-radius: 6px; background: var(--grad); }
.dash__side nav { display: flex; flex-direction: column; gap: 2px; }
.dash__side a { padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: 12px; }
.dash__side a.on { background: rgba(255, 255, 255, .06); color: var(--text); }
.dash__main { padding: 16px; display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.dash__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.dash__top b { font-size: 15px; font-family: var(--font-head); }
.dash__pill { display: flex; align-items: center; gap: 7px; font-size: 11px; padding: 5px 10px; border-radius: 99px; border: 1px solid var(--line-2); color: var(--muted); }
.dash__pill--ok { color: var(--accent); border-color: rgba(52, 229, 168, .3); background: rgba(52, 229, 168, .07); font-family: var(--font-mono); }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { padding: 12px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); display: flex; flex-direction: column; gap: 4px; font-size: 11px; }
.kpi b { font-size: 19px; font-weight: 600; }
.kpi--warn { border-color: rgba(245, 200, 107, .3); background: rgba(245, 200, 107, .05); }
.dash__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.box { padding: 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); min-width: 0; }
.box__h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chart--dash { height: 150px; }
.alerts { display: flex; flex-direction: column; gap: 8px; }
.alerts li { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 9px; background: rgba(255, 255, 255, .025); animation: fadeUp .5s ease both; }
.alerts li div { flex: 1; display: flex; flex-direction: column; }
.alerts small { color: var(--muted); font-size: 10.5px; }
.alerts time { color: var(--dim); font-size: 10.5px; }
.sev { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.sev--hi { background: var(--red); box-shadow: 0 0 10px var(--red); }
.sev--md { background: var(--gold); }
.sev--lo { background: var(--accent); }
.tbl { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.tbl th { text-align: left; font-weight: 500; color: var(--dim); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.tbl td { padding: 8px; border-bottom: 1px solid rgba(255, 255, 255, .04); }
.tbl tr.sel td { background: rgba(52, 229, 168, .07); }
.tbl tbody tr { transition: background .3s; }
.tbl tbody tr.new td { animation: rowIn 1.2s ease; }
@keyframes rowIn { from { background: rgba(52, 229, 168, .18); } to { background: transparent; } }
.st { display: inline-block; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 99px; }
.st--red { color: var(--red); background: rgba(255, 93, 115, .12); }
.st--amber { color: var(--gold); background: rgba(245, 200, 107, .12); }
.st--green { color: var(--accent); background: rgba(52, 229, 168, .12); }
.st--blue { color: var(--accent-2); background: rgba(91, 140, 255, .14); }
.recon { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.recon__i { padding: 12px; border-radius: 12px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; background: rgba(255, 255, 255, .02); }
.recon__h { display: flex; justify-content: space-between; align-items: center; }
.tbl--ledger tr.grp td { border-top: 1px solid var(--line); }
.tbl--ledger td[rowspan] { vertical-align: top; color: var(--accent-2); }
.tbl--ledger tfoot td { padding: 10px 8px; font-weight: 700; border-top: 1px solid var(--line-2); color: var(--accent); }

/* e-commerce dashboards */
.brand-switch { display: flex; gap: 4px; padding: 3px; border-radius: 9px; background: rgba(255, 255, 255, .04); }
.brand-switch span { padding: 4px 9px; border-radius: 7px; font-size: 11px; color: var(--muted); }
.brand-switch span.on { background: rgba(255, 255, 255, .1); color: var(--text); }
.hbars { display: flex; flex-direction: column; gap: 11px; }
.hbars div { display: grid; grid-template-columns: 62px 1fr 36px; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); }
.hbars i { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, .06); position: relative; overflow: hidden; }
.hbars i::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: inherit; background: var(--grad); }
.hbars b { text-align: right; color: var(--text); font-weight: 500; }
.heat { width: 100%; border-collapse: separate; border-spacing: 4px; font-size: 11px; }
.heat th { color: var(--dim); font-weight: 500; font-size: 10.5px; text-align: center; }
.heat th:first-child { text-align: left; }
.heat td { text-align: center; padding: 7px 4px; border-radius: 6px; font-family: var(--font-mono); }
.heat td:first-child { text-align: left; font-family: var(--font); color: var(--muted); white-space: nowrap; }
.heat td[data-v="0"] { background: rgba(255, 93, 115, .22); color: #ffb3bf; }
.heat td[data-v="1"] { background: rgba(245, 200, 107, .16); }
.heat td[data-v="2"] { background: rgba(52, 229, 168, .1); }
.heat td[data-v="3"] { background: rgba(52, 229, 168, .2); }
.heat td[data-v="4"] { background: rgba(91, 140, 255, .28); }
.transfers { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.transfers li { display: flex; justify-content: space-between; padding: 7px 9px; border-radius: 8px; background: rgba(255, 255, 255, .03); color: var(--muted); }
.transfers b { color: var(--accent); font-weight: 500; }
.rule { border-top: 1px solid var(--line); padding-top: 10px; }
.rule code { display: block; font-size: 10.5px; padding: 10px; border-radius: 8px; background: #080b12; color: #a8b8ff; line-height: 1.6; border: 1px solid var(--line); }

/* DMS */
.bays { display: flex; align-items: center; gap: 4px; }
.bays .b { width: 10px; height: 16px; border-radius: 3px; background: rgba(255, 255, 255, .1); }
.bays .b.on { background: var(--accent-2); }
.bays b { margin-left: 6px; font-size: 12px; }
.kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kcol { min-width: 0; padding: 10px; border-radius: 12px; background: rgba(255, 255, 255, .02); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; min-height: 330px; }
.kcol__h { display: flex; align-items: center; gap: 7px; font-weight: 600; color: var(--muted); font-size: 11.5px; }
.kcol__h b { margin-left: auto; color: var(--text); font-family: var(--font-mono); font-weight: 500; }
.kdot { width: 8px; height: 8px; border-radius: 50%; background: var(--c); }
.kcard { padding: 10px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.kcard small { color: var(--muted); font-size: 10.5px; }
.kcard--active { border-color: rgba(91, 140, 255, .5); box-shadow: 0 0 0 3px rgba(91, 140, 255, .1); }
.kcard--warn { border-color: rgba(245, 200, 107, .4); }
.kcard__f { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.plate { align-self: flex-start; font-size: 10px; font-weight: 600; padding: 2px 6px 2px 14px; border-radius: 4px; background: #f3f4f6; color: #111; position: relative; border: 1px solid #cfd3da; letter-spacing: .02em; }
.plate::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 9px; background: #1b4fc4; border-radius: 3px 0 0 3px; }
.prog { height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .08); overflow: hidden; margin-top: 4px; }
.prog span { display: block; height: 100%; background: var(--accent-2); border-radius: inherit; }
.av { width: 22px; height: 22px; border-radius: 50%; background: rgba(255, 255, 255, .1); font-size: 9px; display: grid; place-items: center; font-weight: 600; }
.car-card { position: relative; padding: 12px; border-radius: 16px; background: linear-gradient(160deg, #18203a, #0e1322); border: 1px solid rgba(255, 255, 255, .07); display: flex; flex-direction: column; gap: 6px; }
.car-svg { width: 100%; height: 70px; }
.car-svg path { fill: #2b3654; }
.car-svg path.win { fill: #5b8cff; opacity: .5; }
.car-svg circle { fill: #0a0e16; stroke: #394667; stroke-width: 3; }
.car-svg circle.hub { fill: #8b94a7; stroke: none; }
.car-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.car-stats div { display: flex; flex-direction: column; }
.car-stats small { color: var(--muted); font-size: 9.5px; }
.slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.day { display: flex; flex-direction: column; align-items: center; padding: 7px 0; border-radius: 11px; background: rgba(255, 255, 255, .04); }
.day small { font-size: 8.5px; color: var(--muted); }
.day b { font-size: 15px; }
.day.on { background: var(--accent-2); }
.day.on small { color: rgba(255, 255, 255, .8); }
.times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; text-align: center; font-size: 10.5px; }
.times span { padding: 7px 0; border-radius: 9px; border: 1px solid rgba(255, 255, 255, .1); }
.times .on { border-color: var(--accent-2); color: var(--accent-2); background: rgba(91, 140, 255, .12); }
.times .off { color: var(--dim); text-decoration: line-through; }
.timeline { display: flex; flex-direction: column; padding-left: 6px; }
.tl { display: flex; gap: 12px; position: relative; padding-bottom: 12px; }
.tl::before { content: ""; position: absolute; left: 6px; top: 14px; bottom: -2px; width: 2px; background: rgba(255, 255, 255, .08); }
.tl:last-child::before { display: none; }
.tl > i { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .2); flex: none; background: #090c13; z-index: 1; }
.tl.done > i { background: var(--accent); border-color: var(--accent); }
.tl.done::before { background: var(--accent); }
.tl.now > i { border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(91, 140, 255, .2); }
.tl div { display: flex; flex-direction: column; }
.tl small { color: var(--muted); font-size: 9.5px; }
.tl:not(.done):not(.now) b { color: var(--muted); font-weight: 500; }
.approve { padding: 11px; border-radius: 14px; border: 1px solid rgba(245, 200, 107, .35); background: rgba(245, 200, 107, .06); display: flex; flex-direction: column; gap: 8px; }
.approve__img { display: flex; align-items: center; gap: 8px; padding: 10px; border-radius: 10px; background: rgba(0, 0, 0, .3); }
.approve__img span { font-size: 18px; }
.approve__btns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; text-align: center; font-weight: 600; }
.approve__btns span { padding: 8px; border-radius: 10px; background: rgba(255, 255, 255, .06); }
.approve__btns .ok { background: var(--accent); color: #04110c; }
.job-timer { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px; background: rgba(91, 140, 255, .08); border: 1px solid rgba(91, 140, 255, .25); }
.job-timer b { font-size: 18px; flex: 1; }
.checklist { display: flex; flex-direction: column; gap: 5px; }
.checklist li { position: relative; padding: 6px 8px 6px 28px; border-radius: 8px; background: rgba(255, 255, 255, .03); }
.checklist li::before { content: ""; position: absolute; left: 8px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 4px; border: 1.5px solid rgba(255, 255, 255, .25); }
.checklist li.done { color: var(--muted); text-decoration: line-through; }
.checklist li.done::before { background: var(--accent); border-color: var(--accent); }
.part-row { display: grid; grid-template-columns: auto 1fr auto; gap: 8px; align-items: center; font-size: 10px; padding: 5px 0; border-bottom: 1px solid rgba(255, 255, 255, .05); }
.scan { display: flex; align-items: center; gap: 10px; justify-content: center; padding: 10px; border-radius: 12px; border: 1px dashed rgba(52, 229, 168, .5); color: var(--accent); font-weight: 600; }
.scan__box { position: relative; width: 22px; height: 16px; border: 1.5px solid var(--accent); border-radius: 3px; overflow: hidden; }
.scan__box i { position: absolute; left: 0; right: 0; height: 2px; background: var(--accent); animation: scanline 1.6s ease-in-out infinite; }
@keyframes scanline { 0%, 100% { top: 1px; } 50% { top: 11px; } }
.crumbs b { color: var(--text); font-weight: 500; }
.explode { width: 100%; height: 220px; }
.ex-part > * { fill: rgba(255, 255, 255, .04); stroke: #6b7894; stroke-width: 1.5; }
.ex-part .in { fill: rgba(0, 0, 0, .25); }
.ex-part .h { fill: #0a0e16; }
.ex-hl > * { stroke: var(--accent); fill: rgba(52, 229, 168, .06); }
.ex-lines path { stroke: rgba(255, 255, 255, .2); stroke-dasharray: 4 4; fill: none; }
.ex-call circle { fill: var(--surface-2); stroke: var(--accent-2); stroke-width: 1.5; }
.ex-call text { fill: var(--text); font-size: 11px; font-family: var(--font-mono); text-anchor: middle; }
.add-wo { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

/* light (retail) phone screens */
.screen--light { background: #faf8f5; color: #16181d; }
.screen--light .muted-xs { color: #7a7f8a; }
.shop-head { display: flex; justify-content: space-between; align-items: center; }
.shop-logo { font-family: var(--font-head); font-weight: 800; letter-spacing: .28em; font-size: 13px; }
.shop-hero { position: relative; overflow: hidden; border-radius: 16px; padding: 14px; height: 128px; background: linear-gradient(140deg, #2d2a26, #6b5a44); color: #fff; display: flex; flex-direction: column; gap: 4px; }
.shop-hero small { font-size: 8.5px; letter-spacing: .2em; opacity: .75; }
.shop-hero b { font-family: var(--font-head); font-size: 20px; line-height: 1.05; }
.shop-hero__btn { margin-top: auto; align-self: flex-start; padding: 5px 10px; border-radius: 99px; background: #fff; color: #16181d; font-weight: 700; font-size: 9.5px; }
.shop-hero .sh { position: absolute; right: -6px; bottom: -8px; width: 110px; height: 120px; background: rgba(255, 255, 255, .16); }
.shop-cats { display: flex; gap: 14px; font-weight: 600; color: #8a8f99; }
.shop-cats .on { color: #16181d; border-bottom: 2px solid #16181d; padding-bottom: 2px; }
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pcard { display: flex; flex-direction: column; gap: 2px; font-size: 10.5px; }
.pcard s { color: #9aa0aa; font-size: 9px; }
.pimg { position: relative; aspect-ratio: 1 / 1; border-radius: 12px; background: linear-gradient(160deg, var(--g1), var(--g2)); display: grid; place-items: center; margin-bottom: 4px; }
.pimg--s { width: 44px; height: 44px; margin: 0; border-radius: 10px; flex: none; }
.pbadge { position: absolute; top: 6px; left: 6px; background: #e0484e; color: #fff; font-size: 8.5px; font-weight: 700; padding: 2px 5px; border-radius: 5px; }
.tabbar--light { background: rgba(250, 248, 245, .95); border-top-color: rgba(0, 0, 0, .06); color: #a4a8b0; }
.tabbar--light .on { color: #16181d; }
.pdp-img { position: relative; margin: -12px -14px 0; height: 238px; background: linear-gradient(170deg, var(--g1), var(--g2)); display: grid; place-items: center; }
.pdp-img .back { position: absolute; top: 44px; left: 16px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255, 255, 255, .8); display: grid; place-items: center; font-size: 18px; }
.dots { position: absolute; bottom: 10px; display: flex; gap: 4px; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(0, 0, 0, .2); }
.dots i.on { width: 16px; border-radius: 3px; background: #16181d; }
.pdp { display: flex; flex-direction: column; gap: 6px; }
.pdp__row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; }
.pdp__lbl { font-weight: 700; font-size: 10.5px; margin-top: 2px; }
.swatches { display: flex; gap: 8px; }
.swatches i { width: 22px; height: 22px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 2px #faf8f5, 0 0 0 3px transparent; }
.swatches i.on { box-shadow: 0 0 0 2px #faf8f5, 0 0 0 3.5px #16181d; }
.sizes { display: flex; gap: 6px; }
.sizes span { flex: 1; text-align: center; padding: 6px 0; border-radius: 8px; border: 1px solid #dcdde1; font-weight: 600; font-size: 10px; }
.sizes .on { background: #16181d; color: #fff; border-color: #16181d; }
.sizes .off { color: #c0c3c9; text-decoration: line-through; }
.store-stock { display: flex; align-items: center; gap: 7px; padding: 7px 9px; border-radius: 9px; background: #eaf7f1; color: #16784f; font-size: 10px; font-weight: 600; }
.store-stock .dot-live { width: 6px; height: 6px; background: #1fa672; }
.pdp__cta { display: flex; gap: 8px; margin-top: 4px; }
.pdp__cta .fav { width: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid #dcdde1; font-size: 15px; }
.pdp__cta .add { flex: 1; text-align: center; padding: 12px; border-radius: 12px; background: #16181d; color: #fff; font-weight: 700; }
.app-h1.dark { color: #16181d; }
.steps3 { display: flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 600; color: #a4a8b0; }
.steps3 i { flex: 1; height: 2px; background: #e2e3e7; }
.steps3 .done { color: #1fa672; }
.steps3 .on { color: #16181d; }
.citem { display: flex; align-items: center; gap: 10px; padding: 7px; border-radius: 12px; background: #fff; box-shadow: 0 1px 0 rgba(0, 0, 0, .04); }
.citem div:not(.pimg) { flex: 1; display: flex; flex-direction: column; }
.citem small { color: #8a8f99; font-size: 9.5px; }
.citem .sh { width: 60%; height: 60%; }
.paycard { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 12px; background: #16181d; color: #fff; font-weight: 700; }
.paycard .chg { margin-left: auto; font-size: 9.5px; color: #a8b0c0; font-weight: 500; }
.inst { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; text-align: center; font-size: 9.5px; font-weight: 600; }
.inst span { padding: 7px 0; border-radius: 9px; border: 1px solid #dcdde1; }
.inst .on { border-color: #16181d; background: #16181d; color: #fff; }
.kv--light { color: #7a7f8a; }
.kv--light .mono { color: #16181d; }
.kv--total { font-size: 13px; font-weight: 700; color: #16181d; padding-top: 6px; border-top: 1px solid #e6e7ea; }
.up-d { color: #1fa672 !important; }

/* health-tech */
.ecg path { fill: none; stroke: #ff7a90; stroke-width: 1.8; vector-effect: non-scaling-stroke; stroke-linejoin: round; }
.ecg .ecg__run { animation: ecgRun var(--dur, 4s) linear infinite; }
@keyframes ecgRun { to { transform: translateX(var(--shift)); } }
.ecg--sector { position: absolute; inset: 40px 0 20px; width: 100%; height: calc(100% - 60px); }
.ecg--sector path { stroke-width: 2.2; filter: drop-shadow(0 0 6px rgba(255, 122, 144, .6)); }
.ecg--mini { width: 100%; height: 40px; }
.avatar--h { background: linear-gradient(135deg, #ff7a90, #f5c86b); }
.vital { padding: 10px 12px; border-radius: 14px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06); display: flex; flex-direction: column; gap: 2px; }
.vital b { font-size: 20px; font-weight: 600; }
.vital b small { font-size: 11px; color: var(--muted); }
.vital--hr { background: linear-gradient(160deg, rgba(255, 122, 144, .14), rgba(255, 122, 144, .03)); border-color: rgba(255, 122, 144, .2); }
.vital__h { display: flex; justify-content: space-between; align-items: center; color: #ffb3bf; font-weight: 600; }
.vital__v { display: flex; align-items: baseline; gap: 4px; }
.vital__v b { font-size: 30px; }
.vital__v small { color: var(--muted); }
.vitals2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.dev { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 11px; background: rgba(255, 255, 255, .035); }
.dev__ic { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: rgba(255, 122, 144, .14); color: #ff7a90; }
.dot-off { width: 8px; height: 8px; border-radius: 50%; background: var(--dim); }
.tabbar__h { background: linear-gradient(135deg, #ff7a90, #f5c86b); }
.ecg-rec { position: relative; height: 128px; border-radius: 14px; overflow: hidden; background: #0d1119; border: 1px solid rgba(255, 122, 144, .15); }
.ecg-rec__grid, .ecg-paper { background-image: linear-gradient(rgba(255, 122, 144, .09) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 122, 144, .09) 1px, transparent 1px); background-size: 12px 12px; }
.ecg-rec__grid { position: absolute; inset: 0; }
.ecg--big { position: relative; width: 100%; height: 100%; }
.rec-ring { position: relative; width: 104px; height: 104px; margin: 4px auto 0; }
.rec-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.rec-ring circle { fill: none; stroke-width: 6; }
.rr__bg { stroke: rgba(255, 255, 255, .07); }
.rr__fg { stroke: #ff7a90; stroke-linecap: round; stroke-dasharray: 276.5; stroke-dashoffset: 110; transition: stroke-dashoffset 1s linear; }
.rec-ring > div { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rec-ring b { font-size: 26px; }
.rec-ring small { color: var(--muted); font-size: 9.5px; }
.rec-tip { text-align: center; color: var(--muted); font-size: 10.5px; }
.cta-heart { background: #ff7a90; color: #1a0508; }
.gl-chart { position: relative; height: 118px; }
.gl-band { position: absolute; left: 0; right: 0; top: 26%; height: 40%; background: rgba(52, 229, 168, .08); border-top: 1px dashed rgba(52, 229, 168, .35); border-bottom: 1px dashed rgba(52, 229, 168, .35); }
.gl-band span { position: absolute; right: 4px; top: 2px; font-size: 8.5px; color: var(--accent); }
.chart--gl { position: relative; height: 100%; }
.rem { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: 11px; background: rgba(255, 255, 255, .035); }
.rem__t { font-size: 10px; color: var(--muted); }
.rem__ok { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #04110c; display: grid; place-items: center; font-weight: 800; font-size: 11px; }
.rem__due { font-size: 9.5px; font-weight: 700; padding: 3px 7px; border-radius: 6px; background: rgba(255, 122, 144, .16); color: #ff7a90; }
.rem__due--later { background: rgba(255, 255, 255, .06); color: var(--muted); }
.dash__pill--warn { color: #ff7a90; border-color: rgba(255, 122, 144, .35); background: rgba(255, 122, 144, .07); }
.ecg-paper { position: relative; height: 130px; border-radius: 10px; background-color: #0d1119; overflow: hidden; }
.ecg--strip { width: 100%; height: 100%; }
.ecg-flag { position: absolute; top: 8px; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 600; color: var(--gold); background: rgba(245, 200, 107, .12); border: 1px solid rgba(245, 200, 107, .35); }
.ecg-flag::after { content: ""; position: absolute; left: 0; top: 100%; width: 220px; height: 100px; border-left: 1px dashed rgba(245, 200, 107, .5); border-right: 1px dashed rgba(245, 200, 107, .5); background: rgba(245, 200, 107, .05); }
.findings { display: flex; flex-direction: column; gap: 10px; }
.findings li { display: grid; grid-template-columns: 130px 1fr 36px; gap: 10px; align-items: center; }
.findings b { text-align: right; font-weight: 500; }
.conf { height: 6px; border-radius: 4px; background: rgba(255, 255, 255, .06); overflow: hidden; }
.conf i { display: block; height: 100%; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, #f5c86b, #ff7a90); }
.signoff { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.signoff b { color: var(--text); font-weight: 500; }
.queue { display: flex; flex-direction: column; gap: 6px; }
.queue li { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 9px; background: rgba(255, 255, 255, .025); border: 1px solid transparent; }
.queue li.on { border-color: rgba(255, 122, 144, .35); background: rgba(255, 122, 144, .06); }
.queue li div { flex: 1; display: flex; flex-direction: column; }
.queue small { color: var(--muted); font-size: 10.5px; }
.queue time { color: var(--dim); font-size: 10.5px; }
.stages { display: flex; align-items: stretch; }
.stage { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 12px 6px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); text-align: center; }
.stage small { color: var(--muted); font-size: 10px; }
.stage em { font-style: normal; color: var(--accent); font-size: 11px; margin-top: 4px; }
.stage__ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(91, 140, 255, .12); color: var(--accent-2); margin-bottom: 4px; }
.stage--ai { border-color: rgba(255, 122, 144, .4); background: rgba(255, 122, 144, .05); }
.stage--ai .stage__ic { background: rgba(255, 122, 144, .15); color: #ff7a90; }
.stage__arrow { width: 26px; flex: none; align-self: center; height: 2px; background: repeating-linear-gradient(90deg, var(--accent) 0 4px, transparent 4px 8px); background-size: 16px 2px; animation: flow 1s linear infinite; }
@keyframes flow { to { background-position: 16px 0; } }
.profile { display: flex; flex-direction: column; margin: 0; }
.profile div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.profile div:last-child { border-bottom: 0; }
.profile dt { color: var(--muted); }
.profile dd { margin: 0; text-align: right; font-weight: 500; }
.founder__avatar--logo svg { width: 36px; height: 36px; }
.sector--health .sector__vis { background: radial-gradient(circle at 50% 50%, rgba(255, 122, 144, .15), transparent 60%), #0a0e16; }

/* ---------- Architecture ---------- */
.arch { border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: radial-gradient(circle at 70% 50%, rgba(91, 140, 255, .08), transparent 60%), var(--bg-2); overflow: hidden; }
.arch__svg { width: 100%; height: auto; }
.arch__paths path { fill: none; stroke: rgba(255, 255, 255, .16); stroke-width: 1.5; stroke-dasharray: 4 5; }
.arch__pulse circle { fill: var(--accent); filter: drop-shadow(0 0 6px var(--accent)); }
.node rect { fill: var(--surface); stroke: var(--line-2); stroke-width: 1.2; }
.node text { fill: var(--text); font-family: var(--font-head); font-weight: 700; font-size: 14px; text-anchor: middle; }
.node text.sub { fill: var(--muted); font-family: var(--font-mono); font-weight: 400; font-size: 10.5px; }
.node--hl rect { stroke: rgba(91, 140, 255, .6); }
.node--core rect { fill: rgba(52, 229, 168, .08); stroke: var(--accent); stroke-width: 1.5; }
.node--ghost rect { fill: transparent; stroke-dasharray: 5 5; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.pillar { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); }
.pillar__n { display: block; font-size: 22px; font-weight: 600; margin-bottom: 14px; color: var(--accent); }
.pillar h4 { font-size: 16px; margin-bottom: 6px; }
.pillar p { color: var(--muted); font-size: 14px; }

/* ---------- Approach ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.step { position: relative; padding: 26px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); display: flex; flex-direction: column; }
.step::after { content: ""; position: absolute; top: 44px; right: -19px; width: 20px; height: 1px; background: var(--line-2); }
.step:last-child::after { display: none; }
.step__n { font-size: 13px; color: var(--accent); }
.step h4 { font-size: 18px; margin: 18px 0 8px; }
.step p { color: var(--muted); font-size: 14px; flex: 1; }
.step__w { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); }
.stack { margin-top: 56px; display: flex; gap: 28px; align-items: flex-start; }
.stack__label { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--dim); white-space: nowrap; padding-top: 7px; }
.stack__list { display: flex; flex-wrap: wrap; gap: 8px; }
.stack__list li { padding: 6px 12px; border-radius: 99px; border: 1px solid var(--line); font-size: 13.5px; color: var(--muted); transition: .2s; }
.stack__list li:hover { color: var(--text); border-color: var(--accent); }

/* ---------- CTA band ---------- */
.cta-band {
  display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 52px;
  border-radius: 28px; border: 1px solid var(--line-2); position: relative; overflow: hidden;
  background: radial-gradient(600px circle at 0% 0%, rgba(52, 229, 168, .16), transparent 60%), radial-gradient(600px circle at 100% 100%, rgba(91, 140, 255, .2), transparent 60%), var(--surface);
}
.cta-band h2 { max-width: 620px; }
.cta-band p { color: var(--muted); margin-top: 12px; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Page hero ---------- */
.page-hero { position: relative; padding: 170px 0 60px; overflow: hidden; }
.page-hero .container { position: relative; }
.page-hero__title { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; letter-spacing: -.035em; max-width: 900px; line-height: 1.06; }
.page-hero__lead { color: var(--muted); font-size: 18px; max-width: 680px; margin-top: 22px; }
.jump { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.jump a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); font-weight: 600; font-size: 14.5px; transition: .2s; }
.jump a:hover { border-color: var(--accent); }
.jump a .mono { color: var(--accent); font-size: 12px; }

/* ---------- Gallery ---------- */
.gallery { margin-top: 90px; }
.gallery__head { max-width: 640px; margin-bottom: 30px; }
.gallery__head h3 { font-size: 26px; margin-bottom: 10px; }
.gallery__head p { color: var(--muted); }
.gallery__track { display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 30px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.shot { scroll-snap-align: start; flex: none; }
.shot .screen { padding: 0; display: block; }
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.shot__mask { position: absolute; left: 0; right: 0; background: rgba(9, 12, 19, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.shot--wide { --pw: auto; width: min(760px, 86vw); aspect-ratio: auto; border-radius: 16px; padding: 0; }
.shot--wide .screen { border-radius: 16px; }
.shot--wide img { height: auto; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.about__copy h2 { margin-bottom: 22px; }
.about__copy p { color: var(--muted); font-size: 16.5px; margin-bottom: 16px; }
.about__nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0 0; padding-top: 26px; border-top: 1px solid var(--line); }
.about__nums dt { font-size: 34px; font-weight: 600; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about__nums dd { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; }
.founder { padding: 30px; border-radius: 22px; border: 1px solid var(--line-2); background: linear-gradient(170deg, rgba(91, 140, 255, .08), transparent 50%), var(--surface); }
.founder__head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.founder__avatar { width: 64px; height: 64px; border-radius: 18px; background: var(--grad); color: #04110c; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.founder__head b { display: block; font-family: var(--font-head); font-size: 19px; }
.founder__head span { color: var(--muted); font-size: 14px; }
.founder__list { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; }
.founder__list li { padding-left: 20px; position: relative; }
.founder__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); transform: rotate(45deg); }
.founder__links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.founder__links a:hover { color: var(--accent); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.value__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 19px; color: var(--accent); background: rgba(52, 229, 168, .1); margin-bottom: 18px; }
.value h4 { font-size: 17px; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 14px; }
.journey { position: relative; display: flex; flex-direction: column; max-width: 820px; }
.journey::before { content: ""; position: absolute; left: 109px; top: 10px; bottom: 10px; width: 1px; background: linear-gradient(var(--accent), var(--accent-2) 50%, transparent); }
.journey li { display: grid; grid-template-columns: 90px 1fr; gap: 40px; padding: 18px 0; position: relative; }
.journey li::before { content: ""; position: absolute; left: 104px; top: 26px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent); }
.journey__y { color: var(--muted); font-size: 13px; padding-top: 3px; text-align: right; }
.journey h4 { font-size: 18px; margin-bottom: 6px; }
.journey p { color: var(--muted); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__cards { display: flex; flex-direction: column; gap: 12px; }
.contact__cards li { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.contact__cards div { display: flex; flex-direction: column; }
.contact__cards small { color: var(--dim); font-size: 12px; }
.contact__cards a, .contact__cards span:not(.cc__ic) { font-weight: 600; font-size: 15.5px; }
.contact__cards a:hover { color: var(--accent); }
.cc__ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(52, 229, 168, .1); color: var(--accent); font-weight: 700; flex: none; }
.response { display: flex; align-items: center; gap: 10px; margin-top: 22px; color: var(--muted); font-size: 14px; }
.form { padding: 30px; border-radius: 22px; border: 1px solid var(--line-2); background: var(--surface); display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--muted); font-weight: 500; }
.form input:not([type="radio"]), .form select, .form textarea {
  font: inherit; font-size: 15px; color: var(--text); background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 11px; padding: 12px 14px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(52, 229, 168, .15); }
.radios { display: flex; gap: 8px; flex-wrap: wrap; }
.radios label { flex-direction: row; }
.radios input { position: absolute; opacity: 0; pointer-events: none; }
.radios span { padding: 9px 14px; border-radius: 10px; border: 1px solid var(--line-2); color: var(--muted); font-family: var(--font-mono); font-size: 13px; cursor: pointer; transition: .2s; }
.radios input:checked + span { border-color: var(--accent); color: var(--accent); background: rgba(52, 229, 168, .08); }
.form__note { font-size: 12px; color: var(--dim); text-align: center; }
.faq-wrap { max-width: 860px; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .02); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 20px; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 28px; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 32px; }
.footer__tag { color: var(--muted); margin-top: 14px; font-size: 14px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.footer__col b { color: var(--text); font-family: var(--font-head); margin-bottom: 4px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--dim); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { margin-top: 20px; }
  .panel { grid-template-columns: 1fr; gap: 32px; }
  .phones { justify-content: flex-start; overflow-x: auto; padding: 30px 4px 20px; scroll-snap-type: x mandatory; }
  .phones .phone { scroll-snap-align: center; }
  .phones { scrollbar-width: none; }
  .phones::-webkit-scrollbar { display: none; }
  .arch { padding: 14px; }
  .cards, .sectors { grid-template-columns: 1fr 1fr; }
  .pillars, .steps, .values { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
  .about, .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 12px 24px 24px;
    background: rgba(6, 8, 13, .96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s; font-size: 17px;
  }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a.is-current::after { display: none; }
  .nav__links a.is-current { color: var(--accent); }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav.is-open { background: rgba(6, 8, 13, .96); }
  .nav__cta { display: none; }
  .burger { display: block; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .strip__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 34px 26px; }
  .card--row { flex-direction: column; align-items: flex-start; }
  .cards--wide { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 84px 0; }
  .section--tight { padding: 56px 0; }
  .hero { padding-top: 116px; }
  .page-hero { padding: 130px 0 40px; }
  .hero__lead, .page-hero__lead { font-size: 16.5px; }
  .cards, .sectors, .pillars, .steps, .values { grid-template-columns: 1fr; }
  .phone--hero { --pw: 260px; }
  .float-card--a { left: 0; top: 30px; }
  .float-card--b { right: 0; }
  .float-card--c { display: none; }
  .phone--lift { transform: none; }
  .stack { flex-direction: column; gap: 14px; }
  .form__row { grid-template-columns: 1fr; }
  .form, .founder { padding: 22px; }
  .about__nums { grid-template-columns: 1fr 1fr 1fr; }
  .about__nums dt { font-size: 26px; }
  .journey::before { left: 6px; }
  .journey li { grid-template-columns: 1fr; gap: 4px; padding-left: 32px; }
  .journey li::before { left: 1px; }
  .journey__y { text-align: left; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .tabs { width: 100%; }
}
