﻿/* ─────────────────────────────────────────────────────────
   BRIKDROP — Shared Stylesheet
   Tokens extracted directly from Figma source of truth
   ───────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Climate+Crisis&family=Poppins:wght@400;500;600;700;900&display=swap');

/* ── TOKENS ── */
:root {
  --bg:     #F5F5F0;
  --dark:   #2A2A2A;
  --yellow: #FFD500;
  --cream:  #F5F5F0;
  --white:  #FFFFFF;
  --muted:  #BEBEBE;

  --font-display: 'Climate Crisis', cursive;
  --font-body:    'Poppins', sans-serif;

  --r-btn:     10px;
  --r-stat:    43px;
  --r-card:    54px;
  --r-xl:      89px;

  --shadow: -10px 9px 0px 0px #000000;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }

/* ── TYPOGRAPHY UTILITIES ── */
.label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--dark);
  opacity: 0.7;
  margin-bottom: 14px;
}
/* Editorial default: Poppins 900 for section headings */
.display {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 32px;
}
/* Climate Crisis: logo, hero H1, and price amounts only */
h1.display,
.hero-title,
.price-amount,
.nav-logo,
.footer-logo {
  font-family: 'Climate Crisis', cursive;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1;
}
/* Poppins for tier/service/payment names */
.payment-name  { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }
.service-name  { font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }

/* ── PRICING COMPARE ── */
.price-compare {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 26px);
  opacity: 0.5;
  margin-bottom: 6px;
  line-height: 1;
}
.price-compare s {
  text-decoration-thickness: 2.5px;
  text-decoration-color: currentColor;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.price-card-yellow .price-tag { background: var(--dark); color: var(--yellow); }
.sub-copy {
  font-weight: 500;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--dark);
  max-width: 600px;
}

/* ── NAV — frosted glass + hide-on-scroll-down ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(40px) saturate(220%) brightness(1.06);
  -webkit-backdrop-filter: blur(40px) saturate(220%) brightness(1.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 40px rgba(42, 42, 42, 0.07),
    0 1px 0 rgba(42, 42, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1),
              background 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.site-nav.nav-hidden {
  transform: translateY(-100%);
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 40px rgba(42, 42, 42, 0.1),
    0 1px 0 rgba(42, 42, 42, 0.06);
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
  color: var(--dark);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  transition: opacity 0.15s;
}
.nav-links a:hover  { opacity: 0.5; }
.nav-links a.active { font-weight: 700; opacity: 1; }

/* hamburger — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.25s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--dark);
  padding: 24px 40px;
}
.mobile-menu a {
  font-weight: 500;
  font-size: 18px;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,245,240,0.1);
}
.mobile-menu.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--r-btn);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.15s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.84; transform: translateY(-1px); }

.btn-dark    { background: var(--dark);   color: var(--cream); }
.btn-yellow  { background: var(--yellow); color: var(--dark);  }
.btn-outline { background: transparent;  color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-lg { padding: 20px 44px; font-size: 21px; }
.btn-sm { padding: 12px 22px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── TICKER ── */
.ticker {
  background: var(--dark);
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--cream);
  padding: 0 28px;
}
.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── STAT CARDS ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  background: var(--dark);
  border-radius: var(--r-stat);
  padding: 28px 32px;
  color: var(--cream);
}
.stat-value {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 56px);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: clamp(13px, 1.1vw, 18px);
  opacity: 0.75;
}

/* ── PROBLEM CARDS ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--dark);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 56px 44px;
  color: var(--cream);
}
.problem-num {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.45;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.problem-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  color: var(--yellow);
  margin-bottom: 20px;
}
.problem-body {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  opacity: 0.82;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 16px;
  align-items: start;
}
.price-card {
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-card-dark   { background: var(--dark);   color: var(--cream); }
.price-card-yellow { background: var(--yellow); color: var(--dark);  }

.price-card-head { padding: 48px 40px 32px; position: relative; }
.price-badge {
  position: absolute;
  top: 0; right: 40px;
  background: var(--dark);
  color: var(--cream);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 0 0 10px 10px;
}
.price-tier-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 10px;
}
.price-tier-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.price-tier-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.5;
  opacity: 0.78;
  margin-bottom: 28px;
}
.price-divider {
  height: 1px;
  background: currentColor;
  opacity: 0.18;
  margin-bottom: 28px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1;
  margin-bottom: 8px;
}
.price-freq {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.65;
  white-space: pre-line;
}
.price-features {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
}
.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}
.price-cta { padding: 20px 40px 40px; }

/* ── HOW WE WORK CARDS ── */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hw-card {
  background: var(--dark);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 52px 44px;
  color: var(--cream);
}
.hw-step  { font-size: 14px; font-weight: 500; opacity: 0.45; margin-bottom: 20px; letter-spacing: 0.04em; }
.hw-title { font-family: var(--font-body); font-weight: 800; font-size: clamp(22px, 2vw, 30px); line-height: 1.1; color: var(--yellow); margin-bottom: 16px; letter-spacing: -0.01em; }
.hw-body  { font-size: clamp(14px, 1.1vw, 17px); line-height: 1.6; opacity: 0.82; }

