:root {
  --bg: #0a1330;
  --bg-soft: #0f1a40;
  --bg-elev: #142150;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a8b1cc;
  --muted-strong: #d2d8ea;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
  --primary: #CC5C1B;
  --primary-2: #E87A3D;
  --primary-soft: rgba(204, 92, 27, 0.18);
  --navy: #0F1F47;
  --navy-deep: #07112e;
  --accent: #CC5C1B;
  --green: #ffffff; /* legacy var kept for compat; renders as white accent */
  --grad-primary: linear-gradient(135deg, #CC5C1B 0%, #E87A3D 100%);
  --grad-warm: linear-gradient(135deg, #CC5C1B 0%, #E87A3D 100%);
  --grad-soft: linear-gradient(135deg, rgba(204,92,27,0.22), rgba(232,122,61,0.18));
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.5);
  --glow-primary: 0 18px 60px rgba(204, 92, 27, 0.45);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(204, 92, 27, 0.22), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(232, 122, 61, 0.14), transparent 60%),
    radial-gradient(800px 480px at 50% 110%, rgba(15, 31, 71, 0.55), transparent 60%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { max-width: 100%; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--glow-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 70px rgba(204, 92, 27, 0.55); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--surface-strong); border-color: rgba(255,255,255,0.28); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface); border-color: rgba(255,255,255,0.32); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 19, 48, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1;
}
.logo-text span {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-mark {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--glow-primary);
}
.logo-mark img,
.logo-mark svg.logo-img { width: 100%; height: 100%; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 22px;
  border: 0; background: transparent; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(204, 92, 27, 0.22);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(204, 92, 27, 0.22); }
  50% { box-shadow: 0 0 0 8px rgba(204, 92, 27, 0.06); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  font-weight: 800;
}
.hero h1 .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { color: var(--muted-strong); font-size: 1.12rem; max-width: 560px; margin: 0 0 32px; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 0.97rem;
}
.hero-bullets .tick {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(204, 92, 27, 0.18);
  border: 1px solid rgba(204, 92, 27, 0.5);
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust {
  display: flex;
  gap: 40px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.trust div { display: flex; flex-direction: column; gap: 2px; }
.trust strong {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, #c5cce0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust span { font-size: 0.85rem; color: var(--muted); }

/* Hero art */
.hero-art { position: relative; min-height: 500px; }
.card {
  position: absolute;
  background: rgba(20, 33, 80, 0.72);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 24px;
  width: 340px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.card-float { animation: float 7s ease-in-out infinite; }
.card-2 { animation-delay: -3.5s; bottom: 30px; left: -20px; width: 280px; }
.card:not(.card-2) { top: 50px; right: 0; }
@keyframes float { 0%, 100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }

.card-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.9rem; color: var(--muted-strong); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--primary); box-shadow: 0 0 0 4px rgba(204,92,27,0.28); }
.badge {
  margin-left: auto;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  color: var(--text);
  font-weight: 600;
}

.route { display: grid; gap: 12px; }
.route-point { display: grid; grid-template-columns: 16px 1fr; column-gap: 12px; }
.route-point span { width: 12px; height: 12px; border-radius: 50%; background: var(--grad-primary); margin-top: 6px; box-shadow: 0 0 0 4px rgba(204,92,27,0.22); }
.route-point p { margin: 0; font-weight: 600; }
.route-point small { color: var(--muted); }
.route-line { width: 2px; height: 26px; background: linear-gradient(var(--primary), var(--primary-2)); margin-left: 5px; opacity: 0.6; }

.card-title { margin: 0 0 12px; font-weight: 600; }
.bar { width: 100%; height: 8px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.bar-fill { height: 100%; background: var(--grad-primary); border-radius: 999px; }
.card small { color: var(--muted); }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: -1; pointer-events: none; }
.blob-1 { width: 320px; height: 320px; background: var(--primary); top: -80px; right: -60px; }
.blob-2 { width: 260px; height: 260px; background: var(--navy); bottom: -60px; left: -80px; opacity: 0.7; }
.blob-3 { width: 280px; height: 280px; background: var(--primary-2); top: 40%; left: 30%; opacity: 0.35; }

/* Marquee */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}
.marquee-track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.marquee-track span { font-size: 0.95rem; display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::before { content: "✦"; color: var(--primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sections */
section { padding: 100px 0; position: relative; }
.section-head { max-width: 740px; margin: 0 auto 56px; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 16px 0 14px;
  font-weight: 800;
}
.section-head h2 .grad {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p { color: var(--muted-strong); margin: 0; font-size: 1.05rem; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Why Travomate grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(204,92,27,0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-strong); }
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  color: var(--primary);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 700; }
.feature p { margin: 0; color: var(--muted-strong); }

/* How it works */
.how { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02)); }
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.steps-5 { grid-template-columns: repeat(5, 1fr); }
.steps li {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.steps li::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto auto;
  width: 140px; height: 140px;
  background: var(--grad-soft);
  filter: blur(40px);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}
.step-num {
  display: inline-block;
  font-weight: 800;
  color: var(--text);
  background: var(--grad-primary);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  box-shadow: var(--glow-primary);
  position: relative;
  z-index: 1;
}
.steps h3 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; position: relative; z-index: 1; }
.steps p { margin: 0; color: var(--muted-strong); position: relative; z-index: 1; font-size: 0.95rem; }

/* Testimonials */
.testimonials { background: rgba(255,255,255,0.02); }
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.quote:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.quote .stars { color: var(--primary-2); letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.quote blockquote { margin: 0 0 22px; font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.quote figcaption .who { display: flex; flex-direction: column; }
.quote figcaption strong { font-weight: 700; }
.quote figcaption span { color: var(--muted); font-size: 0.88rem; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item[open] { border-color: var(--border-strong); background: var(--surface-strong); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--text); border-color: var(--text); }
.faq-item p { margin: 0; padding: 0 24px 24px; color: var(--muted-strong); }

/* CTA / Download */
.cta { padding: 80px 0 100px; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(600px 240px at 0% 0%, rgba(204,92,27,0.55), transparent 60%),
    radial-gradient(500px 240px at 100% 100%, rgba(232,122,61,0.4), transparent 60%),
    linear-gradient(160deg, #122152, #07112e);
  padding: 56px;
  border-radius: 32px;
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
}
.cta-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.04));
  pointer-events: none;
}
.cta h2 { margin: 0 0 10px; font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 800; letter-spacing: -0.02em; }
.cta p { margin: 0; color: var(--muted-strong); max-width: 520px; }
.cta-actions { display: flex; gap: 12px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-inner { align-items: center; }

/* App store badges */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.25s ease;
  min-width: 180px;
}
.app-badge:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.4); background: #111; }
.app-badge svg { flex-shrink: 0; }
.app-badge-copy { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-badge-copy small { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 500; letter-spacing: 0.04em; }
.app-badge-copy strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
.app-badge-disabled {
  cursor: not-allowed;
  opacity: 0.85;
  background: #0a0a0a;
  position: relative;
}
.app-badge-disabled:hover { transform: none; background: #0a0a0a; border-color: rgba(255,255,255,0.18); }
.app-badge-disabled::after {
  content: "Soon";
  position: absolute;
  top: -8px; right: -6px;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(204, 92, 27, 0.45);
}

/* Staggered download badges layout */
.cta-actions-stagger {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.cta-actions-stagger .app-badge {
  min-width: 220px;
  transition: transform 0.25s ease, border-color 0.2s ease, background 0.25s ease;
}
.cta-actions-stagger .app-badge:nth-child(1) { transform: translateX(0); }
.cta-actions-stagger .app-badge:nth-child(2) { transform: translateX(28px); }
.cta-actions-stagger .app-badge:nth-child(3) { transform: translateX(56px); }
.cta-actions-stagger .app-badge:nth-child(1):hover { transform: translateX(0) translateY(-3px); }
.cta-actions-stagger .app-badge:nth-child(2):hover { transform: translateX(28px) translateY(-3px); }
.cta-actions-stagger .app-badge:nth-child(3):hover { transform: translateX(56px) translateY(-3px); }
.cta-actions-stagger .app-badge-disabled:hover { transform: translateX(0); }

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(1100px 360px at 12% 0%, rgba(60, 162, 250, 0.12), transparent 60%),
    radial-gradient(900px 320px at 88% 0%, rgba(255, 122, 24, 0.08), transparent 60%),
    #04081c;
  color: var(--muted-strong);
  padding: 88px 0 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 162, 250, 0.5), transparent);
  pointer-events: none;
}
.site-footer .logo, .site-footer h4, .site-footer a { color: #fff; }
.site-footer .logo { gap: 14px; }
.site-footer .logo-text { font-size: 1.18rem; letter-spacing: -0.01em; }
.site-footer .logo-mark { width: 44px; height: 44px; border-radius: 13px; }
.site-footer .logo-mark img { width: 44px; height: 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-grid > div { min-width: 0; }
.footer-grid h4 {
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.footer-grid > div > a:not(.logo) {
  display: block;
  padding: 6px 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-grid > div > a:not(.logo):hover { color: #fff; transform: translateX(2px); }
.footer-tag {
  color: var(--muted);
  margin: 16px 0 22px;
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
}
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a, .socials .social-soon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  color: #fff;
  border-color: rgba(60, 162, 250, 0.55);
  background: rgba(60, 162, 250, 0.1);
  transform: translateY(-2px);
}
.socials .social-soon {
  color: var(--muted);
  border-style: dashed;
  cursor: not-allowed;
  opacity: 0.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */

/* Laptops & smaller desktops (≈ 1280px and below) */
@media (max-width: 1280px) {
  :root { --container: 1100px; }
  .hero { padding: 80px 0 72px; }
  .hero-grid { gap: 48px; }
  .nav-links { gap: 24px; }
  .cta-actions-stagger .app-badge:nth-child(2) { transform: translateX(20px); }
  .cta-actions-stagger .app-badge:nth-child(3) { transform: translateX(40px); }
  .cta-actions-stagger .app-badge:nth-child(2):hover { transform: translateX(20px) translateY(-3px); }
  .cta-actions-stagger .app-badge:nth-child(3):hover { transform: translateX(40px) translateY(-3px); }
}

@media (max-width: 1100px) {
  .steps-5 { grid-template-columns: repeat(3, 1fr); }
  .nav { gap: 16px; }
  .nav-links { gap: 20px; }
  .hero-grid { grid-template-columns: 1fr 0.85fr; gap: 40px; }
  .card { width: 300px; }
  .card-2 { width: 250px; }
}

/* Small laptops / large tablets */
@media (max-width: 1020px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 88px 0; }
  .cta { padding: 72px 0 88px; }
  .cta-inner { padding: 48px; }
}

/* Tablets (portrait) */
@media (max-width: 960px) {
  .hero { padding: 64px 0 56px; }
  .hero-grid, .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-art {
    min-height: 420px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .card:not(.card-2) { top: 30px; right: 0; }
  .card-2 { bottom: 20px; left: 0; }
  .grid-3, .steps, .steps-5 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { padding: 40px; }
  .cta-actions-stagger { justify-self: stretch; }
  .lead { max-width: none; }
  .section-head { margin-bottom: 44px; }
}

/* Mobile (large) */
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav { height: 64px; gap: 12px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(10, 19, 48, 0.96);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
  }
  .logo-text { font-size: 0.98rem; }
  .logo-mark { width: 36px; height: 36px; }
  .logo-mark img { width: 36px; height: 36px; }

  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .hero { padding: 40px 0 48px; }
  .hero-grid { gap: 32px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .lead { font-size: 1.02rem; }

  .grid-3, .steps, .steps-5, .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature, .steps li, .quote { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .site-footer { padding: 64px 0 28px; }
  .site-footer .logo-mark { width: 40px; height: 40px; }
  .site-footer .logo-mark img { width: 40px; height: 40px; }
  .site-footer .logo-text { font-size: 1.08rem; }

  .cta { padding: 56px 0 72px; }
  .cta-inner { padding: 32px 24px; border-radius: 24px; }
  .cta-actions { flex-wrap: wrap; }

  .hero-art { min-height: 380px; max-width: 460px; }
  .card { padding: 20px; }
  .card:not(.card-2) { width: min(280px, 88%); top: 20px; right: 0; }
  .card-2 { width: min(240px, 76%); left: 0; bottom: 10px; }

  .trust { gap: 24px; }
  .trust strong { font-size: 1.2rem; }

  .marquee { padding: 20px 0; }
  .marquee-track { gap: 40px; }
  .marquee-track span { font-size: 0.88rem; }

  .faq-item summary { padding: 18px 20px; font-size: 0.98rem; }
  .faq-item p { padding: 0 20px 20px; }

  .app-badge { min-width: 0; flex: 1; padding: 12px 18px; }
  .app-badge-copy strong { font-size: 1rem; }
  .cta-actions-stagger .app-badge,
  .cta-actions-stagger .app-badge:nth-child(1),
  .cta-actions-stagger .app-badge:nth-child(2),
  .cta-actions-stagger .app-badge:nth-child(3) { transform: none; min-width: 0; }
  .cta-actions-stagger .app-badge:nth-child(1):hover,
  .cta-actions-stagger .app-badge:nth-child(2):hover,
  .cta-actions-stagger .app-badge:nth-child(3):hover { transform: translateY(-2px); }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { height: 60px; }
  .nav-links.open { top: 60px; padding: 20px; }
  .logo-text { font-size: 0.92rem; }
  .btn { padding: 12px 18px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero h1 { font-size: clamp(1.95rem, 8vw, 2.4rem); }
  .lead { font-size: 0.98rem; }
  .eyebrow { font-size: 0.72rem; padding: 6px 12px; }
  section { padding: 52px 0; }
  .cta-inner { padding: 28px 20px; }

  .trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: left;
  }
  .trust strong { font-size: 1.05rem; }
  .trust span { font-size: 0.78rem; }

  .hero-art { min-height: 340px; }
  .card:not(.card-2) { width: min(260px, 86%); }
  .card-2 { width: min(220px, 72%); }

  .feature, .steps li, .quote { padding: 22px; border-radius: var(--radius-lg); }
  .feature h3, .steps h3 { font-size: 1.05rem; }
  .quote blockquote { font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid > div:first-child { grid-column: auto; }

  .app-badge { padding: 10px 16px; gap: 10px; }
  .app-badge-copy strong { font-size: 0.95rem; }
  .app-badge-copy small { font-size: 0.65rem; }

  .marquee { padding: 16px 0; }
  .marquee-track { gap: 28px; }
}

/* Extra small (older phones, narrow viewports) */
@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .hero h1 { font-size: 1.85rem; }
  .section-head h2 { font-size: 1.6rem; }
  .trust { grid-template-columns: 1fr; }
  .trust strong { font-size: 1.15rem; }
  .hero-art { min-height: 300px; }
  .card:not(.card-2) { width: 86%; }
  .card-2 { width: 72%; }
}

/* Short landscape phones — keep hero from feeling cramped */
@media (max-height: 520px) and (orientation: landscape) and (max-width: 960px) {
  .hero { padding: 32px 0 40px; }
  .hero-art { min-height: 320px; }
  section { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .card-float, .marquee-track, .eyebrow .pulse { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Legal pages */
.legal {
  padding: 80px 0 96px;
}
.legal-hero {
  padding: 56px 0 32px;
  background:
    radial-gradient(900px 420px at 80% -20%, rgba(204, 92, 27, 0.18), transparent 60%),
    radial-gradient(700px 360px at -10% -10%, rgba(232, 122, 61, 0.10), transparent 60%);
  border-bottom: 1px solid var(--border);
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 800;
}
.legal-hero .updated {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.legal-toc {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  backdrop-filter: blur(10px);
}
.legal-toc h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 700;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.legal-toc li {
  counter-increment: toc;
  margin-bottom: 4px;
}
.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--muted-strong);
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}
.legal-toc a:hover {
  background: var(--surface-strong);
  color: var(--text);
}
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.12rem;
  margin: 26px 0 10px;
  font-weight: 600;
  color: var(--muted-strong);
}
.legal-content p {
  color: var(--muted-strong);
  margin: 0 0 16px;
  line-height: 1.75;
}
.legal-content ul {
  padding-left: 0;
  margin: 0 0 18px;
  list-style: none;
}
.legal-content ul li {
  position: relative;
  padding-left: 26px;
  color: var(--muted-strong);
  margin-bottom: 10px;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
}
.legal-content strong { color: var(--text); }
.legal-content a {
  color: var(--primary-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content a:hover { color: var(--primary); }
.legal-content .contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 12px 0 16px;
}
.legal-content .contact-block p { margin: 0 0 6px; }
.legal-content .contact-block p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .legal-toc {
    position: static;
    order: -1;
  }
  .legal-content h2 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .legal { padding: 56px 0 72px; }
  .legal-hero { padding: 40px 0 24px; }
  .legal-toc { padding: 18px; }
  .legal-content h2 { font-size: 1.2rem; margin-top: 32px; }
  .legal-content h3 { font-size: 1.02rem; }
}

/* About / Careers shared intro */
.about-intro,
.careers-intro {
  padding: 64px 0 24px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.about-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
}
.about-copy p {
  color: var(--muted-strong);
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.about-copy strong { color: var(--text); }
.about-pill-stack {
  display: grid;
  gap: 14px;
}
.about-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.about-pill:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
}
.about-pill strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-2);
  font-weight: 700;
}
.about-pill span { color: var(--muted-strong); font-size: 0.98rem; }

.about-values {
  padding: 80px 0 60px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-intro,
  .careers-intro { padding: 48px 0 16px; }
  .about-values { padding: 56px 0 40px; }
}

/* Social "coming soon" placeholder (matches .socials a) */
.socials .social-soon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  cursor: not-allowed;
  opacity: 0.55;
}
.socials .social-soon:hover {
  color: var(--muted);
  border-color: var(--border-strong);
  background: transparent;
}

/* Careers — perks reuse .why-grid; open roles styling */
.open-roles { padding: 60px 0 80px; }
.roles-list {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.role-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-strong);
  transform: translateY(-3px);
}
.role-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.role-tag {
  display: inline-block;
  background: var(--grad-soft);
  color: var(--primary-2);
  border: 1px solid rgba(204,92,27,0.4);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.role-head h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.role-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.role-body p {
  color: var(--muted-strong);
  margin: 0 0 18px;
  line-height: 1.7;
}
.role-body h4 {
  margin: 22px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.role-body ul {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
}
.role-body ul li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
  margin-bottom: 8px;
  line-height: 1.65;
  font-size: 0.97rem;
}
.role-body ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-2);
}

.roles-cta {
  margin: 44px auto 0;
  max-width: 720px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
}
.roles-cta h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.roles-cta p {
  margin: 0 0 22px;
  color: var(--muted-strong);
}

.how-to-apply { padding: 60px 0 96px; }
.how-to-apply .steps { grid-template-columns: repeat(3, 1fr); }
.how-to-apply .steps a { color: var(--primary-2); }

@media (max-width: 720px) {
  .role-card { padding: 24px; }
  .role-head { gap: 16px; }
  .role-head h3 { font-size: 1.2rem; }
  .role-head .btn { width: 100%; }
  .roles-cta { padding: 28px 22px; }
  .how-to-apply .steps { grid-template-columns: 1fr; }
}

/* FAQ page */
.faq-page { padding: 64px 0 96px; }
.faq-page-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}
.faq-toc {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  backdrop-filter: blur(10px);
}
.faq-toc h2 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 700;
}
.faq-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-toc li { margin-bottom: 4px; }
.faq-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--muted-strong);
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1.4;
}
.faq-toc a:hover {
  background: var(--surface-strong);
  color: var(--text);
}
.faq-page-content { max-width: 820px; }
.faq-page-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  scroll-margin-top: 96px;
}
.faq-page-content h2:first-child { margin-top: 0; }
.faq-page-content .faq-list { max-width: none; margin-bottom: 8px; }
.faq-page-content .faq-item p a,
.faq-page-content a {
  color: var(--primary-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-page-content .faq-item p a:hover,
.faq-page-content a:hover { color: var(--primary); }

.faq-cta {
  margin: 44px 0 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
}
.faq-cta h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.faq-cta p { margin: 0 0 22px; color: var(--muted-strong); }
.faq-cta .btn { text-decoration: none; }

@media (max-width: 900px) {
  .faq-page-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .faq-toc {
    position: static;
    order: -1;
  }
  .faq-page-content h2 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .faq-page { padding: 48px 0 72px; }
  .faq-page-content h2 { font-size: 1.15rem; margin-top: 32px; }
  .faq-cta { padding: 28px 22px; }
}
