/* ── VDG THUNDER — Electric Adventure Vehicle ──────── */
:root {
  --td-bg:      #020B18;
  --td-bg2:     #030F20;
  --td-cyan:    #0EA5E9;
  --td-cyan2:   #38BDF8;
  --td-glow:    rgba(14,165,233,.22);
  --td-border:  rgba(14,165,233,.18);
  --td-muted:   rgba(255,255,255,.38);
}
#vdBody.dark-site { background: var(--td-bg) !important; }
.td-page { background: var(--td-bg); color: #fff; overflow-x: hidden; font-family: inherit; }

/* ── HERO ────────────────────────────────────────── */
.td-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--page-top, 100px);
  overflow: hidden;
  background: var(--td-bg);
}
.td-hero-bg {
  position: absolute; inset: 0;
  background: var(--td-bg);
}
.td-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right center;
  display: block; opacity: 1;
  transform: scale(1.04);
}
.td-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(2,11,24,.88) 0%,
    rgba(2,11,24,.55) 50%,
    rgba(2,11,24,.08) 100%);
}
/* Cyan radial glow */
.td-hero-glow {
  position: absolute; right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}
.td-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px 72px;
  width: 100%;
}
.td-coming-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.3);
  border-radius: 100px; padding: 8px 20px;
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--td-cyan); margin-bottom: 24px;
}
.td-coming-pill span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--td-cyan); box-shadow: 0 0 10px var(--td-cyan);
  animation: tdPulse 1.6s ease infinite;
}
@keyframes tdPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.55)} }
.td-vehicle-type {
  font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 12px;
}
.td-hero-name {
  font-size: clamp(64px, 11vw, 140px);
  font-weight: 900; letter-spacing: -.05em; line-height: .86;
  margin: 0 0 20px;
}
.td-hero-name .brand { color: var(--td-cyan); }
.td-hero-tagline {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,.5); line-height: 1.65;
  max-width: 480px; margin: 0 0 36px;
}
.td-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.td-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--td-cyan); color: #020B18;
  border: none; border-radius: 12px;
  padding: 15px 32px; font-size: 15px; font-weight: 800;
  text-decoration: none; cursor: pointer; font-family: inherit;
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.td-btn-primary:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(14,165,233,.45); color: #020B18; }
.td-btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 15px 28px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background .2s, color .2s;
}
.td-btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── COUNTDOWN ─────────────────────────────────── */
.td-countdown-bar {
  background: rgba(14,165,233,.06);
  border-top: 1px solid var(--td-border);
  border-bottom: 1px solid var(--td-border);
  padding: 28px 40px;
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.td-cd-wrap { display: flex; gap: 0; }
.td-cd-item {
  text-align: center; padding: 0 28px;
  border-right: 1px solid rgba(14,165,233,.12);
}
.td-cd-item:last-child { border-right: none; }
.td-cd-num {
  font-size: clamp(32px, 5vw, 52px); font-weight: 900;
  line-height: 1; color: #fff; letter-spacing: -.04em;
  display: block; font-variant-numeric: tabular-nums;
}
.td-cd-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--td-cyan); display: block; margin-top: 5px;
}
.td-cd-prefix {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-right: 36px;
}
@media(max-width:540px){
  .td-countdown-bar { padding: 20px 16px; }
  .td-cd-item { padding: 0 14px; }
  .td-cd-prefix { display: none; }
}

/* ── SPEC STRIP ─────────────────────────────────── */
.td-specs {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--td-border);
}
.td-spec {
  padding: 26px 16px; text-align: center;
  border-right: 1px solid rgba(14,165,233,.08);
  position: relative;
}
.td-spec:last-child { border-right: none; }
.td-spec-val {
  font-size: clamp(18px, 2.5vw, 28px); font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--td-cyan), var(--td-cyan2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}
.td-spec-lbl { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.28); }
@media(max-width:640px){
  .td-specs { grid-template-columns: repeat(3, 1fr); }
  .td-spec:nth-child(3) { border-right: none; }
  .td-spec:nth-child(n+4) { border-top: 1px solid rgba(14,165,233,.08); }
}

