:root {
  color-scheme: dark;
  --void: #060a10;
  --field: #0a111a;
  --plate: #101a25;
  --plate-2: #132232;
  --line: #1c3042;
  --line-strong: #274054;
  --text: #eef7fb;
  --muted: #86a0b1;
  --dim: #587181;
  --cyan: #64d9f5;
  --cyan-soft: rgba(100, 217, 245, 0.18);
  --gold: #f7c65b;
  --gold-soft: rgba(247, 198, 91, 0.16);
  --white-hot: #f6fbff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 12%, rgba(100, 217, 245, 0.08), transparent 28rem),
    radial-gradient(circle at 18% 84%, rgba(247, 198, 91, 0.055), transparent 24rem),
    linear-gradient(180deg, #060a10 0%, #08101a 54%, #060a10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(39, 64, 84, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 64, 84, 0.16) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 86%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand-lockup,
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 760;
}

.brand-lockup img,
.footer-mark img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 10px;
  filter: drop-shadow(0 0 18px rgba(100, 217, 245, 0.14));
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(134, 160, 177, 0.22);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(100, 217, 245, 0.46);
  background: rgba(100, 217, 245, 0.07);
  color: var(--text);
  outline: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(36px, 7vh, 82px) 0 clamp(24px, 7vh, 70px);
}

.hero-grid {
  position: absolute;
  inset: 22px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(28, 48, 66, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(100, 217, 245, 0.045), transparent 30%, rgba(247, 198, 91, 0.035)),
    radial-gradient(circle at 78% 42%, rgba(100, 217, 245, 0.11), transparent 25rem),
    rgba(10, 17, 26, 0.52);
  box-shadow: inset 0 0 0 1px rgba(246, 251, 255, 0.025);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: #bfd1db;
  font-size: clamp(1.02rem, 1.7vw, 1.28rem);
  line-height: 1.64;
}

.artifact-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(39, 64, 84, 0.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 56% 45%, rgba(100, 217, 245, 0.095), transparent 17rem),
    linear-gradient(145deg, rgba(16, 26, 37, 0.88), rgba(6, 10, 16, 0.64));
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.identity-stage {
  aspect-ratio: 1200 / 560;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.artifact-stage iframe,
.market-visual iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: 0;
}

.analysis-band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px) 0;
}

.analysis-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(39, 64, 84, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 26, 37, 0.88), rgba(6, 10, 16, 0.56)),
    radial-gradient(circle at 76% 30%, rgba(247, 198, 91, 0.06), transparent 18rem);
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-subtitle {
  max-width: 560px;
  margin-bottom: 0;
  color: #bfd1db;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.52;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.market-visual {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  max-width: min(980px, 100%);
  min-width: 0;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(39, 64, 84, 0.68);
  border-radius: 8px;
  background: rgba(6, 10, 16, 0.54);
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(39, 64, 84, 0.72);
}

.footer-mark img {
  width: 36px;
  height: 36px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 940px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .social-links {
    justify-content: flex-start;
  }

  .hero-shell,
  .analysis-card {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 0;
  }

  .analysis-card {
    padding: 20px;
  }

}

@media (max-width: 620px) {
  .brand-lockup span,
  .footer-mark span {
    font-size: 0.9rem;
  }

  .social-links a {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .market-visual {
    min-height: 0;
  }

  .identity-stage {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
