:root {
  --bg: #090b10;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #a8b3c7;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #7dd3fc;
  --accent-2: #f59e0b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(125, 211, 252, 0.18), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.14), transparent 30rem),
    linear-gradient(135deg, #090b10 0%, #111827 50%, #05070b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.06;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.42;
  pointer-events: none;
}

.glow-one {
  width: 18rem;
  height: 18rem;
  left: -7rem;
  top: 10rem;
  background: rgba(125, 211, 252, 0.34);
}

.glow-two {
  width: 22rem;
  height: 22rem;
  right: -9rem;
  top: 6rem;
  background: rgba(245, 158, 11, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand img { width: 42px; height: 42px; }
.brand span span { color: var(--accent); }

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

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

main {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem 4rem;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(4rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  margin-bottom: 1.35rem;
  max-width: 900px;
}

.subtitle {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  color: #e5edf7;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #60a5fa);
  color: #06111c;
  box-shadow: 0 14px 30px rgba(96, 165, 250, 0.2);
}

.btn.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  border-radius: 34px;
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 35% 0%, rgba(125, 211, 252, 0.22), transparent 18rem);
  pointer-events: none;
}

.logo-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin-bottom: 2rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
}

.logo-frame img { width: 130px; height: 130px; }

.card-kicker {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 0.8rem;
  margin-bottom: 1.3rem;
}

.card-line {
  position: relative;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.card-line.strong { color: var(--accent); }

.statement-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.statement-strip span {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem;
  color: #d9e4f5;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 1.5rem;
}

.body-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.cards-section h2 { max-width: 760px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  padding: 1.5rem;
  min-height: 250px;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2.4rem;
  border-radius: 999px;
  color: #07111f;
  background: var(--accent);
  font-weight: 900;
}

.card h3 {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.cta {
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.14), rgba(245, 158, 11, 0.08));
  margin-bottom: 4rem;
  text-align: center;
}

.cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  nav { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { gap: 2rem; padding-top: 3rem; }
  .hero-card { max-width: 520px; }
  .statement-strip, .cards { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  footer { flex-direction: column; }
}
