/* ────────────────────────────────────────────────
   BerryTheFacts — Design System
   Dark editorial, consumer advocacy, modern motion
   ──────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --bg:           #080808;
  --surface:      #0E0E0E;
  --surface2:     #151515;
  --surface3:     #1C1C1C;
  --border:       rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.11);
  --white:        #F2F2F2;
  --grey:         #636363;
  --grey-mid:     #888;
  --grey-light:   #AAAAAA;
  --primary:      #1ECFD6;
  --primary-dim:  rgba(30,207,214,0.10);
  --primary-glow: rgba(30,207,214,0.18);
  --orange:       #F79320;
  --orange-dim:   rgba(247,147,32,0.10);
  --orange-border:rgba(247,147,32,0.25);
  --red-dim:      rgba(239,68,68,0.12);
  --radius:       14px;
  --radius-lg:    20px;
  --radius-sm:    8px;
  --nav-h:        64px;
  --max-w:        1120px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── RESET ───────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
textarea, input { font-family: var(--font); }

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: var(--surface2); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}
/* Mobile menu — hidden by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 16px 28px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

@media(max-width:768px){
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px;
    gap: 2px;
    align-items: flex-start;
  }
  .nav-links.open a { width: 100%; padding: 12px 16px; }
  .nav-burger { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.18s cubic-bezier(0.25,1,0.5,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #060606;
}
.btn-primary:hover {
  background: #26e5ed;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,207,214,0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  background: var(--surface2);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 7px 16px;
  font-size: 12px;
  border-radius: 6px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}
.btn-orange {
  background: var(--orange);
  color: #060606;
}
.btn-orange:hover {
  background: #ffaa40;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(247,147,32,0.28);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 28px 80px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,207,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,207,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 920px;
  position: relative;
  z-index: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 40px;
  opacity: 0;
  animation: hero-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
  opacity: 0.45;
}

/* Hero headline — two-tone contrast */
.hero h1 {
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero-bury {
  display: block;
  color: #353535; /* muted — "they bury it" */
}
.hero-find {
  display: block;
  color: var(--white); /* bright — "berry finds it" */
}

/* Sub + CTAs */
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--grey-light);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s forwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 72px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}

/* Impact row */
.impact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.52s forwards;
}
.impact-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.impact-stat:last-child { border-right: none; }
.impact-stat:hover { background: var(--surface2); }
.impact-num {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}
.impact-num.teal { color: var(--primary); }
.impact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 9px;
  line-height: 1.5;
}

/* Hero keyframe */
@keyframes hero-fade-up {
  from { opacity:0; transform: translateY(28px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── TICKER ──────────────────────────────────────── */
.ticker-wrap {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  height: 44px;
}
.ticker-live {
  background: var(--primary);
  color: #060606;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 18px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-scroll {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 55s linear infinite;
  gap: 0;
}
.ticker:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-light);
  letter-spacing: 0.3px;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-dot.victory  { background: var(--primary); }
.ticker-dot.in_progress { background: var(--orange); }
.ticker-dot.investigating { background: var(--grey-mid); }

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

/* ── WORD REVEAL SECTION ─────────────────────────── */
/* Ajust-style scroll-driven word reveal */
.word-reveal-section {
  padding: 100px 28px;
  border-bottom: 1px solid var(--border);
}
.word-reveal-text {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: var(--white);
}
.word-reveal-text .wr-word {
  display: inline;
  color: #2A2A2A;
  transition: color 0.3s ease;
}
.word-reveal-text .wr-word.lit {
  color: var(--white);
}
.word-reveal-text .wr-accent {
  display: inline;
  color: #2A2A2A;
  transition: color 0.3s ease;
}
.word-reveal-text .wr-accent.lit {
  color: var(--primary);
}

/* ── FEATURES GRID ───────────────────────────────── */
.features-section {
  padding: 100px 28px;
  border-bottom: 1px solid var(--border);
}
.features-section .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s cubic-bezier(0.25,1,0.5,1), box-shadow 0.25s;
  opacity: 0;
  transform: translateY(32px);
}
.feature-card.stagger-visible {
  opacity: 1;
  transform: translateY(0);
  transition: border-color 0.25s, background 0.25s, transform 0.65s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s, opacity 0.65s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
  background: var(--surface2);
  border-color: var(--border-light);
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.feature-icon.orange { background: var(--orange-dim); }
.feature-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.feature-desc {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.65;
  flex: 1;
}
.feature-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  margin-top: 8px;
}
.feature-cta.orange { color: var(--orange); }

/* ── SECTION COMMON ──────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
}

/* ── CASES SECTION ───────────────────────────────── */
.cases-section {
  padding: 100px 28px;
  border-bottom: 1px solid var(--border);
}
.cases-loading {
  color: var(--grey);
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
}
.empty-state {
  color: var(--grey);
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
}

/* Filter pills */
.filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-light);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: 0.3px;
}
.filter-btn:hover { border-color: var(--border-light); color: var(--white); }
.filter-btn.active {
  background: var(--primary);
  color: #060606;
  border-color: transparent;
}

