:root {
  --bg: #08080c;
  --panel: #111119;
  --panel2: #171623;
  --text: #f7f5fb;
  --muted: #aaa6b5;
  --violet: #aa8cff;
  --violet2: #7658ef;
  --line: rgba(255, 255, 255, 0.105);
  --green: #84e4bd;
  --amber: #efc66f;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    "Jost",
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
  opacity: 0.18;
}
.ambient.a {
  width: 560px;
  height: 560px;
  top: -210px;
  left: -180px;
  background: #6f47d7;
}
.ambient.b {
  width: 450px;
  height: 450px;
  right: -200px;
  top: 500px;
  background: #7d5ce8;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 650;
  letter-spacing: 0.28em;
  font-size: 16px;
}
.brand-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  background: radial-gradient(circle at 42% 35%, #45434d, #17171e 58%, #09090d);
  border: 1px solid #4a4656;
  box-shadow:
    0 0 0 3px rgba(166, 137, 255, 0.2),
    0 0 28px rgba(134, 97, 244, 0.48);
  color: #b69cff;
}
.nav-cta,
.button {
  border: 0;
  cursor: pointer;
  border-radius: 11px;
  padding: 12px 18px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.nav-cta {
  font-size: 13px;
  border: 1px solid rgba(177, 147, 255, 0.35);
  background: rgba(149, 112, 243, 0.1);
  color: #e3d9ff;
}
.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}
.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: 60px;
  align-items: center;
  padding: 58px 0 88px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #c4b1ff;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 750;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, #7959ef, #cab9ff);
}
h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 28px 0 30px;
  max-width: 780px;
  font-weight: 520;
}
.hero-title {
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero-title .accent {
  display: inline-block;
  font-size: 0.82em;
  line-height: 1.06;
  margin-top: 10px;
}
.accent {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #bba5ff;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.75;
  color: #c1bdc9;
  max-width: 690px;
}
.use-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.chip {
  border: 1px solid #7c6cff;
  background: rgba(124, 108, 255, 0.12);
  color: #c9c2f5;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  color: #aaa6b5;
  font-size: 12px;
}
.hero-proof strong {
  color: #f3effc;
  font-weight: 650;
}
.proof-line {
  height: 26px;
  width: 1px;
  background: var(--line);
}
.wait-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(30, 28, 43, 0.96),
    rgba(15, 15, 22, 0.96)
  );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 27px;
  padding: 33px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.wait-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 80% 0,
    rgba(154, 119, 245, 0.2),
    transparent 39%
  );
  pointer-events: none;
}
.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  position: relative;
}
.step-num {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #b89dff;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.wait-card h2 {
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.035em;
  margin: 0;
}
.wait-card .lead {
  color: #aaa6b5;
  font-size: 13px;
  margin: 8px 0 23px;
  line-height: 1.55;
}
.access-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(135, 102, 224, 0.09);
  border: 1px solid rgba(170, 140, 255, 0.18);
  border-radius: 12px;
  padding: 12px;
  color: #cfc5e6;
  font-size: 11px;
  margin-bottom: 22px;
}
.access-note b {
  color: #f0ebff;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #aaa6b5;
  font-weight: 700;
  font-size: 9px;
  margin: 0 0 7px;
}
.field input,
.field select {
  width: 100%;
  height: 47px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 9, 0.66);
  color: #eeeaf7;
  padding: 0 13px;
  outline: none;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: #9876ee;
  box-shadow: 0 0 0 3px rgba(137, 100, 234, 0.12);
}
.field input::placeholder {
  color: #666270;
}
.code-wrap {
  position: relative;
}
.code-status {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
}
.code-status.ok {
  color: var(--green);
}
.code-status.bad {
  color: #ff9d9d;
}
.code-help {
  min-height: 18px;
  color: #908b99;
  font-size: 10px;
  margin-top: 5px;
}
.interest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.interest input {
  position: absolute;
  opacity: 0;
}
.interest label {
  display: grid;
  place-items: center;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #95919d;
  font-size: 11px;
  cursor: pointer;
}
.interest input:checked + label {
  border-color: #9d7aef;
  color: #f1ebff;
  background: rgba(139, 102, 233, 0.13);
}
.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 17px 0;
  color: #9f9aa8;
  font-size: 10px;
}
.consent input {
  margin-top: 2px;
  accent-color: #8d69ed;
}
.button {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #9b8dff, #6f5fe0);
  color: #ffffff;
  box-shadow: 0 16px 30px -14px rgba(111, 95, 224, 0.8);
}
.button:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 1;
  color: #ffffff;
  background: linear-gradient(135deg, #9b8dff, #6f5fe0);
  box-shadow: 0 16px 30px -14px rgba(111, 95, 224, 0.8);
}
.form-foot {
  text-align: center;
  color: #77727f;
  font-size: 9px;
  margin: 11px 0 0;
}
.form-error {
  display: none;
  color: #ffabab;
  background: rgba(173, 60, 60, 0.09);
  border: 1px solid rgba(255, 110, 110, 0.18);
  padding: 9px 11px;
  border-radius: 8px;
  margin: 12px 0 0;
  font-size: 11px;
}
.form-error.show {
  display: block;
}
.section {
  padding: 115px 0;
  position: relative;
}
.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a98cff;
  font-weight: 750;
}
.section h2 {
  font-size: clamp(38px, 4.3vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin: 17px 0;
}
.section-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #aaa6b5;
  max-width: 650px;
}
.demo-shell {
  margin-top: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(145deg, #111019, #0c0c12);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.demo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 24px;
}
.dots {
  display: flex;
  gap: 7px;
}
.dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35323e;
}
.demo-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #77727f;
}
.demo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 400px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.video-vault {
  padding: 30px;
  background: #0b0b10;
  border-right: 1px solid var(--line);
}
.phone-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.phone-title strong {
  font-size: 14px;
}
.video-count {
  font-size: 10px;
  color: #b79cff;
  background: rgba(145, 104, 242, 0.1);
  padding: 5px 8px;
  border-radius: 999px;
}
.video-list {
  display: grid;
  gap: 9px;
}
.video {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
  padding: 9px;
}
.thumb {
  width: 44px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #2d2a3a, #111117);
  display: grid;
  place-items: center;
  color: #b89dff;
  font-size: 11px;
}
.video span {
  font-size: 11px;
  color: #c7c3ce;
}
.video small {
  display: block;
  color: #6f6a77;
  margin-top: 3px;
}
.lost {
  margin-top: 22px;
  padding: 13px;
  border-left: 2px solid #8462e6;
  color: #aaa4b6;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-style: italic;
  background: linear-gradient(90deg, rgba(130, 94, 226, 0.08), transparent);
}
.mentor-demo {
  padding: 32px;
  background: radial-gradient(
    circle at 85% 0,
    rgba(122, 87, 223, 0.12),
    transparent 35%
  );
}
.mentor-head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.mentor-orb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 40% 30%,
    #d7c9ff,
    #7b59ef 38%,
    #24212f 70%
  );
  box-shadow: 0 0 25px rgba(135, 96, 237, 0.35);
  font-weight: 800;
  font-size: 12px;
}
.mentor-head strong {
  display: block;
  font-size: 13px;
}
.mentor-head small {
  color: #817b8a;
}
.bubble {
  border-radius: 16px;
  padding: 15px 17px;
  font-size: 13px;
  max-width: 90%;
  margin-bottom: 14px;
}
.bubble.user {
  background: linear-gradient(135deg, #6942d5, #8e62f2);
  margin-left: auto;
}
.bubble.ai {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #d1ccd8;
}
.answer-card {
  border: 1px solid rgba(151, 118, 237, 0.25);
  background: rgba(132, 91, 226, 0.07);
  border-radius: 14px;
  padding: 17px;
  margin-top: 12px;
}
.answer-meta {
  display: flex;
  justify-content: space-between;
  color: #aaa5b3;
  font-size: 10px;
  margin-bottom: 8px;
}
.answer-title {
  font-size: 14px;
  font-weight: 700;
}
.answer-excerpt {
  color: #aaa6b5;
  font-size: 11px;
  margin: 8px 0 13px;
}
.jump {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d1c3ff;
  font-size: 11px;
  font-weight: 700;
}
.demo-punch {
  text-align: center;
  margin: 25px 0 4px;
  font-size: 18px;
  color: #e7e1f2;
}
.process-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.process-card,
.benefit {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.025);
}
.process-no {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #a98bff;
  letter-spacing: 0.13em;
}
.process-card h3,
.benefit h3 {
  font-size: 18px;
  margin: 28px 0 9px;
}
.process-card p,
.benefit p {
  font-size: 13px;
  color: #9f9aa7;
  margin: 0;
  line-height: 1.65;
}
.mentor-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.question-stack {
  display: grid;
  gap: 10px;
}
.question {
  border: 1px solid var(--line);
  background: linear-gradient(
    90deg,
    rgba(144, 104, 240, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 14px;
  padding: 17px 18px;
  font-size: 13px;
  color: #d9d3e1;
  transform: translateX(var(--offset, 0));
}
.question:before {
  content: "›";
  color: #ac8fff;
  margin-right: 10px;
}
.source-proof {
  margin-top: 14px;
  border: 1px solid rgba(122, 213, 176, 0.18);
  background: rgba(69, 154, 119, 0.06);
  border-radius: 13px;
  padding: 13px 16px;
  color: #9fd3bc;
  font-size: 11px;
}
.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
}
.benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(148, 107, 245, 0.1);
  color: #b99dff;
}
.roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 46px;
  background: linear-gradient(
    145deg,
    rgba(34, 30, 49, 0.75),
    rgba(12, 12, 18, 0.9)
  );
  overflow: hidden;
}
.roadmap-visual {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.video-frame {
  width: min(100%, 410px);
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;
  background: linear-gradient(145deg, #282536, #0d0d12);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.38);
  display: grid;
  place-items: center;
}
.play {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #a17fff;
  color: white;
  box-shadow: 0 0 0 10px rgba(161, 127, 255, 0.08);
}
.roadmap .badge {
  display: inline-block;
  border: 1px solid rgba(169, 140, 255, 0.27);
  border-radius: 999px;
  padding: 7px 10px;
  color: #bda6ff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
}
.roadmap h2 {
  font-size: 44px;
}
.founding {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founding-list {
  display: grid;
  gap: 12px;
}
.founding-item {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #c2bdc9;
  font-size: 13px;
}
.tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(118, 223, 175, 0.09);
  border: 1px solid rgba(118, 223, 175, 0.18);
  color: #83dfb8;
  font-size: 11px;
}
.final-cta {
  text-align: center;
  padding: 120px 0 130px;
}
.final-cta h2 {
  max-width: 780px;
  margin: 18px auto 25px;
}
.final-cta p {
  color: #aaa6b5;
  margin: 0 auto 30px;
  max-width: 580px;
}
.final-cta .button {
  width: auto;
  padding: 0 28px;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: #77727f;
  font-size: 11px;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer a:hover {
  color: #c5b5ef;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.on {
  opacity: 1;
  transform: none;
}
@media (max-width: 950px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }
  .hero-copy-col {
    padding-top: 25px;
  }
  .wait-card {
    max-width: 650px;
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mentor-section,
  .founding,
  .roadmap {
    grid-template-columns: 1fr;
  }
  .mentor-section {
    gap: 40px;
  }
  .roadmap-visual {
    order: -1;
  }
  .demo-grid {
    grid-template-columns: 1fr;
  }
  .video-vault {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 650px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    height: 68px;
  }
  .brand {
    font-size: 13px;
  }
  .nav-cta {
    padding: 9px 11px;
    font-size: 11px;
  }
  .hero {
    min-height: 0;
    gap: 42px;
    padding: 42px 0 65px;
  }
  h1 {
    font-size: 48px;
    margin-top: 21px;
  }
  .hero-copy {
    font-size: 15px;
  }
  .hero-proof {
    align-items: flex-start;
  }
  .wait-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .section {
    padding: 78px 0;
  }
  .section h2 {
    font-size: 40px;
  }
  .demo-shell {
    padding: 8px;
    border-radius: 22px;
  }
  .demo-grid {
    min-height: 0;
  }
  .video-vault,
  .mentor-demo {
    padding: 22px 16px;
  }
  .bubble {
    max-width: 97%;
  }
  .process-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .question {
    transform: none;
  }
  .roadmap {
    padding: 25px 18px;
  }
  .roadmap h2 {
    font-size: 38px;
  }
  .founding {
    gap: 38px;
  }
  .final-cta {
    padding: 86px 0 95px;
  }
  .footer-row {
    flex-direction: column;
  }
  .hero-proof .proof-line {
    display: none;
  }
  .hero-proof {
    flex-wrap: wrap;
  }
  .interest {
    grid-template-columns: 1fr;
  }
  .interest label {
    height: 36px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-cta,
  .button {
    transition: none;
  }
}
