/* TECHBRANZZO SERVICES — global stylesheet
   Palette: black + white only. No accent hues. */

:root {
  --bg: #08090a;
  --bg-2: #0e0f11;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-3: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.20);
  --line-3: rgba(255, 255, 255, 0.34);
  --txt: #f7f8f8;
  --txt-dim: #a7abb0;
  --txt-mute: #71767c;
  --ink: #08090a;
  --silver: linear-gradient(180deg, #ffffff 0%, #b9bec4 100%);
  /* the only colour on the site — the logo mark and the dot indicators. */
  --gold: #f0b429;
  --gold-dim: rgba(240, 180, 41, .55);
  --gold-glow: rgba(240, 180, 41, .85);
  --logo-a: var(--gold);
  --logo-b: #b8860b;
  --logo-grad: linear-gradient(135deg, var(--logo-a) 0%, var(--logo-b) 100%);
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .9);
  --max: 1240px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-d: 'Space Grotesk', var(--font);
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient — monochrome only */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 620px at 15% -12%, rgba(255, 255, 255, .07), transparent 62%),
    radial-gradient(760px 520px at 88% 4%, rgba(255, 255, 255, .045), transparent 60%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000 8%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 8%, transparent 72%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 700; line-height: 1.15; letter-spacing: -.025em; color: #fff; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
p { color: var(--txt-dim); }

/* silver = white→grey, still monochrome */
.grad-text {
  background: var(--silver);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--txt);
  padding: 7px 15px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--surface);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold-glow);
}

.sec-head { max-width: 760px; margin-bottom: 52px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .94rem;
  cursor: pointer;
  transition: transform .18s, background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn-primary { background: #fff; color: var(--ink); }
.btn-primary:hover { background: #d9dde1; transform: translateY(-2px); }
.btn-ghost { background: var(--surface); border-color: var(--line-2); color: var(--txt); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--line-3); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(8, 9, 10, .74);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-head.scrolled { border-bottom-color: var(--line); background: rgba(8, 9, 10, .94); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 74px;
}
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-d); font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; }
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--logo-grad);
  display: grid;
  place-items: center;
  color: var(--ink); /* dark on gold — white would fail contrast */
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 6px 18px -6px rgba(240, 180, 41, .6);
}
.logo small { display: block; font-family: var(--font); font-size: .6rem; letter-spacing: .24em; color: var(--txt-mute); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--txt-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--txt); background: var(--surface); }
.nav-links a.active { color: #fff; background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  cursor: pointer;
  place-items: center;
}
.burger span { display: block; width: 18px; height: 2px; background: var(--txt); border-radius: 2px; position: relative; transition: .25s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--txt); border-radius: 2px; transition: .25s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { top: 0; transform: rotate(45deg); }
.burger.open span::after { top: 0; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 92px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero-lead { font-size: 1.12rem; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust div strong { display: block; font-family: var(--font-d); font-size: 1.6rem; color: #fff; }
.hero-trust div span { font-size: .82rem; color: var(--txt-mute); }

.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015));
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.panel-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-dim); }
.dot.g { background: var(--gold); }
.panel-bar small { margin-left: auto; color: var(--txt-mute); font-size: .74rem; letter-spacing: .06em; }
.panel-body { padding: 22px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .82rem; line-height: 1.85; color: var(--txt-dim); }
.panel-body .k { color: #fff; font-weight: 600; }
.panel-body .s { color: #dfe3e7; }
.panel-body .c { color: var(--txt-mute); }
.panel-body .f { color: #fff; }

.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(14, 15, 17, .94);
  backdrop-filter: blur(12px);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}
.float-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-glow); }
.fb-1 { right: -14px; top: 16%; }
.fb-2 { left: -22px; bottom: 14%; animation-delay: -3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: rgba(255, 255, 255, .012); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: slide 34s linear infinite; }
.marquee-track span { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--txt-mute); white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 96px 0; }
.section-alt { background: rgba(255, 255, 255, .018); border-block: 1px solid var(--line); }

.grid { display: grid; gap: 20px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-side { grid-template-columns: 1.4fr .9fr; gap: 34px; align-items: start; }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: transform .25s, border-color .25s, background .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface-2); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .93rem; }

.icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  margin-bottom: 18px;
  font-size: 1.15rem;
  filter: grayscale(1);
}

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.chip {
  font-size: .76rem;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  color: var(--txt-dim);
}

