:root {
  --navy: #07111f;
  --navy-2: #0c1b33;
  --navy-3: #122544;
  --ink: #e8eef8;
  --muted: #9aabc4;
  --amber: #ff6b1a;
  --amber-2: #ff8a3d;
  --gold: #f4c38b;
  --line: rgba(255,255,255,.08);
  --glass: rgba(7,17,31,.72);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--navy);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
}
.topbar a:hover { color: var(--amber-2); }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7,17,31,.82);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand span { color: var(--amber); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-links a { color: #d6e0ef; }
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #1a0c03;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,107,26,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,107,26,.38); }
.btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: none;
}
.menu-toggle { display: none; background: none; border: 0; color: #fff; font-size: 26px; }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero video, .hero .fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero .veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,17,31,.55), rgba(7,17,31,.78) 70%, var(--navy)),
    radial-gradient(circle at 20% 20%, rgba(255,107,26,.18), transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(980px, calc(100% - 40px));
  text-align: center;
  padding: 90px 0 70px;
}
.eyebrow {
  display: inline-block;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(40px, 7vw, 84px);
  line-height: .95;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--amber-2);
}
.hero p.lead {
  max-width: 680px;
  margin: 0 auto 32px;
  color: #d7e2f2;
  font-size: 18px;
}
.cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.stat {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 12px;
}
.stat b { display: block; font-size: 28px; color: #fff; }
.stat span { color: var(--muted); font-size: 13px; }

section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 8px 0 14px;
}
.section-head p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, #10203a, #0b1730);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 100%;
}
.card img { height: 210px; width: 100%; object-fit: cover; }
.card .body { padding: 24px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 28px; height: 460px; width: 100%; object-fit: cover; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #d5e0f0;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber); margin-top: 8px;
}

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar {
  background: var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
}
.pillar h3 { font-size: 17px; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 14px; }

.industries { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: #d8e3f3;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  background: linear-gradient(180deg, #10233f, #0b1730);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
}
.contact-copy { padding: 40px; }
.contact-copy h2 { font-family: "Fraunces", Georgia, serif; font-size: 40px; margin: 8px 0 14px; }
.contact-meta { margin-top: 26px; display: grid; gap: 10px; color: #d6e1f1; }
.contact-meta a { color: var(--amber-2); font-weight: 700; }
form { padding: 36px; background: rgba(0,0,0,.16); display: grid; gap: 12px; }
label { font-size: 13px; color: var(--muted); font-weight: 700; }
input, textarea, select {
  width: 100%;
  background: #091423;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 14px;
  padding: 13px 14px;
}
textarea { min-height: 120px; resize: vertical; }
.note { font-size: 12px; color: var(--muted); }

.order-shell {
  background: linear-gradient(180deg, #10233f, #0b1730);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.order-grid .full { grid-column: 1 / -1; }
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #091423;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #d8e3f3;
}
.choice input { accent-color: var(--amber); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.step {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.step b { color: var(--amber-2); display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 6px; }

@media (max-width: 980px) {
  .order-grid, .steps { grid-template-columns: 1fr; }
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  flex-wrap: wrap;
}
.fine { font-size: 12px; max-width: 620px; margin-top: 16px; }

@media (max-width: 980px) {
  .cards, .stats, .pillars, .split, .contact-wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #0a162a;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: block; }
  .split img { height: 320px; }
}
