/* ============================================================
   SAFEROUTE UAE — NEO-BRUTALIST WAR ROOM
   Display: Barlow Condensed 900  |  Data: IBM Plex Mono
            Body/copy: DM Sans
   Palette: #080808 / Signal Red #FF1E1E / Amber #FFB800
            Phosphor Green #00FF87 / Gold #C9A84C
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --black:    #080808;
  --paper:    #0d0d0d;
  --card:     #111111;
  --raised:   #161616;
  --border:   #222222;
  --border2:  #1a1a1a;
  --red:      #FF1E1E;
  --red-dim:  rgba(255,30,30,0.12);
  --amber:    #FFB800;
  --amber-dim:rgba(255,184,0,0.12);
  --gold:     #C9A84C;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.35);
  --sans:     'DM Sans', system-ui, sans-serif;
  --green:    #00FF87;
  --blue:     #00AAFF;
  --white:    #EEEAE0;
  --muted:    #555555;
  --muted2:   #2e2e2e;
  --display:  'Barlow Condensed', sans-serif;
  --mono:     'IBM Plex Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: crosshair;
}

/* Film grain noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: overlay;
}

a { text-decoration: none; color: inherit; }


/* ── HEADER ───────────────────────────────────────────────── */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 58px;
}

.logo { display: flex; align-items: center; gap: 14px; }

.logo-mark {
  font-size: 1.35rem;
  color: var(--red);
  line-height: 1;
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  line-height: 1;
}

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

nav a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.2s;
}

nav a:hover { color: var(--white); }

.nav-cta {
  border: 1px solid var(--red) !important;
  color: var(--red) !important;
  padding: 7px 16px;
  font-size: 0.68rem !important;
  transition: all 0.15s !important;
}

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


/* ── HERO ─────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

/* Red corona top-left */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(255,30,30,0.06) 0%, transparent 68%);
  pointer-events: none;
}

.hero-scanlines { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 64px;
  border-right: 1px solid var(--border);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,30,30,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(255,30,30,0); }
}

.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.88;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-headline .line1 {
  display: block;
  font-size: clamp(5.5rem, 9.5vw, 9.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
  animation: glitch 9s infinite;
}

.hero-headline .line2 {
  display: block;
  font-size: clamp(5.5rem, 9.5vw, 9.5rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-headline .line2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}

@keyframes glitch {
  0%, 98%, 100% { transform: none; text-shadow: none; }
  99% { transform: skew(-0.4deg); text-shadow: -2px 0 rgba(255,30,30,0.4); }
}

.hero-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #777;
  margin-bottom: 40px;
  border-left: 2px solid var(--border);
  padding-left: 16px;
  letter-spacing: 0.01em;
}

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

.cta-primary,
.cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}

.cta-primary {
  background: var(--red);
  color: #fff;
}

.cta-primary:hover {
  background: #fff;
  color: var(--red);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.cta-secondary:hover { border-color: var(--white); }

.cta-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.cta-primary .cta-sub { color: rgba(255,255,255,0.65); }

.hero-data {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
}

.data-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
}

.data-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.data-num {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.data-label {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 5px;
  text-transform: uppercase;
}


/* ── HERO RADAR ───────────────────────────────────────────── */

.hero-radar {
  position: relative;
  z-index: 2;
  padding: 60px 60px 60px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.radar-title {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--green);
}

.radar-blink {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--green);
  animation: blink 1.6s step-start infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.15; }
}

.radar-container {
  position: relative;
  background: #020e06;
  border: 1px solid rgba(0,255,135,0.2);
  overflow: hidden;
}

.radar-container svg { display: block; width: 100%; }

/* Radar sweep animation */
.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg at 50% 50%,
    rgba(0,255,135,0.10) 0deg,
    transparent 55deg
  );
  animation: sweep 4s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes sweep {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.radar-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.22) 2px,
    rgba(0,0,0,0.22) 3px
  );
  pointer-events: none;
}

.pulse-uae { animation: pulseUae 1.6s ease-out infinite; }

@keyframes pulseUae {
  0%   { r: 5;  opacity: 1; }
  100% { r: 18; opacity: 0; }
}

.route-line { animation: routeDash 2s linear infinite; }

@keyframes routeDash {
  to { stroke-dashoffset: -16; }
}

.radar-footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}


/* ── SERVICES ─────────────────────────────────────────────── */