/* accordion */
.vert {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s;
  scroll-margin-top: 100px;
}
.vert + .vert { margin-top: 12px; }
.vert:hover, .vert.open { border-color: var(--line-2); }
.vert-head {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.vert-num { font-family: var(--font-d); font-size: .8rem; color: var(--txt-mute); min-width: 28px; font-weight: 700; }
.vert-head h3 { flex: 1; font-size: 1.1rem; }
.vert-head .plus { width: 26px; height: 26px; display: grid; place-items: center; color: var(--txt-dim); transition: transform .3s, color .3s; font-size: 1.3rem; }
.vert.open .plus { transform: rotate(45deg); color: #fff; }
.vert-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.vert-body ul { padding: 0 24px 24px 68px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 22px; list-style: none; }
.vert-body li { font-size: .9rem; color: var(--txt-dim); position: relative; padding-left: 18px; }
.vert-body li::before { content: '—'; position: absolute; left: 0; color: var(--txt-mute); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 32px 18px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.stat strong { display: block; font-family: var(--font-d); font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: #fff; }
.stat span { font-size: .85rem; color: var(--txt-mute); }

/* ---------- marketplace ---------- */
.market-bar {
  position: sticky;
  top: 74px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  background: rgba(8, 9, 10, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.search { position: relative; flex: 1 1 260px; min-width: 220px; }
.search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  outline: none;
  font-size: .93rem;
  transition: border-color .2s;
}
.search input:focus { border-color: var(--line-3); }
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); opacity: .5; }

select.field, input.field, textarea.field {
  padding: 12px 15px;
  border-radius: 11px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  outline: none;
  font-size: .92rem;
  transition: border-color .2s;
}
select.field { padding-right: 34px; cursor: pointer; }
select.field option { background: #0e0f11; }
.field:focus { border-color: var(--line-3); }

.toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  gap: 3px;
}
.toggle button {
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--txt-dim);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}
.toggle button.on { background: #fff; color: var(--ink); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filters button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--txt-dim);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
}
.filters button:hover { border-color: var(--line-2); color: var(--txt); }
.filters button.on { background: #fff; border-color: #fff; color: var(--ink); }

.market-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.tpl {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.tpl:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }

.tpl-shot { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-bottom: 1px solid var(--line); }
.tpl-shot .mock { position: absolute; inset: 0; display: flex; flex-direction: column; }
.mock-bar { display: flex; align-items: center; gap: 5px; padding: 8px 10px; background: rgba(0, 0, 0, .45); }
.mock-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dim); }
.mock-bar u { flex: 1; height: 11px; margin-left: 6px; border-radius: 3px; background: rgba(255, 255, 255, .12); }
.mock-body { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.mock-title { font-family: var(--font-d); font-weight: 700; font-size: 1rem; color: #fff; }
.mock-line { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .24); }
.mock-line.s { width: 55%; }
.mock-blocks { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.mock-blocks u { display: block; height: 30px; border-radius: 5px; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .08); }

.tpl-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fff;
  color: var(--ink);
}
.tpl-badge.new, .tpl-badge.top { background: rgba(8, 9, 10, .86); color: #fff; border: 1px solid var(--line-3); backdrop-filter: blur(8px); }

.tpl-hover {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  gap: 10px;
  grid-auto-flow: column;
  background: rgba(8, 9, 10, .8);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .22s;
}
.tpl:hover .tpl-hover { opacity: 1; }

.tpl-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.tpl-cat { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mute); font-weight: 600; }
.tpl-body h3 { font-size: 1.03rem; margin: 7px 0 8px; }
.tpl-body p { font-size: .87rem; margin-bottom: 14px; }
.tpl-meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--txt-mute); margin-bottom: 14px; }
.stars { color: #fff; letter-spacing: 1px; }
.tpl-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.price strong { font-family: var(--font-d); font-size: 1.28rem; display: block; line-height: 1.2; color: #fff; }
.price span { font-size: .74rem; color: var(--txt-mute); }
.price del { font-size: .8rem; color: var(--txt-mute); margin-left: 6px; }

.empty { grid-column: 1 / -1; text-align: center; padding: 70px 20px; border: 1px dashed var(--line-2); border-radius: var(--r); }

/* ---------- template detail ---------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: 34px; align-items: start; }
.preview { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.preview .tpl-shot { aspect-ratio: 16 / 9; border: 0; }
.preview .mock-title { font-size: 1.7rem; }

.buy-box {
  position: sticky; top: 96px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02));
  padding: 26px;
  box-shadow: var(--shadow);
}
.plan {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: .2s;
  margin-bottom: 11px;
}
.plan:hover { border-color: var(--line-2); }
.plan.on { border-color: #fff; background: rgba(255, 255, 255, .07); }
.plan input { accent-color: #fff; margin-top: 5px; }
.plan h4 { font-family: var(--font-d); font-size: .97rem; }
.plan small { display: block; color: var(--txt-mute); font-size: .8rem; line-height: 1.5; }
.plan b { font-family: var(--font-d); font-size: 1.12rem; margin-left: auto; white-space: nowrap; color: #fff; }

.spec { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.spec:last-child { border-bottom: 0; }
.spec span { color: var(--txt-mute); }
.spec b { font-weight: 600; color: var(--txt); }

.feat-list { list-style: none; display: grid; gap: 11px; }
.feat-list li { position: relative; padding-left: 30px; font-size: .93rem; color: var(--txt-dim); }
.feat-list li::before {
  content: '✓';
  position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: #fff;
  font-size: .68rem;
}

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 15px 18px; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-d); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--txt-mute); background: rgba(255, 255, 255, .03); }
td { color: var(--txt-dim); }
td:first-child { color: var(--txt); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, .022); }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: transform .25s, border-color .25s;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-2); }
.tier.featured { border-color: #fff; background: linear-gradient(170deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02)); }
.tier-tag {
  align-self: flex-start;
  font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; background: #fff; color: var(--ink); margin-bottom: 14px;
}
.tier h3 { font-size: 1.25rem; }
.tier > p { font-size: .9rem; margin-top: 8px; min-height: 44px; }
.tier-price { margin: 22px 0 6px; font-family: var(--font-d); font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1; }
.tier-price sup { font-size: 1.1rem; vertical-align: super; margin-right: 2px; }
.tier-price small { font-size: .85rem; font-family: var(--font); font-weight: 400; color: var(--txt-mute); }
.tier-note { font-size: .82rem; color: var(--txt-mute); margin-bottom: 22px; }
.tier .feat-list { margin-bottom: 26px; }
.tier .btn { margin-top: auto; }

.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pay {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .25s, background .25s;
}
.pay:hover { border-color: var(--line-2); background: var(--surface-2); }
.pay-logo {
  min-width: 52px; height: 34px;
  display: grid; place-items: center;
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .02em;
}
.pay b { display: block; font-size: .9rem; font-weight: 600; }
.pay span { display: block; font-size: .78rem; color: var(--txt-mute); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 28px 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.step::before {
  counter-increment: s;
  content: '0' counter(s);
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--txt-mute);
  display: block;
  margin-bottom: 12px;
}

/* ---------- CTA ---------- */
.cta-box {
  position: relative;
  text-align: center;
  padding: 68px 34px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .02));
  overflow: hidden;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p { max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: 7px; color: var(--txt-dim); }
input.field, select.field, textarea.field { width: 100%; }
textarea.field { resize: vertical; min-height: 130px; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line); padding: 68px 0 30px; background: rgba(255, 255, 255, .012); }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 38px; margin-bottom: 44px; }
.foot-grid h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mute); margin-bottom: 16px; }
.foot-grid ul { list-style: none; display: grid; gap: 9px; }
.foot-grid a { font-size: .89rem; color: var(--txt-dim); transition: color .2s; }
.foot-grid a:hover { color: #fff; }
.foot-about p { font-size: .89rem; margin: 16px 0; max-width: 330px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: .78rem;
  font-weight: 600;
  transition: .2s;
}
.socials a:hover { background: #fff; color: var(--ink); border-color: #fff; }
.foot-bot { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--txt-mute); }
.foot-bot nav { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bot a:hover { color: #fff; }

/* ---------- inner page hero ---------- */
.page-hero { padding: 74px 0 44px; text-align: center; }
.page-hero p { max-width: 660px; margin: 16px auto 0; font-size: 1.03rem; }
.crumbs { font-size: .84rem; color: var(--txt-mute); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }

/* ---------- legal ---------- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.5rem; margin: 46px 0 14px; scroll-margin-top: 100px; }
.legal h3 { font-size: 1.05rem; margin: 26px 0 10px; }
.legal p, .legal li { font-size: .94rem; color: var(--txt-dim); }
.legal ul { margin: 12px 0 12px 22px; display: grid; gap: 8px; }

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

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 130%);
  z-index: 300;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #16181a;
  box-shadow: var(--shadow);
  font-size: .9rem;
  font-weight: 500;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- AI chatbot ---------- */
.bot-launch {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 210;
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .9);
  transition: transform .2s, opacity .2s;
}
.bot-launch:hover { transform: translateY(-2px); }
.bot-launch.hide { opacity: 0; pointer-events: none; transform: translateY(10px) scale(.95); }
.bot-launch i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  font-size: .7rem; font-style: normal; font-weight: 700;
}
.bot-launch .pip {
  position: absolute; top: -3px; right: -3px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--ink);
}

