:root {
  --nav: #141218;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --coral: #e24e36;
  --coral-2: #ee6a48;
  --line: rgba(255, 255, 255, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: #1a0528;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

.top {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1a0528 url("./hero-bg.jpg") center / cover no-repeat;
}

.top::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background: linear-gradient(to top, #000, transparent);
}

.nav {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 40px));
  height: 54px;
  margin: 16px auto 0;
  padding: 6px 6px 6px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--nav);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand-mark {
  width: 32px;
  height: 26px;
  object-fit: contain;
  display: block;
  flex: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

.nav .btn-cta {
  justify-self: end;
  height: 38px;
  padding: 0 16px;
  font-size: 11px;
  letter-spacing: 0.06em;
  border-radius: 11px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  background: linear-gradient(180deg, #f56c4e 0%, #e9543a 42%, #dc4630 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-shadow: 0 1px 0 rgba(90, 18, 8, 0.12);
}

.btn-cta-lg {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4em;
  height: 64px;
  padding: 0 42px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 20px;
  background: linear-gradient(180deg, #ff6f50 0%, #f0563c 32%, #e44b33 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-nav-short {
  display: none;
}

.btn-cta[aria-disabled="true"] {
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 108px 24px 110px;
}

h1 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 0.9;
}

.line-one,
.line-two {
  display: block;
}

.line-one {
  display: flex;
  justify-content: center;
  gap: 0.28em;
}

.money {
  background: linear-gradient(180deg, #efc29a 0%, #f6e2c8 34%, #ffffff 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.markets {
  color: #fff;
}

.line-two {
  margin-top: 4px;
  color: #fff;
}

.simple {
  position: relative;
  display: inline-block;
  padding: 0 6px;
}

.oval {
  position: absolute;
  left: -10%;
  top: -30%;
  width: 132%;
  height: 168%;
  overflow: visible;
  pointer-events: none;
  transform: rotate(-2.5deg);
}

.lede {
  margin: 36px 0 30px;
  font-size: clamp(18px, 2.05vw, 24px);
  font-weight: 500;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.01em;
}

.nfa-line {
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.comet {
  position: absolute;
  left: calc(50% + 268px);
  top: 52.5%;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 186, 0.95));
  transform: rotate(-28deg);
  filter: drop-shadow(0 0 5px rgba(255, 240, 210, 0.9));
}

.comet::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: #fff6d8;
  box-shadow: 0 0 14px #fff, 0 0 4px #ffd9a0;
}

.page {
  background: #1a0528;
}

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

.expect .wrap {
  width: min(1180px, calc(100% - 40px));
}

.performance {
  width: 100%;
  margin: 0;
  padding: 92px 0 80px;
  text-align: center;
  background: #000;
  color: #fff;
}

.performance h2 {
  margin: 0 0 52px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.perf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto 52px;
}

.perf-value {
  font-size: clamp(44px, 5.4vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.perf-value.green {
  color: #1ec45a;
}

.perf-value.red {
  color: #ff4d4d;
}

.perf-label {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8a8a8a;
}

.perf-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.chart-card {
  margin: 0;
  padding: 8px 6px 4px;
  border-radius: 14px;
  background: #000;
  border: 1px solid #2a2a2a;
  overflow: hidden;
}

.chart {
  display: block;
  width: 100%;
  height: auto;
}

.perf-caption {
  margin: 28px 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #bdbdbd;
}

.expect {
  position: relative;
  overflow: hidden;
  padding: 110px 0 56px;
  background: #2a0a45 url("./hero-bg.jpg") center / cover no-repeat;
}

.expect-mark {
  position: absolute;
  right: -4%;
  top: 8%;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(90px, 18vw, 220px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}

.expect-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.expect-kicker {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.expect-copy h2 {
  margin: 0 0 22px;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.expect-copy p {
  margin: 0 0 18px;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.expect-copy strong {
  color: #fff;
}

.expect-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.expect-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.expect-list li::before {
  content: "✓";
  color: #c9b8ff;
  font-weight: 800;
}

.expect-compare {
  position: relative;
  display: flex;
  gap: 12px;
}

.compare-card {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 22px 18px 8px;
  border-radius: 22px;
  background: #141218;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.compare-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}

.compare-mark {
  width: 20px;
  height: 16px;
  object-fit: contain;
  display: block;
  flex: none;
}

.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.compare-card li:first-of-type,
.compare-card h3 + ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ico {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.ico svg {
  display: block;
  width: 22px;
  height: 22px;
}

.vs {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  border: 3px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.faq {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background: #0c0b10;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(92, 24, 150, 0.42), transparent 46%),
    radial-gradient(ellipse at 100% 50%, rgba(92, 24, 150, 0.32), transparent 46%);
  pointer-events: none;
}

.faq-watermark {
  position: absolute;
  inset: -8% -6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08em;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(72px, 14vw, 168px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.86;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

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

.faq h2 {
  margin: 0 0 36px;
  text-align: center;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(18, 16, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

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

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

.faq-plus {
  flex: 0 0 auto;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.18s ease;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 24px 20px;
  max-width: 46em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 40px 0 56px;
  background: #07060a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.footer-disclaimer {
  margin: 0 auto 18px;
  max-width: 46em;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.footer-contact {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}

.footer-contact a:hover {
  color: #ffd7cb;
}

.mobile-join {
  display: none;
}

@media (max-width: 900px) {
  .top {
    min-height: 100svh;
    background-position: 62% center;
  }

  .nav {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    left: 12px;
    right: 12px;
    z-index: 20;
    width: auto;
    height: 52px;
    margin: 0;
    padding: 5px 5px 5px 14px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    font-size: 19px;
  }

  .nav-links {
    display: none;
  }

  .nav .btn-cta {
    height: 40px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 0.04em;
    border-radius: 12px;
  }

  .cta-nav-full {
    display: none;
  }

  .cta-nav-short {
    display: inline;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: calc(100svh - 84px);
    padding: 88px 20px calc(96px + env(safe-area-inset-bottom));
    justify-content: center;
  }

  .hero .btn-cta-lg {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 12.2vw, 58px);
    letter-spacing: -0.045em;
  }

  .line-one {
    flex-direction: column;
    gap: 0;
  }

  .lede {
    margin: 22px 0 26px;
    max-width: 22em;
    font-size: 16px;
    line-height: 1.45;
  }

  .lede br {
    display: none;
  }

  .nfa-line {
    max-width: 22em;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta-lg {
    width: min(100%, 360px);
    height: auto;
    min-height: 58px;
    flex-direction: column;
    gap: 2px;
    padding: 14px 18px;
    font-size: 15px;
    letter-spacing: 0.07em;
    border-radius: 16px;
    line-height: 1.2;
  }

  .btn-cta-lg .cta-sub {
    font-size: 11px;
    letter-spacing: 0.12em;
    opacity: 0.92;
  }

  .comet {
    display: none;
  }

  .wrap,
  .expect .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .performance {
    padding: 56px 0 48px;
  }

  .performance h2 {
    margin: 0 0 28px;
    font-size: clamp(18px, 5.6vw, 28px);
    letter-spacing: 0.03em;
    line-height: 1.15;
  }

  .perf-stats {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    margin: 0 auto 28px;
  }

  .perf-stat {
    padding: 16px 8px;
    border-radius: 16px;
    background: #0a0a0a;
    border: 1px solid #1f1f1f;
  }

  .perf-value {
    font-size: clamp(32px, 10vw, 44px);
  }

  .perf-label {
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .perf-charts,
  .expect-inner,
  .expect-list {
    grid-template-columns: 1fr;
  }

  .perf-charts {
    gap: 12px;
  }

  .chart-card {
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .chart {
    min-width: 520px;
  }

  .perf-caption {
    margin: 18px 12px 0;
    font-size: 13px;
    line-height: 1.45;
  }

  .expect {
    padding: 64px 0 40px;
  }

  .expect-mark {
    top: 4%;
    right: -18%;
    font-size: 96px;
    opacity: 0.85;
  }

  .expect-inner {
    gap: 28px;
  }

  .expect-kicker {
    font-size: 16px;
  }

  .expect-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 9vw, 44px);
  }

  .expect-copy h2 br {
    display: none;
  }

  .expect-copy p {
    font-size: 15px;
  }

  .expect-list {
    gap: 12px;
  }

  .expect-compare {
    flex-direction: column;
    gap: 0;
  }

  .vs {
    position: static;
    width: 44px;
    height: 44px;
    margin: -10px auto;
    font-size: 12px;
  }

  .compare-card {
    padding: 18px 14px 4px;
    border-radius: 18px;
  }

  .compare-card li {
    padding: 14px 4px;
    font-size: 14px;
  }

  .faq {
    padding: 64px 0 40px;
  }

  .site-footer {
    padding: 28px 0 calc(118px + env(safe-area-inset-bottom));
  }

  .faq-watermark {
    font-size: 64px;
    inset: 0 -20%;
  }

  .faq h2 {
    margin: 0 0 22px;
    font-size: clamp(40px, 14vw, 56px);
  }

  .faq-list summary {
    min-height: 56px;
    padding: 16px 16px 16px 18px;
    font-size: 15px;
    line-height: 1.35;
  }

  .faq-list details p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .mobile-join {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(to top, #0c0b10 62%, rgba(12, 11, 16, 0.72) 100%);
    backdrop-filter: blur(10px);
  }

  .mobile-join .btn-cta {
    width: 100%;
    height: auto;
    min-height: 52px;
    flex-direction: column;
    gap: 1px;
    padding: 11px 16px;
    font-size: 15px;
    letter-spacing: 0.06em;
    border-radius: 16px;
  }

  .mobile-join .cta-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
    opacity: 0.9;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 76px 16px calc(96px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(36px, 11.6vw, 48px);
  }

  .oval {
    left: -14%;
    width: 140%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-plus {
    transition: none;
  }
}
