/* ==========================================================================
   Broken Pie Private Limited — Core stylesheet (base + desktop layout)
   Loaded on every screen. Mobile-specific layout lives in mobile.css
   ========================================================================== */

/* ---------- 1. Design tokens ---------------------------------------- */
:root {
  /* Brand */
  --bp-orange: #ff6b35;
  --bp-orange-soft: #ff8a5c;
  --bp-violet: #7c5cff;
  --bp-mint: #00e5a0;
  --bp-cyan: #29c7ff;

  /* Surfaces */
  --bg: #070a12;
  --bg-2: #0b0f1c;
  --surface: #101627;
  --surface-2: #151c30;
  --line: rgba(255, 255, 255, .09);
  --line-strong: rgba(255, 255, 255, .16);

  /* Text */
  --ink: #f3f5fb;
  --ink-2: #b9c0d4;
  --ink-3: #7f889f;

  /* Effects */
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .75);
  --shadow-soft: 0 12px 34px -18px rgba(0, 0, 0, .65);
  --grad: linear-gradient(135deg, var(--bp-orange) 0%, #ff4d8d 48%, var(--bp-violet) 100%);
  --grad-mint: linear-gradient(135deg, var(--bp-mint) 0%, var(--bp-cyan) 100%);

  /* Rhythm */
  --section-y: clamp(64px, 8vw, 118px);
  --container: 1200px;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- 2. Base -------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background glow — fixed so it survives scroll */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(680px 420px at 12% -6%, rgba(255, 107, 53, .16), transparent 62%),
    radial-gradient(720px 460px at 88% 2%, rgba(124, 92, 255, .16), transparent 60%),
    radial-gradient(900px 620px at 50% 108%, rgba(0, 229, 160, .08), transparent 65%);
}

body > * { position: relative; z-index: 1; }

img, svg { max-width: 100%; height: auto; display: block; }

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

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .55em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.5rem); }

p { margin: 0 0 1.1em; color: var(--ink-2); }

