:root {
  --container: 1100px;
  --gutter: 16px;

  --gap: 18px;
  --radius: 16px;
  --sectionY: 44px;

  /* Frosted Light */
  --bg: #eef3f9;
  --panel: rgba(255, 255, 255, 0.90);
  --panel2: rgba(255, 255, 255, 0.78);

  --text: #0b1526;
  --muted: rgba(18, 32, 50, 0.82);
  --muted2: rgba(34, 52, 74, 0.70);

  --accent: #d7e6f6;
  --blue: #7f99b9;
  --cyan: #e6f1fb;

  --stroke: rgba(12, 22, 38, 0.12);
  --stroke2: rgba(12, 22, 38, 0.18);

  --shadow: 0 6px 16px rgba(12, 22, 38, 0.08);
  --shadow2: 0 10px 24px rgba(12, 22, 38, 0.10);
  --btnShadow: 0 4px 10px rgba(12, 22, 38, 0.08);

  --lh: 1.55;
  --pillRadius: 6px;
  --featureImg: none;

  /* Snow texture (data-uri) */
  --snowTexture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='260'%3E%3Cg fill='%23ffffff' fill-opacity='0.14'%3E%3Ccircle cx='24' cy='28' r='1'/%3E%3Ccircle cx='92' cy='46' r='1'/%3E%3Ccircle cx='160' cy='20' r='1'/%3E%3Ccircle cx='210' cy='60' r='1'/%3E%3Ccircle cx='280' cy='34' r='1'/%3E%3Ccircle cx='338' cy='70' r='1'/%3E%3Ccircle cx='390' cy='40' r='1'/%3E%3Ccircle cx='42' cy='120' r='1'/%3E%3Ccircle cx='130' cy='150' r='1'/%3E%3Ccircle cx='200' cy='110' r='1'/%3E%3Ccircle cx='310' cy='140' r='1'/%3E%3Ccircle cx='380' cy='160' r='1'/%3E%3Ccircle cx='90' cy='210' r='1'/%3E%3Ccircle cx='180' cy='230' r='1'/%3E%3Ccircle cx='260' cy='210' r='1'/%3E%3Ccircle cx='350' cy='230' r='1'/%3E%3C/g%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

body {
  background:
    radial-gradient(1100px 700px at 50% -10%, rgba(255,255,255,0.85), transparent 70%),
    radial-gradient(900px 520px at 70% 0%, rgba(156, 178, 206, 0.16), transparent 70%),
    radial-gradient(1100px 650px at 14% -16%, rgba(205, 220, 238, 0.40), transparent 62%),
    radial-gradient(1000px 560px at 50% 120%, rgba(12, 22, 38, 0.08), transparent 56%),
    linear-gradient(180deg, #eef3f9 0%, #e7eff8 55%, #dde8f4 100%);
  overflow-x: hidden;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background:
    repeating-linear-gradient(to right, rgba(10, 18, 32, 0.06) 0px, rgba(10, 18, 32, 0.06) 1px, transparent 1px, transparent 160px),
    repeating-linear-gradient(to bottom, rgba(10, 18, 32, 0.05) 0px, rgba(10, 18, 32, 0.05) 1px, transparent 1px, transparent 160px);
  mask-image: radial-gradient(760px 520px at 35% 0%, rgba(0,0,0,1), transparent 70%);
}

.top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand { display: flex; flex-direction: column; gap: 4px; }
.wordmark{
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 18px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.wordmark span{
  opacity: .9;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  padding: 7px 10px;
  border-radius: var(--pillRadius);
}
.brandSub{
  font-size: 12px;
  letter-spacing: .6px;
  color: rgba(198,214,230,.80);
  text-transform: uppercase;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2px;
}
.nav a:hover { color: var(--text); }

.navBtn {
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text) !important;
  box-shadow: none;
}

.langToggle{ display: inline-flex; gap: 8px; align-items: center; padding-left: 4px; }
.navLang{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(9,18,32,.18);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.navLang:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.70);
  border-color: rgba(18,30,46,.24);
}
.navLang.isActive{
  border-color: rgba(18,30,46,.32);
  background: rgba(255,255,255,.78);
}

.home { width: 100%; }

/* HERO */
.hero { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.hero-inner {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    radial-gradient(900px 260px at 20% 0%, rgba(184, 202, 223, 0.30), transparent 65%);
  border: 1px solid var(--stroke2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: start;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-inner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(520px 220px at 50% 10%, rgba(255,255,255,0.10), transparent 62%),
    var(--snowTexture);
  background-size: auto, 420px 260px;
  opacity: .28;
  mix-blend-mode: screen;
}

.hero-inner > * { position: relative; z-index: 1; }
.hero-side { display: flex; justify-content: flex-end; }

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text);
  padding: 8px 10px;
  border-radius: var(--pillRadius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.60);
}

.hero-copy h1 {
  margin: 12px 0 10px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.08;
  color: var(--text);
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  line-height: var(--lh);
  font-size: 15px;
  max-width: 72ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.3px;
  border: 1px solid rgba(12, 22, 38, 0.16);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  box-shadow: none;
}
.btn:active { transform: scale(0.99); }

.btn-primary {
  background: #dbe7f6;
  color: #0b1526;
  border-color: rgba(12, 22, 38, 0.18);
  box-shadow: none;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #ffffff;
  filter: saturate(1.00) brightness(1.00);
  border-color: rgba(12, 22, 38, 0.22);
  box-shadow: none;
}
.btn-ghost {
  background: #f5f8fc;
  border-color: rgba(12, 22, 38, 0.14);
  color: var(--text);
  box-shadow: none;
}
.btn-ghost:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(12, 22, 38, 0.22);
  box-shadow: none;
}