/* Cases list */
.cases-list { display: flex; flex-direction: column; gap: 16px; }
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  border-color: var(--border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.case-card.hidden { display: none; }

.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  gap: 16px;
  flex-wrap: wrap;
}
.case-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.business-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background: var(--surface2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.case-info { display: flex; flex-direction: column; gap: 2px; }
.business-name { font-size: 16px; font-weight: 700; color: var(--white); }
.case-category { font-size: 12px; color: var(--grey-mid); }
.case-badges { display: flex; gap: 6px; flex-wrap: wrap; }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.badge-victory       { background: rgba(30,207,214,0.12); color: var(--primary); }
.badge-in_progress   { background: var(--orange-dim); color: var(--orange); }
.badge-investigating { background: var(--surface3); color: var(--grey-light); }

.case-body {
  padding: 0 24px 20px;
  border-bottom: 1px solid var(--border);
}
.case-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.case-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.case-outcome {
  background: var(--surface2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.outcome-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.outcome-text { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.outcome-date { font-size: 12px; color: var(--grey); margin-top: 4px; }

/* Case videos */
.case-videos { display: flex; flex-direction: column; gap: 12px; }
.video-embed { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 9/16; max-width: 320px; background: var(--surface2); }
.video-embed iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  color: var(--grey);
}
.play-icon svg { width: 40px; height: 40px; }

/* Case media */
.case-media { padding: 16px 24px; border-top: 1px solid var(--border); }
.case-media-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}
.media-items { display: flex; flex-direction: column; gap: 6px; }
.media-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}
.media-item:hover { background: var(--surface3); }
.media-item-icon { width: 32px; text-align: center; font-size: 16px; flex-shrink: 0; }
.media-item-text { flex: 1; }
.media-item-title { font-size: 13px; color: var(--white); font-weight: 500; }
.media-item-source { font-size: 11px; color: var(--grey); }
.media-item-arrow { color: var(--grey); flex-shrink: 0; }

/* Case footer / comments */
.case-footer {
  padding: 12px 24px;
}
.case-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-light);
  padding: 6px 0;
  transition: color 0.15s;
}
.case-toggle-btn:hover { color: var(--white); }
.case-toggle-btn .chevron { transition: transform 0.2s; }
.case-toggle-btn.open .chevron { transform: rotate(180deg); }

