/* ─── Design Tokens ──────────────────────────────────────────────────── */
:root {
  --navy-deep:    #0d1b2e;
  --navy-surface: #132238;
  --navy-card:    #1a2e48;
  --navy-border:  #1f3556;
  --red:          #cc1b1b;
  --red-hover:    #e52020;
  --text-primary: #f0f4f8;
  --text-muted:   #8a9bb0;
  --text-dim:     #5a6f85;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.25s ease;

  --section-pad: clamp(64px, 10vw, 120px);
  --container: 1140px;
}

/* ─── Reset ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ─── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  background: rgba(13, 27, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 36px;
  height: 40px;
  flex-shrink: 0;
}

.nav-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.2;
}

.nav-name span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--red);
  color: var(--text-primary) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--red-hover) !important; }

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(204, 27, 27, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(19, 34, 56, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(140px, 18vw, 200px);
  margin: 0 auto 32px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(204, 27, 27, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--navy-border);
}

.btn-secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-dim);
  transform: translateY(-1px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg { opacity: 0.5; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Section Base ───────────────────────────────────────────────────── */
section { padding: var(--section-pad) 0; }

.divider {
  height: 1px;
  background: var(--navy-border);
  margin: 0;
}

/* ─── About ──────────────────────────────────────────────────────────── */
.about { background: var(--navy-surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 28px;
  max-width: 58ch;
}

.about-body p + p { margin-top: 20px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}

.stat {
  background: var(--navy-card);
  padding: 28px 24px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Team Cards */
.team-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color var(--transition);
}

.team-card:hover { border-color: var(--red); }

.team-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.team-info { min-width: 0; }

.team-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ─── Strategy ───────────────────────────────────────────────────────── */
.strategy { background: var(--navy-deep); }

.strategy-header {
  margin-bottom: 56px;
}

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

.strategy-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.strategy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--transition);
}

.strategy-card:hover {
  border-color: rgba(204, 27, 27, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.strategy-card:hover::after { opacity: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(204, 27, 27, 0.12);
  border: 1px solid rgba(204, 27, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--red);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.card-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Contact ────────────────────────────────────────────────────────── */
.contact { background: var(--navy-surface); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(204, 27, 27, 0.12);
  border: 1px solid rgba(204, 27, 27, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--text-primary);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--red); }

/* Contact form panel */
.contact-form-panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 40px;
}

.form-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--navy-surface);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9375rem;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-dim); }

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 27, 27, 0.12);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 16px;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 48px 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo { width: 28px; height: 32px; }

.footer-name {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.6;
  text-align: right;
}

/* ─── Logo PNG treatment (white-background PNG on dark site) ────────── */
/*
  No blend mode works cleanly for a red+white PNG on dark — multiply darkens
  the red, screen keeps white bright. Instead we lean into the white as a
  contained emblem/badge shape with border-radius and a tight clip.
*/
.nav-logo {
  border-radius: 6px;
  object-fit: contain;
}

.hero-logo {
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 40px rgba(0,0,0,0.4);
  object-fit: contain;
}

.footer-logo {
  border-radius: 4px;
  object-fit: contain;
}

/* ─── Reveal Animation ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Mobile Nav Drawer ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    padding: 14px 32px !important;
    font-size: 1rem !important;
  }

  .nav-hamburger { display: flex; z-index: 101; }

  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strategy-cards { grid-template-columns: 1fr; }

  .about-stats { margin-top: 24px; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; max-width: 100%; }
}

@media (max-width: 1024px) {
  .strategy-cards { grid-template-columns: 1fr 1fr; }
}