/* ── VEHICLE REVEAL ─────────────────────────────── */
.td-reveal {
  padding: 80px 40px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #041828 0%, var(--td-bg) 100%);
  border-bottom: 1px solid var(--td-border);
  text-align: center;
}
.td-reveal-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--td-cyan); margin-bottom: 16px;
}
.td-reveal-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--td-cyan); box-shadow: 0 0 8px var(--td-cyan); }
.td-reveal h2 {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.05; margin: 0 0 12px;
}
.td-reveal-sub {
  font-size: 15px; color: rgba(255,255,255,.38);
  max-width: 500px; margin: 0 auto 48px; line-height: 1.7;
}
.td-product-frame {
  max-width: 820px; margin: 0 auto;
  background: radial-gradient(ellipse 80% 65% at 50% 50%, rgba(14,165,233,.1) 0%, rgba(2,11,24,.9) 100%);
  border: 1px solid var(--td-border);
  border-radius: 28px; padding: 40px 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 80px var(--td-glow);
  position: relative;
}
.td-product-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--td-cyan), transparent); border-radius: 28px 28px 0 0;
}
.td-product-frame img { width: 100%; height: auto; display: block; }

/* Feature pills below product */
.td-feat-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.td-feat-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.07); border: 1px solid rgba(14,165,233,.16);
  border-radius: 100px; padding: 9px 18px;
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.7);
}
.td-feat-pill i { color: var(--td-cyan); font-size: 12px; }

/* ── TERRAIN BANNER ─────────────────────────────── */
.td-terrain {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: flex-end;
}
.td-terrain-img {
  position: absolute; inset: 0;
}
.td-terrain-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  display: block;
}
.td-terrain-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(2,11,24,.97) 0%,
    rgba(2,11,24,.5) 45%,
    rgba(2,11,24,.1) 100%);
}
.td-terrain-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 40px 56px;
}
.td-terrain-content h2 {
  font-size: clamp(28px, 4.5vw, 56px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.0; margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.td-terrain-content h2 em { font-style: normal; color: var(--td-cyan); }
.td-terrain-content p { font-size: 15px; color: rgba(255,255,255,.5); max-width: 460px; line-height: 1.7; margin: 0 0 24px; }

/* ── FEATURES ───────────────────────────────────── */
.td-features { padding: 80px 40px; background: var(--td-bg2); border-top: 1px solid var(--td-border); }
.td-features-head { text-align: center; margin-bottom: 48px; }
.td-features-head h2 { font-size: clamp(26px,4vw,44px); font-weight:900; letter-spacing:-.04em; line-height:1.05; margin:8px 0 0; }
.td-feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; max-width: 960px; margin: 0 auto;
}
.td-feat-card {
  background: rgba(14,165,233,.04); border: 1px solid var(--td-border);
  border-radius: 18px; padding: 24px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color .2s, background .2s;
}
.td-feat-card:hover { border-color: rgba(14,165,233,.35); background: rgba(14,165,233,.07); }
.td-feat-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--td-cyan);
}
.td-feat-card strong { font-size: 14px; font-weight: 800; color: #fff; display: block; margin-bottom: 4px; }
.td-feat-card span { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.55; }
@media(max-width:680px){ .td-feat-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:440px){ .td-feat-grid { grid-template-columns: 1fr; } }

/* ── INTERIOR SECTION ───────────────────────────── */
.td-interior {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid var(--td-border);
}
.td-interior-img {
  position: relative; overflow: hidden;
  background: #010810;
}
.td-interior-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .7s ease;
}
.td-interior-img:hover img { transform: scale(1.04); }
.td-interior-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(2,11,24,.5));
  pointer-events: none;
}
.td-interior-content {
  background: var(--td-bg2); padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.td-interior-content h2 { font-size: clamp(24px,3.5vw,40px); font-weight:900; letter-spacing:-.03em; line-height:1.1; margin:8px 0 16px; }
.td-interior-content p { font-size: 15px; color: rgba(255,255,255,.42); line-height: 1.75; max-width: 380px; margin: 0 0 28px; }
.td-spec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.td-spec-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: rgba(255,255,255,.6);
}
.td-spec-list li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--td-cyan), var(--td-cyan2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23020B18'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 70%; background-repeat: no-repeat; background-position: center;
}
@media(max-width:991px){
  .td-interior { grid-template-columns: 1fr; }
  .td-interior-img { min-height: 300px; }
  .td-interior-content { padding: 40px 32px; }
}

