:root {
  --bg: #13161a;
  --bg-soft: #1a1e23;
  --panel: #20252b;
  --panel-light: #eef0f2;
  --ink: #f7f8f8;
  --muted: #b9c0c8;
  --dark: #0a0b0d;
  --lime: #d9ff43;
  --green: #8fe500;
  --line: rgba(217, 255, 67, .36);
  --shadow: 0 18px 46px rgba(0, 0, 0, .32);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  padding-bottom: 66px;
}
button, input { font: inherit; }
button, .goto { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.ambient {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: .08;
  pointer-events: none;
}
.ambient-one { top: 12vh; right: -170px; background: var(--lime); }
.ambient-two { top: 65vh; left: -200px; background: #45e6ad; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  min-height: 82px;
  padding: 14px max(22px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(19, 22, 26, .94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; width: min(340px, 63vw); text-decoration: none; }
.brand img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  background: #eef0f2;
  border-radius: 8px;
}
.market-label {
  color: var(--lime);
  font-weight: 850;
  letter-spacing: .18em;
  font-size: 12px;
  white-space: nowrap;
}

.section-shell { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding: clamp(58px, 8vw, 92px) 0 68px; text-align: center; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .18em;
}
.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero h1 span { color: var(--lime); text-shadow: 0 0 25px rgba(217, 255, 67, .2); }
.hero-copy {
  max-width: 760px;
  margin: 24px auto 42px;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.55;
  text-wrap: balance;
}

.analysis-board {
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto 28px;
  text-align: left;
  background: linear-gradient(145deg, #f8f9fa, #e5e8eb);
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(217, 255, 67, .2);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.analysis-board:hover, .analysis-board:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow), 0 0 34px rgba(217, 255, 67, .18); outline: none; }
.board-heading {
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-bottom: 1px solid #ccd1d5;
}
.board-heading small { color: #5d656d; font-weight: 800; letter-spacing: .12em; }
.board-heading h2 { margin: 7px 0 0; font-size: clamp(21px, 4vw, 34px); letter-spacing: -.03em; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: #171a1e; color: #fff; font-size: 12px; font-weight: 850; }
.live-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--green); }
.analysis-table { padding: 12px 22px; }
.analysis-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.35fr .85fr;
  gap: 14px;
  align-items: center;
  padding: 15px 8px;
  border-bottom: 1px solid #cfd4d8;
  font-size: 15px;
}
.analysis-row:last-child { border-bottom: 0; }
.analysis-row strong { font-size: 17px; }
.analysis-row b { color: #2c6200; font-size: 13px; }
.analysis-head { color: #6b737b; text-transform: uppercase; font-size: 10px; font-weight: 850; letter-spacing: .09em; }
.market-strip { display: grid; grid-template-columns: repeat(5, 1fr); background: #15181c; color: white; }
.market-strip span { padding: 18px 8px; text-align: center; font-weight: 900; border-right: 1px solid #343a40; }
.market-strip span:last-child { border-right: 0; color: var(--lime); }

.question-card { max-width: 920px; margin: 26px auto 20px; text-align: left; display: grid; gap: 12px; }
.question-card details {
  overflow: hidden;
  background: #f4f5f6;
  color: #15171a;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}
.question-card summary {
  list-style: none;
  position: relative;
  padding: 20px 56px 20px 22px;
  font-weight: 850;
  font-size: 19px;
  cursor: pointer;
}
.question-card summary::-webkit-details-marker { display: none; }
.question-card summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.question-card details[open] summary::after { content: "–"; }
.question-card label { display: block; padding: 0 22px 16px; color: #3d444b; font-size: 17px; cursor: pointer; }
.question-card input { accent-color: #14171a; width: 17px; height: 17px; vertical-align: -2px; margin-right: 10px; }

.primary-cta {
  width: min(760px, 100%);
  min-height: 72px;
  margin: 12px auto 0;
  padding: 17px 24px;
  border: 0;
  border-radius: 13px;
  color: #050605;
  background: var(--lime);
  font-weight: 950;
  font-size: clamp(18px, 3vw, 24px);
  letter-spacing: .04em;
  box-shadow: 0 0 28px rgba(217, 255, 67, .24);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.primary-cta:hover, .primary-cta:focus-visible { transform: translateY(-2px); filter: brightness(1.05); outline: 3px solid rgba(255, 255, 255, .45); outline-offset: 3px; }
.availability { display: flex; justify-content: center; align-items: center; gap: 9px; color: #d8dce0; font-size: 15px; }
.availability span { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

.member-ticker { overflow: hidden; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #171a1e; }
.ticker-track { display: flex; width: max-content; gap: 18px; animation: ticker 38s linear infinite; }
.ticker-track article {
  width: 300px;
  padding: 12px 17px 12px 12px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #24292f;
  border: 1px solid rgba(217, 255, 67, .45);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(217, 255, 67, .08);
}
.ticker-track img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; filter: saturate(.75); }
.ticker-track div { display: grid; grid-template-columns: 1fr auto; flex: 1; gap: 2px 10px; }
.ticker-track strong { font-size: 17px; }
.ticker-track span { grid-column: 1 / -1; color: #e3e6e8; font-size: 14px; }
.ticker-track small { color: var(--lime); font-size: 11px; font-weight: 800; }
@keyframes ticker { to { transform: translateX(calc(-50% - 9px)); } }

.about { padding: 100px 0; }
.about > h2, .trust > h2 { margin: 0 0 36px; font-size: clamp(38px, 6vw, 64px); line-height: 1.07; letter-spacing: -.04em; }
.about-copy { max-width: 890px; display: grid; gap: 20px; color: #e2e6e9; font-size: clamp(18px, 2.4vw, 23px); line-height: 1.62; }
.about-copy p { margin: 0; }
.method-statement {
  margin: 50px 0 32px;
  padding: 32px;
  color: #101215;
  background: var(--lime);
  border-radius: 16px;
  font-size: clamp(25px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.03em;
}
.method-statement span { font-weight: 950; }
.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.criteria-grid article { position: relative; min-height: 228px; padding: 24px; background: var(--panel); border: 1px solid #363d44; border-radius: 15px; }
.criteria-grid b { color: var(--lime); font-size: 13px; letter-spacing: .12em; }
.criteria-grid h3 { margin: 35px 0 10px; font-size: 21px; }
.criteria-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.experiences { padding: 42px 0 110px; }
.section-title-line { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-bottom: 70px; }
.section-title-line span { height: 2px; background: linear-gradient(90deg, transparent, var(--lime)); }
.section-title-line span:last-child { background: linear-gradient(90deg, var(--lime), transparent); }
.section-title-line h2 { margin: 0; font-size: clamp(34px, 6vw, 60px); letter-spacing: .08em; }
.experience-row {
  margin-bottom: 40px;
  padding: clamp(26px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 410px);
  align-items: center;
  gap: clamp(30px, 7vw, 80px);
  background: linear-gradient(135deg, #21262c, #171a1e);
  border: 1px solid #333a42;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.experience-row.reverse .experience-copy { order: 2; }
.experience-row.reverse .chat-frame { order: 1; }
.experience-copy .quote-mark { margin: 0; color: var(--lime); font-size: 90px; line-height: .7; font-family: Georgia, serif; }
.experience-copy h3 { margin: 12px 0 17px; font-size: clamp(27px, 4vw, 41px); line-height: 1.12; letter-spacing: -.03em; }
.experience-copy > p:not(.quote-mark) { margin: 0 0 20px; color: #d7dce0; font-size: 19px; line-height: 1.6; }
.experience-copy small { color: var(--lime); font-weight: 800; }
.chat-frame { padding: 14px; background: #111417; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 0 35px rgba(217, 255, 67, .12); }
.chat-frame img { width: 100%; border-radius: 11px; }

.trust { padding: 88px 0 105px; }
.trust-panel { display: grid; grid-template-columns: .85fr 1.15fr; overflow: hidden; border: 1px solid #3b4249; border-radius: 22px; box-shadow: var(--shadow); }
.trust-brand { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: 46px; background: var(--panel-light); color: var(--dark); }
.trust-brand img { width: 100%; max-height: 88px; object-fit: contain; }
.trust-brand p { margin: 0; font-weight: 780; font-size: 21px; line-height: 1.45; }
.trust-panel ul { margin: 0; padding: 40px; display: grid; gap: 15px; list-style: none; background: #20252b; }
.trust-panel li { display: grid; grid-template-columns: 35px 1fr; align-items: center; gap: 12px; padding: 15px 0; color: #eff1f3; font-size: 18px; line-height: 1.45; border-bottom: 1px solid #394047; }
.trust-panel li:last-child { border-bottom: 0; }
.trust-panel li span { width: 32px; height: 32px; display: grid; place-items: center; color: #111; background: var(--lime); border-radius: 50%; font-weight: 950; }

.stats { padding: 80px 0 120px; }
.stats > h2 { margin: 0 0 36px; font-size: clamp(38px, 6vw, 66px); letter-spacing: -.04em; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.stats-grid article { min-height: 230px; padding: 28px 22px; display: flex; flex-direction: column; justify-content: flex-end; background: #20252b; border: 1px solid #384048; border-radius: 17px; }
.stats-grid strong { margin-bottom: auto; color: var(--lime); font-size: clamp(50px, 7vw, 82px); line-height: 1; letter-spacing: -.06em; }
.stats-grid strong span { font-size: .42em; }
.stats-grid > article > span { margin: 16px 0 7px; font-size: 20px; font-weight: 900; text-transform: uppercase; }
.stats-grid small { color: var(--muted); line-height: 1.4; }
.final-cta { margin-top: 70px; padding: clamp(38px, 7vw, 78px); text-align: center; background: #0d0f11; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 0 50px rgba(217, 255, 67, .08); }
.final-cta > p { margin: 0 0 16px; color: var(--lime); font-weight: 900; letter-spacing: .14em; }
.final-cta h2 { margin: 0 0 32px; font-size: clamp(38px, 7vw, 72px); line-height: 1.04; letter-spacing: -.05em; }
.final-cta small { display: block; margin-top: 18px; color: var(--muted); }

footer { padding: 48px max(22px, calc((100vw - 1040px) / 2)); background: #eef0f2; color: #131518; display: grid; grid-template-columns: 260px 1fr; gap: 24px 50px; align-items: center; }
footer > img { width: 260px; }
footer p { margin: 0; color: #4f565d; line-height: 1.55; font-size: 13px; }
footer nav { grid-column: 1 / -1; display: flex; gap: 24px; flex-wrap: wrap; border-top: 1px solid #cbd0d4; padding-top: 20px; }
footer a { color: #191c1f; font-weight: 800; font-size: 13px; }

.floating-cta {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 20px));
  height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #060706;
  background: var(--lime);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 7px 34px rgba(0, 0, 0, .45), 0 0 20px rgba(217, 255, 67, .22);
  font-size: 18px;
  font-weight: 950;
  cursor: pointer;
}
.floating-cta b { font-size: 25px; }

@media (max-width: 800px) {
  .site-header { min-height: 66px; padding: 10px 16px; }
  .brand { width: min(250px, 68vw); }
  .brand img { height: 42px; }
  .market-label { display: none; }
  .section-shell { width: min(100% - 26px, 680px); }
  .hero { padding-top: 46px; }
  .hero-copy { margin-bottom: 30px; }
  .board-heading { padding: 20px 17px; }
  .live-pill { display: none; }
  .analysis-table { padding: 8px 12px; }
  .analysis-row { grid-template-columns: .75fr 1.25fr 1fr; gap: 9px; padding: 13px 3px; font-size: 12px; }
  .analysis-row > :nth-child(3) { display: none; }
  .analysis-row strong { font-size: 14px; }
  .analysis-row b { text-align: right; font-size: 10px; }
  .market-strip { grid-template-columns: repeat(5, minmax(70px, 1fr)); overflow-x: auto; }
  .market-strip span { padding: 15px 8px; font-size: 12px; }
  .question-card summary { padding: 18px 52px 18px 18px; font-size: 16px; }
  .question-card label { padding: 0 18px 14px; font-size: 15px; }
  .about { padding: 80px 0; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-row, .experience-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .experience-row.reverse .experience-copy, .experience-row.reverse .chat-frame { order: initial; }
  .experience-copy { text-align: center; }
  .chat-frame { width: min(100%, 420px); margin: 0 auto; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-brand { padding: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  footer { grid-template-columns: 1fr; }
  footer > img { width: 230px; }
  footer nav { grid-column: 1; }
}

@media (max-width: 500px) {
  body { padding-bottom: 60px; }
  .hero h1 { font-size: clamp(39px, 12vw, 55px); }
  .hero-copy { font-size: 17px; }
  .criteria-grid, .stats-grid { grid-template-columns: 1fr; }
  .criteria-grid article { min-height: 180px; }
  .stats-grid article { min-height: 190px; }
  .section-title-line { gap: 12px; }
  .section-title-line h2 { font-size: 29px; letter-spacing: .04em; }
  .experience-row { padding: 22px 16px; border-radius: 17px; }
  .trust-panel li { font-size: 16px; }
  .floating-cta { bottom: 6px; height: 54px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
