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

:root {
  --bg-0: #050812;
  --bg-1: #0b1224;
  --bg-2: #121c36;
  --surface-0: rgba(12, 20, 42, 0.82);
  --surface-1: #111c38;
  --surface-2: #19284b;
  --surface-3: #22325c;
  --text: #ebf5ff;
  --text-muted: #9cb3d4;
  --line: rgba(95, 247, 255, 0.24);
  --line-soft: rgba(95, 247, 255, 0.12);
  --cyan: #00f0f0;
  --green: #7fff00;
  --pink: #ff4fd8;
  --danger: #ff7f7f;
  --warn: #ffd166;
  --ok: #53ff9a;
  --radius: 14px;
  --radius-lg: 20px;
  --nav-height: 122px;
  --nav-logo-max-height: 100px;
  --nav-logo-max-width: clamp(280px, 28vw, 380px);
  --elev: 0 18px 40px rgba(2, 9, 26, 0.55), inset 0 0 0 1px rgba(95, 247, 255, 0.1);
  --gradient: linear-gradient(118deg, var(--cyan) 0%, var(--green) 48%, var(--pink) 100%);
  /* Legacy tokens kept for inline style compatibility in existing pages. */
  --teal: var(--cyan);
  --purple: var(--pink);
  --purple-dark: #d43ab7;
  --dark: var(--bg-1);
  --dark2: var(--bg-2);
  --dark3: #1f2f59;
  --white: #ffffff;
  --gray: rgba(10, 17, 34, 0.8);
  --border: var(--line-soft);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% -10%, rgba(0, 240, 240, 0.18), transparent 44%),
              radial-gradient(circle at 92% 0%, rgba(255, 79, 216, 0.14), transparent 40%),
              linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(to right, rgba(127, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.35;
}

body::after {
  background: radial-gradient(circle at 15% 75%, rgba(0, 240, 240, 0.1), transparent 30%),
              radial-gradient(circle at 80% 84%, rgba(255, 79, 216, 0.1), transparent 30%);
}

h1,
h2,
h3,
h4 {
  font-family: 'Orbitron', 'Space Grotesk', sans-serif;
  letter-spacing: 0.02em;
}

section {
  padding: 84px 24px;
  position: relative;
}

section::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  border-top: 1px solid var(--line-soft);
  pointer-events: none;
}

.section-inner,
.nav-inner,
.footer-inner,
.breadcrumb-inner,
.internal-links-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 10, 24, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav-inner {
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav .nav-logo {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 8px 0;
  text-decoration: none;
  color: var(--text);
  position: relative;
  isolation: isolate;
}

.site-nav .nav-logo::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  bottom: 16px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 240, 240, 0.24) 0%, rgba(95, 247, 255, 0.12) 42%, transparent 72%);
  filter: blur(14px);
  opacity: 0.84;
  z-index: -1;
  pointer-events: none;
}

.site-nav .nav-logo img {
  display: block;
  width: auto;
  height: var(--nav-logo-max-height);
  max-width: var(--nav-logo-max-width);
  flex-shrink: 0;
  filter: drop-shadow(0 0 22px rgba(0, 240, 240, 0.3)) drop-shadow(0 0 40px rgba(0, 240, 240, 0.38));
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.site-nav .nav-logo:hover img {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 0 28px rgba(0, 240, 240, 0.34)) drop-shadow(0 0 46px rgba(0, 240, 240, 0.42));
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 108px;
    --nav-logo-max-height: 86px;
    --nav-logo-max-width: clamp(240px, 40vw, 330px);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  background: var(--gradient);
  color: #051120 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 9px 18px;
  box-shadow: 0 0 20px rgba(0, 240, 240, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.3);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  touch-action: manipulation;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.hero {
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 96px 24px 78px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 720px;
  height: 720px;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 240, 240, 0.2), transparent 70%);
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.24), transparent 72%);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  animation: lift-in 560ms ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  background: rgba(0, 240, 240, 0.11);
  border: 1px solid rgba(0, 240, 240, 0.36);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--text);
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 42px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  color: #051120;
  background: var(--gradient);
  box-shadow: 0 0 22px rgba(0, 240, 240, 0.24);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 48%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn-primary:hover::after {
  transform: translateX(130%);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(17, 28, 56, 0.72);
  color: var(--text);
  border-color: rgba(95, 247, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(95, 247, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(25, 40, 75, 0.92);
  box-shadow: 0 0 20px rgba(255, 79, 216, 0.18);
}

/* ── Join code box ── */
.join-code-box {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(12, 20, 42, 0.9);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(2, 9, 26, 0.5), inset 0 0 0 1px rgba(95, 247, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.join-code-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.join-code-form {
  display: flex;
  gap: 6px;
  align-items: center;
}

.join-code-input {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.18em;
  width: 120px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: rgba(5, 8, 18, 0.6);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.join-code-input::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 400;
}

.join-code-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 240, 240, 0.18);
}

.btn-join {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
  min-width: 120px;
}

.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(0, 240, 240, 0.25);
}

.hero-stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
}