.services {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.services-header {
  padding: 72px 64px 56px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 40px;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  flex-shrink: 0;
}

.services-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.services-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 620px;
}

.op-card {
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.op-immediate {
  border-right: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  position: relative;
}

.op-immediate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--gold-dim) 0%, transparent 100%);
  pointer-events: none;
}

.op-immediate:hover { background: #0f0d08; }
.op-convoy:hover    { background: #0d0c08; }

.op-type-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 16px;
}

.op-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 4px 12px;
  align-self: flex-start;
  margin-bottom: 28px;
}

.op-tag-red   { background: var(--gold-dim);   color: var(--gold);   border: 1px solid var(--gold-border); letter-spacing: 0.2em; }
.op-tag-amber { background: var(--amber-dim); color: var(--amber); border: 1px solid var(--amber); }

.op-watermark {
  position: absolute;
  top: 36px;
  right: 36px;
  font-size: 9rem;
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.op-title {
  font-family: var(--display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.op-desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #777;
  margin-bottom: 32px;
  max-width: 420px;
}

.op-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.op-features li {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
  padding: 11px 0;
  border-bottom: 1px solid var(--border2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.op-features li::before {
  content: '—';
  color: var(--muted2);
  flex-shrink: 0;
}

.op-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.op-from { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--muted); }
.op-per  { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--muted); }

.op-amount {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.op-payment-note {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green);
  border: 1px solid rgba(0,255,135,0.3);
  background: rgba(0,255,135,0.07);
  padding: 2px 9px;
  flex-shrink: 0;
}

.op-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  margin-bottom: 20px;
}

.op-btn-red   { background: var(--gold); color: var(--black); letter-spacing: 0.1em; }
.op-btn-amber { background: var(--amber); color: var(--black); }

.op-btn-red:hover   { background: #fff; color: var(--black); }
.op-btn-amber:hover { background: #fff; color: var(--black); }

.op-avail {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}

.avail-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avail-red   { background: var(--gold); animation: pulseDot 1.4s ease-in-out infinite; }
.avail-amber { background: var(--amber); }

.op-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.or-text {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--muted);
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
}


/* ── ROUTES ───────────────────────────────────────────────── */

.routes {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.routes-header {
  padding: 64px 64px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.routes-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  flex: 1;
}

.routes-updated {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--green);
}

.routes-table { padding: 0 64px 64px; }

.routes-thead {
  display: grid;
  grid-template-columns: 56px 1fr 100px 100px 110px;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 2px solid var(--border);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.route-row {
  display: grid;
  grid-template-columns: 56px 1fr 100px 100px 110px;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border2);
  align-items: center;
  transition: all 0.15s;
}

.route-row:hover {
  background: var(--raised);
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 -16px;
}

.route-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--muted);
  line-height: 1;
}

