:root {
  --bg: #06090d;
  --bg-alt: #0c1218;
  --panel: rgba(10, 15, 20, 0.86);
  --panel-strong: rgba(9, 13, 18, 0.94);
  --panel-soft: rgba(14, 22, 30, 0.78);
  --text: #f2ead4;
  --muted: #b4b9c3;
  --gold: #c99a43;
  --gold-soft: rgba(201, 154, 67, 0.2);
  --green: #7fd133;
  --green-soft: rgba(127, 209, 51, 0.14);
  --line: rgba(201, 154, 67, 0.24);
  --line-strong: rgba(201, 154, 67, 0.4);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 10, 0.2), rgba(4, 7, 10, 0.92) 34%, #06090d 100%),
    #06090d;
  color: var(--text);
  font-family: 'FUTURA45LIGHT', 'Segoe UI', sans-serif;
  min-width: 320px;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
  opacity: 0.5;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 154, 67, 0.12);
}

.header-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  border: 1px solid rgba(201, 154, 67, 0.16);
  border-radius: 999px;
  padding: 10px 16px 10px 18px;
  background: rgba(7, 11, 15, 0.56);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand {
  flex: none;
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.site-nav .nav-cta {
  border: 1px solid rgba(127, 209, 51, 0.32);
  background: rgba(127, 209, 51, 0.1);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 154, 67, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #f0ead8;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 96px);
  padding: 56px 0 46px;
}

.hero-backdrop,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.94) 0%, rgba(4, 7, 10, 0.72) 38%, rgba(4, 7, 10, 0.42) 66%, rgba(4, 7, 10, 0.86) 100%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.12) 0%, rgba(4, 7, 10, 0.78) 76%, #06090d 100%),
    url('../assets/images/3-1920x1080.png') center center / cover no-repeat;
  filter: saturate(1.04) contrast(1.02);
}

.hero-noise {
  background:
    linear-gradient(90deg, rgba(127, 209, 51, 0.1), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(6, 9, 13, 0.36) 58%, #06090d 100%);
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 28px;
  padding-top: 34px;
}

.reveal {
  animation: revealUp 0.7s ease forwards;
}

.reveal:nth-child(2),
.reveal:nth-child(3),
.reveal:nth-child(4) {
  animation-delay: 0.08s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow,
.section-tag,
.panel-kicker,
.stat-label,
.news-kicker,
.meta-label {
  margin: 0;
  color: var(--gold);
  font-family: 'FUTURA55REGULAR', 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.hero-panel h2,
.cta-panel h2,
.content-card h3,
.portal-card strong,
.stat-value {
  margin: 0;
  font-family: 'FUTURA55REGULAR', 'Segoe UI', sans-serif;
  letter-spacing: 0.03em;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-top: 18px;
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold);
  font-size: 0.38em;
  letter-spacing: 0.28em;
  margin-top: 16px;
}

.hero-lead {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #d5d9e0;
  font-size: clamp(1rem, 1vw + 0.8rem, 1.18rem);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'FUTURA55REGULAR', 'Segoe UI', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #cf9d46, #9c6f1e);
  color: #090d11;
  box-shadow: 0 14px 30px rgba(201, 154, 67, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(201, 154, 67, 0.32);
}

.button-secondary {
  border-color: rgba(127, 209, 51, 0.32);
  background: rgba(127, 209, 51, 0.1);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(127, 209, 51, 0.56);
  background: rgba(127, 209, 51, 0.18);
}

.button-ghost,
.button-inline {
  border-color: rgba(201, 154, 67, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible,
.button-inline:hover,
.button-inline:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 46px;
  padding-inline: 18px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.meta-card,
.hero-panel,
.content-card,
.portal-card,
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 17, 22, 0.92), rgba(7, 11, 15, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.meta-card {
  padding: 17px 18px 16px;
  border-color: rgba(127, 209, 51, 0.22);
  background: rgba(8, 14, 16, 0.72);
}

.meta-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-panel {
  padding: 26px;
  border-color: rgba(127, 209, 51, 0.26);
}

.hero-panel::before,
.content-card::before,
.portal-card::before,
.cta-panel::before,
.meta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%);
}

.quickstart-panel h2,
.realm-card h2,
.section-heading h2,
.cta-panel h2 {
  font-size: clamp(1.8rem, 1.7vw + 1rem, 3rem);
  line-height: 1.08;
  margin-top: 12px;
}

.quick-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.quick-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quick-list span,
.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 67, 0.28);
  color: var(--gold);
  font-family: 'FUTURA55REGULAR', 'Segoe UI', sans-serif;
  letter-spacing: 0.08em;
  background: rgba(201, 154, 67, 0.08);
}

.quick-list strong,
.content-card h3,
.portal-card strong,
.stat-value {
  font-size: 1.15rem;
}

.quick-list p,
.section-heading p,
.content-card p,
.portal-card p,
.stat-meta,
.footer-bottom p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-list p {
  margin-top: 6px;
}

.quick-note {
  margin-top: 16px;
  color: #d5d9e0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.realm-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 20px;
  align-items: end;
  padding: 0;
}

.realm-card-copy {
  padding: 28px 0 28px 28px;
}

.realm-card-copy p:not(.panel-kicker) {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.product-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 67, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill-live {
  border-color: rgba(127, 209, 51, 0.3);
  background: rgba(127, 209, 51, 0.1);
  color: #edfbe1;
}

.realm-card-art {
  align-self: stretch;
  min-height: 100%;
  border-left: 1px solid rgba(201, 154, 67, 0.18);
}

.realm-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 154, 67, 0.26), transparent);
}

