/*
=================================================================
 B O L D E R
================================================================= */

@font-face {
  font-family: Flecha M;
  src: url(FlechaM-Light.woff2)format("woff2"),
       url(FlechaM-Light.woff)format("woff");
  font-weight: 300;
  font-display: swap
}

@font-face {
  font-family: Flecha M;
  src: url(FlechaM-Regular.woff2)format("woff2"),
       url(FlechaM-Regular.woff)format("woff");
  font-weight: 400;
  font-display: swap
}

@font-face {
  font-family: Flecha S;
  src: url(FlechaS-Light.woff2)format("woff2");
  font-weight: 300;
  font-display: swap
}

@font-face {
  font-family: Flecha S;
  src: url(FlechaS-Regular.woff2)format("woff2");
  font-weight: 400;
  font-display: swap
}

:root {
  /* palette */
  --ink:      #1B1A17;  /* near-black, warm */
  --navy:     #1E222D;  /* dark navy */
  --bone:     #EDE8E6;  /* warm off-white */
  --white:    #FFFFFF;
  --ember:    #e8421d;  /* orange-red accent */
  --indigo:   #4F46E5;  /* primary action */

  --ember-washed:  #cb6352;  /* orange-red accent */
  --indigo-washed: #6865a9;

  /* derived */
  --ink-soft:     #2A2925;
  --bone-dim:     #DED8D0;
  --indigo-hover: #5B54F0;
  --indigo-soft:  #8B87FF;  /* indigo for text on dark */
  --text-on-dark:   #E9E4DC;
  --muted-on-dark:  #a7a5a2;
  --muted-on-light: #6E6A63;
  --line-on-dark:   rgba(233, 228, 220, .14);
  --line-on-light:  rgba(27, 26, 23, .14);

  /* type */
/*  --font-display: 'Habibi', serif;*/
/*  --font-display: 'Montaga', serif;*/
  --font-display: "Flecha M","Flecha S","Montaga",Georgia,serif;
  --font-body: 'IBM Plex Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 6px;
  --measure: 34em;
}

/* -----------------------------------------------------------------
   Font loader
   ----------------------------------------------------------------- */
#font-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity .4s ease .1s;
}
#font-loader.done {
  opacity: 0;
}
#font-loader-bar {
  height: 2px;
  width: 0;
  background: var(--ember);
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

/* Thin scrollbar, everywhere */
html {
  scrollbar-width: thin;
  scrollbar-color: #bbb transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #bbb; border-radius: 4px; }

/* No scrollbar at all while the font loader is up */
html:has(#font-loader:not(.done)) {
  overflow: hidden;
  scrollbar-width: none;
}
html:has(#font-loader:not(.done))::-webkit-scrollbar {
  display: none;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
/*  word-spacing: -0.1em;*/
}

/* -----------------------------------------------------------------
   Utility
   ----------------------------------------------------------------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

@media (max-width: 600px) {
  .wrap { padding: 0 25px }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
}
.mono { font-family: var(--font-mono); }

/* type scale */
.t-hero { font-size: clamp(48px, 5.5vw, 76px); line-height: .98; }
.t-h2   { font-size: clamp(36px, 5vw, 48px); line-height: 1.05; }
.t-h3   { font-size: clamp(24px, 3vw, 30px); line-height: 1.15; }
.t-lede { font-size: 20px; line-height: 1.5; max-width: var(--measure); }
.t-body { font-size: 16px; max-width: var(--measure); }
.t-mono { font-family: var(--font-mono); font-size: 13px; line-height: 1.8; }

/* -----------------------------------------------------------------
   Sections
   ----------------------------------------------------------------- */
section.sec { padding: 140px 0; border-top: 1px solid var(--line-on-dark); }
section.sec.roomy { padding: 180px 0; }
section.sec.light { background: var(--bone); color: var(--ink); border-top-color: var(--line-on-light); }
section.sec.white { background: var(--white); }
section.sec.grid {
/*
  background-image:
    linear-gradient(rgba(233, 228, 220, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 228, 220, .06) 1px, transparent 1px);
  background-size: 44px 44px;
*/
  border-top: none;
  background: linear-gradient(0deg, black, transparent);
}

@media (max-width: 600px) {
  section.sec {
    padding: 100px 0;
  }
}

.section-head { max-width: 680px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted-on-dark); margin-top: 18px; }
.light .section-head p, .light .lede { color: var(--muted-on-light); }

