/* ==========================================================================
   TOP PROG — Marketing site
   Design system: "Commercial Flat" — light, flat, high-energy. Blue brand +
   orange CTA, real truck photography, animated soft background. Generic copy
   (no sensitive technical detail).
   ========================================================================== */

/* --- Tokens -------------------------------------------------------------- */
:root {
  --bg:        #FFFFFF;
  --bg-2:      #F4F7FC;
  --panel:     #FFFFFF;
  --line:      #E6EAF2;
  --line-2:    #D4DBE8;

  --text:      #0B1220;   /* deep slate */
  --muted:     #556080;
  --faint:     #93A0B8;

  /* Brand (blue) */
  --accent:      #2563EB;
  --accent-2:    #3B82F6;
  --accent-deep: #1D4ED8;
  --accent-soft: #EAF1FE;
  --accent-line: #CBDCF9;

  /* CTA / energy (orange — nods to the logo) */
  --cta:      #F97316;
  --cta-2:    #FB8C3B;
  --cta-deep: #EA580C;
  --cta-soft: #FEEFE1;
  --cta-line: #FBD8BC;

  --star: #F59E0B;
  --ok:   #16A34A;

  --f-display: 'Roboto', 'Segoe UI', system-ui, sans-serif;
  --f-body:    'Roboto', 'Segoe UI', system-ui, sans-serif;

  --container: 1180px;
  --header-h: 74px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --btn-r: 10px;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-soft: 0 18px 40px -22px rgba(11,18,32,.28);
}

/* --- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.65;
  color: var(--muted); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent-deep); }
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--text); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* --- Layout utilities ---------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--line { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.text-center { text-align: center; }

.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }
.split { display: grid; gap: 64px; align-items: center; grid-template-columns: 1fr 1fr; }
.split--aside { grid-template-columns: 1fr 1.05fr; }
.split > * { min-width: 0; }

/* Eyebrow (pill — commercial) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-deep); background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 6px 13px; border-radius: 100px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cta); }
.eyebrow--center { }

.section-head { max-width: 640px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head__title { font-size: clamp(2rem, 3.8vw, 3rem); margin: 18px 0 16px; font-weight: 800; letter-spacing: -0.03em; }
.section-head__sub { font-size: 1.1rem; color: var(--muted); line-height: 1.65; }

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; background: var(--accent); }
.dot--ok { background: var(--ok); }

/* Star rating */
.stars { display: inline-flex; gap: 2px; color: var(--star); font-size: .95rem; letter-spacing: 1px; }
.stars::before { content: "\2605\2605\2605\2605\2605"; }

/* --- Buttons (flat) ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px;
  font-family: var(--f-body); font-size: .96rem; font-weight: 700;
  color: #fff; background: var(--cta);
  border: 2px solid var(--cta); border-radius: var(--btn-r);
  cursor: pointer; white-space: nowrap;
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}
.btn:hover { background: var(--cta-deep); border-color: var(--cta-deep); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--brand { background: var(--accent); border-color: var(--accent); }
.btn--brand:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--large { padding: 15px 30px; font-size: 1.04rem; }
.btn--small { padding: 9px 16px; font-size: .85rem; }
.btn--full { width: 100%; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --- Header -------------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 1000;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { max-width: var(--container); height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__badge { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.brand__word { font-family: var(--f-display); font-weight: 900; font-size: 1.18rem; letter-spacing: .02em; color: var(--text); line-height: 1; }
.brand__word span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav__link {
  position: relative; padding: 9px 15px; font-size: .93rem; font-weight: 500;
  color: var(--muted); border-radius: var(--r-sm); transition: color .18s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: var(--accent); }
.nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 12px; margin-left: 6px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-2);
  background: var(--bg); border-radius: var(--r-sm); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- Animated background (hero / page hero / cta) ------------------------ */