.hero-mini{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(12, 22, 38, 0.16);
  background: #6c7a8c;
  border-radius: 12px;
  color: rgba(255,255,255,.98);
}
.mini-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(120, 225, 240, 0.95);
  box-shadow: 0 0 0 6px rgba(120, 225, 240, 0.22);
}

/* Side panel */
.infoPanel {
  width: min(360px, 100%);
  border: 1px solid var(--stroke2);
  background: var(--panel);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    0 8px 18px rgba(12, 22, 38, 0.10),
    inset 0 0 0 1px rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.infoPanel::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(420px 220px at 30% 10%, rgba(170, 196, 224, 0.22), transparent 70%),
    radial-gradient(420px 220px at 90% 20%, rgba(200, 216, 236, 0.20), transparent 70%),
    var(--snowTexture);
  background-size: auto, auto, 420px 260px;
  opacity: .40;
}
.infoPanel > * { position: relative; z-index: 1; }

.infoPanel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.info-ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(214, 232, 250, 0.90);
  border: 1px solid rgba(126, 157, 190, 0.35);
  color: #0b1526;
  box-shadow: 0 6px 14px rgba(12, 22, 38, 0.12);
}
.infoPanel-title {
  font-weight: 900;
  letter-spacing: 0.8px;
  font-size: 13px;
  text-transform: uppercase;
}
.infoPanel-sub { margin-top: 2px; font-size: 13px; color: var(--muted); }
.infoPanel-text { margin-top: 10px; font-size: 15px; color: var(--muted); line-height: var(--lh); }