::selection { background: var(--bp-orange); color: #0b0f1c; }

:focus-visible {
  outline: 2px solid var(--bp-mint);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #26304b; border-radius: 20px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: #37436a; }

/* Grid & flex children default to min-width:auto, which lets wide content
   (code panels, long strings, tables) push a track past the viewport.
   Allow them to shrink instead. */
.hero__grid > *,
.split > *,
.grid > *,
.steps > *,
.stat-tiles > *,
.row > * { min-width: 0; }

/* ---------- 3. Layout helpers ---------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 5vw, 74px); }
.section--alt { background: linear-gradient(180deg, transparent, rgba(16, 22, 39, .72) 12%, rgba(16, 22, 39, .72) 88%, transparent); }

.head { max-width: 720px; margin-bottom: 52px; }
.head--center { margin-inline: auto; text-align: center; }
.head p { font-size: 1.06rem; }

/* Visibility switches — the mobile stylesheet flips these.
   NOTE: .only-desktop must NOT set a display value. `display: initial` computes
   to `inline`, which turned the sticky header into an inline box that could not
   paint its background bar — page content showed straight through it. Elements
   keep their natural display here and are hidden in mobile.css instead. */
.only-mobile { display: none !important; }

/* ---------- 4. Small components -------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bp-orange);
  background: rgba(255, 107, 53, .1);
  border: 1px solid rgba(255, 107, 53, .28);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.eyebrow--mint { color: var(--bp-mint); background: rgba(0, 229, 160, .09); border-color: rgba(0, 229, 160, .28); }
.eyebrow--violet { color: #a893ff; background: rgba(124, 92, 255, .1); border-color: rgba(124, 92, 255, .3); }

.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 22%, transparent);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  --btn-bg: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: .95rem;
  font-family: inherit;
  color: #0a0d17;
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2, .8, .3, 1), box-shadow .22s, background .22s, color .22s;
  box-shadow: 0 12px 28px -14px rgba(255, 107, 53, .85);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(255, 107, 53, .95); color: #0a0d17; }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .08); color: var(--ink); box-shadow: none; }

.btn--mint { --btn-bg: var(--grad-mint); box-shadow: 0 12px 28px -14px rgba(0, 229, 160, .8); }
.btn--mint:hover { box-shadow: 0 18px 34px -14px rgba(0, 229, 160, .9); }

.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1), border-color .28s, box-shadow .28s;
  height: 100%;
}

.card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5em; }
.card p { margin-bottom: 0; font-size: .95rem; }

.icon-badge {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255, 107, 53, .12);
  border: 1px solid rgba(255, 107, 53, .26);
  color: var(--bp-orange);
  margin-bottom: 20px;
  flex: none;
}
.icon-badge svg { width: 24px; height: 24px; }
.icon-badge--violet { background: rgba(124, 92, 255, .13); border-color: rgba(124, 92, 255, .3); color: #a893ff; }
.icon-badge--mint { background: rgba(0, 229, 160, .11); border-color: rgba(0, 229, 160, .28); color: var(--bp-mint); }
.icon-badge--cyan { background: rgba(41, 199, 255, .11); border-color: rgba(41, 199, 255, .28); color: var(--bp-cyan); }

.tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  color: var(--ink-2);
}

.mono { font-family: var(--mono); }

/* Starting-price chip — used on every product / plan card */
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 229, 160, .08);
  border: 1px solid rgba(0, 229, 160, .26);
  white-space: nowrap;
}
.price-chip .from {
  font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3);
}
.price-chip .amt { font-size: .98rem; font-weight: 800; color: var(--bp-mint); letter-spacing: -.02em; }
.price-chip--soft { background: rgba(124, 92, 255, .09); border-color: rgba(124, 92, 255, .28); }
.price-chip--soft .amt { color: #b7a8ff; }

/* Same-day delivery flag */
.sameday {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; color: var(--bp-orange);
  background: rgba(255, 107, 53, .1);
  border: 1px solid rgba(255, 107, 53, .28);
  padding: 7px 13px; border-radius: 999px;
}
.sameday svg { width: 14px; height: 14px; }

.ticklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticklist li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .95rem; color: var(--ink-2);
}
.ticklist li::before {
  content: "";
  flex: none;
  width: 19px; height: 19px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(0, 229, 160, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e5a0' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- 5. Announcement bar --------------------------------------- */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(255, 107, 53, .16), rgba(124, 92, 255, .16));
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
  color: var(--ink-2);
  text-align: center;
  padding: 9px 20px;
}
.announce strong { color: var(--ink); font-weight: 700; }
.announce .pill {
  flex: none;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--bp-orange);
  color: #10131f;
  padding: 2px 9px;
  border-radius: 999px;
}

/* ---------- 6. Brand mark --------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 40px; height: 40px; flex: none; object-fit: contain; }
.brand__name { font-weight: 800; font-size: 1.06rem; letter-spacing: -.02em; line-height: 1.1; }
.brand__sub { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- 7. Desktop header ----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  /* FULLY opaque — no alpha, no backdrop-filter. Scrolled content must never
     be visible through the bar in any browser. The slight horizontal tint
     echoes the page's ambient glow so the solid bar still looks intentional. */
  isolation: isolate;
  background: linear-gradient(90deg, #0c0a16 0%, #080a14 42%, #0a0917 100%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
/* Once stuck, the bar gets a clear edge + drop shadow so content visibly
   passes underneath it rather than looking cut off. */
.site-header.is-stuck {
  border-bottom-color: var(--line-strong);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .8), 0 1px 0 rgba(255, 255, 255, .04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  height: 76px;
}

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }
.nav__links a.is-active { color: var(--ink); background: rgba(255, 255, 255, .08); }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__phone { font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.nav__phone:hover { color: var(--bp-orange); }

.burger { display: none; }

/* ---------- 8. Hero ---------------------------------------------------- */
.hero { padding-block: clamp(56px, 7vw, 104px) clamp(56px, 7vw, 96px); position: relative; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 60px;
  align-items: center;
}

.hero h1 { margin-bottom: .4em; }
.hero__lead { font-size: 1.13rem; max-width: 56ch; }

.hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(0, 229, 160, .07);
  border: 1px solid rgba(0, 229, 160, .25);
  margin-bottom: 30px;
}
.hero__price .amt { font-size: 1.5rem; font-weight: 800; color: var(--bp-mint); letter-spacing: -.02em; }
.hero__price .lbl { font-size: .86rem; color: var(--ink-2); }

