:root {
  --bg: #050b1a;
  --bg-soft: #09142c;
  --bg-card: rgba(10, 20, 44, 0.72);
  --line: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --blue-1: #0d6efd;
  --blue-2: #1f8bff;
  --blue-3: #59b3ff;
  --pink-1: #ff3c6f;
  --pink-2: #ff5a7d;
  --red-1: #ff4d4d;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.25);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 60, 111, 0.10), transparent 22%),
    radial-gradient(circle at top left, rgba(31, 139, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #071120 0%, #040914 44%, #071120 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -120px;
  right: -100px;
  background: rgba(31, 139, 255, 0.16);
}

body::after {
  bottom: -140px;
  left: -120px;
  background: rgba(255, 60, 111, 0.12);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max-width), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 11, 26, 0.55);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand-text span {
  color: var(--muted);
  font-size: 0.83rem;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 0.96; }
.btn-primary {
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-1), var(--red-1));
  box-shadow: 0 18px 45px rgba(255, 76, 96, 0.26);
}
.btn-secondary {
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
  box-shadow: 0 18px 45px rgba(31, 139, 255, 0.24);
}

.hero { position: relative; padding: 84px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d8e9ff;
  font-size: 0.88rem;
  font-weight: 600;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-1), var(--blue-2));
}
.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #8fcbff 38%, #ff7a95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.stat {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.stat span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.signal-card {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 19, 43, 0.95), rgba(8, 17, 35, 0.82));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 24px;
}
.signal-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}
.signal-top h3 { margin: 0; font-size: 1.08rem; font-weight: 800; }
.signal-tag {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(13,110,253,0.9), rgba(255,60,111,0.9));
}
.signal-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.signal-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.signal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(13,110,253,0.2), rgba(255,60,111,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.signal-item h4 { margin: 0 0 6px; font-size: 1rem; font-weight: 700; }
.signal-item p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

.section { padding: 54px 0; }
.section-title { max-width: 780px; margin-bottom: 26px; }
.section-title .kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #8ec8ff;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 900;
}
.section-title p { margin: 0; color: var(--muted); line-height: 1.8; font-size: 1.02rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}
.glass-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}
.mission-points { display: grid; gap: 16px; margin-top: 24px; }
.mission-point { display: flex; gap: 14px; align-items: flex-start; }
.mission-point .mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(13,110,253,0.22), rgba(255,60,111,0.20));
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
}
.mission-point strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.mission-point span { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }
.highlight-box { height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.highlight-box .quote {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.45;
  font-weight: 700;
  color: #e9f4ff;
  margin: 0 0 24px;
  max-width: 470px;
}
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-card strong { display: block; font-size: 1.18rem; margin-bottom: 8px; }
.mini-card span { display: block; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.vertical-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vertical-card {
  position: relative;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(10,20,44,0.82), rgba(8,16,33,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.vertical-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(13,110,253,0.22), rgba(255,60,111,0.20));
  border: 1px solid rgba(255,255,255,0.08);
}
.vertical-card h3 { margin: 0 0 10px; font-size: 1.28rem; line-height: 1.2; }
.vertical-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.75; font-size: 0.96rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eef6ff;
}
.strength-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strength-card {
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
  box-shadow: var(--shadow-md);
}
.strength-card h3 { margin: 14px 0 10px; font-size: 1.05rem; }
.strength-card p { margin: 0; font-size: 0.93rem; line-height: 1.7; color: var(--muted); }
.cta-card {
  padding: 42px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(8,16,34,0.96), rgba(11,26,58,0.96));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
}
.cta-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}
.cta-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.cta-content p { margin: 0; color: rgba(255,255,255,0.76); line-height: 1.8; font-size: 1rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
footer { padding: 26px 0 50px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; object-fit: contain; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid, .about-grid, .cta-content { grid-template-columns: 1fr; }
  .strength-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav { flex-direction: column; align-items: flex-start; padding: 14px 0; }
  .hero { padding-top: 48px; }
  .hero-stats, .vertical-grid, .strength-grid, .mini-grid { grid-template-columns: 1fr; }
  .cta-buttons { justify-content: flex-start; }
  .glass-card, .vertical-card, .cta-card, .hero-panel { padding: 24px; }
}
@media (max-width: 560px) {
  .container { width: min(var(--max-width), calc(100% - 24px)); }
  .hero h1 { font-size: clamp(2.3rem, 13vw, 4rem); }
  .btn, .btn-primary, .btn-secondary { width: 100%; }
  .hero-actions { flex-direction: column; }
}