:root {
  --bg: #07111e;
  --bg-soft: #0c1829;
  --panel: #111f36;
  --text: #0f172a;
  --text-light: #e5eefc;
  --muted: #64748b;
  --muted-light: #94a9c9;
  --line: rgba(15, 23, 42, 0.1);
  --line-dark: rgba(255, 255, 255, 0.1);
  --accent: #5b8cff;
  --accent-strong: #3e73f0;
  --accent-soft: rgba(91, 140, 255, 0.12);
  --discord: #5865f2;
  --discord-strong: #4752c4;
  --discord-soft: rgba(88, 101, 242, 0.14);
  --success: #34d399;
  --surface: #f4f7fc;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 4px 6px -1px rgba(8,17,31,0.07), 0 20px 50px -10px rgba(8,17,31,0.14);
  --shadow-lg: 0 8px 16px -4px rgba(8,17,31,0.1), 0 32px 64px -12px rgba(8,17,31,0.2);
  --shadow-glow: 0 0 0 1px rgba(91,140,255,0.2), 0 20px 50px rgba(62,115,240,0.2);

  /* Ecosystem accent colors */
  --eco-gala: #a855f7;
  --eco-lfg: #3b82f6;
  --eco-osmi: #10b981;
  --eco-datagram: #f59e0b;
  --eco-myria: #06b6d4;
}

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

html {
  scroll-behavior: smooth;
}

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

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

  .button:hover,
  .mini-card:hover,
  .timeline-step:hover,
  .feature-card:hover,
  .ecosystem-card:hover,
  .tutorial-card:hover,
  .site-header .brand:hover {
    transform: none !important;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--bg);
  box-shadow: var(--shadow);
  transition: top 0.15s ease, box-shadow 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
}

.skip-link:focus-visible {
  top: 1rem;
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.thanks-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: #e8f0ff;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-dark);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-icon {
  color: #93c5fd;
  flex-shrink: 0;
  -webkit-text-fill-color: initial;
}

.site-header .brand {
  transform-origin: left center;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 2px 6px rgba(91, 140, 255, 0.25));
}

.site-header .brand:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 6px 14px rgba(91, 140, 255, 0.55));
}

.footer-brand {
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  color: var(--muted-light);
  font-weight: 600;
  font-size: 0.93rem;
}

.main-nav a {
  transition: color 0.15s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Buttons ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.45rem;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
}

.button-large {
  padding: 1.05rem 1.8rem;
  font-size: 1rem;
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 2px 16px rgba(62, 115, 240, 0.3);
}

.button-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 4px 22px rgba(62, 115, 240, 0.4);
}

.button-discord {
  background: var(--discord);
  color: #ffffff;
  box-shadow: 0 2px 16px rgba(88, 101, 242, 0.35);
}

.button-discord:hover {
  background: var(--discord-strong);
  box-shadow: 0 4px 22px rgba(88, 101, 242, 0.5);
}

.button-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ── Hero ── */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #07111e 0%, #0b1a35 60%, #07111e 100%);
  color: var(--text-light);
  padding: 5.5rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.28) 0%, transparent 65%);
  top: -280px;
  left: -180px;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 140, 255, 0.18) 0%, transparent 65%);
  bottom: -100px;
  right: -80px;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.two-column,
.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(91, 140, 255, 0.2);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0 0 1.25rem;
  background: linear-gradient(140deg, #ffffff 25%, #bfdbfe 60%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0 0 1rem;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--muted-light);
  max-width: 600px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.25rem;
}

.hero-pricing-note {
  font-size: 0.9rem;
  color: var(--muted-light);
  max-width: 36rem;
}

.hero-pricing-note strong {
  color: var(--success);
  font-weight: 700;
}

/* Hero card */

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-card-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.mini-card {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.mini-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.mini-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  grid-row: span 2;
}

.mini-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.mini-card-icon-mascot {
  background: var(--accent-soft);
}