/* ── CASE STUDY ── */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.case-stat {
  background: var(--dark);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding: 44px 36px;
  color: var(--cream);
}
.case-stat-value {
  font-weight: 700;
  font-size: clamp(26px, 2.8vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}
.case-stat-label { font-size: clamp(13px, 1vw, 16px); opacity: 0.65; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--dark);
  border-radius: var(--r-card);
  padding: 68px 60px;
  color: var(--cream);
}
.testimonial-mark {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  color: var(--yellow);
  line-height: 0.75;
  margin-bottom: 28px;
}
.testimonial-text {
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 1.35;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.94) translateY(14px); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── FAQ — smooth height transition ── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 36px;
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: 1.6;
  opacity: 0.8;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1),
              padding    0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 36px 32px;
}

/* ── CARD HOVER LIFT ── */
.problem-card, .hw-card, .case-stat, .principle-card, .about-case-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.problem-card:hover, .hw-card:hover, .case-stat:hover,
.principle-card:hover, .about-case-card:hover {
  transform: translateY(-5px);
  box-shadow: -10px 14px 0 0 #000;
}
.stat-card {
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-card:hover { transform: translateY(-4px) scale(1.02); }
.price-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(42,42,42,0.15); }

/* ── HERO ENTRANCE (index only) ── */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-animate { animation: heroUp 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--dark);
  border-radius: var(--r-card);
  color: var(--cream);
  overflow: hidden;
  cursor: pointer;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 28px);
  line-height: 1.2;
  user-select: none;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cream);
  border-radius: 3px;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { width: 100%; height: 3px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after  { width: 3px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
/* faq-answer handled above via max-height transition */

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 15px; opacity: 0.55; line-height: 1.6; max-width: 260px; }
.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; opacity: 0.7; transition: opacity 0.15s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding: 24px 40px;
  border-top: 1px solid rgba(245,245,240,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.4;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--dark);
  border-radius: var(--r-card);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-block-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 600px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 80px 0 60px;
}
.page-hero .display { margin-bottom: 24px; }

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; }
.form-input, .form-select, .form-textarea {
  background: transparent;
  border: 2px solid rgba(42,42,42,0.2);
  border-radius: var(--r-btn);
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--dark);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(42,42,42,0.1); margin: 0; }

