/* =====================================================================
   CARSONNET — Landing page
   Extends the dashboard design system (styles.css tokens).
   ===================================================================== */

/* ---------- Landing nav (extends .topbar) ---------- */
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-links a {
  padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 600;
  color: var(--text-dim); text-decoration: none; transition: .16s ease; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 16px; border-radius: 10px;
  background: var(--accent); color: #fff !important; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: .16s ease; white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-hover) !important; transform: translateY(-1px); box-shadow: 0 8px 18px -6px var(--accent); }
.nav-cta svg { width: 15px; height: 15px; }
@media (max-width: 980px){ .nav-links a:not(.nav-cta){ display:none; } }

/* ---------- HERO with driving cars ---------- */
.lhero {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.lhero__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px 24px 168px;
  position: relative; z-index: 3;
}
@media (max-width: 640px){ .lhero__inner{ padding: 18px 20px 172px; } }

.lhero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 12px;
}
.lhero__eyebrow::before { content:""; width: 26px; height: 1px; background: var(--accent-line); }
.lhero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 5.2vw, 54px); line-height: 1.02; letter-spacing: -.025em;
  max-width: 22ch;
}
.lhero h1 .accent { color: var(--accent); }
.lhero__sub {
  margin-top: 14px; color: var(--text-dim); font-size: clamp(15px, 1.5vw, 18px);
  max-width: 62ch; line-height: 1.5;
}
.lhero__sub--lead { color: var(--text); font-weight: 500; }
.lhero__sub--sm { font-size: 14.5px; margin-top: 8px; color: var(--text-mute); }
.lhero__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 26px; border-radius: 13px;
  background: var(--accent); color: #fff; font-size: 16px; font-weight: 700;
  text-decoration: none; border: 0; cursor: pointer; transition: .18s ease;
  box-shadow: 0 12px 28px -10px var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 18px 38px -12px var(--accent); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 24px; border-radius: 13px;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--text);
  font-size: 16px; font-weight: 700; text-decoration: none; cursor: pointer; transition: .18s ease;
}
.btn-ghost:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost svg { width: 17px; height: 17px; color: var(--accent); }
.lhero__trust {
  margin-top: 26px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .02em;
  color: var(--text-mute); display: flex; align-items: center; gap: 8px;
}
.lhero__trust svg { width: 15px; height: 15px; color: var(--green); }

/* --- atmospheric glows --- */
.lhero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px 380px at 78% 8%, rgba(232,32,46,.16), transparent 60%),
    radial-gradient(520px 320px at 8% 30%, rgba(79,155,255,.08), transparent 60%);
}

/* --- the road --- */
.lhero__road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 226px; z-index: 1;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 55%, #000 12%) 38%, color-mix(in srgb, var(--bg) 30%, #000 22%));
  overflow: hidden;
}
.lhero__road::before {  /* top edge highlight of road */
  content:""; position: absolute; left: 0; right: 0; top: 76px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}