.mini-card h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.mini-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted-light);
  line-height: 1.45;
}

/* ── Sections ── */

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: var(--bg);
  color: var(--text-light);
}

.section-process {
  padding-bottom: 3.75rem;
}

.section-muted {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 2.8rem;
}

.section-heading.centered {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p,
.narrow .section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.section-heading.light h2 {
  color: var(--text-light);
}

.section-heading.light p {
  color: var(--muted-light);
}

.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Ecosystem section ── */

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.ecosystem-card-wide {
  grid-column: span 2;
}

.ecosystem-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  background: var(--bg);
  color: var(--text-light);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--eco-color, rgba(255,255,255,0.15));
  border-radius: var(--radius) var(--radius) 0 0;
}


.ecosystem-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--eco-color, var(--accent)) 40%, transparent);
}

/* Ecosystem color variants */
.eco-gala { --eco-color: var(--eco-gala); }
.eco-lfg { --eco-color: var(--eco-lfg); }
.eco-osmi { --eco-color: var(--eco-osmi); }
.eco-datagram { --eco-color: var(--eco-datagram); }
.eco-myria { --eco-color: var(--eco-myria); }
.eco-cta {
  --eco-color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent),
              0 14px 40px -22px color-mix(in srgb, var(--accent) 80%, transparent);
}
.eco-cta:hover {
  border-color: color-mix(in srgb, var(--accent) 75%, transparent);
}
.eco-ribbon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--success);
  color: #06231a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(52, 211, 153, 0.7);
}
.eco-cta .button { align-self: stretch; margin-top: 0.75rem; margin-bottom: 1.35rem; }
.eco-price-display { display: flex; align-items: baseline; gap: 0.65rem; margin: 0.8rem 0 0.3rem; flex-wrap: wrap; }
.eco-price-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.04em; color: #ffffff; line-height: 1; }
.eco-price-unit { font-size: 0.95rem; color: var(--muted-light); line-height: 1.3; }
.eco-price-was { font-size: 0.85rem; color: var(--muted-light); margin-bottom: 0.25rem; }
.eco-price-was s { opacity: 0.55; }
.eco-price-note { font-size: 0.78rem; color: var(--muted-light); opacity: 0.7; margin: 0; line-height: 1.5; padding: 0; display: block; width: 100%; }
.eco-price-updated { font-size: 0.72rem; color: var(--muted-light); opacity: 0.55; margin: 0.45rem 0 0; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }

.eco-badge {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--eco-color, var(--accent)) 18%, transparent);
  color: var(--eco-color, var(--accent));
  border: 1px solid color-mix(in srgb, var(--eco-color, var(--accent)) 35%, transparent);
  margin-bottom: 0.7rem;
}

.eco-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.eco-header .eco-badge {
  margin-bottom: 0;
}

.eco-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  flex-shrink: 0;
}

.eco-logo-mascot {
  padding: 0;
  object-fit: cover;
  background: transparent;
}

.eco-gala .eco-logo {
  background: transparent;
  border: none;
  padding: 0;
}

.ecosystem-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

.ecosystem-card p {
  color: var(--muted-light);
  font-size: 0.88rem;
  margin: 0 0 0.8rem;
}

.ecosystem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.ecosystem-card li {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.token-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Courier New", Courier, monospace;
  background: color-mix(in srgb, var(--eco-color, var(--accent)) 18%, transparent);
  color: var(--eco-color, var(--accent));
  border: 1px solid color-mix(in srgb, var(--eco-color, var(--accent)) 35%, transparent);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.card-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-light);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ── Why HostDudes ── */

.feature-stack {
  display: grid;
  gap: 0.9rem;
}

.feature-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1.35rem;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,140,255,0.2);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-card h3::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ── How it works ── */

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: calc(12.5% + 1.2rem);
  right: calc(12.5% + 1.2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-soft), rgba(91,140,255,0.3), var(--accent-soft));
  z-index: 0;
}