.hero, .pagehero, .cta { position: relative; overflow: hidden; }
.hero::before, .pagehero::before, .cta::before,
.hero::after, .pagehero::after, .cta::after {
  content: ""; position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero::before, .pagehero::before {
  top: -18%; right: -8%; width: 560px; height: 560px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 66%);
  animation: drift-a 20s ease-in-out infinite;
}
.hero::after, .pagehero::after {
  bottom: -26%; left: -10%; width: 480px; height: 480px;
  background: radial-gradient(circle, var(--cta-soft) 0%, transparent 66%);
  animation: drift-b 26s ease-in-out infinite;
}
.cta::before { top: -30%; right: -6%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(255,255,255,.16) 0%, transparent 66%); animation: drift-a 22s ease-in-out infinite; }
.cta::after { bottom: -34%; left: -8%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 66%); animation: drift-b 28s ease-in-out infinite; }
@keyframes drift-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-46px,34px) scale(1.14); } }
@keyframes drift-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(34px,-28px) scale(1.1); } }

/* Floating flat shapes (hero markup) */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.float { position: absolute; opacity: .55; will-change: transform; }
.float--dot { border-radius: 50%; }
.float--ring { border-radius: 50%; background: transparent; }
.float--pill { border-radius: 100px; }
.float--1 { width: 14px; height: 14px; background: var(--accent); top: 20%; left: 9%; animation: floaty 9s ease-in-out infinite; }
.float--2 { width: 26px; height: 26px; border: 3px solid var(--cta); top: 62%; left: 16%; animation: floaty 12s ease-in-out infinite reverse; }
.float--3 { width: 10px; height: 10px; background: var(--cta); top: 78%; left: 42%; animation: floaty 8s ease-in-out infinite; }
.float--4 { width: 40px; height: 12px; background: var(--accent-line); top: 14%; left: 46%; animation: floaty 14s ease-in-out infinite; }
.float--5 { width: 18px; height: 18px; border: 3px solid var(--accent); top: 40%; left: 3%; animation: floaty 10s ease-in-out infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-24px) rotate(45deg); } }

/* --- Hero ---------------------------------------------------------------- */
.hero { padding: calc(var(--header-h) + 84px) 0 92px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero__grid > * { min-width: 0; }
.hero__title { font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight: 900; letter-spacing: -0.035em; line-height: 1.02; margin: 22px 0 22px; }
.hero__title em { font-style: normal; color: var(--cta); position: relative; white-space: nowrap; }
.hero__title em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 10px; background: var(--cta-soft); z-index: -1; border-radius: 3px; }
.hero__lede { font-size: 1.18rem; color: var(--muted); max-width: 500px; line-height: 1.6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 26px; }
.hero__rating { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); }
.hero__rating b { color: var(--text); font-weight: 700; }

/* Hero photo */
.hero__visual { position: relative; }
.hero__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.hero__photo img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,18,32,.35)); pointer-events: none; }
.hero__tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: .9rem;
}
.hero__tag .dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(22,163,74,.3); }
.hero__badge {
  position: absolute; top: -16px; right: -16px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 12px 16px; box-shadow: var(--shadow-soft);
  display: grid; gap: 2px; text-align: right;
}
.hero__badge b { font-family: var(--f-display); font-weight: 900; font-size: 1.1rem; color: var(--text); }
.hero__badge span { font-size: .72rem; color: var(--faint); }