/* -----------------------------------------------------------------
   Buttons & badges
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s;
}
.btn:active {
  transform: scale(0.98);
}

.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-indigo { background: var(--indigo); color: var(--white); }
.btn-indigo:hover { background: var(--indigo-hover);  }
.btn-ember { background: var(--ember); color: var(--white); }
.btn-ember:hover { background: #F25526;  }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, .25); }
.btn-ghost { border-color: var(--line-on-dark); color: var(--text-on-dark); background: transparent; }
.btn-ghost:hover { border-color: var(--text-on-dark); }
.light .btn-ghost { border-color: var(--line-on-light); color: var(--ink); }
.light .btn-ghost:hover { border-color: var(--ink); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--line-on-light); }
.btn-block { display: flex; width: 100%; justify-content: center; margin-bottom: 10px; }
.btn-block:last-child { margin-bottom: 0; }
.btn .arrow { width: 15px; height: 15px; flex-shrink: 0; transition: transform .18s; }
.btn:hover .arrow { transform: translateX(3px); }

.uber_required, .phone_row {
  display: none !important;
}

input.input,
textarea.input,
select.select {
  width: 100%;
  transition: .2s border-color;
  height: 40px; /* same as buttons */
  /* line-height: 40px; */
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  border-radius: 0.2em;
  background-color: #fff;
  border: 0;
  outline: none;
  border: 1px solid #D1D1D1;
  box-sizing: border-box
}

.label {
  display: block;
  color: #333;
  font-size: 13px;
  margin-bottom: 4px;
}

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--line-on-dark);
  color: #bdbbb9;
  background: rgba(255, 255, 255, 0.1);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember-washed); }

@media (max-width: 600px) {
  .badge {
    display: none;
  }
}

/* -----------------------------------------------------------------
   Site header + hero (particle field behind content)
   ----------------------------------------------------------------- */
.site-head {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
}

@media (max-width: 600px) {
  .site-head {
    padding: 16px 25px;
  }
}

.site-head .logo-img {
/*  display: block; */
  height: 12px;
  width: auto;
}