.timeline-step {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 1.4rem;
  background: #ffffff;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.timeline-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.timeline-step span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(91,140,255,0.2);
}

.timeline-step h3 {
  margin: 0 0 0.5rem;
  font-size: 0.97rem;
  font-weight: 700;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.timeline-step ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.timeline-step ul li + li {
  margin-top: 0.25rem;
}

.process-note-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.process-note {
  margin: 0;
  max-width: 920px;
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── FAQ ── */

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.1rem 1.3rem;
  transition: background 0.2s;
}

.faq-list details[open] {
  background: rgba(255, 255, 255, 0.07);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.97rem;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
  border-radius: 6px;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--muted-light);
  width: 24px;
  text-align: center;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "\2212";
  color: var(--accent);
}

.faq-list p {
  margin: 0.85rem 0 0;
  color: var(--muted-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ── CTA section ── */

.cta-copy h2 {
  color: var(--text);
  line-height: 1.08;
}

.cta-copy p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.cta-card {
  background: var(--bg);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.cta-card-label {
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.cta-expect {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.cta-expect li {
  color: var(--text-light);
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.93rem;
}

.cta-expect li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.cta-pricing-block {
  border-top: 1px solid var(--line-dark);
  padding-top: 1.1rem;
}

.cta-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.cta-price {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff, #bfdbfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-price-note {
  color: var(--muted-light);
  font-size: 0.93rem;
}

.cta-price-context {
  color: var(--muted-light);
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.9;
}

.cta-card-note {
  margin-top: 1rem;
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Footer ── */

.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line-dark);
  padding: 2.5rem 0;
}

.footer-shell {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  color: var(--muted-light);
  font-size: 0.88rem;
  margin: 0.4rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted-light);
  align-self: center;
  max-width: 560px;
  justify-content: flex-end;
}

.footer-links a {
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links .footer-icon-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.footer-links .footer-icon-link svg {
  display: block;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted-light);
  opacity: 0.55;
  margin-top: 0.6rem !important;
}

/* ── Inner pages ── */

.inner-hero {
  background: linear-gradient(160deg, #07111e 0%, #0b1a35 60%, #07111e 100%);
  color: var(--text-light);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero-small {
  padding: 3rem 0 2.5rem;
}

.inner-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin: 0.5rem 0 1rem;
  background: linear-gradient(140deg, #ffffff 30%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inner-hero-text {
  font-size: 1.05rem;
  color: var(--muted-light);
  max-width: 580px;
  margin: 0;
}

/* ── Contact page ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-email-card {
  display: block;
}

.contact-form-lite {
  display: grid;
  gap: 1rem;
  flex: 1;
}

.contact-form-lite label {
  display: grid;
  gap: 0.45rem;
}

.contact-form-lite span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form-lite input,
.contact-form-lite textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #ffffff;
}

.contact-form-lite textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-email-card .button-primary {
  margin-top: auto;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-channel .button-discord {
  margin-top: auto;
}

.contact-channel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-channel h2 {
  font-size: 1.5rem;
  margin: 0.9rem 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-channel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-icon {
  background: var(--discord-soft);
  color: var(--discord);
}

.email-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.recommended-badge {
  display: inline-flex;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(52, 211, 153, 0.12);
  color: #059669;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.discord-channels {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 1.4rem;
}

.discord-channel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  display: grid;
  gap: 0.2rem;
}

.channel-name {
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--discord);
}

.channel-desc {
  font-size: 0.84rem;
  color: var(--muted);
}

.discord-sublead {
  margin: 0.15rem 0 -0.15rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.discord-channel-sub {
  margin-left: 1rem;
  background: transparent;
  border-style: dashed;
}

.discord-channel-sub .channel-name {
  font-family: inherit;
  color: var(--text);
}

/* ── Tutorials page ── */

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}

.tutorial-grid-single {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.tutorial-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  color: var(--text);
}

.tutorial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,140,255,0.25);
}

.tutorial-card-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.tutorial-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.tutorial-card p {
  color: var(--muted);
  font-size: 0.9rem;
  flex: 1;
  margin: 0 0 1rem;
  line-height: 1.6;
}

.tutorial-link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent);
}