/* moving lane dashes */
.lane {
  position: absolute; left: 0; right: 0; height: 4px; bottom: 64px;
  background: repeating-linear-gradient(90deg,
    color-mix(in srgb, var(--text-mute) 55%, transparent) 0 46px,
    transparent 46px 92px);
  opacity: .5; animation: laneMove .6s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lane--far { bottom: 104px; height: 3px; opacity: .28; animation-duration: 1.3s; transform: scaleX(.9); }
@keyframes laneMove { to { background-position-x: -92px; } }

/* driving cars */
.car {
  position: absolute; bottom: 70px; z-index: 2; will-change: transform;
  color: var(--text); filter: drop-shadow(0 10px 14px rgba(0,0,0,.45));
}
.car svg { display: block; }
.car--1 { bottom: 70px;  animation: drive 4.6s linear infinite; }
.car--3 { bottom: 70px;  animation: drive 5.8s linear infinite; animation-delay: -2.4s; }
.car--5 { bottom: 70px;  animation: drive 3.8s linear infinite; animation-delay: -1.2s; }
.car--2 { bottom: 108px; opacity: .85; animation: driveFar 7s linear infinite; animation-delay: -2s; }
.car--4 { bottom: 108px; opacity: .8;  animation: driveFar 8.5s linear infinite; animation-delay: -5.5s; }
/* heavy haulage — bigger, slower, the wholesale hero pieces */
.car--truck { bottom: 66px; animation: driveWide 11s linear infinite; animation-delay: -3s; }
.car--van   { bottom: 68px; animation: driveWide 8.4s linear infinite; animation-delay: -6.5s; }
@keyframes driveWide { from { transform: translateX(-32vw); } to { transform: translateX(126vw); } }
.car--accent { color: var(--accent); }
@keyframes drive {
  from { transform: translateX(-24vw); }
  to   { transform: translateX(118vw); }
}
@keyframes driveFar {
  from { transform: translateX(-20vw) scale(.62); }
  to   { transform: translateX(122vw) scale(.62); }
}
/* spinning wheels — faster for a higher sense of speed */
.wheel { transform-box: fill-box; transform-origin: center; animation: spin .28s linear infinite; }
.car--2 .wheel, .car--4 .wheel { animation-duration: .42s; }
.car--3 .wheel { animation-duration: .34s; }
.car--5 .wheel { animation-duration: .24s; }
.car--truck .wheel { animation-duration: .5s; }
.car--van .wheel { animation-duration: .4s; }
@keyframes spin { to { transform: rotate(360deg); } }
/* speed streaks */
.streak {
  position: absolute; height: 2px; bottom: 88px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--accent-line));
  opacity: 0; animation: streak 1.3s linear infinite;
}
.streak:nth-child(1){ bottom: 80px;  width: 120px; animation-delay: -.2s; }
.streak:nth-child(2){ bottom: 120px; width: 90px;  animation-delay: -.8s; animation-duration: 1.6s; }
.streak:nth-child(3){ bottom: 96px;  width: 150px; animation-delay: -.5s; }
.streak:nth-child(4){ bottom: 132px; width: 70px;  animation-delay: -1.1s; animation-duration: 1.8s; opacity: 0; }
.streak:nth-child(5){ bottom: 74px;  width: 170px; animation-delay: -.35s; animation-duration: 1.1s; }
.streak:nth-child(6){ bottom: 112px; width: 110px; animation-delay: -.95s; animation-duration: 1.5s; }
@keyframes streak {
  0% { transform: translateX(110vw); opacity: 0; }
  10% { opacity: .8; }
  60% { opacity: .55; }
  100% { transform: translateX(-30vw); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .lane, .car, .wheel, .streak { animation: none !important; }
  .car--1 { transform: translateX(4vw); }
  .car--truck { transform: translateX(30vw); }
  .car--van { transform: translateX(70vw); }
  .car--2, .car--3, .car--4, .car--5 { display: none; }
}

/* ---------- Live stats band ---------- */
.lstats {
  max-width: var(--maxw); margin: -36px auto 0; padding: 0 24px;
  position: relative; z-index: 5;
}
.lstats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-lg);
}
@media (max-width: 560px){ .lstats__grid{ grid-template-columns: repeat(2,1fr); gap: 18px; padding: 22px; } }
.lstat { text-align: center; position: relative; }
.lstat + .lstat::before {
  content:""; position: absolute; left: -7px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 38px; background: var(--border);
}
@media (max-width: 900px){ .lstat + .lstat::before { display: none; } }
.lstat__val { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 38px); letter-spacing: -.02em; line-height: 1; }
.lstat__val .accent { color: var(--accent); }
.lstat__label { color: var(--text-mute); font-size: 12.5px; margin-top: 8px; font-weight: 500; }

