/* ============================================================
   Eagle Tech — Design Tokens
   Palette: deep navy dusk + electric blue + cyan glow
   Type: Space Grotesk (display) / Inter (body) / IBM Plex Mono (data)
   Signature: the "ascent line" — a rising path motif that ties
   the mark to section dividers, stat callouts and the
   process timeline.
   ============================================================ */

:root {
  --bg: #0A0F1C;
  --bg-alt: #0D1426;
  --surface: #121B33;
  --surface-raised: #182444;
  --border: #26355C;
  --border-soft: #1E2C4E;

  --orange: #2E6BFF;
  --orange-bright: #4E8CFF;
  --amber: #37D6D6;

  --text: #EEF2FA;
  --text-dim: #A9B4CC;
  --text-faint: #6B7796;

  --success: #7FBF7F;

  --font-display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-glow: 0 0 0 1px rgba(46,107,255,0.18), 0 20px 60px -20px rgba(46,107,255,0.4);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--orange-bright);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(100deg, var(--orange) 0%, var(--orange-bright) 100%);
  color: #081020;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 16, 14, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo-link img { height: 38px; width: auto; }
nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.cart-link { position: relative; display: inline-flex; }
.cart-count {
  position: absolute;
  top: -8px; right: -10px;
  background: var(--orange);
  color: #081020;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.6rem; cursor: pointer; }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.92rem; font-weight: 500;
  color: var(--text-dim); padding: 0;
  transition: color 0.15s ease;
}
.nav-dropdown-trigger .caret { font-size: 0.7rem; transition: transform 0.15s ease; }
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:focus-visible { color: var(--text); }
.nav-dropdown:hover .caret, .nav-dropdown.open .caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(18, 16, 14, 0.98);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--orange-bright); }

@media (max-width: 860px) {
  nav.main-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; padding: 30px 28px; gap: 22px; transform: translateX(100%); transition: transform 0.25s ease; overflow-y: auto; }
  nav.main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: none; padding: 4px 0 0 12px; display: none; min-width: 0; }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-trigger { width: 100%; justify-content: space-between; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,90,31,0.16), transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 840px; margin: 0 auto; }
.hero .badge-row {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  padding: 7px 16px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-dim);
  margin-bottom: 26px;
}
.hero .badge-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.hero p.lead { font-size: 1.15rem; max-width: 620px; margin: 22px auto 34px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.hero-perks {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-faint);
}
.hero-perks span { display: inline-flex; align-items: center; gap: 6px; }
.hero-perks span::before { content: '✓'; color: var(--success); }

/* ascent line svg strip */
.ascent-strip { margin-top: 60px; }
.ascent-strip svg { width: 100%; height: auto; display: block; }

/* ---------- Stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.stats-bar .stat {
  padding: 30px 20px;
  text-align: center;
  border-left: 1px solid var(--border-soft);
}
.stats-bar .stat:first-child { border-left: none; }
.stats-bar .stat .num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange-bright);
  display: block;
}
.stats-bar .stat .label { font-size: 0.8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; }

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .stat:nth-child(3) { border-left: none; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(255,90,31,0.4); transform: translateY(-3px); }
.card .icon-tile {
  width: 46px; height: 46px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,90,31,0.18), rgba(255,184,77,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.card .price-tag { font-family: var(--font-mono); font-size: 0.85rem; color: var(--amber); margin-top: 14px; display: block; }
.card .card-link { margin-top: 10px; display: inline-flex; color: var(--orange-bright); font-weight: 600; font-size: 0.9rem; }

/* ---------- Why us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 8px 4px; }
.why-card .icon-tile { margin-bottom: 16px; }

/* ---------- Process timeline (ascent path) ---------- */
.ascent-path { position: relative; }
.ascent-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative;
}
.ascent-steps::before {
  content: '';
  position: absolute; top: 22px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 16px);
  opacity: 0.5;
}
.step { position: relative; }
.step .step-marker {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--orange);
  color: var(--orange-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.95rem;
  margin-bottom: 20px; position: relative; z-index: 2;
}
@media (max-width: 800px) {
  .ascent-steps { grid-template-columns: 1fr; }
  .ascent-steps::before { display: none; }
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 26px; }
.testi-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; }
.testi-card .quote { font-size: 0.95rem; color: var(--text); }
.testi-card .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testi-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 0.8rem; color: #081020;
}
.testi-card .who .name { font-weight: 600; font-size: 0.88rem; }
.testi-card .who .role { font-size: 0.78rem; color: var(--text-faint); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(255,90,31,0.25), transparent 60%);
  pointer-events: none;
}
.cta-band .hero-perks { margin-top: 24px; }

