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

:root {
  --bg:           #080808;
  --bg-card:      #111111;
  --bg-card-2:    #161616;
  --bg-section:   #0d0d0d;
  --text:         #f5f5f5;
  --text-muted:   rgba(255,255,255,0.72);
  --text-dim:     rgba(255,255,255,0.40);
  --accent:       #B8FF00;
  --accent-dark:  #B8FF00;
  --accent-dim:   rgba(184,255,0,0.12);
  --accent-glow:  rgba(184,255,0,0.45);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(184,255,0,0.5);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.5), 0 12px 40px rgba(0,0,0,0.4);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --nav-h:        84px;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) { body { cursor: auto; } }

/* ─── Custom Cursor ─────────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent-dark);
  transition: transform 0.1s var(--ease-out);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(184,255,0,0.5);
  transition: transform 0.18s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
.cursor-ring.hovering { width: 56px; height: 56px; border-color: var(--accent-dark); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── Typography ────────────────────────────────────────────────── */
.t-hero {
  font-size: clamp(3.2rem, 9vw, 9.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.t-display {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.t-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.t-body { font-size: 1rem; line-height: 1.65; color: var(--text-muted); }
.t-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.accent { color: var(--accent); }

/* ─── Layout ────────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 4rem); }
section { position: relative; }

/* ─── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ─── Nav ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s var(--ease-in-out), border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-color: var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 4px;
}
.nav-logo {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-svg { display: block; height: 23px; width: auto; }
.logo-plus { fill: var(--accent-dark); }
[data-theme="light"] .logo-plus { fill: #7aab00; }
.footer-logo .nav-logo-svg { height: 17px; }
.nav-logo-dot {
  width: 8px; height: 8px;
  background: var(--accent-dark);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.25rem;
  background: var(--text);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
  cursor: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-dark);
  color: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }

  /* Two-row mobile nav: logo + controls on row 1, CTA chip on row 2 */
  .nav { height: auto; }
  .nav-inner {
    flex-wrap: wrap;
    padding: 10px 0 10px;
    row-gap: 6px;
    align-items: center;
  }
  .nav-logo  { order: 1; flex: 1; }
  .theme-toggle { order: 2; }
  .nav-mobile-btn { order: 3; margin-left: 8px; }
  .nav-cta {
    order: 4;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }
  .hero { padding-top: calc(116px + 2rem); }
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(to bottom, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.82) 100%),
    url('assets/office.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
}

/* subtle dot-grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, #000 30%, transparent 100%);
  pointer-events: none;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  background: rgba(17,17,17,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  width: fit-content;
}
.hero-label-pulse {
  width: 7px; height: 7px;
  background: var(--accent-dark);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-headline { margin-bottom: 2rem; overflow: hidden; }
.hero-line { overflow: hidden; display: block; }
.hero-line-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp 0.9s var(--ease-out) forwards;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.1s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.22s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.34s; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.6s var(--ease-out) forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s 0.75s var(--ease-out) forwards;
}

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  cursor: none;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  cursor: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* ─── Marquee ───────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  background: var(--bg-card);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 22s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.marquee-item strong { color: var(--accent-dark); }
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Section Shared ────────────────────────────────────────────── */
.section-pad { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--accent-dark);
  display: block;
}

/* ─── Problem Section ───────────────────────────────────────────── */
.problem {
  background-color: var(--bg-section);
  background-image:
    linear-gradient(to bottom, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.72) 50%, rgba(8,8,8,0.88) 100%),
    url('assets/magnifier.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
[data-theme="light"] .problem {
  background-image:
    linear-gradient(to bottom, rgba(239,237,230,0.85) 0%, rgba(239,237,230,0.75) 50%, rgba(239,237,230,0.90) 100%),
    url('assets/magnifier.jpg');
}
.problem-stat {
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, #ffffff 60%, rgba(255,255,255,0.25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.3s;
  cursor: default;
}
.problem-card .t-label {
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-transform: none;
}
.problem-card:first-child { border-radius: var(--radius) 0 0 0; }
.problem-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.problem-card:nth-child(3) { border-radius: 0 0 0 var(--radius); }
.problem-card:last-child { border-radius: 0 0 var(--radius) 0; }
.problem-card:hover { background: var(--bg-card-2); }
.problem-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.problem-icon svg { color: var(--accent-dark); }

/* ─── Services ──────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.3s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover { background: var(--bg); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(184,255,0,0.2); }
.service-icon svg { color: var(--accent-dark); }
.service-price {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.service-price strong { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.service-price span { font-size: 0.8rem; color: var(--text-muted); }
.service-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.service-arrow {
  position: absolute;
  top: clamp(1.75rem, 4vw, 2.75rem);
  right: clamp(1.75rem, 4vw, 2.75rem);
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
  color: var(--text-muted);
}
.service-card:hover .service-arrow {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  transform: translate(2px, -2px);
  color: #000;
}

/* ─── Process ───────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg-card);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.process-step:hover { background: var(--bg); }
.process-step-num {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-dim);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.process-step:hover .process-step-num { color: var(--accent-dark); }
.process-connector {
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-dark);
  opacity: 0.4;
}
@media (max-width: 900px) { .process-connector { display: none; } }

/* ─── Pricing ───────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: none;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent-dark);
  background: var(--bg-card-2);
  box-shadow: 0 0 0 3px rgba(184,255,0,0.15), var(--shadow-sm);
}
.pricing-card.featured:hover { box-shadow: 0 0 0 3px rgba(184,255,0,0.25), var(--shadow-md); }
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  background: var(--accent-dark);
  color: #000;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.pricing-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
}
.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.75rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-features li .check {
  width: 18px; height: 18px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-features li .check svg { color: var(--accent-dark); }
.pricing-cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  padding: 0.8rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s;
}
.pricing-cta.primary {
  background: var(--accent-dark);
  color: #000;
}
.pricing-cta.primary:hover {
  background: #d4ff4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.pricing-cta.ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-cta.ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
  transform: translateY(-1px);
}

/* ─── Why Section ───────────────────────────────────────────────── */
.why { background: var(--bg-section); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: var(--bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: background 0.3s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-card:hover { background: var(--bg); }
.why-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(184,255,0,0.2); }
.why-icon svg { color: var(--accent-dark); }
.why-card-text h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.why-card-text p { font-size: 0.875rem; line-height: 1.55; color: var(--text-muted); }

/* ─── CTA Section ───────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-section);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(184,255,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184,255,0,0.4);
  background: rgba(184,255,0,0.08);
  border-radius: 100px;
  margin-bottom: 2.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 3rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  background: var(--bg-card);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: none;
}
.cta-email:hover { border-color: rgba(255,255,255,0.2); color: var(--text); box-shadow: var(--shadow-sm); }
.cta-email svg { color: var(--accent-dark); flex-shrink: 0; }

/* ─── Footer ────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-meta { font-size: 0.8rem; color: var(--text-dim); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.footer-links a:hover { color: var(--text-muted); }

/* ─── Reduced Motion ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-line-inner { transform: translateY(0) !important; }
  .hero-sub, .hero-actions { opacity: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ─── Theme Toggle ──────────────────────────────────────────────── */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--border-hover); color: var(--accent-dark); background: var(--accent-dim); }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun  { display: flex; }
[data-theme="light"] .theme-toggle .icon-moon { display: flex; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }

/* ─── Light Theme ───────────────────────────────────────────────── */
[data-theme="light"] {
  --bg:           #f8f7f4;
  --bg-card:      #ffffff;
  --bg-card-2:    #f3f2ef;
  --bg-section:   #efede6;
  --text:         #0a0a0a;
  --text-muted:   rgba(0,0,0,0.52);
  --text-dim:     rgba(0,0,0,0.18);
  --accent:       #8cbb00;
  --accent-dark:  #7aab00;
  --accent-dim:   rgba(140,187,0,0.12);
  --accent-glow:  rgba(140,187,0,0.35);
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(122,171,0,0.5);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.1), 0 12px 40px rgba(0,0,0,0.08);
}