/* ─── SERVICE CARDS ─── */
.service-section {
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 24px;
}
.service-head {
  padding: 56px 52px 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.service-body { padding: 0 52px 52px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pricing-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .problem-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .case-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hw-grid       { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .stat-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .cta-block     { flex-direction: column; align-items: flex-start; padding: 52px 40px; }
}
@media (max-width: 768px) {
  .container     { padding: 0 24px; }
  .section       { padding: 64px 0; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .case-stats    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .nav-inner  { padding: 0 20px; height: 64px; }
  .nav-logo   { font-size: 26px; }
  .testimonial { padding: 44px 32px; }
  .btn.btn-yellow { padding: 12px 18px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════
   NEW INTERACTION LAYER
   ═══════════════════════════════════════════════════════ */

/* ── Custom cursor ── */
.custom-cursor-active * { cursor: none !important; }
#bd-cursor {
  position: fixed;
  top: -20px; left: -20px;
  width: 40px; height: 40px;
  border: 2px solid rgba(180,180,180,0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s, height 0.2s, background 0.2s, top 0.2s, left 0.2s;
  will-change: transform;
  mix-blend-mode: difference;
}
#bd-cursor-dot {
  position: fixed;
  top: -4px; left: -4px;
  width: 8px; height: 8px;
  background: rgba(200,200,200,0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  will-change: transform;
  mix-blend-mode: difference;
}
#bd-cursor.cursor--hover {
  width: 64px; height: 64px;
  top: -32px; left: -32px;
  background: rgba(255,213,0,0.15);
  border-color: var(--yellow);
  mix-blend-mode: normal;
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  z-index: 10000;
  transition: width 0.1s linear;
  transform-origin: left;
}

/* ── Page transition overlay ── */
#page-transition {
  position: fixed;
  inset: 0;
  background: var(--yellow);
  z-index: 99998;
  transform: translateX(-100%);
  display: none;
}
#page-transition.pt-in  { animation: ptIn  0.55s cubic-bezier(0.76,0,0.24,1) forwards; }
#page-transition.pt-out { animation: ptOut 0.55s cubic-bezier(0.76,0,0.24,1) forwards; }
@keyframes ptIn  { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes ptOut { from { transform: translateX(0); }    to { transform: translateX(100%); } }

/* ── Floating CTA — removed ── */
#float-cta { display: none !important; }

/* ── NAV CTA — hide on mobile, replaced by bottom pill ── */
.nav-cta-btn { flex-shrink: 0; }
@media (max-width: 768px) {
  .nav-cta-btn { display: none !important; }
}

/* ── MOBILE BOTTOM CTA PILL ── */
.mobile-bottom-pill {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 8500;
  background: var(--dark);
  color: var(--cream);
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
  display: none;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.1);
}
.mobile-bottom-pill.pill-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .mobile-bottom-pill { display: flex; }
}
.mobile-bottom-pill .pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* ── Sticky section label ── */
#section-label {
  position: fixed;
  left: 0;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 50;
  pointer-events: none;
  white-space: nowrap;
}
#section-label.section-label--visible { opacity: 0.35; }
@media (max-width: 900px) { #section-label { display: none; } }

/* ── Link underline slide ── */
.nav-links a,
.footer-links a,
.mobile-menu a {
  position: relative;
}
.nav-links a::after,
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.76,0,0.24,1);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.footer-links a:hover::after { width: 100%; }

/* ── Snap scroll ── */
html.snap-enabled {
  scroll-snap-type: y proximity;
}
html.snap-enabled .snap-section {
  scroll-snap-align: start;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
#preloader .pre-ascii {
  font-family: 'Courier New', monospace;
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(245,245,240,0.6);
  letter-spacing: 0.1em;
  min-width: 22ch;
  text-align: center;
}
#preloader .pre-brand {
  font-family: 'Climate Crisis', cursive;
  font-size: clamp(36px, 5vw, 72px);
  color: var(--yellow);
  opacity: 0;
  letter-spacing: 0.02em;
  transition: opacity 0.6s;
}
#preloader.pre-reveal .pre-brand { opacity: 1; }
#preloader.pre-done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s 0.2s;
}

/* ── Rotating availability badge ── */
.avail-badge {
  position: relative;
  width: 100px; height: 100px;
  flex-shrink: 0;
}
.avail-badge svg {
  animation: badgeSpin 12s linear infinite;
}
.avail-badge-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }

/* ── Testimonials carousel ── */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.76,0,0.24,1);
}
.testimonials-track .testimonial {
  min-width: 100%;
  flex-shrink: 0;
}
.testimonials-progress {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 16px;
}
.tprog-item {
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  flex: 1;
  max-width: 64px;
  overflow: hidden;
  cursor: pointer;
}
.tprog-fill {
  height: 100%;
  background: var(--yellow);
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s linear;
}
.tprog-item.active .tprog-fill { width: 100%; transition: width 5s linear; }

/* ── Full-screen menu overlay (all pages) ── */
.menu-overlay {
  position: fixed; inset: 0;
  background: var(--dark);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
  transform: translateY(-100%);
  transition: transform 0.75s cubic-bezier(0.76,0,0.24,1);
}
.menu-overlay.is-open { transform: translateY(0); }
.menu-overlay-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.menu-overlay-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.menu-overlay-circle:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -50px; }
.menu-overlay-circle:nth-child(3) { width: 200px; height: 200px; bottom: 80px; right: 120px; background: rgba(255,213,0,0.04); border-color: rgba(255,213,0,0.12); }
.menu-overlay-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative; z-index: 1;
}
.menu-overlay-links a {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: rgba(245,245,240,0.25);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
}
.menu-overlay-links a:hover,
.menu-overlay-links a.active { color: var(--yellow); }
.menu-overlay-bottom {
  position: absolute;
  bottom: 48px; left: 10vw; right: 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}
