:root {
  --bg: #030812;
  --bg-2: #071525;
  --surface: rgba(9, 26, 42, 0.76);
  --surface-strong: rgba(11, 31, 52, 0.94);
  --border: rgba(131, 232, 255, 0.18);
  --text: #f3fbff;
  --muted: #a7b8c9;
  --cyan: #34e8ff;
  --cyan-2: #0bbbd7;
  --gold: #f4c76a;
  --gold-2: #a9781e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 4%, rgba(52, 232, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 88% 10%, rgba(244, 199, 106, 0.14), transparent 28rem),
    linear-gradient(140deg, var(--bg), #06101f 48%, #02050b);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(3, 8, 18, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(244, 199, 106, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff3bd, var(--gold) 38%, #60420d);
  color: #151006;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: rgba(52, 232, 255, 0.1);
  color: var(--cyan);
  font-size: 0.88rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 46px;
  min-height: calc(100vh - 84px);
  padding-top: 74px;
}

.invite {
  display: inline-flex;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.6vw, 5.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.trust-copy p,
.community-copy p,
.final-cta p,
.disclaimer p,
.card p,
.community-card p,
.signal-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 670px;
  margin-bottom: 34px;
  font-size: 1.16rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  align-items: center;
  flex-wrap: nowrap;
}

.hero-actions .btn {
  flex: 0 1 auto;
  padding-inline: 14px;
  font-size: 0.82rem;
}

.btn {
  padding: 0 18px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn:hover,
.header-cta:hover,
.community-card:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--cyan), #87f7ff);
  color: #031018;
  box-shadow: 0 0 28px rgba(52, 232, 255, 0.28);
}

.btn.gold {
  background: linear-gradient(135deg, var(--gold), #ffe6a3);
  color: #1d1405;
  box-shadow: 0 0 28px rgba(244, 199, 106, 0.22);
}

.btn.cyan {
  border-color: rgba(52, 232, 255, 0.35);
  background: rgba(52, 232, 255, 0.1);
  color: var(--cyan);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(52, 232, 255, 0.14), transparent 45%),
    radial-gradient(circle at 70% 30%, rgba(244, 199, 106, 0.22), transparent 18rem),
    rgba(7, 21, 37, 0.86);
  box-shadow: var(--shadow);
}

.orbital {
  position: absolute;
  inset: 48px;
  display: grid;
  place-items: center;
}

.orbital span {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(52, 232, 255, 0.22);
  border-radius: 50%;
}

.orbital span:nth-child(2) {
  width: 88%;
  transform: rotate(58deg) scaleY(0.58);
}

.orbital span:nth-child(3) {
  width: 64%;
  transform: rotate(-28deg) scaleY(0.72);
  border-color: rgba(244, 199, 106, 0.28);
}

.core {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #ffffff, var(--cyan) 24%, #08314a 72%);
  color: #021018;
  font-size: 2.4rem;
  font-weight: 950;
  box-shadow:
    0 0 46px rgba(52, 232, 255, 0.52),
    inset 0 -18px 30px rgba(0, 0, 0, 0.28);
}

.signal-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(2, 8, 16, 0.68);
  backdrop-filter: blur(16px);
}

.signal-card span,
.community-card span,
.step-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin: 6px 0;
  font-size: 1.7rem;
  line-height: 1.1;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.trust-section {
  padding-top: 18px;
}

.trust-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(52, 232, 255, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(52, 232, 255, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(244, 199, 106, 0.12), transparent 45%),
    rgba(9, 26, 42, 0.82);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(52, 232, 255, 0.08),
    inset 0 0 0 1px rgba(244, 199, 106, 0.08);
}

.trust-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 199, 106, 0.34);
  border-radius: 999px;
  background: rgba(244, 199, 106, 0.08);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
}

.simon-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid rgba(244, 199, 106, 0.24);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(52, 232, 255, 0.1);
}

.simon-photo-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 8, 16, 0.28)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.simon-photo-frame img {
  display: block;
  width: 190px;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.trust-copy p {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 232, 255, 0.28);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow), 0 0 50px rgba(52, 232, 255, 0.12);
}

.video-frame::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

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

.steps,
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.community-card,
.disclaimer,
.final-cta {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.card,
.community-card {
  padding: 28px;
}

.community-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

.community-copy {
  position: sticky;
  top: 116px;
}

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

.community-card {
  display: block;
  background: var(--surface-strong);
}

.community-card strong {
  display: block;
  margin: 8px 0;
  font-size: 1.5rem;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  background:
    linear-gradient(130deg, rgba(52, 232, 255, 0.16), transparent 48%),
    linear-gradient(310deg, rgba(244, 199, 106, 0.16), transparent 54%),
    var(--surface-strong);
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
}

.disclaimer {
  padding: 36px;
}

.disclaimer h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.disclaimer p {
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .trust-card,
  .community-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 420px;
  }

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

  .community-copy {
    position: static;
  }

  .final-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    margin-top: 10px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .header-cta {
    width: 100%;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.82rem;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.2rem, 11.2vw, 3.5rem);
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 360px;
    border-radius: 26px;
  }

  .orbital {
    inset: 20px;
  }

  .core {
    width: 112px;
    height: 112px;
    font-size: 1.9rem;
  }

  .card,
  .community-card,
  .trust-card,
  .disclaimer,
  .final-cta {
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .core {
    animation: pulse 4.8s ease-in-out infinite;
  }

  .orbital span:first-child {
    animation: rotate 18s linear infinite;
  }

  .orbital span:nth-child(2) {
    animation: rotate 24s linear infinite reverse;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg) scaleY(0.68);
  }
}
