/* ═══════════════════════════════════════════════════════════
   DNK Labs — Shared Design System
   Single source of truth for all pages
   ═══════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── DESIGN TOKENS ── */
:root {
  /* Palette */
  --black: #0A0A0A;
  --cream: #F5F0E8;
  --off-white: #F5F0E8;
  --accent: #C8FF00;
  --accent-dim: #A8D800;
  --muted: #6B6B6B;
  --border: rgba(255, 255, 255, 0.08);
  --tag-bg: rgba(200, 255, 0, 0.08);
  --tag-border: rgba(200, 255, 0, 0.2);
  --link-blue: #3CAEFF;

  /* Animation — standardised timing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  --dur-fast: 0.15s;
  --dur-normal: 0.3s;
  --dur-slow: 0.5s;
  --dur-reveal: 0.8s;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── LOGO ── */
.logo {
  display: inline-flex;
  align-items: stretch;
  height: 32px;
  line-height: 1;
  text-decoration: none;
  color: inherit;
}

.logo-dnk {
  background: var(--black);
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
}

.logo-labs {
  background: var(--cream);
  color: var(--black);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(245, 240, 232, 0.5);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--dur-normal) var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-slow) var(--ease-out);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-pill {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--accent);
  padding: 0.55rem 1.3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background var(--dur-normal) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.nav-cta:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  z-index: 200;
  transition: none;
  will-change: width;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 80px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--accent));
  filter: blur(4px);
  opacity: 0.8;
}

/* ── SECTION BASE ── */
section {
  padding: 8rem 3rem;
  position: relative;
}

.section-label {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 0.5px;
  background: var(--accent);
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 700px;
}

.section-headline em {
  font-style: normal;
  color: var(--accent);
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  background: #0D0D0D;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--accent);
  margin: 0 0.75rem;
}

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

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--accent);
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-normal) var(--ease-out),
              box-shadow var(--dur-normal) var(--ease-out);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.25), 0 0 48px rgba(200, 255, 0, 0.1);
}

.btn-ghost {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--dur-normal) var(--ease-out);
}

.btn-ghost:hover { color: var(--cream); }

/* ── HERO BASE ── */
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 72% 38%, rgba(200, 255, 0, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 18% 72%, rgba(200, 255, 0, 0.05) 0%, transparent 50%);
  animation: glow-pulse 8s var(--ease-in-out) infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 0.5px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin-bottom: 3.5rem;
}

.hero-headline em { font-style: normal; color: var(--accent); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.hero-sub strong { color: var(--cream); font-weight: 400; }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

/* ── HERO LOAD ANIMATION ── */
.hero-content .hero-eyebrow {
  opacity: 0;
  transform: translateY(15px);
  animation: hero-reveal var(--dur-reveal) var(--ease-out) 0.2s forwards;
}

.hero-content .hero-headline {
  opacity: 0;
  transform: translateY(15px);
  animation: hero-reveal var(--dur-reveal) var(--ease-out) 0.4s forwards;
}

.hero-content .hero-bottom {
  opacity: 0;
  transform: translateY(15px);
  animation: hero-reveal var(--dur-reveal) var(--ease-out) 0.65s forwards;
}

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--accent);
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.cta-bg-track {
  display: flex;
  white-space: nowrap;
  animation: cta-scroll 12s linear infinite;
}

.cta-bg-track span {
  font-family: 'Syne', sans-serif;
  font-size: 18vw;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  letter-spacing: -0.02em;
  padding-right: 0.1em;
  flex-shrink: 0;
}

@keyframes cta-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cta-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.logo-cta { height: 44px; }

.logo-cta .logo-dnk {
  background: var(--black);
  color: var(--cream);
  border-color: transparent;
  font-size: 1.4rem;
  padding: 0 0.9rem;
}

.logo-cta .logo-labs {
  background: var(--cream);
  color: var(--black);
  border-color: transparent;
  font-size: 1.4rem;
  padding: 0 0.9rem;
}

.cta-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 3rem;
  position: relative;
}

/* ── QUALIFYING FLOW ── */
.qualify-flow {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  min-height: 280px;
}

.qualify-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.qualify-step.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.qualify-step.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}

.qualify-question {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.qualify-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.qualify-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.05);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--black);
  transition: all 0.22s ease;
  text-align: left;
}

.qualify-option:hover {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.qualify-option:active {
  transform: scale(0.98);
}

.qualify-option .q-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.qualify-option .q-label {
  flex: 1;
}

.qualify-option .q-arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
}

.qualify-option:hover .q-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Progress dots */
.qualify-progress {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.qualify-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.qualify-dot.done {
  background: var(--black);
  transform: scale(1);
}

.qualify-dot.current {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Back button */
.qualify-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.35);
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.qualify-back:hover {
  color: rgba(0, 0, 0, 0.65);
}

/* Contact form (final step) */
.qualify-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qualify-contact input {
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--black);
  outline: none;
  font-weight: 400;
  transition: border-color 0.2s ease;
}

