/* AI Sales Lab — dark technical */

:root {
  --bg: #0c0d10;
  --bg-2: #16181d;
  --bg-3: #1f2128;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #f0f1f2;
  --ink-2: #b9bcc1;
  --ink-3: #6f7480;
  --acid: #b8ff5d;
  --acid-deep: #88cc3d;
  --warn: #ff7e3f;
  --gutter: clamp(20px, 4vw, 56px);
  --max: 1480px;
  --display: "Geist", -apple-system, system-ui, sans-serif;
  --mono: "Geist Mono", "JetBrains Mono", "Courier New", monospace;
  --sans: "Geist", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(184, 255, 93, 0.06), transparent 40%),
    radial-gradient(ellipse at 0% 100%, rgba(184, 255, 93, 0.03), transparent 40%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/></svg>");
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); position: relative; z-index: 1; }

/* ────── HEAD ────── */
.head {
  border-bottom: 1px solid var(--line);
  background: rgba(12, 13, 16, 0.78);
  backdrop-filter: blur(12px) saturate(140%);
  position: sticky;
  top: 0;
  z-index: 50;
}
.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  gap: 32px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-logo {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--acid) 0%, var(--acid-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.04em;
  position: relative;
}
.brand-logo::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--acid);
  border-radius: 8px;
  opacity: 0.3;
  pointer-events: none;
}
.brand-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.025em;
}
.brand-name span { color: var(--acid); font-weight: 400; }
.nav { display: flex; gap: 24px; }
.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  color: var(--ink-2);
}
.nav a:hover, .nav a[aria-current] { color: var(--acid); border-bottom-color: var(--acid); }

.head-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
}
.head-status::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: 0.4 } }

.menu-toggle { display: none; background: var(--bg-2); border: 1px solid var(--line-2); padding: 6px 12px; font-family: var(--mono); font-size: 12px; cursor: pointer; color: var(--ink); border-radius: 6px; }
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 18px var(--gutter); background: var(--bg); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .head-status { display: none; }
}

/* ────── HERO ────── */
.hero {
  padding: clamp(60px, 10vw, 140px) 0 clamp(50px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.hero-cap {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--acid);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-cap::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--acid);
}
.hero-cap span { color: var(--ink-3); }

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(46px, 9vw, 156px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  max-width: 18ch;
}
.hero h1 .acid { color: var(--acid); }
.hero h1 .gradient {
  background: linear-gradient(90deg, var(--ink) 30%, var(--acid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .mono {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.62em;
  letter-spacing: -0.02em;
  display: inline-block;
  vertical-align: 2%;
}

.hero-sub {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 900px) { .hero-sub { grid-template-columns: 1fr; gap: 30px; } }

.hero-sub p { font-size: 17px; line-height: 1.6; color: var(--ink-2); }

.hero-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 24px 22px;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "STATUS / 200 OK";
  position: absolute;
  top: 14px;
  right: 18px;
  color: var(--acid);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-3);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row strong { color: var(--ink); font-weight: 500; }
.hero-card-row em { color: var(--acid); font-style: normal; font-weight: 500; }

/* ────── CODE LINE ────── */
.terminal {
  margin-top: 50px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 13px;
  overflow: hidden;
}
.terminal-bar {
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink-3);
}
.terminal-bar .dots { display: flex; gap: 6px; }
.terminal-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.terminal-bar .title { margin-left: 14px; font-size: 12px; }
.terminal-body {
  padding: 18px 22px;
  line-height: 1.7;
}
.terminal-body .l { display: block; }
.terminal-body .green { color: var(--acid); }
.terminal-body .grey { color: var(--ink-3); }
.terminal-body .white { color: var(--ink); }
.terminal-body .y { color: var(--warn); }
.cursor { display: inline-block; width: 8px; height: 14px; background: var(--acid); vertical-align: middle; margin-left: 4px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ────── SECTION ────── */
.section { padding: clamp(60px, 9vw, 130px) 0; border-bottom: 1px solid var(--line); position: relative; }

.section-cap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 30px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.section-cap::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
}

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 18ch;
}
.section-title .acid { color: var(--acid); }
.section-title .stroke { -webkit-text-stroke: 1px var(--ink-2); color: transparent; }
.section-lead {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.6;
  margin-top: 22px;
  color: var(--ink-2);
}