.features,
.comparison,
.faq,
.internal-links {
  background: rgba(7, 12, 26, 0.55);
}

.trust,
.why-switch {
  background: rgba(12, 20, 42, 0.58);
}

.how-it-works,
.waitlist,
.cta,
.testimonial-banner,
footer {
  background: linear-gradient(155deg, rgba(8, 14, 30, 0.98) 0%, rgba(15, 24, 49, 0.98) 100%);
}

.features-header,
.how-header,
.trust-header,
.comparison-header,
.why-header,
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header .section-sub,
.how-header .section-sub,
.comparison-header .section-sub,
.why-header .section-sub {
  margin: 0 auto;
}

.features-grid,
.steps,
.testimonials,
.reasons-grid {
  display: grid;
  gap: 24px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.steps {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
}

.testimonials,
.reasons-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature-card,
.reason-card,
.testimonial,
.faq-list details,
.comparison-table,
.breadcrumb,
.internal-links,
.table-wrap {
  background: var(--surface-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--elev);
}

.feature-card,
.reason-card {
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--line);
  box-shadow: 0 22px 44px rgba(2, 10, 25, 0.6), inset 0 0 0 1px rgba(127, 255, 0, 0.2);
}

.feature-icon,
.reason-icon,
.step-icon,
.testimonial-avatar,
.faq-chevron,
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon,
.reason-icon,
.step-icon {
  background: linear-gradient(135deg, rgba(0, 240, 240, 0.16), rgba(255, 79, 216, 0.18));
  border: 1px solid rgba(0, 240, 240, 0.28);
}

.feature-icon,
.reason-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.reason-card h3,
.step h3,
.faq-list summary,
.testimonial-name {
  color: var(--text);
}

.feature-card h3,
.reason-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.feature-card p,
.reason-card p,
.step p,
.faq-answer,
.testimonial-role,
.table-legend,
.breadcrumb li,
.internal-links-label,
.footer-brand p,
.footer-col a,
.footer-bottom,
.waitlist-note,
.cta-sub,
.waitlist-sub,
.hero-sub,
.section-sub,
.comparison-cta a,
.trust-logo {
  color: var(--text-muted);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  margin: 0 auto 20px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #081423;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(127, 255, 0, 0.25);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  margin: 0 auto 18px;
}

.step-arrow {
  position: absolute;
  top: 26px;
  right: -22px;
  font-size: 1.45rem;
  color: rgba(127, 255, 0, 0.54);
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0.88;
}

.trust-logo {
  font-size: 1rem;
  font-weight: 700;
}

.testimonial {
  padding: 28px;
  border-left: 3px solid rgba(255, 79, 216, 0.8);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--gradient);
  color: #081423;
  font-weight: 700;
}

.comparison-inner {
  max-width: 980px;
  margin: 0 auto;
}