/* ---------- Section scaffolding ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 24px; }
@media (max-width: 640px){ .section{ padding: 64px 20px; } }
.section__head { max-width: 60ch; margin-bottom: 44px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin-bottom: 14px;
}
.section__head--center .eyebrow { justify-content: center; }
.eyebrow::before { content:""; width: 22px; height: 1px; background: var(--accent-line); }
.section h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.08; letter-spacing: -.02em;
}
.section__sub { margin-top: 14px; color: var(--text-dim); font-size: 17px; line-height: 1.55; }

/* ---------- Two channels ---------- */
.channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px){ .channels-grid{ grid-template-columns: 1fr; } }
.channel {
  position: relative; overflow: hidden; text-decoration: none; color: var(--text);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.channel:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.channel__top { display: flex; align-items: center; justify-content: space-between; }
.channel__ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-line);
}
.channel__ico svg { width: 26px; height: 26px; }
.channel__badge {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px; color: var(--text-mute);
  border: 1px solid var(--border-strong);
}
.channel__badge--live {
  color: var(--green); border-color: rgba(46,211,163,.4); background: rgba(46,211,163,.1);
  display: inline-flex; align-items: center; gap: 7px;
}
.channel__badge--live::before {
  content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(46,211,163,.6); animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%{ box-shadow: 0 0 0 0 rgba(46,211,163,.5);} 70%{ box-shadow: 0 0 0 7px rgba(46,211,163,0);} 100%{ box-shadow: 0 0 0 0 rgba(46,211,163,0);} }