.site-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.site-head-actions .btn {
  height: 34px;
  padding: 0 16px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 40px 100px;
}
#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /*margin-left: -30px;*/
  opacity: 0.7;
}
.hero::after {
  /* soft veil so type stays readable over the particles */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 52% 42% at 50% 48%, rgba(27, 26, 23, .55), transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroIn 1.1s cubic-bezier(.16, 1, .3, 1) .15s both;
  animation-play-state: paused;
}
body.theme-ready .hero-content {
  animation-play-state: running;
}
@keyframes heroIn {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1); }
}
.hero-content h1 { margin: 16px auto 24px; max-width: 12em; }
.hero-content .lede { margin: 0 auto 36px; color: #bdbbb9; max-width: 37em; }
.hero-content .lede strong { font-weight: 500; color: #fff }

@media (max-width: 600px) {
  .t-lede {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------------
   Word reveal
   ----------------------------------------------------------------- */
.reveal-mock p.display {
  font-size: clamp(34px, 4.6vw, 42px);
  line-height: 1.22;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.reveal-mock .wd {
  display: inline-block;
  color: color-mix(in srgb, var(--ink) 18%, var(--bone));
  opacity: .3;
  transform: translateY(.2em);
  transition: color .5s ease, opacity .5s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--wd-delay, 0ms);
}
.reveal-mock .wd.on { color: #393731; opacity: 1; transform: translateY(0); }
.reveal-mock .wd.bold.on { color: var(--ink); }
.reveal-mock .wd.accent.on { color: var(--ember-washed); }

/* -----------------------------------------------------------------
   Sell anything: split accordion, list left / sticky stage right
   ----------------------------------------------------------------- */
.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.showcase-split.reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.acc-item { border-top: 1px solid var(--line-on-light); }
.acc-item:last-child { border-bottom: 1px solid var(--line-on-light); }

/* Timed accordion: the top border itself fills to show progress toward
   the next auto-advance, instead of a separate progress bar. */
.acc.timed .acc-item { position: relative; }
.acc.timed .acc-item::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}
.acc.timed.started .acc-item.open::before { animation: segfill 6s linear forwards; }
.acc-head {
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
}
.acc-head .num { font-family: var(--font-mono); font-size: 11px; color: var(--muted-on-light); }
.acc-head .name {
  font-size: clamp(21px, 2.2vw, 26px);
  line-height: 1.1;
  transition: color .18s, transform .18s;
  color: var(--muted-on-light);
}
.acc-item:hover .name, .acc-item.open .name { color: var(--ink); }
.acc-item:hover .name { transform: translateX(4px); }
.acc-head .toggle {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--ember);
  justify-self: end;
  transition: transform .25s;
}
.acc-item.open .toggle { transform: rotate(45deg); }
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4, 0, .2, 1);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-content { padding: 0 0 26px 56px; }
.acc-content p { font-size: 15px; color: var(--muted-on-light); max-width: 28em; }

.acc-stage {
  position: sticky;
  top: 72px;
  min-height: 520px;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
}
.acc-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(27, 26, 23, .05) 1px, transparent 1px);
  background-size: 8px 8px;
  mask-image: radial-gradient(ellipse 60% 50% at 80% 15%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 80% 15%, black, transparent 70%);
}
.acc-stage canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 900px) {
  .showcase-split, .showcase-split.reverse { grid-template-columns: 1fr; margin-top: 0 }
  .showcase-split canvas { margin-top: -48px;  }
  .acc-stage { position: relative; min-height: 380px; order: -1; }
  .checkout-stage { padding: clamp(20px, 6vw, 40px) 0; }
}

/* -----------------------------------------------------------------
   Checkout: split accordion + crossfading mock-screenshot stage
   (reuses .stage/.mock-panel crossfade from the headless section, and
   .progress-track for the advance bar — only the light card variant and
   its inner content are new)
   ----------------------------------------------------------------- */
.checkout-stage {
  display: grid;
  place-items: center;
  padding: clamp(28px, 4vw, 72px);
/*
  background:
    url('bg.jpg') center / cover no-repeat,
    linear-gradient(150deg, #5A50E8, #C4482F);
*/
}

@media (max-width: 600px) {
  .checkout-stage {
    top: 24px;
    padding: 20px 32px;
  }
}

.checkout-stage::before { display: none; }
.checkout-stage .mock-panel { width: min(340px, 100%); }
.mock-panel.light { background: var(--white); }
.mock-panel.light .bar { background: var(--bone-dim); }
.mock-panel.light .bar i { background: #cfc8c1; }
.mock-panel.light .bar span { color: var(--muted-on-light); }
.mock-panel.light .body { padding: 22px 20px 24px; color: var(--ink); font-family: var(--font-body); line-height: normal; }
.mock-panel .body.shot { padding: 0; line-height: 0; }
.mock-shot { display: block; width: 100%; height: auto; }

.checkout-stage .mock-panel {
  box-shadow: 0 30px 30px rgba(27, 26, 23, .15);
  width: auto;
  max-width: 394px;
}

.checkout-stage .mock-panel.noshadow {
  box-shadow: none;
}


.checkout-stage .mock-panel .bar {
  display: none;
}

/* -----------------------------------------------------------------
   Logistics: three tall cards, mock panel + statement, center gradient
   ----------------------------------------------------------------- */
.logi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.logi-card {
  position: relative;
  min-height: 460px;
  padding: 32px 28px 36px;
  border-radius: 14px;
  background: var(--bone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.logi-card::before {
  /* faint diagonal wireframe lines, like the reference cards */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 38px, rgba(27, 26, 23, .07) 38px 39px);
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.logi-card.dark {
  color: var(--white);
  background: #1b1a17;
}

.logi-card.gradient {
  color: var(--white);
  background:
    radial-gradient(ellipse 65% 60% at 50% 105%, rgba(90, 220, 235, .4), transparent 62%),
    linear-gradient(165deg, #3F3792 0%, #5A50D6 32%, #3E7FD6 66%, #26A6C9 100%);
}

.logi-card.dark::before,
.logi-card.gradient::before {
  background-image: repeating-linear-gradient(135deg, transparent 0 38px, rgba(255, 255, 255, .12) 38px 39px);
}

.logi-mock {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 16px;
  box-shadow: 0 16px 40px rgba(27, 26, 23, .12);
  font-family: var(--font-mono);
  font-size: 12px;
}
.logi-mock .row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line-on-light);
  color: var(--muted-on-light);
}
.logi-mock .row:first-child { border-top: none; }
.logi-mock .row.best { color: var(--ink); }
.logi-mock .row.best span:last-child { color: var(--ember); }
.logi-mock.timeline { margin-top: auto; }
.logi-mock .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-on-light);
  margin-right: 8px;
}
.logi-mock .dot.done { background: var(--indigo); }