/* ── WAITLIST ───────────────────────────────────── */
.td-waitlist {
  padding: 80px 40px 88px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #041828 0%, var(--td-bg) 60%);
  border-top: 1px solid var(--td-border);
}
.td-wl-wrap { max-width: 520px; margin: 0 auto; text-align: center; }
.td-wl-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.28);
  border-radius: 100px; padding: 7px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--td-cyan); margin-bottom: 18px;
}
.td-wl-title { font-size: clamp(28px,5vw,44px); font-weight:900; letter-spacing:-.04em; line-height:1.05; margin:0 0 10px; }
.td-wl-sub { color: rgba(255,255,255,.38); font-size: 15px; line-height: 1.7; margin: 0 0 32px; }
.td-perks { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 28px; }
.td-perk {
  display: flex; align-items: center; gap: 7px;
  background: rgba(14,165,233,.07); border: 1px solid rgba(14,165,233,.15);
  border-radius: 100px; padding: 7px 16px; font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600;
}
.td-perk i { color: var(--td-cyan); }
.td-form-box {
  background: rgba(255,255,255,.03); border: 1.5px solid rgba(14,165,233,.16);
  border-radius: 20px; padding: 32px 28px; text-align: left;
}
.td-input {
  width: 100%; background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 13px 16px; font-size: 14px; color: #fff;
  font-family: inherit; outline: none; display: block; margin-bottom: 12px;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
.td-input::placeholder { color: rgba(255,255,255,.25); }
.td-input:focus { border-color: rgba(14,165,233,.55); background: rgba(14,165,233,.06); }
.td-input option { background: #030F20; color: #fff; }
.td-submit {
  width: 100%; background: var(--td-cyan);
  border: none; border-radius: 12px; padding: 15px 24px;
  font-size: 15px; font-weight: 800; color: #020B18; cursor: pointer;
  font-family: inherit; display: flex; align-items: center; justify-content: center;
  gap: 9px; margin-top: 4px;
  transition: opacity .2s, transform .15s, box-shadow .2s;
}
.td-submit:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(14,165,233,.45); }
.td-form-note { text-align: center; color: rgba(255,255,255,.18); font-size: 11px; margin-top: 12px; line-height: 1.6; }
.td-success {
  background: rgba(14,165,233,.1); border: 1.5px solid rgba(14,165,233,.3);
  border-radius: 14px; padding: 20px; text-align: center;
  color: var(--td-cyan); font-weight: 700; font-size: 15px;
  margin-bottom: 16px; line-height: 1.6;
}

/* ── FOOTER ─────────────────────────────────────── */
.td-footer {
  background: var(--td-bg); border-top: 1px solid rgba(255,255,255,.05);
  padding: 52px 24px 64px; text-align: center;
}
.td-footer h3 { font-size: clamp(16px,2.5vw,22px); font-weight: 800; margin: 0 0 6px; }
.td-footer p { color: rgba(255,255,255,.3); font-size: 13px; margin: 0 0 22px; }
.td-btn-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media(max-width:767px){
  .td-hero-content { padding: 0 20px 56px; }
  .td-reveal { padding: 56px 20px; }
  .td-features { padding: 56px 20px; }
  .td-terrain-content { padding: 0 20px 40px; }
  .td-waitlist { padding: 56px 20px 64px; }
  .td-form-box { padding: 24px 18px; }
}
@media(prefers-reduced-motion:reduce){ * { transition: none !important; animation: none !important; } }
