/* ============ AIBRIDGE v2 — candy + ink, inspired by RU bigtech ============ */
:root {
  --ink: #101010;
  --paper: #ffffff;
  --paper-soft: #f5f5f2;
  --hot: #f3601c;            /* rocket orange */
  --hot-dark: #d94e10;
  --candy-blue: #def1ff;
  --candy-pink: #ffc5ee;
  --candy-lime: #e4ff6a;
  --candy-lav: #e2dff5;
  --candy-peach: #ffe5db;
  --candy-mint: #ccf9e4;
  --dark-1: #121214;
  --dark-2: #3a3a4f;
  --muted: #6b6c77;
  --subtle: #9799a3;
  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;
  --max-w: 1200px;
  --grad-juice: linear-gradient(90deg, #ff5c4d 0%, #eb469f 45%, #8341ef 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper); color: var(--ink); line-height: 1.5;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { vertical-align: middle; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.mono { font-family: "JetBrains Mono", ui-monospace, Menlo, monospace; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid #ececec;
}
.header-inner { display: flex; align-items: center; gap: 30px; height: 70px; }
.logo { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -.02em; text-transform: lowercase; }
.logo .check { color: var(--hot); }
.nav { display: flex; gap: 2px; flex: 1; }
.nav a {
  padding: 8px 14px; border-radius: 999px; font-size: 14.5px; color: var(--muted); font-weight: 500;
  transition: .15s; text-transform: lowercase;
}
.nav a:hover { color: var(--ink); background: var(--paper-soft); }
.header-actions { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-size: 15px; font-weight: 600;
  border: 1px solid transparent; cursor: pointer; transition: .18s; white-space: nowrap; font-family: inherit;
}
.btn:active { transform: scale(.98); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #2a2a2e; transform: translateY(-2px); }
.btn-hot { background: var(--hot); color: #fff; box-shadow: 0 8px 24px rgba(243,96,28,.35); }
.btn-hot:hover { background: var(--hot-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: #dcdcdc; color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.18); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ---------- marquee ticker ---------- */
.ticker { background: var(--ink); color: #fff; overflow: hidden; padding: 11px 0; }
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 28s linear infinite;
  font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: .02em; text-transform: lowercase;
}
.ticker-track span { padding: 0 18px; white-space: nowrap; }
.ticker-track .check { color: var(--hot); font-weight: 700; }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- hero ---------- */
.hero { padding: 84px 0 90px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 38%, rgba(255,255,255,.45) 75%, rgba(255,255,255,.25) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero h1 {
  font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: lowercase;
  font-size: clamp(36px, 4.6vw, 60px); line-height: 1.06; letter-spacing: -.03em; margin-bottom: 26px;
}
.hero h1 .check { color: var(--hot); }
.hero h1 .brand-mark {
  display: inline-block; background: var(--hot); color: #fff;
  padding: 4px 20px 10px; border-radius: 18px; transform: rotate(-1.5deg);
  box-shadow: 0 12px 32px rgba(243,96,28,.35); margin-bottom: 10px;
}
.hero .sub { font-size: 18px; color: var(--muted); max-width: 500px; margin-bottom: 36px; }
.hero .sub b { color: var(--ink); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--subtle); text-transform: lowercase; }

/* hero deck: fanned candy cards */
.deck { position: relative; height: 470px; }
.deck-card {
  position: absolute; width: 250px; border-radius: var(--r-md); padding: 24px;
  box-shadow: 0 20px 50px rgba(16,16,16,.14); transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.deck-card:hover { transform: translateY(-10px) rotate(0deg) !important; box-shadow: 0 30px 70px rgba(16,16,16,.2); z-index: 30 !important; }
.deck-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.75); display: grid; place-items: center; margin-bottom: 40px; }
.deck-name { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 16px; text-transform: lowercase; letter-spacing: -.02em; }
.deck-count { font-family: "JetBrains Mono", monospace; font-size: 12px; color: rgba(16,16,16,.55); margin-top: 5px; }
.deck-card.d1 { background: var(--candy-blue);  top: 4%;  left: 0;   transform: rotate(-7deg); z-index: 3; }
.deck-card.d2 { background: var(--candy-pink);  top: 0;   left: 44%; transform: rotate(5deg);  z-index: 4; }
.deck-card.d3 { background: var(--candy-lime);  top: 36%; left: 20%; transform: rotate(-2deg); z-index: 5; }
.deck-card.d4 { background: var(--candy-lav);   top: 44%; left: 60%; transform: rotate(8deg);  z-index: 2; }
.deck-card.d5 { background: var(--candy-peach); top: 70%; left: 2%;  transform: rotate(4deg);  z-index: 6; }
.deck-card.d5 .deck-icon { margin-bottom: 18px; }
.deck-more {
  position: absolute; bottom: -1%; right: 4%; z-index: 7;
  background: var(--ink); color: #fff; border-radius: 999px; padding: 14px 22px;
  font-family: "JetBrains Mono", monospace; font-size: 13px; transform: rotate(-4deg);
  box-shadow: 0 16px 40px rgba(16,16,16,.3);
}
.deck-more .check { color: var(--hot); }
@keyframes bob { 0%,100% { margin-top: 0;} 50% { margin-top: -10px;} }
.deck-card.d2 { animation: bob 5.5s ease-in-out infinite; }
.deck-card.d4 { animation: bob 6.5s ease-in-out 1s infinite; }

/* ---------- sections ---------- */
section { padding: 96px 0; }
.sec-label {
  font-family: "JetBrains Mono", monospace; font-size: 12.5px; color: var(--hot); font-weight: 700;
  text-transform: lowercase; letter-spacing: .08em; margin-bottom: 16px; display: block;
}
h2.sec-title {
  font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: lowercase;
  font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px;
}
h2.sec-title .check { color: var(--hot); }
.sec-sub { font-size: 17px; color: var(--muted); max-width: 640px; }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin: 0 auto; }

/* ---------- giant stats ---------- */
.giants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.giant { border-radius: var(--r-lg); padding: 40px 36px 36px; position: relative; overflow: hidden; }
.giant .num {
  font-family: "Unbounded", sans-serif; font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(52px, 6.5vw, 96px); line-height: .95; white-space: nowrap;
}
.giant .num .plus { font-size: .55em; vertical-align: .28em; margin-left: 2px; }
.giant .cap { font-size: 16px; font-weight: 600; margin-top: 14px; text-transform: lowercase; }
.giant .fine { font-size: 13px; color: rgba(16,16,16,.55); margin-top: 4px; }
.giant.g1 { background: var(--candy-lime); }
.giant.g2 { background: var(--candy-blue); }
.giant.g3 { background: var(--ink); color: #fff; }
.giant.g3 .num { color: var(--hot); }
.giant.g3 .fine { color: rgba(255,255,255,.55); }

/* ---------- islands (benefits) ---------- */
.islands { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.island {
  border-radius: var(--r-lg); padding: 34px 30px; min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px;
  transition: .22s;
}
.island:hover { transform: translateY(-6px); }
.island h3 { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 18px; text-transform: lowercase; letter-spacing: -.02em; line-height: 1.25; }
.island p { font-size: 14.5px; color: rgba(16,16,16,.65); }
.island .isl-icon { font-size: 30px; }
.island.i-blue { background: var(--candy-blue); }
.island.i-pink { background: var(--candy-pink); }
.island.i-lime { background: var(--candy-lime); }
.island.i-lav { background: var(--candy-lav); }
.island.i-peach { background: var(--candy-peach); }
.island.i-mint { background: var(--candy-mint); }
.island.i-dark { background: var(--ink); color: #fff; }
.island.i-dark p { color: rgba(255,255,255,.7); }

/* ---------- dark section (how it works) ---------- */
.dark-sec { background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 130%); color: #fff; border-radius: 40px; margin: 0 14px; }
.dark-sec .sec-sub { color: rgba(255,255,255,.65); }
.flow { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.flow-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-md);
  padding: 24px 30px; text-align: center; backdrop-filter: blur(4px);
}
.flow-box .t { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 15px; text-transform: lowercase; }
.flow-box .s { font-family: "JetBrains Mono", monospace; font-size: 12px; color: rgba(255,255,255,.55); margin-top: 6px; }
.flow-box.api { background: var(--hot); border-color: var(--hot); box-shadow: 0 0 60px rgba(243,96,28,.45); }
.flow-box.api .s { color: rgba(255,255,255,.8); }
.flow-arrow { color: rgba(255,255,255,.4); font-size: 26px; }
.flow-models { display: flex; flex-direction: column; gap: 8px; }
.flow-model {
  display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 8px 16px;
}
.flow-model svg { background: #fff; border-radius: 50%; padding: 2px; }
.code-line {
  margin: 46px auto 0; max-width: 640px; background: rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm); padding: 18px 22px; font-family: "JetBrains Mono", monospace; font-size: 13.5px;
  color: #9be8c8; overflow-x: auto; white-space: nowrap;
}
.code-line .k { color: #79c0ff; } .code-line .s { color: #ffa657; } .code-line .c { color: #7d8590; }

/* ---------- capabilities tiles ---------- */
.collage { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end; padding: 26px; transition: .25s;
}
.tile:hover { transform: translateY(-6px); }
.tile-lg { grid-column: span 3; }
.tile-md { grid-column: span 2; }
.tile .tile-label { position: relative; z-index: 2; }
.tile .tile-label h3 { font-family: "Unbounded", sans-serif; font-size: 19px; font-weight: 700; text-transform: lowercase; letter-spacing: -.02em; margin-bottom: 5px; }
.tile .tile-label p { font-size: 13.5px; opacity: .78; max-width: 320px; }
.tile .tile-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; padding: 5px 13px; text-transform: lowercase;
  background: rgba(16,16,16,.85); color: #fff;
}
.tile-art { position: absolute; inset: 0; z-index: 0; }
.tile-photo { position: absolute; inset: 0; z-index: 0; }
.tile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover .tile-photo img { transform: scale(1.05); }
.tile-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,12,.75) 0%, rgba(10,10,12,.1) 55%); }

/* wide photo breaker */
.breaker { position: relative; border-radius: 40px; overflow: hidden; margin: 0 14px; min-height: 440px; display: flex; align-items: flex-end; }
.breaker img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.breaker::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,12,.8) 0%, rgba(10,10,12,.15) 60%); }
.breaker-content { position: relative; z-index: 2; padding: 56px; color: #fff; width: 100%; }
.breaker-content h2 { font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: lowercase; font-size: clamp(28px, 3.8vw, 48px); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 14px; max-width: 700px; }
.breaker-content h2 .check { color: var(--hot); }
.breaker-content p { font-size: 16.5px; color: rgba(255,255,255,.8); max-width: 540px; margin-bottom: 28px; }
.breaker-content .mono-tag { font-family: "JetBrains Mono", monospace; font-size: 12.5px; color: var(--candy-lime); margin-bottom: 18px; display: block; }

.tile-text { background: var(--ink); color: #fff; }
.tile-video { background: var(--candy-lav); color: var(--ink); }
.tile-image { background: var(--grad-juice); color: #fff; }
.tile-audio { background: var(--candy-lime); color: var(--ink); }
.tile-code { background: var(--candy-blue); color: var(--ink); }
.tile-image .tile-tag { background: rgba(255,255,255,.2); backdrop-filter: blur(6px); }
.tile-text .tile-tag { background: var(--hot); }

.chat-lines { position: absolute; top: 58px; left: 26px; right: 26px; display: flex; flex-direction: column; gap: 10px; }
.chat-line { height: 12px; border-radius: 999px; background: rgba(255,255,255,.13); }
.chat-line.me { background: var(--hot); opacity: .75; align-self: flex-end; }
.play-btn {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%; background: var(--ink);
  display: grid; place-items: center; box-shadow: 0 14px 34px rgba(16,16,16,.3);
}
.play-btn::after { content: ""; border-style: solid; border-width: 13px 0 13px 22px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.wave { position: absolute; bottom: 96px; left: 26px; right: 26px; display: flex; align-items: flex-end; gap: 5px; height: 92px; }
.wave i { flex: 1; background: var(--ink); border-radius: 4px 4px 0 0; opacity: .8; transform-origin: bottom; animation: eq 1.4s ease-in-out infinite; }
@keyframes eq { 0%,100% { transform: scaleY(.55);} 50% { transform: scaleY(1);} }
.wave i:nth-child(2n) { animation-delay: .2s; } .wave i:nth-child(3n) { animation-delay: .45s; } .wave i:nth-child(5n) { animation-delay: .7s; }
.code-snippet {
  position: absolute; top: 26px; left: 26px; right: 26px;
  font-family: "JetBrains Mono", monospace; font-size: 12.5px; line-height: 1.8; color: #1e3a5f;
}
.img-blobs { position: absolute; inset: 0; }
.img-blobs span { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .6; }
.img-blobs span:nth-child(1) { width: 140px; height: 140px; background: #ffe66b; top: 10%; right: 10%; }
.img-blobs span:nth-child(2) { width: 74px; height: 74px; background: #6bffe0; top: 44%; right: 34%; }
.img-blobs span:nth-child(3) { width: 46px; height: 46px; background: #fff; top: 20%; right: 44%; opacity: .85; }

/* ---------- pricing ---------- */
.price-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.price-tab {
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid #ececec; background: #fff;
  font-size: 14px; font-weight: 600; color: var(--muted); cursor: pointer; transition: .15s; font-family: inherit;
  text-transform: lowercase;
}
.price-tab.active, .price-tab:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.model-card {
  border: 1.5px solid #ececec; border-radius: var(--r-lg); padding: 28px; background: #fff;
  display: flex; flex-direction: column; gap: 18px; transition: .2s;
}
.model-card:hover { border-color: var(--ink); transform: translateY(-4px); }
.model-head { display: flex; align-items: center; gap: 14px; }
.model-logo { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.ml-blue { background: var(--candy-blue); } .ml-pink { background: var(--candy-pink); }
.ml-lime { background: var(--candy-lime); } .ml-lav { background: var(--candy-lav); }
.ml-peach { background: var(--candy-peach); } .ml-mint { background: var(--candy-mint); }
.model-head .name { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 15px; letter-spacing: -.02em; }
.model-head .vendor { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--subtle); margin-top: 3px; }
.badge {
  display: inline-block; background: var(--candy-lime); color: var(--ink); font-size: 11.5px; font-weight: 700;
  border-radius: 999px; padding: 4px 12px; font-family: "JetBrains Mono", monospace; text-transform: lowercase;
  align-self: flex-start;
}
.model-prices { display: flex; gap: 10px; }
.model-price { flex: 1; background: var(--paper-soft); border-radius: var(--r-sm); padding: 14px 16px; }
.model-price .lbl { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--subtle); text-transform: lowercase; }
.model-price .val { font-family: "JetBrains Mono", monospace; font-size: 19px; font-weight: 700; margin-top: 3px; }
.model-price .val small { font-size: 11px; color: var(--subtle); font-weight: 400; }
.pricing-note { margin-top: 34px; color: var(--muted); font-size: 14.5px; }

/* ---------- b2b hot section ---------- */
.hot-sec { background: var(--hot); border-radius: 40px; margin: 0 14px; color: #fff; }
.hot-sec .sec-label { color: #fff; opacity: .8; }
.hot-sec .sec-sub { color: rgba(255,255,255,.85); }
.b2b-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.b2b-list { display: flex; flex-direction: column; gap: 14px; }
.b2b-item {
  display: flex; gap: 18px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md); padding: 24px 26px; transition: .2s;
}
.b2b-item:hover { background: rgba(255,255,255,.18); transform: translateX(6px); }
.b2b-item .check { flex: none; font-family: "Unbounded", sans-serif; font-size: 22px; font-weight: 800; line-height: 1; }
.b2b-item h4 { font-family: "Unbounded", sans-serif; font-size: 15.5px; font-weight: 700; text-transform: lowercase; letter-spacing: -.01em; margin-bottom: 6px; }
.b2b-item p { font-size: 14px; color: rgba(255,255,255,.85); }
.docs-card {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 38px; position: sticky; top: 100px;
  box-shadow: 0 30px 70px rgba(16,16,16,.35);
}
.docs-card h3 { font-family: "Unbounded", sans-serif; font-size: 19px; font-weight: 700; text-transform: lowercase; margin-bottom: 8px; }
.docs-card > p { color: rgba(255,255,255,.6); font-size: 14.5px; margin-bottom: 24px; }
.doc-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07); margin-bottom: 10px; font-size: 14px; font-weight: 500;
}
.doc-row .dot { color: var(--hot); font-weight: 800; font-family: "Unbounded", sans-serif; }

/* ---------- 152-fz ---------- */
.law-banner {
  background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 44px 46px;
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; position: relative; overflow: hidden;
}
.law-banner::before {
  content: "√"; position: absolute; right: -20px; top: -80px; font-family: "Unbounded", sans-serif;
  font-size: 300px; font-weight: 800; color: var(--hot); opacity: .14; line-height: 1;
}
.law-banner h3 { font-family: "Unbounded", sans-serif; font-size: 21px; font-weight: 700; text-transform: lowercase; margin-bottom: 12px; position: relative; }
.law-banner p { color: rgba(255,255,255,.7); font-size: 14.5px; max-width: 700px; position: relative; }
.law-banner .btn { position: relative; }

/* ---------- faq ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1.5px solid #ececec; border-radius: var(--r-md); overflow: hidden; transition: border-color .2s; }
.faq-item.open, .faq-item:hover { border-color: var(--ink); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-size: 16px; font-weight: 600; font-family: inherit; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: .25s; color: var(--hot); font-weight: 800; flex: none; font-size: 18px; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 14.5px; }
.faq-a-inner ul { padding-left: 20px; margin-top: 8px; }
.faq-a-inner li { margin-bottom: 5px; }
.faq-a-inner code { font-family: "JetBrains Mono", monospace; background: var(--paper-soft); border-radius: 6px; padding: 1px 8px; font-size: 12.5px; }
.faq-a-inner a { color: var(--hot); font-weight: 600; }

/* ---------- contact ---------- */
.contact-wrap {
  background: linear-gradient(135deg, var(--candy-pink) 0%, var(--candy-blue) 100%);
  border-radius: 40px; padding: 70px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.contact-wrap h2 { font-family: "Unbounded", sans-serif; font-weight: 800; text-transform: lowercase; font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -.03em; margin-bottom: 16px; }
.contact-wrap .lead { font-size: 16.5px; color: rgba(16,16,16,.7); margin-bottom: 20px; }
.contact-wrap .small { font-family: "JetBrains Mono", monospace; font-size: 13px; color: rgba(16,16,16,.6); }
.contact-form-shell {
  background: #fff; border-radius: var(--r-lg); padding: 34px;
  box-shadow: 0 30px 70px rgba(16,16,16,.18);
}

/* ---------- lead form / modal / quiz ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(16,16,16,.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal {
  background: #fff; border-radius: var(--r-lg); width: 100%; max-width: 490px;
  padding: 36px; position: relative; box-shadow: 0 40px 100px rgba(16,16,16,.4);
  max-height: 90vh; overflow-y: auto; animation: modalIn .22s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.97);} to { opacity: 1; transform: none;} }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #ececec; background: #fff; cursor: pointer; font-size: 15px; color: var(--muted);
  display: grid; place-items: center; transition: .15s; font-family: inherit;
}
.modal-close:hover { border-color: var(--ink); color: var(--ink); transform: rotate(90deg); }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form h3 { font-family: "Unbounded", sans-serif; font-size: 19px; font-weight: 700; text-transform: lowercase; letter-spacing: -.02em; }
.lead-form .lf-sub { font-size: 14px; color: var(--muted); margin-top: -6px; }
.lead-form label { font-family: "JetBrains Mono", monospace; font-size: 11.5px; font-weight: 600; color: var(--muted); margin-bottom: -8px; text-transform: lowercase; }
.lead-form input {
  border: 1.5px solid #ececec; border-radius: var(--r-sm); padding: 14px 16px; font-size: 15px; font-family: inherit;
  outline: none; transition: .15s; width: 100%;
}
.lead-form input:focus { border-color: var(--hot); box-shadow: 0 0 0 3px rgba(243,96,28,.15); }
.lead-form .consent { font-size: 12.5px; color: var(--subtle); }
.lead-form .consent a { color: var(--hot); }

.quiz-q { font-size: 14.5px; font-weight: 700; margin-top: 6px; }
.quiz-options { display: flex; flex-wrap: wrap; gap: 8px; }
.quiz-chip { position: relative; }
.quiz-chip input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-chip span {
  display: inline-block; padding: 9px 16px; border-radius: 999px; border: 1.5px solid #ececec;
  font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: .15s; background: #fff;
}
.quiz-chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.quiz-chip span:hover { border-color: var(--ink); color: var(--ink); }
.quiz-chip input:checked + span:hover { color: #fff; }
.quiz-skip { text-align: center; font-size: 13.5px; color: var(--subtle); cursor: pointer; background: none; border: none; font-family: inherit; }
.quiz-skip:hover { color: var(--ink); text-decoration: underline; }

.lead-done { text-align: center; padding: 28px 6px; }
.lead-done .big { font-family: "Unbounded", sans-serif; font-size: 46px; color: var(--hot); font-weight: 800; margin-bottom: 12px; }
.lead-done h3 { font-family: "Unbounded", sans-serif; font-size: 19px; font-weight: 700; text-transform: lowercase; margin-bottom: 10px; }
.lead-done p { font-size: 14.5px; color: var(--muted); }

/* ---------- claude code page ---------- */
.terminal {
  background: var(--dark-1); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 30px 80px rgba(16,16,16,.35); transform: rotate(2deg); transition: .3s;
}
.terminal:hover { transform: rotate(0deg); }
.terminal-bar { display: flex; gap: 7px; padding: 14px 18px; background: rgba(255,255,255,.06); }
.terminal-bar i { width: 12px; height: 12px; border-radius: 50%; }
.terminal-bar i:nth-child(1) { background: #ff5f57; } .terminal-bar i:nth-child(2) { background: #febc2e; } .terminal-bar i:nth-child(3) { background: #28c840; }
.terminal-body { padding: 26px 24px 30px; font-family: "JetBrains Mono", monospace; font-size: 13.5px; line-height: 2; color: #d8d9e0; }
.terminal-body .p { color: var(--candy-lime); }
.terminal-body .cmd { color: #fff; }
.terminal-body .ok { color: var(--hot); font-weight: 700; }
.terminal-body .dim { color: #6b6c77; }
.terminal-body .cursor { display: inline-block; width: 9px; height: 17px; background: var(--hot); vertical-align: text-bottom; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.option-card { border-radius: var(--r-lg); padding: 40px 36px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 18px; transition: .22s; }
.option-card:hover { transform: translateY(-6px); }
.option-card .opt-tag {
  font-family: "JetBrains Mono", monospace; font-size: 11.5px; font-weight: 700; letter-spacing: .06em;
  border-radius: 999px; padding: 5px 14px; text-transform: lowercase; align-self: flex-start;
  background: var(--ink); color: #fff;
}
.option-card h3 { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: clamp(21px, 2.2vw, 27px); text-transform: lowercase; letter-spacing: -.02em; line-height: 1.15; }
.option-card .opt-who { font-family: "JetBrains Mono", monospace; font-size: 12.5px; color: rgba(16,16,16,.6); }
.option-card p { font-size: 15px; color: rgba(16,16,16,.7); }
.option-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.option-card li { display: flex; gap: 10px; font-size: 14.5px; font-weight: 500; }
.option-card li::before { content: "√"; color: var(--hot); font-family: "Unbounded", sans-serif; font-weight: 800; flex: none; }
.option-card.o-web { background: var(--candy-blue); }
.option-card.o-cli { background: var(--candy-lime); }
.option-card .btn { align-self: flex-start; margin-top: auto; }
.opt-note { font-size: 13px; color: rgba(16,16,16,.55); border-top: 1px solid rgba(16,16,16,.12); padding-top: 14px; }

/* mini visuals inside option cards */
.mini-window { border-radius: 14px; overflow: hidden; box-shadow: 0 14px 36px rgba(16,16,16,.18); margin: 4px 0 6px; }
.mini-bar { display: flex; align-items: center; gap: 8px; padding: 9px 12px; }
.mini-bar i { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.mini-bar i:nth-child(1) { background: #ff5f57; } .mini-bar i:nth-child(2) { background: #febc2e; } .mini-bar i:nth-child(3) { background: #28c840; }
/* browser flavor */
.mini-browser { background: #fff; }
.mini-browser .mini-bar { background: #eef1f5; }
.mini-url {
  flex: 1; background: #fff; border-radius: 999px; padding: 4px 12px;
  font-family: "JetBrains Mono", monospace; font-size: 10.5px; color: var(--muted);
}
.mini-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.mini-msg { border-radius: 10px; padding: 8px 12px; font-size: 11.5px; max-width: 85%; }
.mini-msg.user { background: var(--candy-blue); align-self: flex-end; }
.mini-msg.bot { background: var(--paper-soft); align-self: flex-start; }
.mini-msg.bot .ok { color: var(--hot); font-weight: 700; }
/* terminal flavor */
.mini-term { background: var(--dark-1); }
.mini-term .mini-bar { background: rgba(255,255,255,.07); }
.mini-term .mini-body { font-family: "JetBrains Mono", monospace; font-size: 11.5px; line-height: 1.9; color: #d8d9e0; display: block; }
.mini-term .p { color: var(--candy-lime); }
.mini-term .ok { color: var(--hot); font-weight: 700; }
.mini-term .dim { color: #6b6c77; }

@media (max-width: 900px) {
  .options { grid-template-columns: 1fr; }
  .terminal { transform: none; margin-top: 10px; }
}

/* ---------- footer ---------- */
.footer { border-top: 1px solid #ececec; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 46px; }
.footer h5 { font-family: "JetBrains Mono", monospace; font-size: 11.5px; text-transform: lowercase; letter-spacing: .08em; color: var(--subtle); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted); }
.footer-links a:hover { color: var(--hot); }
.footer-about p { color: var(--muted); font-size: 14.5px; margin-top: 14px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid #ececec; padding-top: 26px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--subtle);
}
.footer-bottom a { color: var(--muted); margin-left: 20px; }
.footer-bottom a:hover { color: var(--hot); }

/* ---------- legal ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: 70px 24px 90px; }
.legal h1 { font-family: "Unbounded", sans-serif; font-size: 32px; font-weight: 800; text-transform: lowercase; letter-spacing: -.03em; margin-bottom: 12px; }
.legal .updated { color: var(--subtle); font-size: 14px; margin-bottom: 40px; font-family: "JetBrains Mono", monospace; }
.legal h2 { font-family: "Unbounded", sans-serif; font-size: 20px; font-weight: 700; text-transform: lowercase; margin: 40px 0 14px; }
.legal p, .legal li { color: #3f4250; font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal .callout { background: var(--candy-peach); border-radius: var(--r-sm); padding: 22px 26px; margin: 24px 0; }
.legal .callout p { margin-bottom: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .deck { height: 430px; }
  .deck-card { width: 210px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .deck { height: 480px; max-width: 560px; margin: 0 auto; width: 100%; }
  .giants, .islands, .price-grid { grid-template-columns: 1fr 1fr; }
  .b2b-wrap { grid-template-columns: 1fr; }
  .docs-card { position: static; }
  .contact-wrap { grid-template-columns: 1fr; padding: 44px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .law-banner { grid-template-columns: 1fr; }
  .collage { grid-template-columns: repeat(2, 1fr); }
  .tile-lg, .tile-md { grid-column: span 2; }
}
@media (max-width: 600px) {
  .giants, .islands, .price-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding: 56px 0 60px; }
  .header-actions .btn-ghost { display: none; }
  .deck { height: 540px; }
  .deck-card { width: 47%; padding: 18px; }
  .deck-icon { margin-bottom: 24px; }
  .collage { grid-template-columns: 1fr; }
  .tile-lg, .tile-md { grid-column: span 1; }
  .dark-sec, .hot-sec { margin: 0; border-radius: 28px; }
}