.tutorials-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.tutorials-note p {
  color: var(--muted);
  max-width: 760px;
  margin: 0;
  font-size: 0.95rem;
}

/* ── Legal pages ── */

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 0.65rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.4rem;
  margin: 0.65rem 0;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Tutorial article ── */

.tutorial-content {
  max-width: 780px;
}

.tutorial-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-light);
  text-decoration: none;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.tutorial-back:hover {
  color: var(--text-light);
}

.tutorial-footer-nav .tutorial-back {
  color: var(--muted);
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.tutorial-footer-nav .tutorial-back:hover {
  color: var(--accent);
}

.tutorial-steps {
  list-style: none;
  counter-reset: tutorial-step;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tutorial-step {
  display: flex;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.tutorial-step-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.tutorial-step-body {
  flex: 1;
  min-width: 0;
}

.tutorial-step-body h2 {
  margin: 0.15rem 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tutorial-step-body p,
.tutorial-step-body li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.tutorial-step-body p {
  margin: 0;
}

.tutorial-step-body ul {
  padding-left: 1.2rem;
  margin: 0;
}

.tutorial-step-body li + li {
  margin-top: 0.35rem;
}

.tutorial-step-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.tutorial-step-body strong {
  color: var(--text);
  font-weight: 700;
}

.tutorial-step-image {
  margin: 1.1rem 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.tutorial-step-image img {
  display: block;
  width: 100%;
  height: auto;
}

.tutorial-callout {
  margin-top: 2.25rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0b1a35 0%, #07111e 100%);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.tutorial-callout h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tutorial-callout p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.97rem;
  line-height: 1.7;
}

.tutorial-callout strong {
  color: var(--text-light);
}

.tutorial-callout .button {
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .tutorial-step {
    padding: 1.25rem;
    gap: 0.9rem;
  }
  .tutorial-step-num {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  .tutorial-step-body h2 {
    font-size: 1.1rem;
  }
}

/* ── Marquee ── */

.hero-card-note {
  margin: 0.9rem 0 0;
  font-size: 0.83rem;
  color: var(--muted-light);
  text-align: center;
}
.hero-card-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
}
.hero-card-note a:hover {
  border-bottom-color: var(--accent);
}

.social-proof-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 1.5rem 0;
}
.social-proof-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 3rem;
  text-align: center;
}
.social-proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 140px;
}
.social-proof-stat {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.social-proof-label {
  font-size: 0.82rem;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-section {
  background: var(--bg);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translateX(0);
  }
  .marquee-section {
    overflow-x: auto;
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2.2rem;
  color: var(--muted-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .nav-shell {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-header .button-discord {
    order: 2;
  }

  .main-nav {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0;
    border-top: 1px solid var(--line-dark);
    font-size: 1rem;
  }

  .main-nav[data-expanded="true"] {
    display: flex;
  }

  .main-nav a {
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hero-grid,
  .two-column,
  .cta-shell,
  .timeline-grid,
  .ecosystem-grid,
  .hero-card-grid,
  .contact-grid,
  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card-wide {
    grid-column: span 1;
  }

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

  .timeline-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero-h1-break {
    display: inline;
  }

  .container {
    width: min(100% - 1.2rem, 1180px);
  }

  .button,
  .button-small {
    width: 100%;
    justify-content: center;
  }

  .site-header .button-small {
    width: auto;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .marquee-section {
    display: none;
  }

  .site-header {
    position: static;
  }

  .hero-orb-1,
  .hero-orb-2 {
    display: none;
  }
}