.comparison-table {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

.comparison-table th {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
  background: rgba(15, 24, 49, 0.94);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table td {
  text-align: center;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(0, 240, 240, 0.1);
}

.comparison-table tr:hover td {
  background: rgba(25, 40, 75, 0.78);
}

.comparison-table tr:hover td.highlight {
  background: rgba(127, 255, 0, 0.14);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.check {
  color: var(--ok);
  font-size: 1.1rem;
}

.cross {
  color: var(--danger);
  font-size: 1.1rem;
}

.partial {
  color: var(--warn);
  font-size: 1.1rem;
}

.comparison-cta {
  text-align: center;
  margin-top: 30px;
}

.comparison-cta a,
.internal-links-list a,
.breadcrumb a {
  text-decoration: none;
  color: var(--cyan);
  font-weight: 600;
  transition: color 0.2s ease;
}

.comparison-cta a:hover,
.internal-links-list a:hover,
.breadcrumb a:hover,
.footer-col a:hover {
  color: var(--green);
}

.breadcrumb {
  margin: 16px 24px 0;
  padding: 12px 20px;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
}

.breadcrumb li::after {
  content: '/';
  color: rgba(127, 255, 0, 0.5);
}

.breadcrumb li:last-child::after {
  content: '';
}

.breadcrumb li:last-child {
  color: var(--text);
}

.table-wrap,
.comparison-table-wrap {
  position: relative;
}

.table-wrap,
.comparison-table-wrap,
.comparison-table {
  border-radius: var(--radius-lg);
}

.table-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 0.82rem;
}

.table-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-banner {
  text-align: center;
  padding: 64px 24px;
}

.testimonial-banner blockquote {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-banner p {
  color: var(--text);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-banner cite {
  color: var(--cyan);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details[open] {
  border-color: var(--line);
}

.faq-list summary {
  padding: 20px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-chevron {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  color: #081423;
  background: var(--gradient);
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.75;
}

.waitlist,
.cta {
  text-align: center;
}

.waitlist .section-title,
.cta .section-title {
  color: var(--text);
}

.waitlist-sub,
.cta-sub {
  font-size: 1.04rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto 16px;
}

.waitlist-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid var(--line-soft);
  background: rgba(9, 15, 31, 0.88);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-input::placeholder {
  color: rgba(156, 179, 212, 0.7);
}

.waitlist-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 240, 0.18);
}

.waitlist-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-status {
  min-height: 1.4em;
  margin: 4px 0 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.waitlist-status.success {
  color: #53ff9a;
}

.waitlist-status.error {
  color: #ff8f8f;
}

.internal-links {
  margin: 0 24px;
  padding: 30px 24px;
}

.internal-links-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.internal-links-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.internal-links-list {
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

footer {
  color: var(--text-muted);
  padding: 48px 24px 32px;
  border-top: 1px solid var(--line-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo img {
  width: clamp(172px, 16vw, 210px);
}

.footer-brand p {
  font-size: 0.875rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--line-soft);
  background: rgba(10, 17, 34, 0.9);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--cyan);
  border-color: var(--line);
  transform: translateY(-2px);
}

.page-hero {
  padding: 92px 24px 40px;
}

.page-hero .section-inner {
  max-width: 860px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-content {
  padding-top: 40px;
}

.page-content .section-inner {
  max-width: 980px;
}

.content-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(19, 33, 66, 0.74), rgba(11, 18, 36, 0.9));
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--elev);
}

.content-card + .content-card {
  margin-top: 20px;
}

.content-card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.content-card p,
.content-card li {
  color: var(--text-muted);
  font-size: 1rem;
}

.content-card ul {
  padding-left: 18px;
  margin-top: 8px;
}

.content-card li + li {
  margin-top: 8px;
}

.content-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inline-cta {
  margin-top: 18px;
}

.inline-cta a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.inline-cta a:hover {
  color: var(--green);
}

.table-wrap::after,
.comparison-table-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46px;
  background: linear-gradient(to right, transparent, rgba(12, 20, 42, 0.96));
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 768px) {
  :root {
    --nav-height: 98px;
    --nav-logo-max-height: 78px;
    --nav-logo-max-width: clamp(216px, 62vw, 280px);
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 17, 34, 0.97);
    padding: 18px 24px 24px;
    border-bottom: 1px solid var(--line-soft);
    gap: 16px;
  }

  .hero {
    padding: 24px 24px 60px;
  }

  .join-code-box {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 auto 16px;
    padding: 18px 20px 20px;
    border-radius: var(--radius-lg);
  }

  .hero-badge {
    margin-bottom: 16px;
  }

  .join-code-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
  }

  .join-code-form {
    width: 100%;
  }

  .join-code-input {
    flex: 1;
    min-width: 0;
    font-size: 1.3rem;
    padding: 14px 16px;
    width: auto;
  }

  .btn-join {
    padding: 14px 24px;
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .hero-stats {
    gap: 26px;
  }

  .step-arrow {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .comparison-table,
  .table-wrap,
  .comparison-table-wrap {
    overflow-x: auto;
  }

  .table-wrap::after,
  .comparison-table-wrap::after {
    opacity: 1;
  }

  .table-wrap.scrolled::after,
  .comparison-table-wrap.scrolled::after {
    display: none;
  }

  .comparison-table {
    min-width: 560px;
  }

  .internal-links,
  .breadcrumb {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 60px 16px;
  }

  section::after {
    left: 16px;
    right: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .join-code-input {
    font-size: 1.4rem !important;
    padding: 16px 14px;
  }

  .btn-join {
    padding: 16px 22px;
  }

  .waitlist-sub,
  .cta-sub {
    margin-bottom: 32px;
  }

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

  .internal-links-inner {
    align-items: flex-start;
  }
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
