:root {
  --bg-dark: #050505;
  --bg-panel: #0a0a0a;
  --bg-panel-soft: #101010;
  --bg-card: rgba(255, 255, 255, 0.035);

  --blue-primary: #00f3ff;
  --blue-secondary: #0088ff;
  --blue-solid: #00a2ff;
  --blue-dim: #0055aa;
  --blue-gradient: linear-gradient(135deg, #00f3ff 0%, #0088ff 100%);

  --red-muted: #ef4444;
  --orange-muted: #f59e0b;
  --green-muted: #22c55e;

  --text-main: #ffffff;
  --text-soft: #d5d5d5;
  --text-muted: #929292;
  --text-dim: #666666;

  --border-color: #222222;
  --border-soft: rgba(255, 255, 255, 0.08);
  --glow-blue: 0 0 24px rgba(0, 243, 255, 0.28);
  --glow-blue-strong: 0 0 36px rgba(0, 243, 255, 0.45);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --container: 1180px;
  --container-narrow: 860px;

  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(0, 243, 255, 0.25);
  color: #ffffff;
}

/* GLOBAL LAYOUT */

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.container.narrow {
  width: min(100% - 40px, var(--container-narrow));
}

.section {
  padding: 96px 0;
  position: relative;
}

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

.section-panel {
  background:
    radial-gradient(circle at top, rgba(0, 243, 255, 0.055), transparent 45%),
    var(--bg-panel);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 54px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  color: var(--text-main);
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 800;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  color: var(--text-soft);
  font-size: 1rem;
}

strong {
  color: #ffffff;
  font-weight: 700;
}

.blue-text {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(0, 243, 255, 0.2);
}

.muted-red {
  color: var(--red-muted);
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.22s ease;
}

.main-nav a:hover {
  color: var(--blue-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.45);
  color: var(--blue-primary);
  font-size: 0.92rem;
  font-weight: 800;
  transition: all 0.22s ease;
}

.nav-cta:hover {
  background: rgba(0, 243, 255, 0.16);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

/* BUTTONS */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: all 0.22s ease;
  cursor: pointer;
  text-align: center;
}

.button-primary {
  color: #001014;
  background: var(--blue-gradient);
  box-shadow: 0 10px 28px rgba(0, 243, 255, 0.24);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(0, 243, 255, 0.42);
}

.button-secondary {
  color: var(--blue-primary);
  background: rgba(0, 243, 255, 0.04);
  border-color: rgba(0, 243, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(0, 243, 255, 0.11);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--blue-primary);
  font-weight: 800;
  transition: gap 0.2s ease, color 0.2s ease;
}

.text-link:hover {
  gap: 10px;
  color: #ffffff;
}

.text-link .material-icons {
  font-size: 1.1rem;
}

/* HERO */

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 25%, rgba(0, 243, 255, 0.09), transparent 34%),
    radial-gradient(circle at 80% 30%, rgba(0, 136, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 60%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 120px;
  background: rgba(0, 243, 255, 0.08);
  filter: blur(55px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: var(--radius-full);
  background: rgba(0, 243, 255, 0.07);
  border: 1px solid rgba(0, 243, 255, 0.22);
  color: var(--blue-primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.eyebrow .material-icons {
  font-size: 1.1rem;
}

.hero-subtitle {
  max-width: 700px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  color: #d0d0d0;
  margin-bottom: 28px;
}

.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-smallprint {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 243, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #080808;
  border: 1px solid rgba(0, 243, 255, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), var(--glow-blue);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(0, 243, 255, 0.14), transparent 34%);
  pointer-events: none;
}

.hero-card-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-card-top .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #001014;
  box-shadow: var(--glow-blue);
}

.hero-card-top p {
  color: #ffffff;
  font-weight: 800;
}

.support-box {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.support-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid var(--border-soft);
}

.support-row span {
  color: var(--text-muted);
}

.support-row strong {
  color: var(--blue-primary);
  text-align: right;
}

.support-row.total {
  background: rgba(0, 243, 255, 0.08);
  border-color: rgba(0, 243, 255, 0.28);
}

.hero-card-note {
  position: relative;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* CARDS */

.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.trust-card,
.step-card,
.sim-info-card,
.manual-card {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover,
.trust-card:hover,
.step-card:hover,
.sim-info-card:hover,
.manual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 243, 255, 0.35);
  background: rgba(0, 243, 255, 0.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 2.4rem;
}

.info-card p,
.trust-card p,
.step-card p,
.sim-info-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.worries-section {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* PRINCIPLE */

.solution-section {
  background:
    radial-gradient(circle at center, rgba(0, 243, 255, 0.045), transparent 55%),
    var(--bg-dark);
}

.principle-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.principle-item {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  text-align: center;
}

.principle-item .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(0, 243, 255, 0.08);
  border: 1px solid rgba(0, 243, 255, 0.26);
  color: var(--blue-primary);
  font-size: 1.8rem;
}

.principle-item p {
  color: var(--text-muted);
}

/* STEPS */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.step-card {
  padding-top: 42px;
}

.step-number {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #001014;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--glow-blue);
}

.notice-box,
.result-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 243, 255, 0.055);
  border: 1px solid rgba(0, 243, 255, 0.22);
}

.notice-box {
  max-width: 920px;
  margin: 0 auto;
}

.notice-box .material-icons,
.result-warning .material-icons {
  color: var(--blue-primary);
  flex: 0 0 auto;
}

.notice-box p,
.result-warning p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* SIMULATOR / EXAMPLE */

.simulator-section {
  background: var(--bg-dark);
}

.sim-container {
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 243, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--bg-panel);
  border: 1px solid rgba(0, 243, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.sim-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.sim-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sim-info-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-primary);
  font-size: 1.55rem;
  line-height: 1.1;
}