/* ────── INTRO ────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
@media (max-width: 800px) { .intro-grid { grid-template-columns: 1fr; gap: 24px; } }
.intro-grid p { color: var(--ink-2); }
.intro-grid p + p { margin-top: 14px; }
.intro-grid p strong { color: var(--ink); font-weight: 500; }
.intro-grid p em { color: var(--acid); font-style: normal; }

/* ────── SVC GRID ────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.svc:hover { border-color: var(--acid); transform: translateY(-2px); }
.svc:hover::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--acid);
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(184, 255, 93, 0.06);
}
.svc-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--acid);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.svc h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}
.svc p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
  color: var(--ink-2);
}
.svc-meta {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}
.svc-meta strong { color: var(--acid); font-weight: 500; }

/* ────── METRICS GRID ────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 900px) { .metrics { grid-template-columns: repeat(2, 1fr); } }
.metric {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 20px;
  position: relative;
}
.metric strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.metric strong .acid { color: var(--acid); }
.metric span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* ────── CASES ────── */
.case-list {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.case {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  grid-template-columns: 240px 1fr 200px;
  gap: 32px;
  align-items: start;
  transition: border-color 0.2s;
}
.case:hover { border-color: var(--line-2); }
@media (max-width: 900px) { .case { grid-template-columns: 1fr; gap: 18px; } }
.case-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.7;
}
.case-meta strong {
  display: block;
  color: var(--acid);
  font-weight: 500;
  margin-bottom: 10px;
}
.case-meta p { margin-top: 8px; line-height: 1.6; }
.case-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.case-body h3 em { font-style: normal; color: var(--acid); }
.case-body p { font-size: 15px; line-height: 1.6; }
.case-body p + p { margin-top: 8px; }
.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.case-stack span {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 8px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 4px;
}
.case-stat {
  background: var(--bg);
  border: 1px solid var(--acid);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
  font-family: var(--display);
}
.case-stat strong {
  font-size: 44px;
  font-weight: 500;
  line-height: 0.95;
  color: var(--acid);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}
.case-stat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

/* ────── PROCESS ────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
}
.process-step .n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--acid);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: block;
}
.process-step h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.process-step p { font-size: 14px; line-height: 1.55; color: var(--ink-2); }

/* ────── TEAM ────── */
.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 900px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team { grid-template-columns: 1fr; } }
.tm {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  position: relative;
}
.tm-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--acid);
  margin-bottom: 16px;
  display: block;
}
.tm-avatar {
  width: 56px;
  height: 56px;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
}
.tm-avatar.acid { background: var(--acid); color: var(--bg); border-color: var(--acid); }
.tm-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 4px;
}
.tm-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

/* ────── FAQ ────── */
.faq { margin-top: 30px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-2);
  padding: 22px 24px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item.open { border-color: var(--acid); }
.faq-q {
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  gap: 24px;
}
.faq-q::after {
  content: "→";
  font-family: var(--mono);
  font-size: 18px;
  color: var(--acid);
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.faq-item.open .faq-a { max-height: 700px; padding-top: 14px; }

/* ────── CTA ────── */
.cta {
  background: linear-gradient(135deg, #0c0d10 0%, #131418 50%, #0c0d10 100%);
  padding: clamp(60px, 9vw, 130px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 255, 93, 0.12), transparent 65%);
  top: -200px;
  right: -150px;
  filter: blur(40px);
}
.cta * { position: relative; z-index: 1; }
.cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 18ch;
}
.cta h2 .acid { color: var(--acid); }
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 50px;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--acid);
  color: var(--bg);
  border: 1.5px solid var(--acid);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn:hover { background: transparent; color: var(--acid); box-shadow: 0 0 24px rgba(184, 255, 93, 0.35); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-2); color: var(--ink); }

.cta-side {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  max-width: 38ch;
  color: var(--ink-3);
}
.cta-side a { color: var(--acid); border-bottom: 1px solid; }

/* ────── FOOTER ────── */
.foot {
  background: var(--bg);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  padding: 50px 0 32px;
  letter-spacing: 0.04em;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }
.foot h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.foot a { display: block; margin-bottom: 6px; }
.foot a:hover { color: var(--acid); }
.foot-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

/* ────── PAGE ────── */
.page-head { padding: clamp(60px, 9vw, 120px) 0 clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.page-head h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.page-head h1 .acid { color: var(--acid); }
.page-head p { max-width: 56ch; font-size: 19px; line-height: 1.55; margin-top: 24px; color: var(--ink-2); }

.prose { max-width: 70ch; font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.prose h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  margin: 50px 0 16px;
  line-height: 1.05;
  color: var(--ink);
}
.prose h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.prose p + p { margin-top: 14px; }
.prose ul { margin: 14px 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose code, .prose .mono {
  font-family: var(--mono);
  font-size: 0.92em;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
  color: var(--acid);
}
.prose a { color: var(--acid); border-bottom: 1px solid var(--acid); padding-bottom: 1px; }

/* ────── COOKIE BANNER ────── */
.cookie-banner {
  position: fixed;
  bottom: 22px; left: 22px; right: 22px;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(22, 24, 29, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid var(--line-2);
  padding: 18px 22px;
  z-index: 100;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 255, 93, 0.06);
  display: flex; gap: 18px; align-items: center;
  animation: cb-up 0.4s ease;
}
.cookie-banner__inner { display: contents; }
.cookie-banner__text {
  font-family: var(--mono); font-size: 12px; line-height: 1.55;
  margin: 0; flex: 1; color: var(--ink-2);
}
.cookie-banner__text a { color: var(--acid); border-bottom: 1px solid var(--acid); padding-bottom: 1px; }
.cookie-banner__btn {
  background: var(--acid); color: var(--bg);
  border: 1.5px solid var(--acid);
  padding: 11px 22px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 8px;
  cursor: pointer; flex-shrink: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner__btn:hover { background: transparent; color: var(--acid); box-shadow: 0 0 16px rgba(184, 255, 93, 0.4); }
.cookie-banner.is-hidden { opacity: 0; transform: translateY(20px); transition: all 0.3s; }
@keyframes cb-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner__btn { align-self: flex-start; }
}