/* ---------- 8b. USP price block — the headline "from ₹12,000" offer ----- */
.usp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 26px;
  margin-bottom: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0, 229, 160, .34);
  background:
    radial-gradient(130% 180% at 0% 50%, rgba(0, 229, 160, .17), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  box-shadow: 0 20px 48px -28px rgba(0, 229, 160, .7);
  overflow: hidden;
}
/* slow sheen so the offer catches the eye without shouting */
.usp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .1) 46%, transparent 62%);
  transform: translateX(-130%);
  animation: sheen 5s cubic-bezier(.4, 0, .2, 1) infinite;
  pointer-events: none;
}
@keyframes sheen {
  0%, 62% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.usp__price { flex: none; }
.usp__from {
  display: block;
  font-size: .7rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.usp__amt {
  display: block;
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.usp__meta { font-size: .78rem; color: var(--ink-3); margin-top: 7px; }

.usp__sep { flex: none; align-self: stretch; width: 1px; background: var(--line-strong); }

.usp__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.usp__points li {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 600; color: var(--ink-2);
}
.usp__points svg { width: 16px; height: 16px; flex: none; color: var(--bp-mint); }
.usp__points b { color: var(--ink); font-weight: 700; }

/* Price emphasis inside the hero stat row */
.hero__stats .n--price {
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__stats .n { font-size: 1.65rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.hero__stats .l { font-size: .8rem; color: var(--ink-3); margin-top: 6px; }

/* Hero visual — code/terminal panel */
.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(21, 28, 48, .96), rgba(11, 15, 28, .96));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}
.panel__bar i { width: 11px; height: 11px; border-radius: 50%; background: #2c3450; }
.panel__dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.panel__title { margin-left: 8px; font-size: .78rem; color: var(--ink-3); font-family: var(--mono); }
.panel__body { padding: 22px; font-family: var(--mono); font-size: .82rem; line-height: 1.95; }
.panel__body .c-key { color: #ff8a5c; }
.panel__body .c-str { color: var(--bp-mint); }
.panel__body .c-num { color: var(--bp-cyan); }
.panel__body .c-com { color: #5c6b8a; }
.panel__body .c-mut { color: #66708c; }
.panel__body .line { display: block; white-space: pre; overflow-x: auto; }

.hero__float {
  position: absolute;
  right: 0;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 16px;
  background: rgba(16, 22, 39, .96);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  font-size: .84rem;
}
.hero__visual { position: relative; }

/* ---------- 9. Marquee / trust strip ----------------------------------- */
.strip {
  border-block: 1px solid var(--line);
  background: rgba(16, 22, 39, .5);
  padding-block: 20px;
  overflow: hidden;
}
.strip__row { display: flex; gap: 56px; align-items: center; width: max-content; animation: slide 34s linear infinite; }
.strip:hover .strip__row { animation-play-state: paused; }
.strip__item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 700; color: var(--ink-3);
  letter-spacing: .04em; white-space: nowrap;
}
.strip__item svg { width: 18px; height: 18px; color: var(--bp-orange); }

@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 10. Feature grid ------------------------------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Plans / product cards */
.plan { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.plan::after {
  content: "";
  position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad);
  opacity: .0; transition: opacity .3s;
}
.plan:hover::after { opacity: 1; }
.plan.is-featured { border-color: rgba(255, 107, 53, .45); background: linear-gradient(180deg, rgba(255, 107, 53, .09), rgba(255, 255, 255, .015)); }
.plan.is-featured::after { opacity: 1; }
.plan__ribbon {
  position: absolute; top: 18px; right: 18px;
  font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--bp-orange); color: #10131f;
  padding: 4px 10px; border-radius: 999px;
}
.plan__price { display: flex; align-items: baseline; gap: 7px; margin: 16px 0 6px; }
.plan__price .cur { font-size: 1rem; font-weight: 700; color: var(--ink-2); }
.plan__price .val { font-size: 2.2rem; font-weight: 800; letter-spacing: -.035em; }
.plan__price .per { font-size: .84rem; color: var(--ink-3); }
.plan__meta { font-size: .82rem; color: var(--ink-3); margin-bottom: 20px; }
.plan .ticklist { margin-block: 20px auto; }
.plan .btn { margin-top: 24px; }

/* ---------- 11. Split blocks ------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: -1; }

.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-tile {
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
}
.stat-tile .n { font-size: 1.8rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.stat-tile .l { font-size: .82rem; color: var(--ink-3); margin-top: 8px; }

/* ---------- 12. Tech stack --------------------------------------------- */
.stack-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .028);
  transition: border-color .25s, background .25s, transform .25s;
  height: 100%;
}
.stack-item:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .05); transform: translateY(-4px); }
.stack-item h4 { margin: 0 0 6px; font-size: 1.02rem; font-weight: 800; }
.stack-item p { margin: 0; font-size: .89rem; }
.stack-item .icon-badge { margin-bottom: 0; }

/* ---------- 13. Process steps ------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: s; position: relative; }
.step { position: relative; padding-top: 44px; }
.step::before {
  counter-increment: s;
  content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--mono);
  font-size: .82rem; font-weight: 700;
  color: var(--bp-orange);
  background: rgba(255, 107, 53, .1);
  border: 1px solid rgba(255, 107, 53, .3);
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 10px;
}
.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .9rem; margin: 0; }
.step__line { position: absolute; top: 17px; left: 44px; right: -10px; height: 1px; background: linear-gradient(90deg, var(--line-strong), transparent); }
.step:last-child .step__line { display: none; }

/* ---------- 14. Timeline (about) --------------------------------------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--bp-orange), var(--bp-violet), transparent); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--bp-orange);
}
.tl-item .yr { font-family: var(--mono); font-size: .8rem; font-weight: 700; color: var(--bp-orange); letter-spacing: .06em; }
.tl-item h4 { margin: 6px 0 8px; font-size: 1.1rem; }
.tl-item p { margin: 0; font-size: .93rem; }

/* ---------- 15. Demo cards --------------------------------------------- */
.demo-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.demo-card__top {
  padding: 26px 26px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124, 92, 255, .12), transparent 70%);
}
.demo-card__top h3 { margin-bottom: 8px; }
.demo-card__top p { font-size: .92rem; margin: 0; }
.demo-card__body { padding: 22px 26px 26px; display: flex; flex-direction: column; flex: 1; }