.infoLinks{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.infoLink{
  border-bottom: 1px solid rgba(18, 30, 46, 0.24);
  padding-bottom: 2px;
  opacity: .92;
}
.infoLink:hover{ opacity: 1; }
.dot{ opacity: .55; }

/* Sections */
.section {
  margin: var(--sectionY) auto;
  padding: 0 var(--gutter);
  max-width: var(--container);
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.section-head h2 { margin: 0; font-size: clamp(18px, 2vw, 22px); font-weight: 900; }
.section-sub { color: var(--muted); font-size: 13px; }

/* === ONE ROW IMAGE CARDS (Bugatti-inspired) === */
.cardRow{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  align-items: stretch;
}

.featureCard{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.featureCard:focus-visible{
  outline: 2px solid rgba(90, 120, 160, 0.45);
  outline-offset: 4px;
  border-radius: 12px;
}

.fcMedia{
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.featureCard:hover .fcMedia{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(12, 22, 38, 0.14);
  filter: brightness(1.03) saturate(1.04);
}

.fcMedia{
  height: 260px;
  border-radius: 12px;
  border: 1px solid rgba(12, 22, 38, 0.16);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 18px rgba(12, 22, 38, 0.12);
  isolation: isolate;
}

.fcMedia::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    var(--cardImg),
    radial-gradient(900px 260px at 20% 0%, rgba(139, 220, 255, 0.18), transparent 65%),
    var(--snowTexture);
  background-size: cover, auto, 420px 260px;
  background-position: center, center, center;
  transform: scale(1.02);
  transition: transform .38s ease, filter .38s ease;
  filter: contrast(1.05) saturate(1.02) brightness(1.00);
}

.fcMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(7,12,22,0.10) 0%, rgba(7,12,22,0.75) 100%);
}

.featureCard:hover .fcMedia::before{
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.08) brightness(1.04);
}

.fcBody{
  padding: 14px 2px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.fcTitle{
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.05;
  color: var(--text);
}

.fcMeta{
  margin-top: 8px;
  color: var(--muted2);
  font-size: 14px;
  line-height: 1.45;
  max-width: 44ch;
}

.fcLink{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(10, 22, 38, 0.95);
  border-bottom: 1px solid rgba(12, 22, 38, 0.35);
  padding-bottom: 3px;
  opacity: .92;
  margin-top: auto;
}
.featureCard:hover .fcLink{ opacity: 1; }

.fcArrow{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.65);
  display: grid;
  place-items: center;
  box-shadow: none;
}

/* Card background presets (swap these for real images later) */
/* Example: --cardImg: url('./assets/driveway.jpg'); */
.featureCard[data-bg="discover"] .fcMedia{ --cardImg:
  radial-gradient(1200px 520px at 18% 16%, rgba(72, 120, 190, 0.40), transparent 60%),
  linear-gradient(135deg, rgba(16,32,62,.70), rgba(8,18,36,.82));
}
.featureCard[data-bg="history"] .fcMedia{ --cardImg:
  radial-gradient(900px 520px at 70% 10%, rgba(120, 200, 220, 0.22), transparent 62%),
  linear-gradient(135deg, rgba(14,28,54,.68), rgba(8,18,36,.82));
}
.featureCard[data-bg="careers"] .fcMedia{ --cardImg:
  radial-gradient(1000px 520px at 30% 10%, rgba(140, 190, 235, 0.26), transparent 62%),
  linear-gradient(135deg, rgba(16,30,56,.70), rgba(8,18,36,.84));
}

/* === Big editorial feature block === */
.featureShell{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke2);
  background: var(--panel);
  box-shadow: 0 8px 18px rgba(12, 22, 38, 0.10);
}

.featureMedia{
  min-height: 420px;
  position: relative;
  background-image:
    var(--featureImg),
    radial-gradient(1200px 620px at 20% 20%, rgba(140, 170, 205, 0.28), transparent 60%),
    radial-gradient(1000px 520px at 70% 20%, rgba(200, 220, 240, 0.30), transparent 62%),
    linear-gradient(135deg, rgba(230, 240, 248, 0.92), rgba(210, 224, 238, 0.96));
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
}
.featureMedia::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--snowTexture);
  background-size: 420px 260px;
  opacity: .35;
  mix-blend-mode: screen;
}
.featureMedia::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(10,18,32,0.08), rgba(10,18,32,0.36));
}

.featureContent{
  padding: 26px;
  position: relative;
  background: var(--panel2);
}