.sim-result {
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top, rgba(0, 243, 255, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(0, 243, 255, 0.22);
  text-align: center;
}

.result-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-amount {
  margin: 12px 0;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 1;
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.result-desc {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-soft);
}

.result-warning {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

/* TRUST */

.trust-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 243, 255, 0.055), transparent 32%),
    var(--bg-panel);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 34px;
}

.trust-card .material-icons {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-primary);
  font-size: 2.4rem;
}

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

.split-info > div {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid var(--border-soft);
}

.split-info p + p {
  margin-top: 14px;
}

/* CLUB4YOU BOX */

.club-box {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
  padding: 36px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 243, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #080808;
  border: 1px solid rgba(0, 243, 255, 0.22);
  box-shadow: var(--glow-blue);
}

.club-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--blue-gradient);
  color: #001014;
  box-shadow: var(--glow-blue);
}

.club-icon .material-icons {
  font-size: 2.2rem;
}

.club-box p + p {
  margin-top: 14px;
}

/* FAQ */

.faq-section {
  background: var(--bg-dark);
}

.faq-accordion {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.02rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
  background: rgba(0, 243, 255, 0.045);
  color: var(--blue-primary);
}

.faq-question .icon {
  color: var(--blue-primary);
  transition: transform 0.22s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.28s ease, padding 0.28s ease;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-item.active .faq-answer {
  max-height: 520px;
  padding: 0 24px 24px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

.faq-more {
  margin-top: 30px;
  text-align: center;
}

/* CTA */

.cta-section {
  background:
    radial-gradient(circle at center, rgba(0, 243, 255, 0.10), transparent 58%),
    var(--bg-dark);
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(0, 243, 255, 0.085), rgba(255, 255, 255, 0.025)),
    var(--bg-panel);
  border: 1px solid rgba(0, 243, 255, 0.28);
  box-shadow: var(--glow-blue);
  text-align: center;
}

.cta-box p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 20px;
}

.cta-smallprint {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* FOOTER */

.site-footer {
  padding: 34px 0;
  background: #030303;
  border-top: 1px solid var(--border-color);
}

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

.footer-inner strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
}

.footer-inner p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-primary);
}

/* SHARED PAGE HERO FOR SUBPAGES */

.page-hero {
  padding: 92px 0 64px;
  background:
    radial-gradient(circle at center, rgba(0, 243, 255, 0.08), transparent 60%),
    var(--bg-dark);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.content-section {
  padding: 78px 0;
}

.content-box {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
}

.content-box h2,
.content-box h3 {
  margin-top: 28px;
}

.content-box h2:first-child,
.content-box h3:first-child {
  margin-top: 0;
}

.content-box p + p,
.content-box ul + p,
.content-box p + ul {
  margin-top: 14px;
}

.content-box ul {
  margin-left: 20px;
  color: var(--text-soft);
}

.content-box li {
  margin-bottom: 8px;
}

/* RESPONSIVE */

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

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

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

  .principle-box,
  .steps-grid,
  .sim-info-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .split-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 70px;
  }

  .brand-logo {
    height: 38px;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav.mobile-open {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 20px 18px;
  }

  .main-nav.mobile-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding: 76px 0;
  }

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

  .button {
    width: 100%;
  }

  .cards-grid.four {
    grid-template-columns: 1fr;
  }

  .club-box {
    grid-template-columns: 1fr;
  }

  .club-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 560px) {
  .container,
  .container.narrow {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-card,
  .sim-container,
  .sim-result,
  .cta-box,
  .club-box,
  .content-box {
    padding: 24px;
  }

  .support-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-row strong {
    text-align: left;
  }

  .faq-question {
    padding: 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 20px;
  }
}
/* REGISTER PAGE */

.register-checklist {
  display: grid;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.check-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.check-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 243, 255, 0.32);
  background: rgba(0, 243, 255, 0.04);
}

.check-card .material-icons {
  color: var(--blue-primary);
  font-size: 2rem;
  margin-top: 2px;
}

.check-card p {
  color: var(--text-muted);
}

.register-confirm-box {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(0, 243, 255, 0.2);
  text-align: left;
}

.confirm-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 0.96rem;
  cursor: pointer;
}

.confirm-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--blue-primary);
}

.disabled-link {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.disabled-link:hover {
  transform: none;
  box-shadow: 0 10px 28px rgba(0, 243, 255, 0.12);
}

@media (max-width: 560px) {
  .check-card {
    grid-template-columns: 1fr;
  }

  .confirm-line {
    grid-template-columns: 1fr;
  }
}
/* WAITLIST PAGE */

.waitlist-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.waitlist-info-card,
.waitlist-form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-primary);
  font-weight: 800;
}

.form-placeholder {
  min-height: 340px;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(0, 243, 255, 0.36);
  background:
    radial-gradient(circle at top, rgba(0, 243, 255, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px;
}

.form-placeholder .material-icons {
  font-size: 3rem;
  color: var(--blue-primary);
  margin-bottom: 12px;
}

.placeholder-small {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 420px;
}

.cta-actions.left {
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .waitlist-layout {
    grid-template-columns: 1fr;
  }
}
/* LEGAL PAGES */

.legal-box {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.legal-box h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

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

.legal-box h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal-box p {
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-box a {
  color: var(--blue-primary);
  text-decoration: none;
}

.legal-box a:hover {
  text-decoration: underline;
}

.legal-box ul {
  color: var(--text-soft);
  line-height: 1.8;
  padding-left: 22px;
}

@media (max-width: 560px) {
  .legal-box {
    padding: 24px;
  }
}