.bot {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 220;
  width: min(384px, calc(100vw - 32px));
  height: min(580px, calc(100vh - 48px));
  display: flex; flex-direction: column;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: #0d0e10;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .95);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.bot.open { opacity: 1; transform: none; pointer-events: auto; }

.bot-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .03); }
.bot-avatar { width: 36px; height: 36px; border-radius: 10px; background: var(--logo-grad); color: var(--ink); display: grid; place-items: center; font-family: var(--font-d); font-weight: 700; font-size: .82rem; }
.bot-head b { display: block; font-size: .93rem; font-family: var(--font-d); }
.bot-head span { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: var(--txt-mute); }
.bot-head span::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.bot-close { margin-left: auto; width: 32px; height: 32px; border-radius: 9px; border: 1px solid var(--line); background: transparent; color: var(--txt-dim); cursor: pointer; font-size: 1.1rem; line-height: 1; transition: .2s; }
.bot-close:hover { background: var(--surface-2); color: #fff; }

.bot-log { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; scrollbar-width: thin; }
.bot-log::-webkit-scrollbar { width: 6px; }
.bot-log::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 6px; }

/* flex-shrink:0 — without it a column flex container squashes messages into each other
   instead of letting the log scroll */
.msg { flex: 0 0 auto; max-width: 86%; padding: 11px 15px; border-radius: 14px; font-size: .89rem; line-height: 1.6; white-space: pre-wrap; }
.msg-bot { align-self: flex-start; background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--txt); }
.msg-me { align-self: flex-end; background: #fff; color: var(--ink); border-bottom-right-radius: 5px; font-weight: 500; }
.msg a { text-decoration: underline; font-weight: 600; }
.msg-bot a { color: #fff; }

.typing { display: flex; flex: 0 0 auto; gap: 4px; align-self: flex-start; padding: 13px 16px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; border-bottom-left-radius: 5px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.bot-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 18px 12px; }
.bot-quick button {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--txt-dim);
  font-size: .8rem;
  cursor: pointer;
  transition: .2s;
}
.bot-quick button:hover { background: #fff; color: var(--ink); border-color: #fff; }

.bot-input { display: flex; gap: 9px; padding: 14px 16px; border-top: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.bot-input input { flex: 1; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--line-2); background: var(--surface); outline: none; font-size: .88rem; }
.bot-input input:focus { border-color: var(--line-3); }
.bot-input button { width: 42px; border-radius: 10px; border: 0; background: #fff; color: var(--ink); font-size: 1rem; cursor: pointer; transition: .2s; }
.bot-input button:hover { background: #d9dde1; }
.bot-foot { padding: 0 16px 12px; font-size: .7rem; color: var(--txt-mute); text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-links a { padding: 9px 11px; font-size: .88rem; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .g-4, .stats, .steps, .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .market-grid, .tiers { grid-template-columns: repeat(2, 1fr); }
  .detail-grid, .g-side { grid-template-columns: 1fr; }
  .buy-box { position: static; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .vert-body ul { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .burger { display: grid; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 22px 26px;
    background: rgba(8, 9, 10, .99);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(20px);
    transform: translateY(-140%);
    transition: transform .32s cubic-bezier(.2,.8,.3,1);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 13px 15px; font-size: .95rem; }
  .g-3 { grid-template-columns: 1fr; }
  .market-bar { top: 0; }
}

@media (max-width: 640px) {
  section { padding: 66px 0; }
  .g-2, .g-3, .g-4, .stats, .steps, .market-grid, .form-grid, .tiers, .pay-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .vert-body ul { grid-template-columns: 1fr; padding-left: 24px; }
  .float-badge { display: none; }
  .hero { padding: 56px 0 66px; }
  .cta-box { padding: 46px 22px; }
  .bot { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; border: 0; }
  .bot-launch { right: 16px; bottom: 16px; }
}