.featureEyebrow{
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text);
  opacity: .95;
}
.featureTitle{
  margin: 10px 0 10px;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -0.6px;
  font-weight: 900;
}
.featureText{
  margin: 0;
  color: var(--muted);
  line-height: var(--lh);
  max-width: 62ch;
  font-size: 14px;
}

.steps{
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.steps li{
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(12, 22, 38, 0.14);
  background: #ffffff;
}
.stepDot{
  width: 30px; height: 30px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 900;
  color: #0b1526;
  background: linear-gradient(90deg, rgba(160, 200, 235, 0.95), rgba(190, 220, 245, 0.95));
  box-shadow: 0 12px 28px rgba(12, 22, 38, 0.20);
}
.stepTitle{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 13px;
  text-transform: uppercase;
}
.stepSub{
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.featureActions{ margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Status */
.statusCard{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--stroke2);
  border-radius: 18px;
  background: var(--panel);
  padding: 16px;
  box-shadow: 0 8px 18px rgba(12, 22, 38, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.statusCard::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(139, 220, 255, 0.12), transparent 65%),
    var(--snowTexture);
  background-size: auto, 420px 260px;
  opacity: .55;
}
.statusCard > *{ position: relative; z-index: 1; }

.statusBadge{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: var(--pillRadius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.60);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 11px;
}
.statusHeadline{ margin-top: 10px; font-weight: 900; font-size: 18px; }
.statusText{ margin-top: 6px; color: var(--muted); line-height: var(--lh); max-width: 60ch; }
.statusActions{ display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Contact */
.contactCard {
  margin-top: 14px;
  border: 1px solid var(--stroke2);
  border-radius: 16px;
  background: var(--panel);
  padding: 14px;
  box-shadow: 0 8px 18px rgba(12, 22, 38, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contactRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(18, 30, 46, 0.10);
}
.contactRow:last-child { border-bottom: none; }
.label { color: var(--muted); font-size: 13px; }
.value { color: var(--text); font-size: 13px; }

/* Footer */
.footer { margin-top: 26px; border-top: 1px solid rgba(18, 30, 46, 0.10); }
.footerInner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.footerLinks { display: flex; gap: 12px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

/* Modal */
.modal {
  width: min(760px, calc(100% - 28px));
  border: 1px solid var(--stroke2);
  border-radius: 18px;
  background: var(--panel);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(12, 22, 38, 0.12);
  padding: 0;
  overflow: hidden;
}
.modal::backdrop {
  background: rgba(9, 18, 32, 0.30);
  backdrop-filter: blur(6px);
}
.modalInner { padding: 18px; position: relative; }

.modalClose {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.55);
  color: var(--text);
  cursor: pointer;
}

.modalTop { display: flex; gap: 12px; align-items: center; padding-right: 44px; }

.modalIcon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(140px 90px at 30% 20%, rgba(186, 206, 226, 0.55), rgba(255,255,255,.35)),
    radial-gradient(140px 90px at 90% 30%, rgba(210, 224, 238, 0.45), transparent 70%);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 22px;
}
#modalTitle{ margin: 0; font-weight: 900; letter-spacing: -0.1px; }
.modalMeta{ margin-top: 2px; font-size: 13px; color: var(--muted); }

.modalDesc { margin: 12px 0 0; color: var(--muted); line-height: var(--lh); font-size: 15px; }
.featureList { margin: 12px 0 0; padding-left: 18px; }
.featureList li { margin: 6px 0; color: var(--muted); font-size: 15px; }
.modalActions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { justify-content: flex-start; }
  .cardRow { grid-template-columns: 1fr; }
  .featureShell { grid-template-columns: 1fr; }
  .featureMedia { min-height: 280px; }
  .featureTitle { font-size: 32px; }
}
@media (max-width: 720px) {
  .top { flex-direction: column; align-items: flex-start; }
  .statusCard { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  .btn, .navLang, .featureCard .fcMedia::before { transition: none; }
}