.creds { display: grid; gap: 10px; margin-bottom: 20px; }
.cred {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .82rem;
}
.cred span:first-child { color: var(--ink-3); }
.cred span:last-child { color: var(--ink); font-weight: 600; }

.copy-btn {
  background: none; border: 0; color: var(--bp-mint); cursor: pointer;
  font-family: var(--mono); font-size: .74rem; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
}
.copy-btn:hover { background: rgba(0, 229, 160, .12); }

.demo-actions { display: flex; gap: 10px; margin-top: auto; }
.demo-actions .btn { flex: 1; padding-inline: 14px; font-size: .88rem; }

/* ---------- 16. Forms -------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; color: var(--ink-2); }
.field label .req { color: var(--bp-orange); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, .32);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237f889f' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 17px;
  padding-right: 42px;
}
.field select option { background: var(--surface); color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #5f6980; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bp-orange);
  background: rgba(0, 0, 0, .5);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .14);
}
.field .hint { font-size: .78rem; color: var(--ink-3); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ff5470; box-shadow: 0 0 0 4px rgba(255, 84, 112, .13); }
.err-msg { font-size: .78rem; color: #ff8095; display: none; }
.field.has-error .err-msg { display: block; }

.form-note { font-size: .82rem; color: var(--ink-3); }

.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(0, 229, 160, .1);
  border: 1px solid rgba(0, 229, 160, .3);
  color: var(--bp-mint);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.form-success.is-visible { display: flex; }

/* ---------- 17. Contact info ------------------------------------------- */
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row h4 { margin: 0 0 4px; font-size: .96rem; }
.info-row p, .info-row a { margin: 0; font-size: .93rem; color: var(--ink-2); }
.info-row a:hover { color: var(--bp-orange); }