.route-path {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.r-arrow { color: var(--muted); }

.route-mode {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.route-eta {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.route-status {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  display: inline-block;
}

.route-status.open    { background: rgba(0,255,135,0.08); color: var(--green); border: 1px solid rgba(0,255,135,0.28); }
.route-status.limited { background: rgba(255,184,0,0.08); color: var(--amber); border: 1px solid rgba(255,184,0,0.28); }


/* ── CONTACT ─────────────────────────────────────────────── */

.contact-section {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-left {
  padding: 80px 64px;
  border-right: 1px solid var(--border);
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 20px 0 24px;
}

.contact-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: #777;
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-lines { display: flex; flex-direction: column; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border2);
  transition: padding-left 0.2s;
  cursor: pointer;
}

.contact-line:hover { padding-left: 10px; }

.cl-icon { font-size: 1.3rem; flex-shrink: 0; width: 36px; text-align: center; }

.cl-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 4px;
}

.cl-value {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.cl-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 1.2rem;
  transition: transform 0.2s, color 0.2s;
}

.contact-line:hover .cl-arrow { transform: translateX(5px); color: var(--white); }

.contact-right { padding: 80px 64px; }

.form-header { margin-bottom: 32px; }

.form-title {
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.form-note {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.rapid-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.rapid-form input,
.rapid-form select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  text-transform: uppercase;
  border-radius: 0;
  -webkit-appearance: none;
}

.rapid-form input::placeholder { color: var(--muted); letter-spacing: 0.12em; }
.rapid-form select option { background: var(--paper); text-transform: none; }

.rapid-form input:focus,
.rapid-form select:focus {
  border-color: var(--red);
  background: rgba(255,30,30,0.04);
}

.form-submit {
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: all 0.15s;
  margin-top: 6px;
  border-radius: 0;
}

.form-submit:hover { background: #fff; color: var(--red); }


/* ── FAQ ──────────────────────────────────────────────────── */

.faq {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.faq-header {
  padding: 64px 64px 40px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 32px;
}

.faq-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
}

.faq-list { padding: 0 64px 64px; }

.faq-item {
  border-bottom: 1px solid var(--border2);
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.faq-item:hover .faq-q,
.faq-item.open  .faq-q { color: var(--red); }

.faq-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  transition: transform 0.3s, color 0.2s;
  font-family: var(--mono);
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--red); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: #777;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 0 24px;
}


/* ── FOOTER ───────────────────────────────────────────────── */

footer {
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 40px 64px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-mark  { font-size: 1.2rem; color: var(--red); }

.footer-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--white);
}

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

.footer-links a {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.2s;
}

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

.footer-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-note {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #2a2a2a;
}


/* ── MODAL ────────────────────────────────────────────────── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: modalIn 0.22s ease;
  border-radius: 0;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: var(--mono);
  border-radius: 0;
}

.modal-close:hover { border-color: var(--red); color: var(--red); }

.modal h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.modal p {
  font-family: var(--mono);
  font-size: 0.74rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}


/* ── TOAST ────────────────────────────────────────────────── */

.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #080808;
  border: 1px solid var(--green);
  color: var(--white);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 380px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.toast.show { transform: translateY(0); opacity: 1; }

.toast-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}


/* ── SCROLL ENTRANCE ──────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── RESPONSIVE ───────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 48px; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-radar   { padding: 48px; }

  .services-split { grid-template-columns: 1fr; }
  .op-card { padding: 40px; }
  .op-immediate { border-right: none; border-bottom: 1px solid var(--border); }
  .op-divider { display: none; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-left  { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  header { padding: 0 20px; }
  nav a:not(.nav-cta) { display: none; }
  nav { gap: 16px; }

  .hero-content { padding: 40px 24px; }
  .hero-headline .line1,
  .hero-headline .line2 { font-size: clamp(4rem, 16vw, 7rem); }
  .hero-data { flex-wrap: wrap; }
  .data-item  { min-width: 50%; }
  .data-divider { display: none; }
  .hero-radar { padding: 32px 24px; }

  .services-header   { padding: 40px 24px 32px; flex-direction: column; gap: 12px; }
  .op-card           { padding: 32px 24px; }
  .op-watermark      { font-size: 6rem; }

  .routes-header { padding: 40px 24px 28px; }
  .routes-table  { padding: 0 24px 40px; }
  .routes-thead  { display: none; }
  .route-row     { grid-template-columns: 44px 1fr auto; gap: 12px; }
  .route-mode, .route-eta { display: none; }

  .contact-left, .contact-right { padding: 40px 24px; }
  .field-row { grid-template-columns: 1fr; }

  .faq-header { padding: 40px 24px 28px; flex-direction: column; gap: 10px; }
  .faq-list   { padding: 0 24px 40px; }
  .faq-q      { font-size: 1.1rem; }

  footer              { padding: 32px 24px; }
  .footer-top         { flex-direction: column; align-items: flex-start; gap: 16px; }

  .hero-actions       { flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; }

  .situation-bar { padding: 0 24px; gap: 12px; flex-wrap: wrap; }
  .situation-status { display: none; }
}


/* ── SITUATION BAR ──────────────────────────────────────── */
.situation-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  background: var(--black);
}

.situation-label {
  font: 600 0.58rem var(--mono);
  letter-spacing: 0.14em;
  color: #444;
  white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid var(--border);
  margin-right: 4px;
}

.situation-tabs {
  display: flex;
  gap: 0;
  flex: 1;
}

.sit-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #555;
  font: 700 0.68rem var(--mono);
  letter-spacing: 0.14em;
  padding: 14px 22px;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.sit-tab:hover { color: var(--white); }

.sit-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.situation-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 600 0.58rem var(--mono);
  letter-spacing: 0.12em;
  color: #444;
  white-space: nowrap;
}

.route-mode[data-mode="SEA"],
.route-mode.sea { color: var(--blue); }
