/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e1a;
  --bg-2: #0f1525;
  --surface: #121830;
  --border: #1a2540;
  --accent: #00e5c8;
  --accent-dim: #00e5c820;
  --text: #e8edf5;
  --text-dim: #6b7a99;
  --text-mid: #9aa3b8;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}

/* dot grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, #1a2540 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

/* radial gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 0%, var(--bg) 70%);
  z-index: 1;
}

/* radar animation */
.radar-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 560px;
  height: 560px;
  z-index: 0;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--accent) 20deg,
    transparent 40deg
  );
  animation: radar-sweep 4s linear infinite;
  opacity: 0.15;
}

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

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
}
.radar-ring-1 { width: 180px; height: 180px; }
.radar-ring-2 { width: 340px; height: 340px; border-color: var(--accent); opacity: 0.06; }
.radar-ring-3 { width: 500px; height: 500px; border-color: var(--accent); opacity: 0.04; }

.radar-center-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

/* floating panels */
.hero-panels {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.panel {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 130px;
}

.panel-tl { top: 15%; left: 6%; animation: float-panel 5s ease-in-out infinite; }
.panel-tr { top: 15%; right: 6%; animation: float-panel 5s ease-in-out infinite 1.2s; }
.panel-bl { bottom: 18%; left: 6%; animation: float-panel 5s ease-in-out infinite 2.4s; }
.panel-br { bottom: 18%; right: 6%; animation: float-panel 5s ease-in-out infinite 0.6s; }

@keyframes float-panel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.panel-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.panel-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
  text-transform: uppercase;
  background: var(--accent-dim);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  font-family: var(--font-body);
}

.status-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* === SECTION COMMON === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* === OPERATIONS === */
.operations {
  padding: 100px 0;
  background: var(--bg-2);
  position: relative;
}

.operations::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.ops-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ops-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ops-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 229, 200, 0.08);
}

.ops-card:hover::before {
  opacity: 1;
}

.ops-card-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}

.ops-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ops-card-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
}

.ops-card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
}

.ops-status-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

/* === TEAMMATES === */
.teammates {
  padding: 100px 0;
  background: var(--bg);
}

.teammate-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.teammate-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color 0.3s ease;
}

.teammate-item:hover {
  border-color: #1e2e4a;
}

.teammate-avatar {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.teammate-info {
  flex: 1;
}

.teammate-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.teammate-desc {
  font-size: 13px;
  color: var(--text-dim);
}

.teammate-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 3px 10px;
  text-transform: uppercase;
}

/* === COVERAGE === */
.coverage {
  padding: 100px 0;
  background: var(--bg-2);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 768px) {
  .coverage-grid { grid-template-columns: 1fr; gap: 48px; }
}

.coverage-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.coverage-stat {}

.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

/* clock ring visualization */
.coverage-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-ring {
  position: relative;
  width: 280px;
  height: 280px;
}

.clock-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0, 229, 200, 0.06) inset;
}

.clock-ring::after {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.clock-ring-inner {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clock-center-text {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

.clock-tick {
  position: absolute;
  width: 1px;
  height: 12px;
  background: var(--border);
}
.tick-12 { top: 6px; left: 50%; transform: translateX(-50%); }
.tick-3 { top: 50%; right: 6px; transform: translateY(-50%) rotate(90deg); }
.tick-6 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.tick-9 { top: 50%; left: 6px; transform: translateY(-50%) rotate(90deg); }

.time-zone {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}
.time-zone-1 { top: 8px; right: 24px; }
.time-zone-2 { bottom: 24px; left: 8px; }
.time-zone-3 { top: 24px; left: 8px; }

/* === OUTCOMES === */
.outcomes {
  padding: 100px 0;
  background: var(--bg);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

.outcome-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
}

.outcome-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.outcome-ring svg {
  width: 100%;
  height: 100%;
}

.outcome-pct {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}

.outcome-label {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.outcomes-footer {
  text-align: center;
}

.outcomes-quote {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-mid);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  text-align: center;
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.manifesto-text {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.manifesto-tagline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

/* === FOOTER === */
.footer {
  padding: 48px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 24px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}

.footer-powered {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .panel-tl, .panel-tr, .panel-bl, .panel-br { display: none; }
  .hero-headline { font-size: 44px; }
  .ops-grid { grid-template-columns: 1fr; }
  .coverage-stats { gap: 24px; }
  .teammate-item { flex-wrap: wrap; }
}