.logi-stat {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
}
.logi-stat .tiny {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-on-light);
  margin-bottom: 12px;
  display: none;
}
.logi-stat p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.32;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--ink) 45%, var(--bone));
}
.logi-stat p .hl { color: var(--ink); }

.logi-headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  letter-spacing: -0.05em;
/*  word-spacing: -0.1em;*/
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.25;
}

@media (max-width: 900px) {
  .logi-cards { grid-template-columns: 1fr; }
  .logi-card { min-height: 320px; }
}

/* -----------------------------------------------------------------
   FAQ: single-column accordion, same mechanics, no side stage
   ----------------------------------------------------------------- */
.acc.faq { max-width: 780px; margin: 48px auto 0; }
/*.acc.faq .acc-head { grid-template-columns: 44px 1fr 28px; }*/
.acc.faq .name { font-size: clamp(20px, 2vw, 22px); }
.faq-content { padding-left: 0; max-width: 100%; }
.faq-content p { max-width: 100%; font-size: 15.5px; }
.faq-content a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 600px) {
  .acc-head {
    gap: 12px;
  }
}

/* -----------------------------------------------------------------
   Headless: shader stage + terminal slideshow + Branch columns
   ----------------------------------------------------------------- */
.stage {
  position: relative;
  margin-top: 56px;
  border-radius: 16px;
  padding: clamp(28px, 6vw, 72px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    url('bg.jpg') center / cover no-repeat,
    linear-gradient(150deg, #6e6a63, #C4482F);
}

.mock-panel {
  width: min(860px, 100%);
  background: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(27, 26, 23, .45);
}
.stage .mock-panel, .checkout-stage .mock-panel {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.stage .mock-panel.active, .checkout-stage .mock-panel.active { opacity: 1; pointer-events: auto; }
.mock-panel .bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 16px;
  background: var(--ink-soft);
}
.mock-panel .bar i { width: 11px; height: 11px; border-radius: 50%; background: #4a4843; }
.mock-panel .bar span { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 11px; color: var(--muted-on-dark); transform: translateX(-27px); }
.mock-panel .body {
  padding: 24px 24px 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 2.05;
  color: var(--text-on-dark);
}
.mock-panel .c-dim { color: var(--muted-on-dark); }
.mock-panel .c-ember { color: var(--ember); }
.mock-panel .c-indigo { color: var(--indigo-soft); }
.mock-panel .body.code { line-height: 1.65; overflow-x: auto; color: #c0bcb5; }
.mock-panel .body.code pre { margin: 0; }
.mock-panel .body.code code { font: inherit; color: inherit; white-space: pre; }
.mock-panel .body.code .tok-kw    { color: #9d99cc; }
.mock-panel .body.code .tok-const { color: #7ab8b0; font-weight: 600; }
.mock-panel .body.code .tok-str   { color: #c89476; }
.mock-panel .body.code .tok-num   { color: #c0a07a; }
.mock-panel .body.code .tok-com   { color: #8aaa90; }
.mock-panel .body.code .tok-fn    { color: #b8aa72; }
.mock-panel .body.code .tok-prop  { color: #89b0a8; }
.tw-cursor { display: inline-block; animation: tw-blink 0.65s step-end infinite; }
@keyframes tw-blink { 50% { opacity: 0; } }

.progress-track { display: flex; gap: 40px; margin-top: 48px; }
.progress-track .segment { flex: 1; height: 2px; background: var(--line-on-light); position: relative; overflow: hidden; }
.progress-track .segment i { position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; }
.progress-track .segment.done i { transform: scaleX(1); }
.progress-track .segment.active i { animation: segfill 6s linear forwards; }
@keyframes segfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hs-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 22px; }
.hs-col { cursor: pointer; opacity: .35; transition: opacity .3s; background: none; border: none; padding: 0; text-align: left; color: inherit; font-family: inherit; }
.hs-col:hover { opacity: .65; }
.hs-col.active { opacity: 1; cursor: default; }
.hs-col .num { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted-on-light); margin-bottom: 12px; }
.hs-col p { font-size: 14.5px; line-height: 1.6; color: var(--muted-on-light); }
.hs-col p b { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .progress-track { display: none; }
  .hs-cols { grid-template-columns: 1fr; gap: 32px; }
}

/* -----------------------------------------------------------------
   AI: tabs + typewriter prompt pills
   ----------------------------------------------------------------- */
.ai-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 36px; }
.ai-tabs button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-on-dark);
  background: transparent;
  color: var(--muted-on-dark);
  cursor: pointer;
  transition: all .15s;
}
.ai-tabs button:hover { border-color: var(--muted-on-dark); color: var(--text-on-dark); }
.ai-tabs button.active { background: var(--white); border-color: var(--white); color: var(--ink); }
.ai-tabs .soon { border: none; cursor: default; }
.ai-tabs .soon:hover { color: var(--muted-on-dark); border: none; }
.prompts { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 40px; min-height: 240px; }
.prompt-pill {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
/*  word-spacing: -0.1em;*/
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  background: var(--indigo-washed);
  color: var(--white);
  padding: .3em .8em .38em;
  border-radius: 999px;
  transition: opacity .3s;
}
.prompt-pill.pending { opacity: 0; }
.prompt-pill .caret {
  display: inline-block;
  width: .07em;
  height: .95em;
  background: currentColor;
  vertical-align: -0.12em;
  margin-left: .08em;
  animation: caret-blink 1s steps(1) infinite;
}
.prompt-pill .caret.off { display: none; }
@keyframes caret-blink { 50% { opacity: 0; } }

/* -----------------------------------------------------------------
   Stats + wired tickers
   ----------------------------------------------------------------- */
.sec.has-particles { position: relative; overflow: hidden; }
.sec.has-particles .bg-particles-wrap { position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0; opacity: .55; }

.sec.has-particles-right { position: relative; overflow: hidden; }
.sec.has-particles-right .bg-particles-wrap { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; z-index: 0; opacity: .5; }

.bg-particles-wrap canvas { display: block; width: 100%; height: 100%; }
.sec.has-particles .wrap, .sec.has-particles-right .wrap { position: relative; z-index: 1; }
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 72px;
}
.stat { border-left: 1px solid var(--line-on-dark); padding-left: 32px; }
.stat .n {
  font-family: var(--font-mono);
  font-weight: 100;
  letter-spacing: -0.05em;
  font-size: clamp(42px, 7vw, 80px);
  line-height: .9;
}
.stat .n em { font-style: normal; color: var(--ember-washed); }
.stat .l {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-top: 16px;
}

@media (max-width: 600px) {
  .stats-row {
    gap: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .stat {
    padding-left: 20px;
  }
}

.wire-ticker { overflow: hidden; border-block: 1px solid var(--line-on-dark); padding: 16px 0; }
.wire-ticker:first-of-type { margin-top: 80px; }
.wire-ticker + .wire-ticker { border-top: none; }
.wire-ticker:hover .wire-track { animation-play-state: paused; }
.wire-track {
  display: inline-flex;
  white-space: nowrap;
  animation: wire-scroll 45s linear infinite;
}
.wire-ticker.reverse .wire-track { animation-direction: reverse; }
.wire-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.wire-track b { font-weight: 400; color: var(--ember); padding: 0 1.8em; }
@keyframes wire-scroll { to { transform: translateX(-50%); } }

/* -----------------------------------------------------------------
   Integrations arc
   ----------------------------------------------------------------- */
.int-arc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  height: 200px;
}
#intArc .int-card {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(27,26,23,.07), 0 2px 6px rgba(27,26,23,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .5s ease, box-shadow .55s ease;
}
#intArc .int-card .int-icon { width: 44px; height: 44px; display: block; }
#intArc .int-card .int-icon svg { width: 100%; height: 100%; display: block; }
#intArc .int-card .int-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
#intArc .int-card:nth-child(1) { transform: translateY(38px) scale(.78); opacity: .32; }
#intArc .int-card:nth-child(2) { transform: translateY(-2px) scale(.9);  opacity: .6; }
#intArc .int-card:nth-child(3) { transform: translateY(20px) scale(1);   opacity: .85; }
#intArc .int-card:nth-child(4) {
  transform: translateY(-32px) scale(1.18);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 26px 54px rgba(27,26,23,.15), 0 6px 14px rgba(27,26,23,.08);
}
#intArc .int-card:nth-child(5) { transform: translateY(16px) scale(1);   opacity: .85; }
#intArc .int-card:nth-child(6) { transform: translateY(-8px) scale(.9);  opacity: .6; }
#intArc .int-card:nth-child(7) { transform: translateY(34px) scale(.78); opacity: .32; }
#intArc .int-card.swap {
  opacity: 0 !important;
  transform: translateY(26px) scale(.7) !important;
  box-shadow: 0 8px 18px rgba(27,26,23,.05) !important;
}

@media (max-width: 600px) {
  #intArc .int-card {
    width: 84px;
    height: 84px;
  }
}

.int-below {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 56px;
}
.int-below h2 { margin: 0; font-size: clamp(36px, 5vw, 48px); }
.int-below p { color: var(--muted-on-light); font-size: 18px; line-height: 1.5; max-width: 30em; margin: 10px 0 4px }
.int-cat {
  color: var(--indigo);
  display: inline-block;
  transition: opacity .25s ease, transform .25s ease;
}
.int-cat.out { opacity: 0; transform: translateY(6px); }
.int-desc { transition: opacity .25s ease, transform .25s ease; }
.int-desc.out { opacity: 0; transform: translateY(6px); }

@media (max-width: 900px) {
  .int-arc { gap: 10px; height: 160px; }
  .int-card { width: 72px; height: 72px; border-radius: 12px; }
  .int-card .int-icon { width: 32px; height: 32px; }
  .int-below { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .int-below p { font-size: 16px; margin-top: 0 }
}

/* -----------------------------------------------------------------
   CTA + footer (grain-gradient shader behind wordmark)
   ----------------------------------------------------------------- */
.cta-inner { text-align: center; }
.cta-inner h2 { margin: 0 auto 12px; }
.cta-inner p { color: var(--muted-on-dark); max-width: 32em; margin: 0 auto 36px; }

footer.site-foot { overflow: hidden; border-top: none; }
.footer-stage { position: relative; }
.footer-img { display: block; width: 100%; height: auto; }
.footer-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(233, 228, 220, .85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, .6);
}

@media (max-width: 600px) {
  .footer-meta {

  }
}

.footer-meta a {
  color: #fafafa;
}

.footer-meta a:hover {
  color: #fff;
  text-decoration: none;
}

/* -----------------------------------------------------------------
   Scroll-in reveals & reduced motion
   ----------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .reveal-mock .wd { color: var(--ink); }
  .wire-track { animation: none; }
  #heroParticles { display: none; }
  .hero-content { animation: none; opacity: 1; transform: none; }
}


/* lang + currency select
--------------------------------------------------------------*/

.lang-select {
  padding: 0;
  border: none;
  width: auto;
  margin: 5px 0
/*  border-radius: var(--radius);*/
/*  background: rgba(255, 255, 255, 0.2);*/
}

.lang-drop-down {
  width: 66px;
}

.lang-select .lang,
.currency-select .currency {
  list-style: none;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #eee;
  padding: 0 10px 0 38px;
  margin: 0;
}

.lang-select a {
  color: #333;
  text-decoration: none;
}

/* tooltips, from pico.css
--------------------------------------------------------------*/

abbr[data-tooltip] {
  border-bottom: dotted 1px;
}

abbr[data-tooltip]:hover {
  border-bottom: solid 1px;
}

[data-tooltip] {
  position:relative
}

[data-tooltip]:not(a):not(button):not(input) {
  cursor:help
}

[data-tooltip]::after,
[data-tooltip]::before {
  display:block;
  z-index: 99;
  position: absolute;
  bottom: 200%;
  left: 50%;
  padding: .5rem 1rem;
  overflow:hidden;
  transform: translate(-50%,-.25rem);
  border-radius: .25rem;
  background: rgb(49 56 69 / 80%);
  content: attr(data-tooltip);
  color: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  width: fit-content;
  white-space: nowrap;
}

[data-tooltip]::after {
  padding: 0;
  transform: translate(-50%, .3rem);
  border-top: .6rem solid;
  border-right: .6rem solid transparent;
  border-left: .6em solid transparent;
  border-radius: 0;
  background-color:transparent;
  content:"";
  color: rgba(0,0,0,.8);
  width: auto;
}

[data-tooltip]:focus::after,
[data-tooltip]:focus::before,
[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity:1
}

@media (hover:hover) and (pointer:fine) {
  [data-tooltip]:focus::after,
  [data-tooltip]:focus::before,
  [data-tooltip]:hover::after,
  [data-tooltip]:hover::before {
    -webkit-animation-duration:.2s;
    animation-duration:.2s;
    -webkit-animation-name:slide;
    animation-name:slide
  }

  [data-tooltip]:focus::after,
  [data-tooltip]:hover::after {
    -webkit-animation-duration:.25s;
    animation-duration:.25s;
    -webkit-animation-name:slideCaret;
    animation-name:slideCaret
  }
}

/* -----------------------------------------------------------------
   Discovery (SEO / AEO / GEO)
   ----------------------------------------------------------------- */
.sec.discovery {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: clamp(480px, 64vh, 680px);
  border-top: none;
  display: flex;
  align-items: center;
  background: #1b1a17;
}

.discovery__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.discovery__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.discovery__wrap { position: relative; z-index: 2; width: 100%; }

.discovery__content {
  max-width: 640px;
  padding: clamp(64px, 10vw, 120px) 0;
  transition: opacity .35s ease, transform .35s ease;
}

.discovery__content.is-fading { opacity: 0; transform: translateY(6px); }

.discovery__tabs { display: flex; gap: 6px; margin-bottom: 22px; }

.discovery__dot {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--muted-on-dark);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  padding: 5px 11px;
  transition: color .4s ease, border-color .4s ease, background-color .4s ease;
}

.discovery__dot.is-active {
  color: var(--ink);
  background: var(--accent, var(--ember));
  border-color: var(--accent, var(--ember));
}

.discovery__dot-ext { display: none; }
.discovery__dot.is-active .discovery__dot-ext { display: inline; }

.discovery__title { margin: 0 0 16px; text-shadow: 0 2px 24px rgba(0, 0, 0, .5); }

.discovery__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-on-dark);
  max-width: 46ch;
  margin: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}

@media (prefers-reduced-motion: reduce) {
  .discovery__content, .discovery__dot, .discovery__dot-ext { transition: none; }
}