.comments-section {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}
.comments-section.open { display: block; }
.comment-form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 20px;
}
.comment-input-wrap { flex: 1; }
.comment-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  resize: none;
  transition: border-color 0.15s;
}
.comment-input:focus { outline: none; border-color: var(--primary); }
.comment-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.comment-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--grey);
}
.comment-note svg { width: 12px; height: 12px; flex-shrink: 0; }
.comment { display: flex; gap: 12px; }
.comment-divider { height: 1px; background: var(--border); margin: 16px 0; }
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.avatar-grey { background: var(--surface3); color: var(--grey); }
.comment-content { flex: 1; }
.comment-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.comment-author span { color: var(--grey); font-weight: 400; }
.comment-body { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 8px; }
.comment-actions { display: flex; gap: 12px; }
.comment-action-btn {
  font-size: 12px;
  color: var(--grey);
  transition: color 0.15s;
}
.comment-action-btn:hover { color: var(--white); }
.comment-action-btn.upvoted { color: var(--primary); }
.load-more-comments {
  width: 100%;
  padding: 12px;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--grey-light);
  font-size: 13px;
  background: var(--surface2);
  cursor: pointer;
  transition: all 0.15s;
}
.load-more-comments:hover { border-color: var(--border-light); color: var(--white); }

/* ── SUBMIT BAND ─────────────────────────────────── */
.submit-band {
  padding: 80px 28px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.submit-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.submit-band h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 12px;
}
.submit-band p {
  font-size: 16px;
  color: var(--grey-light);
  max-width: 480px;
  line-height: 1.65;
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  padding: 100px 28px 72px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,207,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,207,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 0%, transparent 100%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.page-hero .page-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.1;
  max-width: 720px;
  margin-bottom: 20px;
}
.page-hero p {
  font-size: 18px;
  color: var(--grey-light);
  max-width: 540px;
  line-height: 1.65;
}

/* ── ABOUT PAGE ──────────────────────────────────── */
.about-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 16px;
  color: var(--grey-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-social { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.about-social-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.about-social-item:hover { border-color: var(--border-light); background: var(--surface2); }
.about-social-left { display: flex; align-items: center; gap: 14px; }
.about-social-left svg { width: 22px; height: 22px; flex-shrink: 0; }
.about-social-name { font-size: 14px; font-weight: 600; color: var(--white); }
.about-social-handle { font-size: 12px; color: var(--grey); }
.about-social-followers { font-size: 13px; font-weight: 600; color: var(--grey-light); }

/* ── SUPPORT PAGE ────────────────────────────────── */
.support-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s;
}
.support-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.support-card h3 { font-size: 20px; font-weight: 700; }
.support-card p { font-size: 15px; color: var(--grey-light); line-height: 1.65; flex: 1; }
.support-card .price {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
}

/* Notify box */
.notify-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.notify-box h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.notify-box p { font-size: 16px; color: var(--grey-light); line-height: 1.65; margin-bottom: 28px; }
.notify-form { display: flex; gap: 10px; }
.notify-input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
}
.notify-input:focus { outline: none; border-color: var(--primary); }

/* ── WORK PAGE ───────────────────────────────────── */
.brands-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.brand-list { display: flex; flex-direction: column; gap: 12px; }
.brand-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.brand-item:hover { border-color: var(--border-light); background: var(--surface2); }
.brand-name { font-size: 15px; font-weight: 600; color: var(--white); }
.brand-type { font-size: 12px; color: var(--grey); }
.audience-stats { display: flex; flex-direction: column; gap: 20px; }
.audience-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.audience-stat-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--primary);
  line-height: 1;
}
.audience-stat-label { font-size: 14px; color: var(--grey-light); margin-top: 8px; }
.work-enquiry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  margin-top: 60px;
}
.work-enquiry h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.work-enquiry p { font-size: 16px; color: var(--grey-light); max-width: 440px; margin: 0 auto 32px; line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-social { display: flex; flex-direction: column; gap: 8px; }
.contact-social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.contact-social-item:hover { border-color: var(--border-light); background: var(--surface2); }
.contact-social-icon { width: 32px; text-align: center; flex-shrink: 0; }
.contact-social-icon svg { width: 22px; height: 22px; }
.contact-social-name { font-size: 14px; font-weight: 600; color: var(--white); flex: 1; }
.contact-social-handle { font-size: 12px; color: var(--grey); }
.contact-social-arrow { font-size: 12px; font-weight: 600; color: var(--primary); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--grey-light); letter-spacing: 0.5px; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.15s;
}
.form-input:focus,.form-select:focus,.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── MERCH PAGE ──────────────────────────────────── */
.merch-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.merch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.merch-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.merch-image { aspect-ratio: 1; background: var(--surface2); overflow: hidden; }
.merch-image img { width: 100%; height: 100%; object-fit: cover; }
.merch-info { padding: 20px; }
.merch-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.merch-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.merch-cta { width: 100%; margin-top: 16px; text-align: center; }

