:root {
  --bg: #0b0b0d;
  --bg-elevated: #121216;
  --surface: #1a1a20;
  --surface-2: #22222a;
  --red: #e63946;
  --red-glow: #ff6b6b;
  --red-dim: rgba(230, 57, 70, 0.14);
  --text: #f3f3f5;
  --muted: #9a9aa8;
  --border: rgba(255, 255, 255, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--red-glow); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.network-bg {
  position: fixed;
  inset: 0;
  opacity: 0.18;
  background:
    radial-gradient(circle at 18% 40%, var(--red) 0%, transparent 28%),
    radial-gradient(circle at 82% 18%, #ff6b6b 0%, transparent 22%),
    radial-gradient(circle at 62% 85%, #c1121f 0%, transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.lines {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23e63946' stroke-width='0.3' opacity='0.15'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover { text-decoration: none; }
.logo em { color: var(--red); font-style: normal; }

.logo .dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.35rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover { opacity: 0.92; text-decoration: none !important; }

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-glow);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero h1 span { color: var(--red); }

.hero-lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-trust strong { color: var(--text); font-weight: 600; }

.hero-panel {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.hero-panel h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-panel .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.hero-panel .row:last-child { border-bottom: 0; }
.hero-panel .row span { color: var(--muted); }
.hero-panel .row strong { color: var(--red-glow); font-weight: 600; }

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.section-head p { color: var(--muted); }

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-glow));
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.card p, .card li {
  color: var(--muted);
  font-size: 0.94rem;
}

.card ul {
  margin-top: 0.9rem;
  padding-left: 1.05rem;
  list-style: disc;
}

.card ul li { margin-bottom: 0.35rem; }

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.metric {
  background: var(--surface);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.35rem;
}

.metric strong {
  display: block;
  font-size: 1.55rem;
  color: var(--red-glow);
  line-height: 1.2;
}

.metric span {
  font-size: 0.85rem;
  color: var(--muted);
}

.band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
  text-align: center;
}

.process-step strong {
  display: block;
  color: var(--red-glow);
  margin-bottom: 0.3rem;
}

.process-step span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Company */
.company-bottom {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}

.company-card {
  background: var(--surface);
  border: 1px solid rgba(230, 57, 70, 0.25);
  border-radius: 14px;
  padding: 1.75rem;
}

.company-card-home {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.company-card-home .company-addresses {
  text-align: left;
}

.company-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.company-name,
.company-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red-glow);
  margin-bottom: 0.95rem;
  letter-spacing: -0.02em;
}

.company-card-home .company-meta {
  justify-content: center;
}

.company-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.company-meta strong { color: var(--text); }

.company-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

.company-addresses h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  margin-bottom: 0.45rem;
}

.company-addresses p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Page header */
.page-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

/* Content / legal */
.content {
  max-width: 760px;
  padding-bottom: 4rem;
}

.content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.7rem;
}

.content p, .content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.content ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.content .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.contact-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.contact-box p, .contact-box li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.contact-box a { font-weight: 500; }

/* CTA strip */
.cta-strip {
  background: var(--red-dim);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1rem 0 3.5rem;
}

.cta-strip h2 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.cta-strip p { color: var(--muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer p, .footer a {
  color: var(--muted);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
  text-decoration: none;
}

.footer a:hover { color: var(--text); }

.footer-brand {
  margin-top: 0.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.08);
  text-align: center;
}

.footer-brand strong {
  display: block;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom {
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero,
  .contact-grid,
  .grid-3,
  .metrics,
  .process-flow,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-flow { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .hero,
  .grid-2,
  .grid-3,
  .metrics,
  .process-flow,
  .company-addresses,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { width: 100%; }
}