/* Light-specific overrides that can't use variables alone */
[data-theme="light"] .nav.scrolled {
  background: rgba(248,247,244,0.94);
  border-bottom-color: rgba(0,0,0,0.07);
}
[data-theme="light"] .problem-stat {
  background: linear-gradient(135deg, #0a0a0a 60%, rgba(0,0,0,0.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .cursor-ring {
  border-color: rgba(122,171,0,0.5);
}
[data-theme="light"] .pricing-card:hover { border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .pricing-cta.ghost:hover { border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .marquee-separator { color: rgba(0,0,0,0.25); }
[data-theme="light"] .hero {
  background-image:
    linear-gradient(to bottom, rgba(248,247,244,0.78) 0%, rgba(248,247,244,0.65) 50%, rgba(248,247,244,0.88) 100%),
    url('assets/office.jpg');
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 780px;
  width: calc(100% - 2rem);
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  animation: banner-slide-up 0.4s var(--ease-out) both;
}
.cookie-banner[hidden] { display: none; }
@keyframes banner-slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-text {
  flex: 1;
  min-width: 220px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.cookie-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
[data-theme="light"] .cookie-link { color: #5a8800; }
.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--accent-dark);
  color: #080808;
  border-color: var(--accent-dark);
}
.cookie-btn-primary:hover { filter: brightness(1.1); }
.cookie-btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.cookie-btn-ghost:hover { border-color: var(--border-hover); color: var(--text); }

/* ─── Cookie Modal ───────────────────────────────────────────── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-inner {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.cookie-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
}
.cookie-modal-close:hover { color: var(--text); }
.cookie-modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}
.cookie-modal-body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.cookie-modal-body a { color: var(--accent-dark); }
[data-theme="light"] .cookie-modal-body a { color: #5a8800; }
.cookie-modal-footer {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

/* ─── Footer cookie button ───────────────────────────────────── */
.footer-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: none;
}
.footer-cookie-btn:hover { color: var(--text-muted); }