/* ── CASES SUBMIT SECTION ────────────────────────── */
.submit-section {
  padding: 80px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.submit-form-wrap {
  max-width: 600px;
}
.submit-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.submit-section .sub {
  font-size: 16px;
  color: var(--grey-light);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 28px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13px;
  color: var(--grey-light);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span { font-size: 12px; color: var(--grey); }

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface3);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-icon { font-size: 16px; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22,1,0.36,1),
    transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .impact-stat:nth-child(2) { border-right: none; }
  .impact-stat:nth-child(3) { border-top: 1px solid var(--border); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 80px 20px 60px; }
  .impact-row { grid-template-columns: repeat(2, 1fr); }
  .submit-band-inner { flex-direction: column; align-items: flex-start; }
  .section-header { flex-direction: column; }
  .footer-top { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .features-section, .cases-section, .submit-band,
  .about-section, .support-section, .brands-section,
  .contact-section, .merch-section, .submit-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .feature-card { opacity: 1; transform: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-ctas, .impact-row { opacity: 1; }
}

/* ── HERO LAYOUT (two-column) ────────────────────── */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,207,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,207,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
.hero-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 0.6s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
.hero-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-mid);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.hero-social-link:hover {
  color: var(--white);
  border-color: var(--border-light);
  background: var(--surface2);
}

/* Hero card stack visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: hero-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
}
.hero-card-stack {
  position: relative;
  width: 320px;
  height: 280px;
}
.hcs-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hcs-card-back {
  width: 260px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  opacity: 0.4;
  z-index: 1;
}
.hcs-card-mid {
  width: 280px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  opacity: 0.65;
  z-index: 2;
}
.hcs-card-front {
  width: 300px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(30,207,214,0.12);
}
.hcs-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-mid);
}
.hcs-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.hcs-status {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  align-self: flex-start;
}
.hcs-status-teal {
  background: rgba(30,207,214,0.12);
  color: var(--primary);
  border: 1px solid rgba(30,207,214,0.25);
}
.hcs-status-orange {
  background: var(--orange-dim);
  color: var(--orange);
  border: 1px solid var(--orange-border);
}
.hcs-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--surface3);
}
.hcs-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.hcs-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ── IMPACT ROW (standalone section — override old hero styles) ── */
.impact-row {
  display: block !important;
  max-width: 100% !important;
  width: 100% !important;
  opacity: 1 !important;
  animation: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  border: none !important;
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
  background: var(--surface) !important;
  padding: 0;
}
.impact-row .container { padding: 0 !important; max-width: 100% !important; }
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.impact-grid .impact-stat {
  border-right: 1px solid var(--border);
  animation: none;
  opacity: 1;
}
.impact-grid .impact-stat:last-child { border-right: none; }

/* ── TICKER (JS-driven, no CSS animation) ────────── */
.ticker-inner {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0;
  will-change: transform;
}
.ticker-sep {
  margin: 0 20px;
  color: var(--border-light);
}

/* ── WORK PAGE ───────────────────────────────────── */
.work-section {
  padding: 80px 0 120px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.work-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}
.work-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.work-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.work-card-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.work-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.15s;
}
.work-card-link:hover { opacity: 0.75; }
.work-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.6;
}
.work-note-icon { color: var(--grey-mid); flex-shrink: 0; margin-top: 1px; }