.menu-overlay-contact { display: flex; flex-direction: column; gap: 8px; }
.menu-overlay-contact a {
  font-size: 14px; font-weight: 500;
  color: rgba(245,245,240,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-overlay-contact a:hover { color: var(--cream); }
.menu-close {
  position: absolute;
  top: 28px; right: 32px;
  background: none; border: none;
  color: var(--cream); font-size: 28px;
  cursor: pointer; line-height: 1;
  opacity: 0.6; transition: opacity 0.2s;
  z-index: 2;
}
.menu-close:hover { opacity: 1; }

/* ── Floating form labels ── */
.float-group {
  position: relative;
  margin-bottom: 20px;
}
.float-group .float-input,
.float-group .float-textarea,
.float-group .float-select {
  width: 100%;
  background: rgba(245,245,240,0.07);
  border: 2px solid rgba(245,245,240,0.15);
  border-radius: var(--r-btn);
  padding: 22px 20px 8px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.float-group .float-input:focus,
.float-group .float-textarea:focus,
.float-group .float-select:focus { border-color: var(--yellow); }

/* Dropdown option list — needs solid bg so text is readable in browser native picker */
.float-group .float-select {
  background-color: #1c1c1c;
}
.float-group .float-select option {
  background-color: #1c1c1c;
  color: #F5F5F0;
}
.float-group .float-select option:disabled {
  color: rgba(245,245,240,0.3);
}
.float-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245,245,240,0.45);
  pointer-events: none;
  transition: top 0.2s, font-size 0.2s, color 0.2s;
}
.float-group textarea ~ label { top: 20px; transform: none; }
.float-group select ~ label  { top: 10px; transform: none; font-size: 11px; color: rgba(245,245,240,0.55); }
.float-group .float-input:focus ~ label,
.float-group .float-input:not(:placeholder-shown) ~ label,
.float-group .float-textarea:focus ~ label,
.float-group .float-textarea:not(:placeholder-shown) ~ label {
  top: 8px;
  transform: none;
  font-size: 11px;
  color: rgba(245,245,240,0.55);
}
.float-group .float-textarea { min-height: 120px; resize: vertical; padding-top: 24px; }

/* ── Pricing watermark ── */
.pricing-watermark {
  position: absolute;
  font-family: 'Climate Crisis', cursive;
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 300;
  line-height: 1;
  color: rgba(42,42,42,0.055);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
body.theme-yellow .pricing-watermark { color: rgba(42,42,42,0.07); }
.pricing-hero-wrap { position: relative; overflow: hidden; padding-bottom: 60px; }
.pricing-hero-wrap > * { position: relative; z-index: 1; }

/* ── Per-page colour themes ── */
body.theme-dark {
  --bg: #0F0F0F;
  background: #0F0F0F;
}
body.theme-dark .site-nav {
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 40px rgba(0,0,0,0.3);
}
body.theme-dark .nav-links a,
body.theme-dark .nav-logo { color: var(--cream); }
body.theme-dark .label,
body.theme-dark .display,
body.theme-dark .sub-copy { color: var(--cream); }
body.theme-dark .divider { background: rgba(245,245,240,0.08); }
body.theme-dark .faq-item { background: #1a1a1a; }
body.theme-dark .cta-block { background: #1a1a1a; }
body.theme-dark .service-block-dark { background: #1a1a1a; }
body.theme-dark .footer-tagline { color: rgba(245,245,240,0.45); }
body.theme-dark #bd-cursor { border-color: var(--cream); }
body.theme-dark #bd-cursor-dot { background: var(--cream); }
body.theme-dark #section-label { color: var(--cream); }
body.theme-dark .nav-hamburger span { background: var(--cream); }

body.theme-yellow {
  --bg: #FFD500;
  background: #FFD500;
}
body.theme-yellow .site-nav {
  background: rgba(255,213,0,0.55);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom-color: rgba(255,255,255,0.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 8px 40px rgba(42,42,42,0.06);
}
body.theme-yellow .site-nav.scrolled { background: rgba(255,213,0,0.82); }
body.theme-yellow .nav-links a,
body.theme-yellow .nav-logo { color: var(--dark); }
body.theme-yellow .btn-yellow { background: var(--dark); color: var(--yellow); }
body.theme-yellow .label,
body.theme-yellow .display,
body.theme-yellow .sub-copy { color: var(--dark); }
body.theme-yellow .price-card-yellow { background: rgba(255,255,255,0.35); }
body.theme-yellow #page-transition { background: var(--dark); }
body.theme-yellow #scroll-progress { background: var(--dark); }

/* ── MOBILE CTA BAR — removed ── */
.mobile-cta-bar { display: none !important; }

/* ── SPOT COUNTER (C) ── */
.spot-counter {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  opacity: 0;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) 1.35s forwards;
}
.spot-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.spot-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
  overflow: hidden;
}
.spot-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1) 1.8s;
}
.spot-fill.loaded { width: 50%; }
.spot-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(245,245,240,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── CURSOR TRAIL (L) ── */
.c-trail {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 1px;
  background: rgba(255,213,0,0.55);
  pointer-events: none;
  z-index: 99996;
  opacity: 0;
  transform: translate(-50%,-50%);
}

/* ── TRUST TICKER (E) — reverse scroll ── */
.ticker-trust { background: var(--dark); }
.ticker-trust .ticker-track {
  animation: marqueeRev 36s linear infinite;
}
@keyframes marqueeRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.ticker-trust .ticker-item {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.55);
  padding: 0 28px;
}
.ticker-trust .ticker-item:hover { color: var(--yellow); transition: color 0.2s; }

/* ── BEFORE / AFTER SLIDER (K) ── */
.ba-wrap {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  min-height: 280px;
}
.ba-panel {
  position: absolute; inset: 0;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.ba-before { background: #1a1a1a; }
.ba-after {
  background: var(--yellow);
  clip-path: inset(0 50% 0 0);
}
.ba-stat-val {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.ba-before .ba-stat-val { color: rgba(245,245,240,0.55); }
.ba-after  .ba-stat-val { color: var(--dark); }
.ba-stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  margin-bottom: 4px;
}
.ba-after .ba-stat-row { border-color: rgba(0,0,0,0.12); }
.ba-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.45;
}
.ba-tag {
  position: absolute;
  top: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.ba-before .ba-tag { left: 20px; background: rgba(255,255,255,0.08); color: rgba(245,245,240,0.5); }
.ba-after  .ba-tag { right: 20px; background: rgba(0,0,0,0.15); color: var(--dark); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 5;
  cursor: col-resize;
}
.ba-handle::after {
  content: '↔';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: grid;
  place-items: center;
}

/* ── STAGGERED FEATURES (M) ── */
.price-card .price-feature {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.price-card.revealed .price-feature { opacity: 1; transform: none; }

/* ── FAQ EMBEDDED CTA (H) ── */
.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 22px;
  border-radius: var(--r-btn);
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}
.faq-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ── SECTION WIPES (I) — accent line sweeps in ── */
.section-wipe {
  position: relative;
}
.section-wipe::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
  z-index: 2;
}
.section-wipe.wipe-in::before { transform: scaleX(1); }

/* ── SCROLLJACK CASE STATS (F) ── */
.case-stat-seq {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.case-stat-seq.seq-in { opacity: 1; transform: none; }
.case-progress-line {
  width: 2px;
  background: rgba(42,42,42,0.12);
  margin: 8px auto;
  height: 0;
  transition: height 0.5s ease;
}
.case-progress-line.line-in { height: 32px; }

/* ── MOBILE PRICING — all 3 stacked vertically ── */
@media (max-width: 768px) {
  .pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .pricing-grid .price-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .swiper-dots { display: none !important; }
}
.swiper-dots { display: none; }
.swiper-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(42,42,42,0.2);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.swiper-dot.active { background: var(--dark); transform: scale(1.4); }

/* ── HERO SPOTLIGHT (B) ── */
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(400px circle at 50% 50%, rgba(255,213,0,0.04), transparent 70%);
  transition: opacity 0.3s;
}

/* ── SERVICES HOVER REVEAL (G) ── */
.service-features-preview {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.4s;
  opacity: 0;
}
.service-block:hover .service-features-preview,
.service-block:focus-within .service-features-preview {
  max-height: 500px;
  opacity: 1;
}
.service-block .service-hover-hint {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-top: 16px;
  transition: opacity 0.2s;
}
.service-block:hover .service-hover-hint { opacity: 0; }

body.theme-yellow #section-label { color: var(--dark); }

/* First section sits close to nav */
.section-top { padding-top: 12px !important; }

/* ── SERVICES MEGA MENU ── */
#services-mega {
  display: none;
  position: fixed;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  flex-direction: column;
  gap: 4px;
  width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
  z-index: 999999;
  animation: smegaDrop 0.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
#services-mega.smega-open { display: flex; }
@keyframes smegaDrop {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
.smega-arrow {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 2px;
}
.smega-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s;
}
.smega-card:hover { background: rgba(42,42,42,0.06); }
.smega-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.smega-icon--dark   { background: #2A2A2A; }
.smega-icon--yellow { background: #FFD500; }
.smega-body { flex: 1; }
.smega-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2A2A2A;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.smega-body p {
  font-size: 11px;
  color: rgba(42,42,42,0.5);
  line-height: 1.4;
  margin: 0;
}
.smega-arrow-right {
  font-size: 15px;
  color: rgba(42,42,42,0.25);
  transition: color 0.15s, transform 0.15s;
}
.smega-card:hover .smega-arrow-right { color: #2A2A2A; transform: translateX(3px); }
.smega-divider { height: 1px; background: rgba(42,42,42,0.07); margin: 2px 4px; }
.services-nav-trigger { cursor: pointer; }