.channel h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; margin-top: 4px; }
.channel p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; flex: 1; }
.channel__cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
  font-weight: 700; font-size: 14.5px; color: var(--accent);
}
.channel__cta svg { width: 17px; height: 17px; transition: transform .18s ease; }
.channel:hover .channel__cta svg { transform: translateX(4px); }
/* wholesale = primary/accent emphasis */
.channel--whole {
  background:
    radial-gradient(420px 280px at 100% 0%, rgba(232,32,46,.16), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border-color: var(--accent-line);
}
.channel--auction .channel__ico { background: var(--surface-3); color: var(--text-dim); border-color: var(--border-strong); }
.channel--auction .channel__cta { color: var(--text); }
/* keep the wholesale card's text block natural so the preview sits below it */
.channel--whole p { flex: 0 0 auto; }

/* rolling stock preview */
.channel__preview {
  position: relative; height: 138px; overflow: hidden; margin: 2px 0 4px;
  border-top: 1px solid var(--border); padding-top: 14px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.channel__ticker {
  display: flex; flex-direction: column; gap: 8px; will-change: transform;
  animation: tickerUp 16s linear infinite;
}
.channel:hover .channel__ticker { animation-play-state: paused; }
@keyframes tickerUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.trow {
  display: flex; align-items: center; gap: 10px; flex: 0 0 auto;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px;
}
.trow__logo {
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 6px;
  background: #fff; padding: 3px; display: inline-grid; place-items: center;
}
.trow__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.trow__logo--txt {
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.trow__name { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trow__meta { flex: 0 0 auto; font-size: 12px; color: var(--text-dim); white-space: nowrap;
  font-variant-numeric: tabular-nums; display: inline-flex; align-items: center; gap: 6px; }
.trow__live { width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232,32,46,.5); animation: pulse 1.8s infinite; }
@media (prefers-reduced-motion: reduce){ .channel__ticker { animation: none; } .trow__live { animation: none; } }

/* ---------- Why / USP grid ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 860px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }
.why-card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.why-card__ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px;
  border: 1px solid var(--accent-line);
}
.why-card__ico svg { width: 22px; height: 22px; }
.why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.why-card p { margin-top: 8px; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }

/* ---------- How it works ---------- */
.how { position: relative; }
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative;
}
.steps--3 { grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin: 0 auto; }
@media (max-width: 820px){ .steps, .steps--3 { grid-template-columns: 1fr; } }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 26px 22px; position: relative;
}
.step__num {
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  color: var(--accent); letter-spacing: .08em;
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); margin-bottom: 16px;
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.step p { margin-top: 8px; color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* ---------- Sell section: red boxes (set apart from BUY) ---------- */
.steps--sell .step {
  background: linear-gradient(180deg, var(--accent-soft), var(--surface));
  border-color: var(--accent-line);
}
.steps--sell .step__num {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.sell { padding-top: 0; }
.sell-note {
  display: inline-flex; align-items: center; gap: 10px; margin: 26px auto 0;
  padding: 12px 20px; border-radius: 100px;
  background: rgba(46,211,163,.12); border: 1px solid rgba(46,211,163,.32);
  color: var(--green); font-weight: 600; font-size: 14.5px;
}
.sell .section { padding: 0; }
.sell { display: block; text-align: center; }
.sell .steps--3 { text-align: left; }
.sell-note svg { width: 18px; height: 18px; }

/* ---------- Partners marquee ---------- */
.partners .section__head { margin-bottom: 40px; }
.marquee {
  position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee + .marquee { margin-top: 16px; }
.marquee__track {
  display: flex; gap: 16px; width: max-content;
  animation: marqueeScroll 46s linear infinite;
  will-change: transform;
}
.marquee--reverse .marquee__track { animation-duration: 58s; animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.logo-chip {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  height: 66px; padding: 0 30px; gap: 13px;
  border: 1px solid var(--border); border-radius: 14px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.logo-chip--logo { padding: 0 20px; }
.logo-chip__img {
  width: 34px; height: 34px; flex: 0 0 auto;
  border-radius: 9px; background: #fff; padding: 5px;
  display: inline-grid; place-items: center; box-shadow: var(--shadow-sm);
}
.logo-chip__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* real partner logos → white pill hugs the logo, logo fills the pill height (drops the duplicate name) */
.logo-chip--logo .logo-chip__img {
  width: auto; height: 54px; padding: 5px 14px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-chip--logo .logo-chip__img img {
  width: auto; height: 100%; max-width: 156px; object-fit: contain;
}
.logo-chip--logo .logo-chip__mark { display: none; }
/* logos with light text on transparent (e.g. CalcBooster) → dark pill */
.logo-chip--logo .logo-chip__img--dark { background: #0e1116; }
.logo-chip__mark {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.01em;
  color: var(--text-mute); white-space: nowrap; transition: color .2s ease;
}
.logo-chip:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.logo-chip:hover .logo-chip__mark { color: var(--text); }

@media (prefers-reduced-motion: reduce){
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* ---------- Banner blocks (auctions + voltified) ---------- */
.banners { max-width: var(--maxw); margin: 0 auto; padding: 0 24px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.banners--single { grid-template-columns: 1fr; }
@media (max-width: 820px){ .banners{ grid-template-columns: 1fr; } }
.banner {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 36px; display: flex; flex-direction: column; gap: 14px;
  min-height: 260px; justify-content: center;
}
.banner__eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.banner h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.12; letter-spacing: -.02em; max-width: 18ch; }
.banner p { color: var(--text-dim); font-size: 15px; line-height: 1.55; max-width: 42ch; }
.banner .btn-primary, .banner .btn-ghost { align-self: flex-start; margin-top: 6px; height: 48px; }

/* auctions — branded red */
.banner--auctions {
  background:
    radial-gradient(420px 280px at 90% 0%, rgba(232,32,46,.22), transparent 60%),
    linear-gradient(135deg, var(--surface-3), var(--surface));
}
.banner--auctions .banner__eyebrow { color: var(--accent); }
.banner--auctions::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 22px);
}
/* voltified — brand teal (Voltified Energy) */
.banner--volt {
  background:
    radial-gradient(420px 280px at 90% 100%, rgba(46,135,134,.24), transparent 60%),
    radial-gradient(360px 240px at 0% 0%, rgba(108,200,194,.16), transparent 60%),
    linear-gradient(135deg, var(--surface-3), var(--surface));
}
.banner--volt .banner__eyebrow { color: #2e8786; }
.banner--volt .volt-cta {
  display: inline-flex; align-items: center; gap: 9px;
  height: 48px; padding: 0 22px; border-radius: 12px;
  background: #2e8786; color: #fff; font-size: 15px; font-weight: 800;
  text-decoration: none; transition: .18s ease; align-self: flex-start; margin-top: 6px;
}
.banner--volt .volt-cta:hover { background: #347d7c; transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(46,135,134,.55); }
.banner--volt .volt-cta svg { width: 16px; height: 16px; }
.banner__spark {
  position: absolute; right: -10px; top: -10px; font-size: 120px; line-height: 1;
  opacity: .08; user-select: none; font-family: var(--font-display); font-weight: 800;
}
/* Voltified feature: text left, big logo right */
.volt-feature { flex-direction: row; align-items: center; gap: 36px; }
.volt-feature__text { flex: 1 1 56%; display: flex; flex-direction: column; gap: 12px; }
.volt-feature__logo {
  flex: 0 0 auto; display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; padding: 26px 30px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-md); transition: transform .2s ease, box-shadow .2s ease;
}
.volt-feature__logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.volt-feature__logo img { width: 208px; max-width: 100%; height: auto; object-fit: contain; display: block; }
[data-theme="dark"] .banner--volt .banner__eyebrow { color: #6cc8c2; }
@media (max-width: 760px){
  .volt-feature { flex-direction: column; align-items: flex-start; gap: 24px; }
  .volt-feature__logo { align-self: center; }
}

/* ---------- Newsletter ---------- */
.news-card {
  max-width: 860px; margin: 0 auto; text-align: center;
  background:
    radial-gradient(600px 300px at 50% 0%, var(--accent-soft), transparent 70%),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px 40px; box-shadow: var(--shadow-md);
}
.news-card .eyebrow { justify-content: center; }
.news-card .section__sub { margin-left: auto; margin-right: auto; max-width: 64ch; }
.news-form {
  margin: 28px auto 0; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; max-width: 640px;
}
.news-input {
  flex: 1 1 220px; height: 52px; padding: 0 16px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  color: var(--text); font-family: inherit; font-size: 15px; transition: .16s ease;
}
.news-input:focus { outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }
.news-form .btn-primary { flex: 0 0 auto; height: 52px; }
.news-note { margin-top: 16px; color: var(--text-mute); font-size: 13.5px; }

/* ---------- Contact ---------- */
.contact { position: relative; }
.contact__wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start;
}
@media (max-width: 820px){ .contact__wrap{ grid-template-columns: 1fr; gap: 32px; } }
.contact__info .section__sub { max-width: 42ch; }
.contact__cards { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.cinfo {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; text-decoration: none; color: var(--text); transition: .16s ease;
}
.cinfo:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.cinfo__ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); flex: 0 0 auto; }
.cinfo__ico svg { width: 19px; height: 19px; }
.cinfo__label { display: block; font-size: 12px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.cinfo__val { display: block; font-size: 15px; font-weight: 600; margin-top: 2px; }

.form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-md);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .form__row{ grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.field input, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 11px;
  color: var(--text); font-family: inherit; font-size: 15px; padding: 13px 15px; transition: .16s ease;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-line); box-shadow: 0 0 0 4px var(--accent-soft); }
.form .btn-primary { width: 100%; justify-content: center; height: 52px; margin-top: 4px; }
.form__ok {
  margin-top: 14px; padding: 13px 16px; border-radius: 11px; text-align: center;
  background: rgba(46,211,163,.12); color: var(--green); font-weight: 600; font-size: 14px;
  border: 1px solid rgba(46,211,163,.3);
}

/* ---------- Landing footer ---------- */
.lfooter { border-top: 1px solid var(--border); background: color-mix(in srgb, var(--bg) 60%, #000 6%); }
.lfooter__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 36px;
  display: grid; grid-template-columns: 2fr 1fr 1.3fr 1fr; gap: 36px;
}
@media (max-width: 920px){ .lfooter__inner{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .lfooter__inner{ grid-template-columns: 1fr; gap: 28px; } }
.lfooter__col p { line-height: 1.5; margin-bottom: 12px; }
.lfooter__brand .logo { height: 24px; color: var(--text); margin-bottom: 16px; }
.lfooter__tag { color: var(--text-dim); font-size: 14px; max-width: 36ch; line-height: 1.55; }
.lfooter__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--text-mute); margin-bottom: 14px; font-weight: 700; }
.lfooter__col a, .lfooter__col p { display: block; color: var(--text-dim); font-size: 14px; text-decoration: none; margin-bottom: 9px; transition: .14s; }
.lfooter__col a:hover { color: var(--accent); }
.lfooter__bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 22px 24px;
  border-top: 1px solid var(--border); color: var(--text-mute); font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.lfooter__credit { display: inline-flex; align-items: center; gap: 8px; }
.lfooter__credit a { color: var(--accent); font-weight: 600; text-decoration: none; }
.lfooter__credit a:hover { text-decoration: underline; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; } }