/* ── ABOUT BIO COLUMN ────────────────────────────── */
.about-bio-col { display: flex; flex-direction: column; gap: 32px; }
.about-bio p { font-size: 16px; color: var(--grey-light); line-height: 1.75; margin-bottom: 16px; }
.about-bio p:last-child { margin-bottom: 0; }
.about-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-profile-name { font-size: 16px; font-weight: 700; }
.about-profile-role { font-size: 13px; color: var(--grey-mid); margin-top: 2px; }

/* ── CASES PAGE ──────────────────────────────────── */
.cases-page-section { padding: 60px 0 120px; }
.cases-grid-full { grid-template-columns: 1fr; }

/* ── CONTACT FORM ────────────────────────────────── */
.contact-section { padding: 80px 0 120px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}
.contact-main {}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.contact-card-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.contact-card-desc { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--grey-light); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-email-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.15s;
}
.contact-email-link:hover { opacity: 0.75; }

/* ── SUPPORT PAGE ────────────────────────────────── */
.support-section { padding: 80px 0 120px; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.support-card-header { padding: 40px 40px 32px; border-bottom: 1px solid var(--border); }
.support-card-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.support-card-title { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.support-card-desc { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.support-perks { padding: 32px 40px 0; display: flex; flex-direction: column; gap: 28px; }
.support-perk { display: flex; gap: 16px; align-items: flex-start; }
.support-perk-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--primary-dim); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.support-perk-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.support-perk-desc { font-size: 13px; color: var(--grey-light); line-height: 1.55; }
.support-card .btn-lg { margin: 32px 40px 40px; }
.support-sidebar { display: flex; flex-direction: column; gap: 20px; }
.support-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.support-sidebar-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-mid); margin-bottom: 12px;
}
.support-sidebar-text { font-size: 14px; color: var(--grey-light); line-height: 1.65; }
.support-other-ways { display: flex; flex-direction: column; gap: 4px; }
.support-other-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-light);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.support-other-link:hover { color: var(--white); background: var(--surface2); }

/* ── MERCH ───────────────────────────────────────── */
.merch-section { padding: 60px 0 120px; }
.merch-coming-soon {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 40px;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.merch-coming-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--surface2); color: var(--grey-mid);
  display: flex; align-items: center; justify-content: center;
}
.merch-coming-soon h3 { font-size: 24px; font-weight: 800; }
.merch-coming-soon p { color: var(--grey-light); font-size: 15px; margin-bottom: 8px; }

/* ── CASES LOADING ───────────────────────────────── */
.cases-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--grey-mid);
  font-size: 14px;
}
.loading-spinner {
  width: 20px; height: 20px;
  border: 2px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SECTION TYPOGRAPHY ──────────────────────────── */
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  line-height: 1.1;
}
.features-header {
  margin-bottom: 40px;
}
.cases-header {
  margin-bottom: 32px;
}
.cases-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Compact case card for homepage preview */
.case-card-compact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.case-card-compact:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.case-card-compact .case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-card-compact .case-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
  margin: 0;
}
.case-card-compact .case-desc {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.case-card-compact .case-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: opacity 0.15s;
}
.case-card-compact .case-link:hover { opacity: 0.7; }
.cases-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── NAV SCROLLED STATE ──────────────────────────── */
.nav-scrolled {
  background: rgba(8,8,8,0.96);
  border-bottom-color: var(--border-light);
}

/* ── WR LABEL ────────────────────────────────────── */
.wr-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 40px;
}

/* ── RESPONSIVE (new additions) ──────────────────── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(42px, 10vw, 72px); }
  .work-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid .impact-stat:nth-child(2) { border-right: none; }
  .impact-grid .impact-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .cases-grid-preview { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 80px 20px 60px; }
  .hero-headline { font-size: clamp(36px, 12vw, 60px); letter-spacing: -2px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .contact-card { padding: 24px; }
  .support-card-header { padding: 24px 24px 20px; }
  .support-perks { padding: 24px 24px 0; }
  .support-card .btn-lg { margin: 24px 24px 24px; }
  .work-grid { grid-template-columns: 1fr; }
}