.section-heading {
  display: grid;
  gap: 14px;
}

.section-heading.centered {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 34px;
}

.section-heading.narrow {
  max-width: 720px;
}

.signal-section {
  padding-top: 44px;
  background: linear-gradient(180deg, #06090d 0%, #091016 100%);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.signal-card {
  min-height: 100%;
  border-color: rgba(127, 209, 51, 0.18);
}

.portal-section {
  padding-top: 38px;
}

.portal-grid,
.pulse-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: start;
}

.portal-stack,
.stats-grid {
  display: grid;
  gap: 16px;
}

.portal-card,
.content-card {
  padding: 24px;
}

.portal-card strong {
  display: block;
  margin-top: 18px;
}

.portal-card p,
.content-card p,
.stat-meta {
  margin-top: 10px;
}

.portal-card a,
.step-card a,
.news-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-grid,
.feature-grid,
.news-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.news-section {
  background:
    linear-gradient(180deg, rgba(9, 16, 22, 0.8), rgba(6, 9, 13, 0.96)),
    url('../assets/images/1230592-1920x1440.jpg') center 32% / cover no-repeat;
}

.news-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.step-card,
.feature-card,
.stat-card,
.news-card {
  min-height: 100%;
}

.news-media {
  margin: -24px -24px 18px;
}

.news-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-body h3 {
  margin-top: 10px;
}

.step-card .step-index {
  margin-bottom: 18px;
}

.feature-card {
  min-height: 240px;
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.community-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 154, 67, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-links a:hover,
.community-links a:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card {
  min-height: 184px;
}

.stat-value {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.45rem, 1.4vw + 0.9rem, 2.2rem);
  line-height: 1.12;
}

.news-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.news-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(201, 154, 67, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(9, 13, 18, 0.96), rgba(9, 13, 18, 0.9));
}

.site-footer {
  position: relative;
  padding: 24px 0 54px;
  background: linear-gradient(180deg, rgba(6, 9, 13, 0), rgba(6, 9, 13, 0.9));
}

.footer-top,
.footer-bottom {
  border-top: 1px solid rgba(201, 154, 67, 0.14);
}

.footer-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 28px 0 18px;
}

.footer-brand img {
  width: 144px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.portal-card a:hover,
.portal-card a:focus-visible,
.step-card a:hover,
.step-card a:focus-visible,
.news-card a:hover,
.news-card a:focus-visible {
  color: #ffffff;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  padding-top: 18px;
}

.footer-bottom p strong {
  color: var(--text);
}

.footer-disclaimer {
  max-width: 980px;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero-grid,
  .portal-grid,
  .pulse-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .signal-grid,
  .feature-grid,
  .news-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-intro,
  .cta-panel,
  .news-heading,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(201, 154, 67, 0.18);
    border-radius: 22px;
    background: rgba(7, 11, 15, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-grid {
    padding-top: 24px;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .realm-card {
    grid-template-columns: 1fr;
  }

  .realm-card-copy {
    padding: 28px 28px 0;
  }

  .realm-card-art {
    max-height: 360px;
    border-left: 0;
    border-top: 1px solid rgba(201, 154, 67, 0.18);
  }
}

@media (max-width: 720px) {
  .signal-grid,
  .hero-meta,
  .feature-grid,
  .news-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-section {
    padding-block: 72px;
  }

  .header-bar {
    border-radius: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.2rem);
  }

  .quick-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 100% - 20px);
  }

  .header-bar,
  .hero-panel,
  .content-card,
  .portal-card,
  .cta-panel,
  .meta-card {
    border-radius: 20px;
  }

  .hero-actions,
  .cta-actions,
  .support-actions {
    flex-direction: column;
  }

  .button,
  .community-links a,
  .button-inline {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }
}