/* --- Stats bar (commercial) --------------------------------------------- */
.stats { background: var(--text); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 30px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stats__item:last-child { border-right: 0; }
.stats__n { font-family: var(--f-display); font-weight: 900; font-size: 2rem; color: #fff; line-height: 1; }
.stats__n span { color: var(--cta-2); }
.stats__l { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 8px; letter-spacing: .02em; }

/* --- Trust strip --------------------------------------------------------- */
.trust { padding: 28px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 44px; }
.trust__label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.trust__marks { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.marque { display: inline-flex; align-items: center; gap: 12px; }
.marque__badge { width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); background: var(--bg); }
.marque__t b { display: block; font-family: var(--f-display); font-weight: 700; color: var(--text); font-size: .98rem; }
.marque__t span { font-size: .8rem; color: var(--faint); }
.emblem { display: block; width: 28px; height: 28px; object-fit: contain; }
.marque__badge .emblem { width: 28px; height: 28px; }

/* --- Cards (flat) -------------------------------------------------------- */
.card {
  position: relative; padding: 30px; border-radius: var(--r-lg);
  background: var(--panel); border: 1px solid var(--line);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.card__ico {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent);
  margin-bottom: 20px; transition: background .2s var(--ease), color .2s var(--ease);
}
.card:hover .card__ico { background: var(--accent); color: #fff; }
.card__title { font-size: 1.2rem; margin-bottom: 10px; color: var(--text); font-weight: 700; }
.card__desc { font-size: .96rem; color: var(--muted); line-height: 1.6; }

/* Steps */
.steps { counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--r-lg); background: var(--panel); border: 1px solid var(--line); }
.step__n { counter-increment: step; display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--cta-soft); color: var(--cta-deep); font-family: var(--f-display); font-weight: 900; margin-bottom: 14px; }
.step__n::before { content: counter(step); }
.step__title { font-size: 1.14rem; margin: 0 0 8px; color: var(--text); font-weight: 700; }
.step__desc { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* Value list */
.vlist { list-style: none; display: grid; gap: 16px; }
.vlist li { position: relative; padding-left: 34px; color: var(--text); font-size: 1rem; }
.vlist li::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 6px; background: var(--accent-soft); border: 1px solid var(--accent-line); }
.vlist li::after { content: ""; position: absolute; left: 7px; top: 8px; width: 8px; height: 4px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.vlist--2 { grid-template-columns: 1fr 1fr; gap: 16px 30px; }

.i { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; display: block; }

/* --- Trucks showcase (photos + 3D tilt via fx.js) ------------------------ */
.truckcard {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); overflow: hidden;
  transform: perspective(1000px);
  transition: transform .5s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.truckcard.is-tilting { transition: box-shadow .35s var(--ease), border-color .25s var(--ease); }
.truckcard:hover { border-color: var(--accent-line); box-shadow: var(--shadow-soft); }
.truckcard__glare {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 3;
  opacity: 0; transition: opacity .35s var(--ease);
  background: radial-gradient(circle at var(--gx,50%) var(--gy,30%), rgba(255,255,255,.5), rgba(255,255,255,0) 42%);
  mix-blend-mode: soft-light;
}
.truckcard:hover .truckcard__glare { opacity: 1; }
.truckcard__img { width: 100%; height: 250px; object-fit: cover; display: block; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.truckcard__body { padding: 20px 24px; display: flex; align-items: center; gap: 14px; }
.truckcard__badge { width: 48px; height: 48px; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 10px; background: var(--bg); display: grid; place-items: center; }
.truckcard__badge .emblem { width: 30px; height: 30px; }
.truckcard__t b { display: block; font-family: var(--f-display); font-weight: 700; color: var(--text); font-size: 1.08rem; }
.truckcard__t span { font-size: .85rem; color: var(--muted); }

/* --- Coverage ------------------------------------------------------------ */
.cover { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.cover > * { min-width: 0; }
.cover__panel { padding: 40px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); text-align: center; }
.cover__brands { display: flex; justify-content: center; gap: 16px; margin-bottom: 26px; }
.cover__brand { flex: 1; max-width: 150px; padding: 24px 14px; border-radius: var(--r); border: 1px solid var(--line); background: var(--bg-2); display: grid; gap: 8px; justify-items: center; }
.cover__brand b { font-family: var(--f-display); color: var(--text); font-size: 1.02rem; font-weight: 700; }
.cover__brand span { font-size: .8rem; color: var(--faint); }
.cover__logo { width: 48px; height: 48px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line-2); background: var(--bg); }
.cover__logo .emblem { width: 30px; height: 30px; }
.cover__note { font-size: .92rem; color: var(--muted); }

/* --- Pricing ------------------------------------------------------------- */
.price-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.price-hero > * { min-width: 0; }
.plan { padding: 34px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); }
.plan--feature { border-color: var(--accent); border-width: 2px; box-shadow: var(--shadow-soft); }
.plan__name { font-size: 1.3rem; color: var(--text); margin-bottom: 8px; font-weight: 700; }
.plan__desc { color: var(--muted); font-size: .96rem; margin-bottom: 22px; }
.plan .vlist { margin-bottom: 28px; }

.token-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.token { position: relative; text-align: center; padding: 30px 20px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); transition: border-color .2s var(--ease), transform .2s var(--ease); }
.token:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.token--best { border-color: var(--cta); border-width: 2px; background: var(--cta-soft); }
.token__flag { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cta-deep); font-weight: 700; }
.token__amt { font-family: var(--f-display); font-size: 2.6rem; font-weight: 900; color: var(--text); line-height: 1; margin-top: 12px; }
.token__unit { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin: 8px 0 18px; }
.token__price { font-family: var(--f-display); font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.token__per { font-size: .8rem; color: var(--faint); margin: 4px 0 20px; }

/* --- Download ------------------------------------------------------------ */
.dl { display: grid; grid-template-columns: 1.1fr .9fr; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.dl > * { min-width: 0; }
.dl__main { padding: 44px; background: var(--panel); }
.dl__badge { display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px; border-radius: 100px; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent-deep); font-size: .8rem; font-weight: 700; }
.dl__title { font-size: 2rem; margin: 18px 0 10px; color: var(--text); font-weight: 800; }
.dl__sub { color: var(--muted); margin-bottom: 28px; }
.dl__aside { padding: 44px; background: var(--text); color: rgba(255,255,255,.8); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.dl__aside h3 { color: #fff; }
.dl__reqs { list-style: none; display: grid; gap: 12px; }
.dl__reqs li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
.dl__reqs li:last-child { border-bottom: 0; }
.dl__reqs b { color: #fff; font-weight: 600; }

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.spec { padding: 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); }
.spec__h { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.spec ul { list-style: none; display: grid; gap: 12px; }
.spec li { display: flex; justify-content: space-between; gap: 14px; font-size: .95rem; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.spec li:last-child { border-bottom: 0; padding-bottom: 0; }
.spec b { color: var(--text); font-weight: 600; }

/* --- Support / contact --------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.contact-grid > * { min-width: 0; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: .96rem; color: var(--text); background: var(--bg);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance: none; -webkit-appearance: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: .82rem; color: var(--faint); text-align: center; margin-top: 14px; }

.info-card { padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); }
.info-row { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:first-child { padding-top: 0; }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row__ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent); }
.info-row__ico .i { width: 20px; height: 20px; }
.info-row__t h4 { font-size: .98rem; color: var(--text); margin-bottom: 2px; font-weight: 700; }
.info-row__t p { font-size: .9rem; color: var(--muted); }

/* --- FAQ ----------------------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--panel); overflow: hidden; }
.faq__q {
  width: 100%; padding: 20px 24px; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--f-display); font-size: 1.06rem; font-weight: 700; color: var(--text); text-align: left;
  transition: color .18s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__sign { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; background: var(--cta); transition: transform .22s var(--ease); }
.faq__sign::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq__sign::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq__item.is-open .faq__sign::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--muted); font-size: .98rem; line-height: 1.7; max-width: 66ch; }

/* --- Testimonials -------------------------------------------------------- */
.quote { padding: 30px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
.quote .stars { margin-bottom: 14px; }
.quote__text { font-size: .98rem; color: var(--text); line-height: 1.7; margin: 0 0 22px; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote__av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: .82rem; }
.quote__name { font-weight: 700; color: var(--text); font-size: .92rem; }
.quote__role { font-size: .8rem; color: var(--faint); }

/* --- Timeline ------------------------------------------------------------ */
.timeline { max-width: 720px; }
.tl { position: relative; padding-left: 42px; padding-bottom: 38px; }
.tl:last-child { padding-bottom: 0; }
.tl::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: -8px; width: 2px; background: var(--line-2); }
.tl:last-child::before { display: none; }
.tl__dot { position: absolute; left: 0; top: 5px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 3px solid var(--accent); }
.tl__year { font-size: .82rem; letter-spacing: .04em; color: var(--accent); font-weight: 700; }
.tl__title { font-size: 1.16rem; margin: 5px 0 7px; color: var(--text); font-weight: 700; }
.tl__desc { font-size: .96rem; color: var(--muted); }

/* --- Prose (legal) ------------------------------------------------------- */
.prose { max-width: 740px; }
.prose__updated { font-size: .84rem; color: var(--faint); margin-bottom: 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.prose h2 { font-size: 1.32rem; margin: 38px 0 14px; color: var(--text); font-weight: 700; }
.prose h2:first-of-type { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--muted); }
.prose ul { margin: 0 0 16px; padding-left: 22px; }
.prose li { margin-bottom: 8px; color: var(--muted); }
.prose a { text-decoration: underline; }
.prose strong { color: var(--text); }

/* --- CTA (solid brand block) --------------------------------------------- */
.cta { padding: 96px 0; background: var(--accent); }
.cta__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.cta .eyebrow { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.cta .eyebrow::before { background: var(--cta-2); }
.cta h2 { color: #fff; font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 16px; font-weight: 800; letter-spacing: -0.03em; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 540px; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta .btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.cta .btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* --- Page hero (interior) ------------------------------------------------ */
.pagehero { padding: calc(var(--header-h) + 64px) 0 58px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.pagehero__inner { position: relative; z-index: 1; max-width: 740px; }
.pagehero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); margin: 18px 0 14px; font-weight: 800; letter-spacing: -0.03em; }
.pagehero p { font-size: 1.14rem; color: var(--muted); max-width: 560px; }

/* --- Footer -------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding: 72px 0 0; background: var(--bg-2); }
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer__desc { font-size: .93rem; color: var(--muted); margin-top: 16px; max-width: 300px; line-height: 1.6; }
.footer__badges { display: flex; gap: 10px; margin-top: 20px; }
.footer__badge { font-size: .7rem; letter-spacing: .08em; padding: 6px 12px; border: 1px solid var(--line-2); border-radius: 6px; color: var(--faint); }
.footer__col h4 { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; font-weight: 700; }
.footer__col ul { list-style: none; display: grid; gap: 12px; }
.footer__col a { color: var(--muted); font-size: .93rem; }
.footer__col a:hover { color: var(--accent); }
.footer__disclaimer { padding: 0 0 26px; font-size: .8rem; color: var(--faint); max-width: 760px; line-height: 1.6; }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__legal { font-size: .84rem; color: var(--faint); }
.footer__social { display: flex; gap: 8px; }
.footer__social a { font-size: .82rem; color: var(--muted); padding: 7px 13px; border: 1px solid var(--line-2); border-radius: 7px; }
.footer__social a:hover { color: var(--accent); border-color: var(--accent); }

/* --- Motion scaffolding -------------------------------------------------- */
html.fx-on .reveal { opacity: 1; transform: none; }
#scrollProgress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 2000; background: linear-gradient(90deg, var(--accent), var(--cta)); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }
.w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wi { display: inline-block; will-change: transform; }

/* --- Toast --------------------------------------------------------------- */
.toast {
  position: fixed; right: 22px; bottom: 22px; z-index: 9999;
  display: flex; align-items: center; gap: 11px;
  padding: 15px 22px; background: var(--text); color: #fff;
  border-radius: var(--r); border-left: 3px solid var(--cta);
  font-size: .92rem; animation: toast-in .32s var(--ease);
}
.toast .dot { background: var(--ok); }
@keyframes toast-in { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toast-out { to { transform: translateY(14px); opacity: 0; } }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero__photo img { height: 400px; }
  .split, .split--aside, .cover, .price-hero, .dl, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item { border-bottom: 1px solid rgba(255,255,255,.1); }
  .dl__aside { border-left: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .nav__links { display: none; position: absolute; inset: var(--header-h) 0 auto 0; flex-direction: column; gap: 2px; padding: 14px; background: var(--bg); border-bottom: 1px solid var(--line); }
  .nav.is-open .nav__links { display: flex; }
  .nav__link { padding: 12px 15px; }
  .nav__link::after { display: none; }
  .nav__toggle { display: inline-flex; }
  .header__cta .btn:not(.nav__toggle) { display: none; }
  .grid-2, .grid-3, .grid-4, .vlist--2 { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__badge { top: 12px; right: 12px; }
}
@media (max-width: 420px) {
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .token-grid, .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; }
}

/* --- Reduced motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero::before, .hero::after, .pagehero::before, .pagehero::after, .cta::before, .cta::after, .float { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
