:root {
  --bg-deep: #04101f;
  --bg-mid: #0a1f35;
  --bg-card: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.08);
  --teal: #14b8a6;
  --teal-bright: #2dd4bf;
  --cyan: #00b4d8;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --mirror: linear-gradient(135deg, rgba(45, 212, 191, 0.35), rgba(37, 99, 235, 0.25), rgba(0, 180, 216, 0.2));
  --text: #e8f4ff;
  --text-muted: #8fb4d4;
  --line: rgba(45, 212, 191, 0.18);
  --glow: 0 0 40px rgba(45, 212, 191, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(45, 212, 191, 0.18), transparent 60%),
    radial-gradient(700px 420px at 85% 5%, rgba(37, 99, 235, 0.2), transparent 55%),
    radial-gradient(600px 400px at 50% 100%, rgba(0, 180, 216, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-mid));
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(4, 16, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--mirror);
  border: 1px solid rgba(45, 212, 191, 0.4);
  box-shadow: var(--glow);
  position: relative;
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transform: skewX(-10deg);
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-bright);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--line);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-color: rgba(45, 212, 191, 0.5);
  box-shadow: var(--glow);
  color: #fff;
}

.btn-ghost {
  background: rgba(45, 212, 191, 0.08);
}

/* Glass cards */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-shine {
  position: relative;
  overflow: hidden;
}

.glass-shine::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  pointer-events: none;
}

/* Hero */
.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-bright);
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid var(--line);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 12px var(--teal-bright);
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 30%, var(--teal-bright) 70%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

/* Stats - BMW / Wayra inspired */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  padding: 20px;
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--teal-bright);
  text-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

.stat-label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section */
.section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.4px;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 60ch;
}

/* Journey - BMW style gamified steps */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.journey-step {
  padding: 22px 18px;
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  margin-bottom: 12px;
  box-shadow: var(--glow);
}

.journey-step h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.journey-step p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Focus grid - Wayra tiles */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.focus-tile {
  padding: 22px;
  transition: transform 0.2s, border-color 0.2s;
}

.focus-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.45);
}

.focus-tile .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid var(--line);
  margin-bottom: 12px;
}

.focus-tile strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.focus-tile span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Criteria - MobilityXlab bullets */
.criteria-list {
  display: grid;
  gap: 12px;
}

.criteria-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  align-items: flex-start;
}

.criteria-item .check {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--teal-bright);
  font-weight: 900;
  flex-shrink: 0;
}

.criteria-item strong {
  display: block;
  font-size: 14px;
}

.criteria-item em {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* News cards - Wayra */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.news-card {
  padding: 20px;
}

.tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  background: rgba(37, 99, 235, 0.2);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.news-card h4 {
  margin: 12px 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.news-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.news-date {
  margin-top: 12px;
  font-size: 12px;
  color: var(--teal);
}

/* Stories - BMW impact */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.quote-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(37, 99, 235, 0.12));
}

.quote-card blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

.quote-card cite {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(4, 16, 31, 0.6);
  color: var(--text);
  font-size: 14px;
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* FAQ - MobilityXlab accordion style */
.faq-list { display: grid; gap: 10px; }

.faq-item {
  padding: 18px 20px;
}

.faq-item h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--teal-bright);
}

.faq-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 48px;
  background: rgba(4, 16, 31, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-grid p,
.footer-grid a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-grid a:hover { color: var(--teal-bright); }

.newsletter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.newsletter-row input {
  flex: 1;
  min-width: 180px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(4, 16, 31, 0.6);
  color: var(--text);
}

.mockup-banner {
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.15), rgba(37, 99, 235, 0.15));
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: var(--teal-bright);
}

.page-hero {
  padding: 48px 0 32px;
}

.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 32px 0 48px;
}

.hub-card {
  padding: 24px;
  transition: transform 0.2s;
}

.hub-card:hover { transform: translateY(-4px); }

.hub-card h3 { margin: 0 0 8px; font-size: 17px; }

.hub-card p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.ref-note {
  font-size: 12px;
  color: var(--cyan);
  margin-top: 8px;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid,
  .two-col,
  .story-grid { grid-template-columns: 1fr; }
  .stats-row,
  .journey,
  .focus-grid,
  .news-grid,
  .hub-grid,
  .footer-grid,
  .form-grid { grid-template-columns: 1fr; }
}
