:root {
  --ink: #101828;
  --muted: #5f6b7a;
  --paper: #f8fafc;
  --panel: #ffffff;
  --line: #dde5ee;
  --blue: #246bfe;
  --blue-deep: #0d3f95;
  --red: #ef3340;
  --mint: #23c8a3;
  --gold: #d9a441;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(16, 24, 40, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red);
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(221, 229, 238, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark span,
.hero h1 span {
  color: var(--red);
}

.brand-copy {
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: #eaf1ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.section-band {
  position: relative;
  padding: 104px 0;
}

.hero {
  min-height: clamp(520px, 78svh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #081225;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 18, 37, 0.92) 0%, rgba(8, 18, 37, 0.78) 42%, rgba(8, 18, 37, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 18, 37, 0.22) 0%, rgba(8, 18, 37, 0.86) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: saturate(1.12) contrast(1.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 48px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.section-title h2,
.media-feature h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 950;
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-lede strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 35px rgba(36, 107, 254, 0.24);
}

.button.primary:hover {
  color: #fff;
  background: #1557de;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.button.secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  min-height: 118px;
  padding: 22px;
  background: rgba(8, 18, 37, 0.4);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 10px 0 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.intro-band,
.stake-band,
.contact-band {
  background: #fff;
}

.live-band {
  background: #eef4fb;
}

.specs-band {
  background: #f8fafc;
}

.map-band {
  background: #172033;
  color: #fff;
}

.chronicles-band {
  background: #fff;
}

.split,
.stake-layout,
.contact-layout,
.media-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
}

.section-heading h2,
.section-title h2,
.media-feature h2,
.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 950;
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose p:first-child {
  margin-top: 0;
}

.prose strong {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  font-weight: 900;
}

.section-title {
  margin-bottom: 34px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.dashboard-panel,
.spec-card,
.notice,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 35px rgba(16, 24, 40, 0.06);
}

.dashboard-panel {
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
  padding: 0 2px 12px;
}

.panel-header h3 {
  margin: 0;
  font-size: 1rem;
}

.panel-header a {
  font-weight: 900;
  font-size: 0.9rem;
}

.iframe-shell {
  position: relative;
  width: 100%;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0b1220;
}

.iframe-shell.tall {
  min-height: clamp(460px, 58vw, 760px);
}

.iframe-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dashboard-panel.compact {
  display: grid;
  gap: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.spec-card {
  min-height: 220px;
  padding: 22px;
}

.spec-card span {
  display: inline-flex;
  color: var(--red);
  font-weight: 950;
  font-size: 0.82rem;
}

.spec-card h3,
.steps h3,
.notice h3 {
  margin: 18px 0 8px;
  line-height: 1.16;
  font-size: 1.08rem;
}

.spec-card p,
.steps p,
.notice p,
.media-feature p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.steps article:first-child {
  padding-top: 0;
  border-top: 0;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 950;
}

.steps h3 {
  margin-top: 0;
}

.notice-stack {
  display: grid;
  gap: 14px;
}

.notice {
  padding: 22px;
}

.notice.important {
  border-left: 5px solid var(--red);
}

.notice h3 {
  margin-top: 0;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a,
.social-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  font-size: 0.92rem;
}

.link-cloud a:hover,
.social-row a:hover {
  color: var(--blue-deep);
  border-color: #bfd2ff;
  background: #eef4ff;
}

.media-feature {
  align-items: center;
}

.media-feature .eyebrow {
  color: var(--gold);
}

.media-feature p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.media-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--red);
  font-weight: 950;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.timeline img {
  width: min(320px, 100%);
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 20px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd8e5;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 107, 254, 0.14);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #fff;
  font-weight: 850;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    justify-content: center;
    background: #f8fafc;
  }

  .hero-grid,
  .dashboard-grid,
  .split,
  .stake-layout,
  .contact-layout,
  .media-feature {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .contact-copy {
    position: static;
  }

  .hero-stats {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 64px;
  }

  .brand-copy {
    display: none;
  }

  .section-band {
    padding: 72px 0;
  }

  .hero {
    min-height: calc(100svh - 118px);
    padding: 42px 0 58px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(8, 18, 37, 0.88) 0%, rgba(8, 18, 37, 0.72) 52%, rgba(8, 18, 37, 0.9) 100%);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .footer-inner,
  .social-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .social-row a {
    width: 100%;
  }

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

  .hero-stats div {
    min-height: 96px;
    padding: 16px;
  }

  .hero-stats dd {
    font-size: 1.52rem;
  }

  .dashboard-panel {
    padding: 10px;
  }

  .iframe-shell,
  .iframe-shell.tall {
    min-height: 430px;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-card {
    min-height: auto;
  }

  .steps article,
  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline li {
    padding: 20px 0;
  }
}

@media (max-width: 420px) {
  .nav-links {
    grid-template-columns: 1fr;
  }

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

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

/* Adablocks live-inspired glossy green/blue theme override. */
:root {
  color-scheme: dark;
  --ink: #eefcf2;
  --muted: #a7c7bd;
  --paper: #06110f;
  --panel: rgba(10, 31, 27, 0.76);
  --line: rgba(174, 222, 205, 0.18);
  --blue: #20d6a1;
  --blue-deep: #a6ff4d;
  --red: #a6ff4d;
  --mint: #3dffc4;
  --gold: #e7ff6b;
  --shadow: 0 18px 65px rgba(0, 0, 0, 0.36);
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(166, 255, 77, 0.22), transparent 24rem),
    radial-gradient(circle at 96% 10%, rgba(32, 214, 161, 0.18), transparent 24rem),
    linear-gradient(145deg, #04110f 0%, #0b211d 48%, #06110f 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

a {
  color: var(--mint);
}

a:hover {
  color: var(--gold);
}

.site-header {
  background: rgba(6, 17, 15, 0.78);
  border-bottom-color: var(--line);
}

.brand {
  color: var(--ink);
}

.brand-mark {
  color: var(--ink);
  border-color: var(--line);
  background:
    linear-gradient(120deg, rgba(166, 255, 77, 0.15), transparent 46%),
    rgba(10, 31, 27, 0.76);
  box-shadow: var(--shadow);
}

.brand-mark span,
.hero h1 span {
  color: var(--gold);
}

.brand-copy,
.nav-links a {
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(166, 255, 77, 0.1);
}

.nav-toggle {
  border-color: var(--line);
  background: rgba(10, 31, 27, 0.9);
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
}

.hero {
  background:
    radial-gradient(circle at 16% 4%, rgba(166, 255, 77, 0.24), transparent 25rem),
    radial-gradient(circle at 82% 18%, rgba(61, 255, 196, 0.18), transparent 28rem),
    #06110f;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(4, 17, 15, 0.93) 0%, rgba(6, 28, 24, 0.82) 45%, rgba(6, 17, 15, 0.48) 100%),
    linear-gradient(180deg, rgba(61, 255, 196, 0.08) 0%, rgba(4, 17, 15, 0.9) 100%);
}

.hero-media img {
  opacity: 0.46;
  filter: saturate(1.32) hue-rotate(45deg) contrast(1.08);
}

.eyebrow,
.spec-card span,
.timeline time {
  color: var(--blue-deep);
}

.hero-lede,
.hero-stats dt,
.prose,
.spec-card p,
.steps p,
.notice p,
.media-feature p,
.contact-copy p,
.timeline p {
  color: var(--muted);
}

.button.primary {
  color: #04110f;
  background: linear-gradient(135deg, var(--gold), var(--blue) 58%, var(--mint));
  border-color: rgba(231, 255, 107, 0.42);
  box-shadow: 0 18px 48px rgba(32, 214, 161, 0.24), 0 0 28px rgba(166, 255, 77, 0.12);
}

.button.primary:hover {
  color: #04110f;
  background: linear-gradient(135deg, #f3ff87, #2be5b0 56%, #65ffd2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.button.secondary:hover {
  color: var(--gold);
  background: rgba(166, 255, 77, 0.1);
}

.hero-stats {
  border-color: var(--line);
  background: rgba(174, 222, 205, 0.08);
  box-shadow: var(--shadow);
}

.hero-stats div {
  background:
    linear-gradient(120deg, rgba(166, 255, 77, 0.1), transparent 50%),
    rgba(10, 31, 27, 0.66);
}

.hero-stats dd {
  color: var(--ink);
  text-shadow: 0 0 18px rgba(166, 255, 77, 0.18);
}

.intro-band,
.stake-band,
.contact-band,
.specs-band,
.chronicles-band,
.live-band {
  background: transparent;
}

.map-band {
  background:
    radial-gradient(circle at 8% 10%, rgba(166, 255, 77, 0.16), transparent 23rem),
    radial-gradient(circle at 90% 0%, rgba(32, 214, 161, 0.16), transparent 25rem),
    rgba(7, 23, 20, 0.86);
}

.dashboard-panel,
.spec-card,
.notice,
.contact-form,
.link-cloud a,
.social-row a {
  border-color: var(--line);
  background:
    linear-gradient(120deg, rgba(166, 255, 77, 0.08), transparent 44%),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.spec-card,
.notice,
.contact-form {
  position: relative;
  overflow: hidden;
}

.spec-card::after,
.notice::after,
.contact-form::after {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  content: "";
  opacity: 0.62;
  background:
    radial-gradient(circle at 18% 12%, rgba(231, 255, 107, 0.12), transparent 28%),
    linear-gradient(115deg, rgba(231, 255, 107, 0.08), rgba(61, 255, 196, 0.05) 54%, transparent 78%);
}

.spec-card > *,
.notice > *,
.contact-form > * {
  position: relative;
  z-index: 1;
}

.panel-header h3,
.spec-card h3,
.steps h3,
.notice h3,
.section-heading h2,
.section-title h2,
.media-feature h2,
.contact-copy h2 {
  color: var(--ink);
}

.prose strong {
  color: var(--ink);
}

.iframe-shell {
  border: 1px solid var(--line);
  background: #04110f;
  box-shadow: inset 0 0 0 1px rgba(166, 255, 77, 0.05);
}

.steps article,
.timeline,
.timeline li {
  border-color: var(--line);
}

.steps span {
  color: #04110f;
  background: linear-gradient(135deg, var(--gold), var(--blue));
  box-shadow: 0 0 20px rgba(166, 255, 77, 0.18);
}

.notice.important {
  border-left-color: var(--gold);
}

.link-cloud a,
.social-row a {
  color: var(--ink);
}

.link-cloud a:hover,
.social-row a:hover {
  color: #04110f;
  border-color: rgba(166, 255, 77, 0.55);
  background: linear-gradient(135deg, rgba(166, 255, 77, 0.85), rgba(32, 214, 161, 0.85));
}

.media-feature img,
.timeline img {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(4, 17, 15, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(166, 255, 77, 0.16), 0 0 22px rgba(61, 255, 196, 0.12);
}

.footer {
  background: rgba(4, 17, 15, 0.94);
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .nav-links {
    border-color: var(--line);
    background: rgba(6, 17, 15, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .nav-links a {
    background: rgba(255, 255, 255, 0.055);
  }
}

@media (max-width: 720px) {
  .hero::after {
    background: linear-gradient(180deg, rgba(4, 17, 15, 0.92) 0%, rgba(6, 28, 24, 0.75) 52%, rgba(4, 17, 15, 0.94) 100%);
  }
}

/* SEO FAQ section: keep the existing card language, but give longer answers room. */
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-band {
  background: transparent;
}

@media (max-width: 720px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