.qualify-contact input:focus {
  border-color: rgba(0, 0, 0, 0.35);
}

.qualify-contact input::placeholder {
  color: rgba(0, 0, 0, 0.32);
}

.qualify-submit {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--black);
  padding: 1rem 1.6rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 0.4rem;
  transition: opacity 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.qualify-submit:hover {
  opacity: 0.88;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.qualify-or-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.6rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qualify-or-divider::before,
.qualify-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.qualify-cal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  transition: all 0.22s ease;
}

.qualify-cal-link:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.3);
}

.qualify-cal-link svg {
  width: 16px;
  height: 16px;
}

/* Success state */
.qualify-success {
  text-align: center;
  padding: 2rem 0;
}

.qualify-success-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.qualify-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.qualify-success p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

.cta-fine {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.38);
  margin-top: 1rem;
  letter-spacing: 0.02em;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 0.5px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--dur-normal) var(--ease-out),
              letter-spacing var(--dur-normal) var(--ease-out),
              text-shadow var(--dur-normal) var(--ease-out);
}

.footer-links a:hover {
  color: var(--accent);
  letter-spacing: 0.14em;
  text-shadow: 0 0 12px rgba(200, 255, 0, 0.45);
}

.footer-copy {
  font-size: 0.68rem;
  color: rgba(107, 107, 107, 0.45);
}

.footer-shield {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(107, 107, 107, 0.35);
  text-decoration: none;
  font-size: 0.68rem;
  transition: color var(--dur-normal) var(--ease-out);
}

.footer-shield:hover { color: var(--link-blue); }

/* ── SORTLIST BADGE ── */
.sortlist-badge {
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity var(--dur-normal) var(--ease-out),
              transform var(--dur-normal) var(--ease-out);
  flex-shrink: 0;
}

.sortlist-badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ── ACCENT LINKS ── */
.security-link,
.accent-link {
  color: var(--link-blue);
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color var(--dur-normal) var(--ease-out);
}

.security-link:hover,
.accent-link:hover {
  border-color: var(--link-blue);
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.15s; }
[data-reveal-delay="2"] { transition-delay: 0.3s; }
[data-reveal-delay="3"] { transition-delay: 0.45s; }
[data-reveal-delay="4"] { transition-delay: 0.6s; }

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dur-normal);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-normal),
              transform var(--dur-fast) var(--ease-out),
              background var(--dur-normal) var(--ease-out);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(200, 255, 0, 0.5);
  margin-left: -16px;
  margin-top: -16px;
  transition: opacity var(--dur-normal),
              width var(--dur-normal) var(--ease-out),
              height var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal) var(--ease-out),
              margin var(--dur-normal) var(--ease-out);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }

body.cursor-hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(0.4);
  background: var(--accent);
}

body.cursor-hovering .cursor-ring {
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  border-color: var(--accent);
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── CARD GLOW (shared by service-card + feature-card) ── */
.glow-card {
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(200, 255, 0, 0.055) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.glow-card:hover::before { opacity: 1; }
.glow-card > * { position: relative; z-index: 1; }

/* ── RESPONSIVE BASE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  section { padding: 5rem 1.5rem; }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero-cta-group { align-items: flex-start; }

  .cta-section { padding: 5rem 1.5rem; }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 0.5px solid var(--border);
  transform: translateY(100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), visibility 0s 0.4s;
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.4s var(--ease-out), visibility 0s 0s;
}

.mobile-cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.mobile-cta-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--accent);
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-normal) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.mobile-cta-btn:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

@media (min-width: 901px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: flex !important;
  }
}


/* ── COOKIE CONSENT BANNER ── */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 10000;
  width: 340px;
  max-width: calc(100vw - 2rem);
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 0.5px solid var(--border);
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.cookie-consent.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-consent-title::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 0.5px;
  background: var(--accent);
}

.cookie-consent-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.cookie-consent-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle-label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.cookie-toggle-sub {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.15rem;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 36px;
  height: 20px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-track {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal) var(--ease-out);
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform var(--dur-normal) var(--ease-out),
              background var(--dur-normal) var(--ease-out);
}

.cookie-toggle input:checked + .cookie-toggle-track {
  background: rgba(200, 255, 0, 0.15);
  border-color: rgba(200, 255, 0, 0.35);
}

.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(16px);
  background: var(--accent);
}

.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-btn-accept {
  flex: 1;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  background: var(--accent);
  padding: 0.6rem 1rem;
  border: none;
  cursor: pointer;
  transition: background var(--dur-normal) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.cookie-btn-accept:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.cookie-btn-save {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: none;
  padding: 0.6rem 0.8rem;
  border: 0.5px solid var(--border);
  cursor: pointer;
  transition: color var(--dur-normal) var(--ease-out),
              border-color var(--dur-normal) var(--ease-out);
}

.cookie-btn-save:hover {
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .cookie-consent {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    max-width: none;
  }
}
