@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap");
:root {
  --gold: #efb91b;
  --gold-15: rgba(239,185,27,0.15);
  --gold-08: rgba(239,185,27,0.08);
  --gold-04: rgba(239,185,27,0.04);
  --blue: #53B5E6;
  --blue-15: rgba(83,181,230,0.15);
  --blue-08: rgba(83,181,230,0.08);
  --bg: #00153E;
  --bg-card: #001a4a;
  --bg-card-2: #002060;
  --white: #eeecea;
  --white-70: rgba(238,236,234,0.70);
  --white-45: rgba(238,236,234,0.45);
  --white-20: rgba(238,236,234,0.20);
  --white-08: rgba(238,236,234,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: "DM Sans", -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

section {
  padding: 0 24px;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  section {
    max-width: 620px;
  }
}
@media (min-width: 1024px) {
  section {
    max-width: 800px;
  }
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */
.hero {
  padding-top: 48px;
  position: relative;
}
.hero .hero-logos {
  display: flex;
  gap: 2rem;
}
.hero .hero-logos .hero-logo {
  width: auto;
  height: 35px;
  margin-bottom: 32px;
  position: relative;
  animation: fadeUp 0.6s ease both;
}
.hero .hero-ticker {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  animation: fadeUp 0.6s ease 0.05s both;
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  position: relative;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 .gold {
  color: var(--gold);
}
.hero h1 .blue {
  color: var(--blue);
}
.hero .hero-sub {
  font-size: 18px;
  color: var(--white-70);
  line-height: 1.45;
  max-width: 380px;
  position: relative;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero .hero-sub strong {
  color: var(--white);
  font-weight: 600;
}
@media (min-width: 600px) {
  .hero {
    padding-top: 64px;
  }
  .hero h1 {
    font-size: 52px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 64px;
    letter-spacing: -2.5px;
  }
  .hero .hero-sub {
    font-size: 20px;
    max-width: 560px;
  }
  .hero .hero-logos .hero-logo {
    height: 80px;
    width: auto;
  }
}

/* ============================================ */
/* SPACERS                                       */
/* ============================================ */
.spacer-lg {
  height: 56px;
}

.spacer-xl {
  height: 72px;
}

.spacer-md {
  height: 40px;
}

.spacer-sm {
  height: 24px;
}

.spacer-xs {
  height: 16px;
}

/* ============================================ */
/* PROOF STRIP                                   */
/* ============================================ */
.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  padding: 0;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .proof-strip {
    max-width: 620px;
  }
}
@media (min-width: 1024px) {
  .proof-strip {
    max-width: 800px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
  }
  .proof-strip .proof-item {
    padding: 32px 24px;
  }
}

.proof-item {
  background: var(--bg-card);
  padding: 24px 16px;
  text-align: center;
}
.proof-item:first-child {
  border-radius: 12px 0 0 12px;
}
.proof-item:last-child {
  border-radius: 0 12px 12px 0;
}
.proof-item .proof-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.proof-item .proof-num.gold {
  color: var(--gold);
}
.proof-item .proof-num.blue {
  color: var(--blue);
}
.proof-item .proof-label {
  font-size: 11px;
  color: var(--white-45);
  letter-spacing: 0.5px;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .proof-item .proof-num {
    font-size: 34px;
  }
  .proof-item .proof-label {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .proof-item .proof-num {
    font-size: 40px;
  }
  .proof-item .proof-label {
    font-size: 13px;
  }
}

.proof-disclaimer {
  font-size: 9px;
  color: var(--white-20);
  text-align: center;
  margin-top: 8px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

/* ============================================ */
/* QUICK CAPTURE (top of page)                   */
/* ============================================ */
.quick-capture {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}
.quick-capture .quick-capture-inner {
  background: var(--bg-card);
  border: 1px solid var(--gold-08);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quick-capture .quick-capture-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.quick-capture .quick-capture-text {
  font-size: 15px;
  color: var(--white-70);
  margin-bottom: 16px;
  line-height: 1.4;
}
.quick-capture .quick-capture-text strong {
  color: var(--white);
  font-weight: 600;
}
.quick-capture .quick-capture-form {
  display: flex;
  gap: 8px;
}
.quick-capture .quick-capture-input {
  flex: 1;
  background: var(--bg-card-2);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.quick-capture .quick-capture-input::placeholder {
  color: var(--white-20);
}
.quick-capture .quick-capture-input:focus {
  border-color: var(--gold);
}
.quick-capture .quick-capture-btn {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  transition: transform 0.15s, opacity 0.15s;
  flex-shrink: 0;
}
.quick-capture .quick-capture-btn:active {
  transform: scale(0.97);
  opacity: 0.9;
}
@media (min-width: 600px) {
  .quick-capture {
    max-width: 620px;
  }
}
@media (min-width: 1024px) {
  .quick-capture {
    max-width: 800px;
  }
  .quick-capture .quick-capture-inner {
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
  }
  .quick-capture .quick-capture-text {
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 16px;
  }
  .quick-capture .quick-capture-form {
    flex: 1;
  }
}

/* ============================================ */
/* DIVIDER                                       */
/* ============================================ */
.divider {
  height: 1px;
  background: var(--white-08);
  margin: 0 24px;
  max-width: 432px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  .divider {
    max-width: 572px;
  }
}
@media (min-width: 1024px) {
  .divider {
    max-width: 752px;
  }
}

/* ============================================ */
/* SECTION HEADERS                               */
/* ============================================ */
.section-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-45);
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .gold {
  color: var(--gold);
}
.section-title .blue {
  color: var(--blue);
}
@media (min-width: 600px) {
  .section-title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .section-title {
    font-size: 36px;
  }
}

.engines-title {
  width: 100%;
  max-width: 480px;
}
@media (min-width: 600px) {
  .engines-title {
    max-width: 572px;
  }
}
@media (min-width: 1024px) {
  .engines-title {
    max-width: 752px;
  }
}

/* ============================================ */
/* ENGINES ROW                                   */
/* ============================================ */
.engines-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}
.engines-row section {
  padding: 0;
  max-width: none;
}
@media (min-width: 600px) {
  .engines-row {
    max-width: 620px;
  }
}
@media (min-width: 1024px) {
  .engines-row {
    flex-direction: row;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .engines-row section {
    flex: 1;
    padding: 0;
    max-width: none;
  }
}

.engines-row + div {
  margin: 0 auto;
  margin-top: 16px;
  max-width: 432px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.engines-row + div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}
.engines-row + div img {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) {
  .engines-row + div {
    max-width: 572px;
  }
}
@media (min-width: 1024px) {
  .engines-row + div {
    max-width: 752px;
  }
}

/* ============================================ */
/* ENGINE CARDS                                  */
/* ============================================ */
.engine-card {
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.engine-card.btc {
  background: var(--bg-card);
  border: 1px solid var(--gold-08);
}
.engine-card.btc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.engine-card.ai {
  background: var(--bg-card);
  border: 1px solid var(--blue-08);
}
.engine-card.ai::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.engine-card .engine-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.engine-card .engine-tag.gold {
  color: var(--gold);
}
.engine-card .engine-tag.blue {
  color: var(--blue);
}
.engine-card .engine-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.engine-card .engine-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.engine-card .e-stat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.engine-card .e-stat-num.gold {
  color: var(--gold);
}
.engine-card .e-stat-num.blue {
  color: var(--blue);
}
.engine-card .e-stat-label {
  font-size: 12px;
  color: var(--white-45);
  line-height: 1.3;
}
.engine-card .engine-body {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.5;
}
@media (min-width: 600px) {
  .engine-card {
    padding: 40px 36px;
  }
  .engine-card .engine-title {
    font-size: 32px;
  }
  .engine-card .e-stat-num {
    font-size: 28px;
  }
  .engine-card .e-stat-label {
    font-size: 13px;
  }
}
@media (min-width: 1024px) {
  .engine-card {
    padding: 36px 32px;
    height: 100%;
  }
  .engine-card .engine-title {
    font-size: 30px;
  }
  .engine-card .e-stat-num {
    font-size: 26px;
  }
  .engine-card .engine-body {
    font-size: 14px;
  }
}

/* ============================================ */
/* QUOTE                                         */
/* ============================================ */
.quote-block {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
}
.quote-block .quote-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 16px;
}
.quote-block .quote-text .gold {
  color: var(--gold);
}
.quote-block .quote-text .blue {
  color: var(--blue);
}
.quote-block .quote-attr {
  font-size: 13px;
  color: var(--white-45);
}
.quote-block .quote-attr strong {
  color: var(--white-70);
  font-weight: 600;
}
@media (min-width: 600px) {
  .quote-block .quote-text {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .quote-block {
    padding: 40px 36px;
  }
  .quote-block .quote-text {
    font-size: 22px;
  }
}

/* ============================================ */
/* TIMELINE                                      */
/* ============================================ */
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--blue));
}
.timeline .tl-item {
  position: relative;
  padding-left: 24px;
  padding-bottom: 28px;
}
.timeline .tl-item:last-child {
  padding-bottom: 0;
}
.timeline .tl-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.timeline .tl-item.blue-dot::before {
  background: var(--blue);
}
.timeline .tl-item.white-dot::before {
  background: var(--white);
}
.timeline .tl-item .tl-year {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.timeline .tl-item .tl-year.gold {
  color: var(--gold);
}
.timeline .tl-item .tl-year.blue {
  color: var(--blue);
}
.timeline .tl-item .tl-text {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.4;
}
.timeline .tl-item .tl-text strong {
  color: var(--white);
  font-weight: 600;
}
@media (min-width: 1024px) {
  .timeline .tl-text {
    font-size: 16px;
  }
}

/* ============================================ */
/* WHY NOW                                       */
/* ============================================ */
.why-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--white-08);
}
.why-item:last-child {
  border-bottom: none;
}
.why-item .why-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.why-item .why-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.why-item .why-body {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.5;
}
@media (min-width: 600px) {
  .why-item .why-title {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  .why-item .why-title {
    font-size: 24px;
  }
  .why-item .why-body {
    font-size: 16px;
  }
}

/* ============================================ */
/* CTA                                           */
/* ============================================ */
.cta-section {
  text-align: center;
  padding: 48px 24px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.cta-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: radial-gradient(ellipse 80% 70% at 50% 100%, var(--gold-04), transparent);
  pointer-events: none;
}
.cta-section .cta-headline {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
}
.cta-section .cta-headline .gold {
  color: var(--gold);
}
.cta-section .cta-sub {
  font-size: 15px;
  color: var(--white-45);
  margin-bottom: 32px;
  position: relative;
}
.cta-section .cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.cta-section .cta-input {
  background: var(--bg-card-2);
  border: 1px solid var(--white-08);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 15px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.cta-section .cta-input::placeholder {
  color: var(--white-20);
}
.cta-section .cta-input:focus {
  border-color: var(--gold);
}
.cta-section .cta-btn {
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.3px;
  transition: transform 0.15s, opacity 0.15s;
}
.cta-section .cta-btn:active {
  transform: scale(0.97);
  opacity: 0.9;
}
@media (min-width: 600px) {
  .cta-section {
    max-width: 620px;
  }
  .cta-section .cta-headline {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    max-width: 800px;
  }
  .cta-section .cta-headline {
    font-size: 40px;
  }
  .cta-section .cta-form {
    max-width: 420px;
  }
  .cta-section .cta-input {
    font-size: 16px;
  }
}

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */
.footer {
  padding: 40px 24px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.footer .footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}
.footer .footer-links {
  font-size: 13px;
  color: var(--white-45);
  line-height: 2;
  margin-bottom: 24px;
}
.footer .footer-links a {
  color: var(--white-45);
  text-decoration: none;
}
.footer .footer-legal {
  font-size: 11px;
  color: var(--white-20);
  line-height: 1.6;
}
@media (min-width: 600px) {
  .footer {
    max-width: 620px;
  }
}
@media (min-width: 1024px) {
  .footer {
    max-width: 800px;
  }
  .footer .footer-logo {
    width: 200px;
  }
}

/* ============================================ */
/* ANIMATIONS                                    */
/* ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=styles.css.map */