/* ---------- Footer ---------- */
footer.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 28px;
  background: var(--bg-alt);
}
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-dim);
}
.footer-social a:hover { border-color: var(--orange-bright); color: var(--orange-bright); }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--text-dim); }
.footer-col a:hover { color: var(--orange-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid var(--border-soft);
  font-size: 0.78rem; color: var(--text-faint);
}
.payment-icons { display: flex; align-items: center; gap: 8px; }
.payment-icons img { display: block; border-radius: 4px; }

/* ---------- Pricing page ---------- */
.plan-toggle {
  display: inline-flex; background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 999px; padding: 4px; margin: 0 auto 46px; gap: 4px;
}
.plan-toggle button {
  border: none; background: transparent; color: var(--text-dim);
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  padding: 9px 20px; border-radius: 999px; cursor: pointer; transition: all 0.2s ease;
}
.plan-toggle button.active { background: var(--orange); color: #081020; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.plan-card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 34px; display: flex; flex-direction: column;
}
.plan-card.featured { border-color: var(--orange); background: var(--surface-raised); position: relative; box-shadow: var(--shadow-glow); }
.plan-card.featured::before {
  content: 'MOST POPULAR'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #081020; font-family: var(--font-mono); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 999px;
}
.plan-card .plan-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.plan-card .plan-desc { font-size: 0.85rem; margin-bottom: 20px; }
.plan-card .plan-price { font-family: var(--font-mono); font-size: 2.4rem; font-weight: 700; color: var(--orange-bright); }
.plan-card .plan-price small { font-size: 0.95rem; color: var(--text-faint); font-weight: 400; }
.plan-card ul.plan-features { list-style: none; padding: 0; margin: 22px 0 26px; flex-grow: 1; }
.plan-card ul.plan-features li { padding: 8px 0; border-top: 1px solid var(--border-soft); font-size: 0.9rem; display: flex; gap: 10px; }
.plan-card ul.plan-features li:first-child { border-top: none; }
.plan-card ul.plan-features li::before { content: '✓'; color: var(--success); font-weight: 700; }

/* compare table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: var(--radius-md); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border-soft); font-size: 0.9rem; }
table.compare th { font-family: var(--font-display); background: var(--surface); }
table.compare td:first-child, table.compare th:first-child { text-align: left; color: var(--text); font-weight: 500; }
table.compare tr:last-child td { border-bottom: none; }
table.compare .yes { color: var(--success); font-weight: 700; }
table.compare .no { color: var(--text-faint); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-family: var(--font-display); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--orange-bright); }
.faq-item[open] summary::after { content: '–'; }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 0.92rem; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 860px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-item {
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md);
  padding: 20px; margin-bottom: 14px;
}
.cart-item .thumb {
  width: 52px; height: 52px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,90,31,0.2), rgba(255,184,77,0.12));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.cart-item .name { font-weight: 600; }
.cart-item .type { font-size: 0.78rem; color: var(--text-faint); }
.cart-item .qty-box { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; }
.cart-item .qty-box button { background: none; border: none; color: var(--text-dim); width: 30px; height: 30px; cursor: pointer; font-size: 1rem; }
.cart-item .qty-box span { width: 26px; text-align: center; font-family: var(--font-mono); font-size: 0.85rem; }
.cart-item .line-price { font-family: var(--font-mono); font-weight: 700; min-width: 70px; text-align: right; }
.cart-item .remove-btn { background: none; border: none; color: var(--text-faint); cursor: pointer; font-size: 1.1rem; margin-left: 6px; }
.cart-item .remove-btn:hover { color: var(--orange-bright); }

.summary-box { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 28px; position: sticky; top: 100px; }
.summary-box .row { display: flex; justify-content: space-between; font-size: 0.92rem; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.summary-box .row.total { font-family: var(--font-mono); font-weight: 700; font-size: 1.15rem; color: var(--orange-bright); border-bottom: none; padding-top: 16px; }
.promo-row { display: flex; gap: 8px; margin: 18px 0; }
.promo-row input { flex-grow: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; color: var(--text); font-size: 0.85rem; }
.empty-cart { text-align: center; padding: 60px 20px; }
.empty-cart .icon-tile { width: 64px; height: 64px; margin: 0 auto 20px; font-size: 2rem; }

/* ---------- Legal page components ---------- */
.quick-facts { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin: 22px 0 6px; }
.quick-facts .fact {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: 999px;
  padding: 8px 18px; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-dim);
}
.toc { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 24px 28px; margin: 10px 0 44px; }
.toc h4 { margin: 0 0 14px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.toc ol { margin: 0; padding-left: 20px; columns: 2; font-size: 0.9rem; color: var(--text-dim); }
.toc ol li { margin-bottom: 8px; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

.callout-box {
  background: var(--surface-raised); border: 1px solid var(--border-soft); border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0; font-size: 0.92rem; color: var(--text-dim);
}
.callout-box strong { color: var(--text); }
.callout-box.warn { border-left-color: var(--amber); }

.subhead-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 24px 0; }
.subhead-grid .sub-card {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 18px;
}
.subhead-grid .sub-card .icon-tile { width: 34px; height: 34px; font-size: 1rem; margin-bottom: 10px; }
.subhead-grid .sub-card h5 { font-family: var(--font-display); font-size: 0.92rem; margin: 0 0 6px; }
.subhead-grid .sub-card p { font-size: 0.84rem; margin: 0; }

.data-table-wrap { overflow-x: auto; border: 1px solid var(--border-soft); border-radius: var(--radius-md); margin: 22px 0; }
table.data-table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.86rem; }
table.data-table th, table.data-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
table.data-table th { font-family: var(--font-display); background: var(--surface); font-size: 0.82rem; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table td.center, table.data-table th.center { text-align: center; }
table.data-table .yes { color: var(--success); font-weight: 700; }
table.data-table .no { color: var(--text-faint); }

/* ---------- Generic content / legal pages ---------- */
.page-hero { padding: 64px 0 40px; text-align: center; border-bottom: 1px solid var(--border-soft); }
.page-hero p.lead { max-width: 560px; margin: 14px auto 0; }
.content-wrap { max-width: 760px; margin: 0 auto; padding: 60px 28px; }
.content-wrap h2 { margin-top: 2em; font-size: 1.5rem; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap ul { color: var(--text-dim); padding-left: 20px; }
.content-wrap li { margin-bottom: 8px; }
.last-updated { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-faint); margin-bottom: 40px; text-align: center; }

/* contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .contact-layout { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 0.92rem;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-info-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 30px; }
.contact-info-card .info-row { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-info-card .info-row .icon-tile { flex-shrink: 0; width: 38px; height: 38px; font-size: 1.1rem; }
.contact-info-card .info-row h4 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-card .info-row p { margin: 0; font-size: 0.85rem; }

/* about */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { text-align: center; }
.team-card .avatar-lg {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 1.6rem; color: #081020;
}
.team-card h4 { margin-bottom: 2px; font-size: 1rem; }
.team-card .role { font-size: 0.82rem; color: var(--text-faint); }

/* security */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 700px) { .security-grid { grid-template-columns: 1fr; } }

/* badges row */
.trust-strip { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; opacity: 0.7; font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--text-faint); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
