@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #06080d;
  --bg-2: #090d14;
  --panel: rgba(10, 14, 22, 0.82);
  --panel-strong: rgba(10, 14, 22, 0.94);
  --line: rgba(78, 231, 255, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #9ba7b8;
  --cyan: #4ee7ff;
  --cyan-soft: rgba(78, 231, 255, 0.12);
  --gold: #d4b56e;
  --blue: #7ca6ff;
  --rose: #ff8f97;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 10%, rgba(78, 231, 255, 0.1), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(124, 166, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #05070b 0%, #06090e 42%, #05080d 100%);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(78, 231, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 231, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

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

.site-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(78, 231, 255, 0.05), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(212, 181, 110, 0.04), transparent 28%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 24px 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(78, 231, 255, 0.44), rgba(124, 166, 255, 0.18), rgba(212, 181, 110, 0.22));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav a,
.site-footer a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
  border-color: rgba(78, 231, 255, 0.35);
}

main {
  padding: 18px 0 76px;
}

.hero-panel,
.content-card,
.entry-card,
.lane-card,
.article-panel,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel,
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.article-copy,
.article-side {
  padding: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.hero-copy h1,
.article-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 14px;
  max-width: 11ch;
}

.hero-lead,
.article-copy .article-lead {
  font-size: 0.9rem;
  line-height: 1.68;
  color: var(--text);
}

.hero-copy p,
.article-copy p,
.content-card p,
.entry-card p,
.section-head p,
.lane-card small,
.article-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.64;
}

.hero-copy p + p,
.article-copy p + p,
.content-card p + p,
.article-panel p + p {
  margin-top: 12px;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.hero-callout a {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(78, 231, 255, 0.35);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 181, 110, 0.28);
  background: linear-gradient(135deg, rgba(212, 181, 110, 0.1), rgba(78, 231, 255, 0.05));
}

.research-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.research-disclaimer p {
  margin: 0;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.65;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(78, 231, 255, 0.24), rgba(78, 231, 255, 0.08));
  border-color: rgba(78, 231, 255, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-stats,
.quick-grid,
.card-grid,
.lane-grid,
.grid-two,
.article-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.hero-stats {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(78, 231, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.stat-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.56rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.4;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background:
    radial-gradient(circle at 20% 10%, rgba(78, 231, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(10, 14, 22, 0.94), rgba(9, 13, 20, 0.94));
}

.hero-image-frame {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(78, 231, 255, 0.16);
  background: #07111a;
}

.hero-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: brightness(1.1) saturate(1.04);
}

.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(78, 231, 255, 0.12);
  animation: spin 24s linear infinite;
  pointer-events: none;
}

.hero-orbit-a {
  width: 240px;
  height: 240px;
  right: -24px;
  top: -18px;
}

.hero-orbit-b {
  width: 180px;
  height: 180px;
  left: -10px;
  bottom: -18px;
  animation-direction: reverse;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(6, 9, 14, 0.86);
  border: 1px solid rgba(78, 231, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-badge-a {
  left: 16px;
  top: 16px;
}

.hero-badge-b {
  right: 18px;
  top: 22px;
}

.hero-badge-c {
  left: 18px;
  bottom: 18px;
}

.hero-note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.58;
}

.hero-note p + p {
  margin-top: 10px;
}

.hero-note a {
  color: var(--text);
  border-bottom: 1px solid rgba(78, 231, 255, 0.35);
}

.section {
  margin-top: 54px;
}

.section-head {
  max-width: 800px;
  margin-bottom: 18px;
}

.section-head h2,
.content-card h3,
.entry-card h3,
.article-panel h2,
.article-panel h3,
.lane-card strong {
  font-size: clamp(1.35rem, 2.8vw, 2.3rem);
  line-height: 1.05;
}

.grid-two,
.article-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.entry-card,
.article-panel {
  padding: 24px;
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.72;
}

.feature-list li + li {
  margin-top: 8px;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.start-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.entry-kicker,
.lane-card span,
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-links {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.entry-links a {
  display: block;
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  line-height: 1.45;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.entry-links a strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  line-height: 1.4;
}

.entry-links a small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
}

.link-format {
  display: inline-block;
  margin-right: 8px;
  color: var(--cyan);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-links a:hover,
.entry-links a:focus-visible,
.lane-card:hover,
.lane-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(78, 231, 255, 0.26);
  color: var(--text);
}

.lane-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lane-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.lane-card strong {
  font-size: 1.12rem;
}

.compact-card {
  padding: 20px 22px;
}

.article-hero {
  margin-top: 6px;
}

.article-copy h1 {
  max-width: 13ch;
}

.article-meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.article-side {
  background:
    radial-gradient(circle at 20% 20%, rgba(78, 231, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(9, 13, 20, 0.96), rgba(9, 13, 20, 0.9));
}

.article-side .side-stack {
  display: grid;
  gap: 12px;
}

.side-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.side-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.side-card p {
  font-size: 0.76rem;
  line-height: 1.58;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-card h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.site-footer {
  padding: 20px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

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

@media (max-width: 1100px) {
  .hero-panel,
  .article-hero,
  .grid-two,
  .article-grid,
  .card-grid,
  .lane-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-visual,
  .article-copy,
  .article-side,
  .content-card,
  .entry-card,
  .article-panel {
    padding: 22px;
  }

  .hero-image-frame {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-nav,
  .site-footer,
  .site-footer-links {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    min-height: 240px;
  }

  .hero-badge {
    font-size: 0.52rem;
    padding: 8px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-orbit,
  .reveal {
    animation: none;
    transition: none;
  }

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