/* ---------- 18. FAQ / accordion ---------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer;
  padding: 22px 2px;
  text-align: left;
  font-family: inherit;
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
}
.faq__q:hover { color: var(--bp-orange); }
.faq__q .ico {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  transition: transform .3s, background .3s, border-color .3s;
  position: relative;
}
.faq__q .ico::before, .faq__q .ico::after {
  content: ""; position: absolute; background: currentColor; border-radius: 2px;
}
.faq__q .ico::before { width: 11px; height: 2px; }
.faq__q .ico::after { width: 2px; height: 11px; transition: transform .3s, opacity .3s; }
.faq__item.is-open .faq__q .ico { background: rgba(255, 107, 53, .14); border-color: rgba(255, 107, 53, .4); color: var(--bp-orange); }
.faq__item.is-open .faq__q .ico::after { transform: scaleY(0); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .38s cubic-bezier(.3, .8, .3, 1); }
.faq__a > div { padding: 0 46px 24px 2px; color: var(--ink-2); font-size: .95rem; }

/* ---------- 18b. Comparison table --------------------------------------- */
.tbl-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .028);
  -webkit-overflow-scrolling: touch;
}
.tbl { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .93rem; }
.tbl th, .tbl td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl thead th {
  font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); background: rgba(255, 255, 255, .035); white-space: nowrap;
}
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover { background: rgba(255, 255, 255, .026); }
.tbl td:first-child { font-weight: 700; color: var(--ink); }
.tbl td { color: var(--ink-2); }
.tbl .yes { color: var(--bp-mint); font-weight: 700; }
.tbl .no { color: var(--ink-3); }

/* ---------- 18c. Module list -------------------------------------------- */
.mod {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .026);
  height: 100%;
  transition: border-color .25s, background .25s;
}
.mod:hover { border-color: var(--line-strong); background: rgba(255, 255, 255, .05); }
.mod svg { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--bp-orange); }
.mod strong { display: block; font-size: .95rem; margin-bottom: 3px; }
.mod span { font-size: .84rem; color: var(--ink-3); line-height: 1.55; }

/* ---------- 18d. Legal pages (privacy / terms) -------------------------- */
.toc {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .028);
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}
.toc h5 {
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 16px;
}
.toc ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; counter-reset: toc; }
.toc a {
  display: block;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .86rem;
  color: var(--ink-2);
  transition: color .2s, background .2s;
}
.toc a:hover { color: var(--ink); background: rgba(255, 255, 255, .06); }

.legal { display: grid; gap: 40px; }
.legal section { scroll-margin-top: 110px; }
.legal h2 {
  font-size: clamp(1.15rem, 1.7vw, 1.42rem);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal p { font-size: .95rem; line-height: 1.75; }
.legal p:last-child { margin-bottom: 0; }
.legal ul { list-style: none; margin: 0 0 1.1em; padding: 0; display: grid; gap: 12px; }
.legal ul li {
  position: relative;
  padding-left: 26px;
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.legal ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bp-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, .14);
}
.legal strong { color: var(--ink); font-weight: 700; }
.legal a { color: var(--bp-mint); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--bp-orange); }

.legal-meta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-3);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
}

/* ---------- 19. CTA band ----------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 53, .3);
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(255, 107, 53, .2), transparent 65%),
    radial-gradient(700px 340px at 85% 100%, rgba(124, 92, 255, .22), transparent 65%),
    var(--surface);
  padding: clamp(36px, 5vw, 62px);
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { max-width: 58ch; margin-inline: auto; font-size: 1.04rem; }
.cta-band .hero__actions { justify-content: center; margin-bottom: 0; margin-top: 30px; }

/* ---------- 20. Footer -------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(9, 12, 22, .8);
  padding-block: 62px 0;
  margin-top: var(--section-y);
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; }
.footer__about p { font-size: .92rem; margin-top: 18px; max-width: 34ch; }
.footer h5 {
  font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer__list a { font-size: .93rem; color: var(--ink-2); transition: color .2s; }
.footer__list a:hover { color: var(--bp-orange); }
.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  padding-block: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-size: .85rem; color: var(--ink-3);
}
.footer__bottom .legal { display: flex; gap: 20px; }
.footer__acq {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(124, 92, 255, .1); border: 1px solid rgba(124, 92, 255, .28);
  font-size: .8rem; color: #b7a8ff; font-weight: 600; margin-top: 18px;
}

/* Footer accordion is mobile-only; keep panels open on desktop */
.footer__col .footer__toggle { display: none; }

/* ---------- 21. Scroll reveal ------------------------------------------ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 22. Mobile-only chrome (hidden here, shown in mobile.css) ---- */
.m-drawer, .m-tabbar, .m-header, .m-cta-bar, .m-scrim { display: none; }

/* ---------- 23. Tablet tune-up (still desktop layout) ------------------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .step__line { display: none; }
  .hero__grid { gap: 40px; }
  .nav__links a { padding-inline: 11px; font-size: .88rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
