/* ════════════════════════════════════════════════════════
   CASE STUDY — CORE DESIGN SYSTEM
   Premium editorial styles for project showcases
   ════════════════════════════════════════════════════════ */

:root {
  --cs-hero-height: 90vh;
  --cs-spacing-xl: 8rem;
  --cs-spacing-lg: 5rem;
  --cs-shadow-browser: 0 30px 60px -12px rgba(0,0,0,0.5), 0 18px 36px -18px rgba(0,0,0,0.5);
}

/* ── HERO SECTION ────────────────────── */
.cs-hero {
  position: relative;
  min-height: var(--cs-hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.cs-hero-full {
  height: 100vh;
  padding: 0;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14,14,14,0.4) 0%, rgba(14,14,14,0.9) 100%);
  z-index: 1;
}

.cs-hero > .container-main {
  position: relative;
  z-index: 2;
}

.cs-hero-copy {
  max-width: 800px;
  margin: 0 auto;
}

.cs-hero-badge {
  display: inline-flex;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out forwards;
}

.cs-hero-sector {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mint);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(var(--mint-rgb), 0.3);
  border-radius: 99px;
  background: rgba(var(--mint-rgb), 0.05);
  backdrop-filter: blur(8px);
}

.cs-hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  color: #fff;
}

.cs-highlight {
  display: block;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: cyber-aurora 4s linear infinite;
}

.cs-hero-brief {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.cs-hero-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cs-hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cs-hero-tag:hover {
  border-color: rgba(var(--mint-rgb), 0.3);
  color: var(--text-primary);
}

/* ── SCROLL INDICATOR ────────────────── */
.cs-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.cs-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mint), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

/* ── FEATURE BLOCKS ──────────────────── */
.cs-feature-block {
  padding: var(--cs-spacing-xl) 0;
  overflow: hidden;
}

.cs-bg-surface { background: var(--bg-surface); }
.cs-bg-subtle { background: var(--bg-subtle); }
.cs-bg-base { background: var(--bg-base); }

.cs-padding-xl { padding: 8rem 0; }
.cs-padding-lg { padding: 5rem 0; }

/* ── BROWSER / DESKTOP MOCKUP PREMIUM ──────────── */
.cs-browser {
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.6);
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 120%;
  margin: 0 auto;
}

.cs-browser-bar {
  background: #222;
  padding: 0 1rem;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cs-browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.cs-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cs-browser-dot.red { background: #ff5f56; }
.cs-browser-dot.yellow { background: #ffbd2e; }
.cs-browser-dot.green { background: #27c93f; }

.cs-browser-url {
  background: rgba(0,0,0,0.3);
  padding: 0.35rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex: 1;
  max-width: 500px;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-browser-url::before {
  content: "🔒";
  font-size: 9px;
  opacity: 0.5;
}

.cs-browser-screen {
  line-height: 0;
  background: var(--bg-base);
  overflow: hidden;
  position: relative;
}

.cs-browser-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── VIDEO BACKGROUND IN BROWSER ────────────────────────── */
.cs-browser-screen-video {
  aspect-ratio: 16 / 9;
  position: relative;
}

.cs-browser-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cs-browser-screen-video img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.cs-browser-screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--mint-rgb), 0.5) 0%, rgba(var(--mint-rgb), 0.2) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}

/* ── PHONE FRAME (iPhone 16 Pro — Realistic) ── */
.cs-phone-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 393 / 852;
  margin: 0 auto;
  background: #1a1a1c;
  border-radius: 52px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 15px 30px -8px rgba(0,0,0,0.35),
    inset 0 0.5px 0 rgba(255,255,255,0.1),
    inset 0 -0.5px 0 rgba(0,0,0,0.3);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.cs-phone-frame:hover {
  transform: translateY(-6px);
}

/* Dynamic Island */
.cs-phone-frame::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Side buttons (volume + power) */
.cs-phone-frame::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -2px;
  width: 2px;
  height: 50px;
  background: #2a2a2c;
  border-radius: 0 1px 1px 0;
  z-index: 5;
}

.cs-phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 49px;
  overflow: hidden;
  background: #000;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.cs-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── DESKTOP MOCKUP REFINED (Not giant) ──────────── */
.cs-desktop-mockup {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
}

.cs-desktop-mockup {
  width: 100%;
  max-width: 900px; /* Consistently limited width */
  margin: 3rem auto;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
}

.cs-desktop-bar {
  height: 38px;
  background: #222;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-desktop-dots {
  display: flex;
  gap: 6px;
}

.cs-desktop-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.cs-desktop-url {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 1rem;
  border-radius: 4px;
}

.cs-desktop-screen img {
  width: 100%;
  height: auto;
  display: block;
}

.cs-desktop-bar {
  height: 40px; /* Taller bar for premium feel */
  background: #252525;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cs-desktop-dots {
  display: flex;
  gap: 8px;
}

.cs-desktop-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cs-desktop-dots span:nth-child(1) { background: #ff5f56; }
.cs-desktop-dots span:nth-child(2) { background: #ffbd2e; }
.cs-desktop-dots span:nth-child(3) { background: #27c93f; }

.cs-desktop-url {
  background: rgba(0,0,0,0.3);
  padding: 0.3rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  flex: 1;
  max-width: 400px;
  border: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.cs-desktop-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.cs-desktop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── MARQUEE PHRASES ─────────────────── */
.cs-marquee-container {
  overflow: hidden;
  padding: 4rem 0;
  background: rgba(var(--mint-rgb), 0.02);
  border-top: 1px solid rgba(var(--mint-rgb), 0.05);
  border-bottom: 1px solid rgba(var(--mint-rgb), 0.05);
  margin: 4rem 0;
}

.cs-marquee-content {
  display: flex;
  white-space: nowrap;
  animation: csMarquee 40s linear infinite;
}

.cs-marquee-item {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  padding: 0 4rem;
  color: var(--text-primary);
  opacity: 0.3;
  transition: opacity 0.3s;
}

.cs-marquee-item:hover { opacity: 1; }

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

/* ── BACKGROUND ACCENTS ──────────────── */
.cs-accent-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--mint-rgb),0.08) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.cs-phone-float {
  position: absolute;
  bottom: -2rem;
  right: -4rem;
  width: 260px;
  background: #1a1a1c;
  border-radius: 42px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.7),
    inset 0 0.5px 0 rgba(255,255,255,0.1);
  z-index: 5;
  transform: translateY(20px);
}

.cs-phone-float-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 66px;
  height: 18px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
}

.cs-phone-float-screen {
  border-radius: 35px;
  overflow: hidden;
  background: #000;
  line-height: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

.cs-phone-float-screen img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .cs-phone-float { display: none; }
}

/* ── HERO VISUAL CONTAINER ───────────── */
.cs-hero-visual-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── OVERVIEW SECTION ────────────────── */
.cs-overview {
  padding: var(--cs-spacing-xl) 0;
  border-bottom: 1px solid var(--border-base);
}

.cs-overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

.cs-overview-narrative h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.cs-overview-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.cs-overview-meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: 20px;
}

.cs-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cs-meta-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.cs-meta-value a {
  color: var(--mint);
  text-decoration: none;
}

/* ── IMPACT LIST ─────────────────────── */
.cs-impact-list {
  color: var(--text-secondary);
  line-height: 1.8;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
}

.cs-impact-item {
  position: relative;
  padding-left: 2rem;
}

.cs-impact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 1rem;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .cs-impact-list { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 900px) {
  .cs-overview-grid { grid-template-columns: 1fr; gap: 4rem; }
  .cs-overview-meta { padding: 2rem; }
}

/* ── CHALLENGE SECTION ───────────────── */
.cs-challenge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cs-challenge-copy h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.15;
}

.cs-body-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.cs-signals {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cs-signals-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.cs-signal-item {
  display: flex;
  gap: 1.25rem;
}

.cs-signal-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(248, 113, 113, 0.1);
  color: var(--color-error);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-signal-icon svg { width: 18px; height: 18px; }

.cs-signal-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cs-signal-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cs-challenge-layout { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── FULLBLEED IMAGE ─────────────────── */
.cs-fullbleed {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}

.cs-fullbleed img {
  width: 100%;
  display: block;
}

.cs-fullbleed-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: #fff;
}

.cs-fullbleed-caption h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cs-fullbleed-caption p { font-size: 0.9rem; opacity: 0.8; }

/* ── STEPS / PROCESS ─────────────────── */
.cs-approach-header { margin-bottom: 5rem; }

.cs-approach-steps {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.cs-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cs-step:nth-child(even) .cs-step-content { order: 2; }
.cs-step:nth-child(even) .cs-step-visual { order: 1; }

.cs-step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(var(--mint-rgb), 0.1);
  line-height: 1;
  margin-bottom: 1rem;
}

.cs-step-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.cs-step-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cs-step-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cs-step-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cs-step-visual img { width: 100%; display: block; }

@media (max-width: 900px) {
  .cs-step { grid-template-columns: 1fr; gap: 3rem; }
  .cs-step:nth-child(even) .cs-step-content { order: 1; }
  .cs-step:nth-child(even) .cs-step-visual { order: 2; }
}

/* ── SHOWCASE DUO ────────────────────── */
.cs-showcase-header { margin-bottom: 4rem; }

.cs-showcase-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cs-showcase-label {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 900px) {
  .cs-showcase-duo { grid-template-columns: 1fr; }
}

/* ── STATS GRID ──────────────────────── */
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-base);
  border: 1px solid var(--border-base);
  border-radius: 24px;
  overflow: hidden;
}

.cs-stat-card {
  background: var(--bg-surface);
  padding: 3rem 2rem;
  text-align: center;
}

.cs-stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

.cs-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media (max-width: 900px) {
  .cs-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── QUOTE SECTION ───────────────────── */
.cs-quote { padding: 10rem 0; background: var(--bg-subtle); position: relative; }

.cs-quote-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cs-quote-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  line-height: 1;
  color: var(--mint);
  opacity: 0.15;
  margin-bottom: -2rem;
}

.cs-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

.cs-quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.cs-quote-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mint);
}

.cs-quote-author-info { text-align: left; }
.cs-quote-name { font-weight: 700; font-size: 1.125rem; }
.cs-quote-role { font-size: 0.85rem; color: var(--text-muted); }

/* ── VISIT CTA ───────────────────────── */
.cs-visit-cta {
  padding: 6rem 0;
  text-align: center;
}

.cs-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 3rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-visit-btn:hover {
  border-color: var(--mint);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ── NEXT PROJECT ────────────────────── */
.cs-next-project {
  padding: 8rem 0;
  border-top: 1px solid var(--border-base);
  text-align: center;
}

.cs-next-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cs-next-title a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
}

.cs-next-title a:hover { color: var(--mint); }

/* ── UTILS / ANIMATIONS ──────────────── */
.cs-reveal-fade { opacity: 0; animation: csFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.cs-hero-anim { opacity: 0; transform: translateY(30px); }
.cs-hero-anim-1 { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards; }
.cs-hero-anim-2 { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards; }
.cs-hero-anim-3 { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards; }
.cs-hero-anim-4 { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards; }
.cs-hero-anim-5 { animation: csFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards; }

@keyframes csFadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes csFadeIn { to { opacity: 1; } }

/* ── REVEAL ANIMATIONS ───────────────── */
.cs-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-reveal.visible,
.cs-reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cs-reveal-delay-1 { transition-delay: 0.2s; }
.cs-reveal-delay-2 { transition-delay: 0.4s; }
.cs-reveal-delay-3 { transition-delay: 0.6s; }

/* ── REVEAL LEFT / RIGHT ─────────────── */
.cs-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-reveal-left.visible,
.cs-reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── REVEAL BLUR ─────────────────────── */
.cs-reveal-blur {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-reveal-blur.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── BADGE DOT (animated green pulse) ── */
.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse-dot 2s ease-in-out infinite;
  vertical-align: middle;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--mint-rgb), 0.4); }
  50% { opacity: 0.6; transform: scale(1.5); box-shadow: 0 0 12px 4px rgba(var(--mint-rgb), 0.2); }
}

/* ── FLOATING PARTICLES ──────────────── */
.cs-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.cs-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0;
  animation: cs-float-particle 6s ease-in-out infinite;
}
.cs-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.cs-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 5s; }
.cs-particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 8s; }
.cs-particle:nth-child(4) { left: 75%; top: 70%; animation-delay: 0.5s; animation-duration: 6s; }
.cs-particle:nth-child(5) { left: 90%; top: 40%; animation-delay: 3s; animation-duration: 7s; }
.cs-particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 1.5s; animation-duration: 5.5s; }

@keyframes cs-float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-30px) scale(1); }
  80% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

/* ── STAGGER ANIMATION for cards ─────── */
.cs-stagger > * {
  opacity: 0;
  transform: translateY(25px);
}
.cs-stagger.visible > *:nth-child(1) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards; }
.cs-stagger.visible > *:nth-child(2) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards; }
.cs-stagger.visible > *:nth-child(3) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards; }
.cs-stagger.visible > *:nth-child(4) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards; }
.cs-stagger.visible > *:nth-child(5) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }
.cs-stagger.visible > *:nth-child(6) { animation: csStaggerIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards; }

@keyframes csStaggerIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ── LINE DRAW animation ─────────────── */
.cs-line-draw {
  width: 60px;
  height: 2px;
  background: var(--mint);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.cs-line-draw.visible {
  transform: scaleX(1);
}

/* ── COUNTER ANIMATION ───────────────── */
.cs-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ── SCAN LINE ───────────────────────── */
.cs-scan-line {
  position: absolute;
  top: 0;
  left: -10%;
  width: 5px;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--mint), transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
}

/* ── STEP MAP ────────────────────────── */
.cs-step-map {
  margin-top: 6rem;
  padding: 5rem 2rem;
  background: var(--bg-surface);
  border-radius: 40px;
  border: 1px solid var(--border-base);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-step-map-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.cs-step-map-item {
  flex: 1;
  min-width: 150px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cs-step-map-item:hover {
  transform: translateY(-5px);
}

.cs-step-map-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  background: var(--bg-base);
  color: var(--mint);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 0 0 8px var(--bg-surface);
}

.cs-step-map-item:first-child .cs-step-map-dot,
.cs-step-map-item.is-active .cs-step-map-dot {
  background: var(--mint);
  color: var(--bg-base);
  box-shadow: 0 0 30px rgba(var(--mint-rgb), 0.4), 0 0 0 8px var(--bg-surface);
}

.cs-step-map-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-base);
  z-index: 1;
}

.cs-step-map-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.cs-step-map-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .cs-step-map-grid {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .cs-step-map-line {
    display: none;
  }
  .cs-step-map-item {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════
   SERVICES GRID, FAQ, GALLERY, RESULTS — Missing components
   ════════════════════════════════════════════════════════ */

/* ── SERVICES GRID ─────────────────────────────────── */
.cs-services { padding: var(--cs-spacing-xl) 0; }

.cs-services-header {
  margin-bottom: 4rem;
}

.cs-services-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cs-service-link {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-service-link:hover {
  border-color: rgba(var(--mint-rgb), 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cs-service-link-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(var(--mint-rgb), 0.08);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-service-link-icon svg {
  width: 24px;
  height: 24px;
}

.cs-service-link h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cs-service-link p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
}

.cs-service-link-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint);
  margin-top: auto;
}

.cs-service-link-cta svg {
  transition: transform 0.3s ease;
}

.cs-service-link:hover .cs-service-link-cta svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .cs-services-grid { grid-template-columns: 1fr; }
}

/* ── FAQ SECTION ───────────────────────────────────── */
.cs-faq { padding: var(--cs-spacing-xl) 0; }

.cs-faq-header {
  margin-bottom: 4rem;
}

.cs-faq-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.cs-faq-list {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-faq-item {
  border-bottom: 1px solid var(--border-base);
}

.cs-faq-item:first-child {
  border-top: 1px solid var(--border-base);
}

.cs-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.3s ease;
}

.cs-faq-question:hover {
  color: var(--mint);
}

.cs-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-faq-item.open .cs-faq-chevron {
  transform: rotate(180deg);
  color: var(--mint);
}

.cs-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-faq-item.open .cs-faq-answer {
  max-height: 300px;
}

.cs-faq-answer-inner {
  padding: 0 0 2rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ── SECTION INTRO TEXT ────────────────────────────── */
.cs-section-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin-top: 1rem;
}

/* ── SHOWCASE HEADER (left-aligned, Baunfire editorial) ── */
.cs-showcase-header {
  text-align: left;
}

.cs-showcase-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
  color: var(--text-primary);
}

.cs-approach-header {
  text-align: left;
}

.cs-approach-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
  color: var(--text-primary);
}

/* ── GALLERY MOSAIC ────────────────────────────────── */
.cs-gallery { padding: var(--cs-spacing-xl) 0; }

.cs-gallery-header {
  margin-bottom: 4rem;
}

.cs-gallery-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.cs-gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.cs-gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-surface);
}

.cs-gallery-item--tall {
  grid-row: span 2;
}

.cs-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-gallery-item:hover img {
  transform: scale(1.03);
}

.cs-gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.cs-gallery-item-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cs-gallery-item-caption p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .cs-gallery-mosaic { grid-template-columns: 1fr; }
  .cs-gallery-item--tall { grid-row: span 1; }
}

/* ── RESULTS SECTION ───────────────────────────────── */
.cs-results { padding: var(--cs-spacing-xl) 0; }

.cs-results-header {
  margin-bottom: 4rem;
}

.cs-results-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.cs-results-narrative {
  margin-top: 4rem;
  max-width: 800px;
}

.cs-results-narrative p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ── QUOTE BODY (extended) ─────────────────────────── */
.cs-quote-body {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cs-quote-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--mint-rgb), 0.1);
  border: 2px solid var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
  font-size: 1.5rem;
}

/* ════════════════════════════════════════════════════════
   BAUNFIRE-INSPIRED — Split Hero, Video Browser, Phone Trio
   ════════════════════════════════════════════════════════ */

/* ── ANIMATIONS ─────────────────────── */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SPLIT HERO (text left + visual right) ─────────── */
.cs-hero-split {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--bg-base);
  overflow: visible;
}

.cs-hero-split::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--mint-rgb),0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cs-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: stretch;
  padding: 10rem 4rem 6rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
}

.cs-hero-split-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cs-hero-split-copy .cs-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
  animation: fadeInUp 0.9s ease-out 0.15s both;
}

.cs-hero-split-intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  animation: fadeInUp 0.9s ease-out 0.3s both;
}

.cs-hero-split-intro em {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 500;
}

.cs-hero-split-meta {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-base);
  animation: fadeInUp 0.9s ease-out 0.45s both;
}

.cs-hero-split-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cs-hero-split-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Video background for hero - FULL HEIGHT & WIDTH */
.cs-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  animation: fadeIn 1.2s ease-out forwards;
}

/* Green overlay filter on video */
.cs-hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(var(--mint-rgb), 0.5) 0%, rgba(var(--mint-rgb), 0.2) 100%);
  mix-blend-mode: overlay;
  z-index: 1;
  pointer-events: none;
  animation: fadeIn 1.2s ease-out forwards;
}

/* Browser floating on top of video */
.cs-browser-floating {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  animation: fadeInScale 1s ease-out 0.3s both;
}

.cs-browser-floating .cs-browser {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.cs-browser-floating:hover .cs-browser {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px -20px rgba(var(--mint-rgb), 0.2);
}

/* Empty screen inside browser (no video inside) */
.cs-browser-screen-empty {
  aspect-ratio: 16 / 9;
  background: transparent;
}

@media (max-width: 1024px) {
  .cs-hero-split { padding: 8rem 0 4rem; min-height: auto; }
  .cs-hero-split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cs-hero-split-copy .cs-hero-h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .cs-hero-split-meta { gap: 2rem; flex-wrap: wrap; }
}

/* ── VIDEO IN BROWSER FRAME ────────────────────────── */
.cs-browser-screen video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cs-browser-video-wrapper {
  position: relative;
  padding-top: 56.25%;
  background: var(--bg-base);
}

.cs-browser-video-wrapper video,
.cs-browser-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* ── PHONE CAROUSEL (Embla — infinite auto-scroll + drag) ──── */
.cs-phone-carousel-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 4rem 0;
  background: var(--bg-subtle);
}

.cs-phone-carousel-track {
  display: flex;
  gap: 2rem;
  animation: cs-mobileMarquee 90s linear infinite;
  width: max-content;
  padding: 0 2rem;
  cursor: grab;
  user-select: none;
  transition: none;
}

.cs-phone-carousel-track:hover {
  animation-play-state: paused;
}

.cs-phone-carousel-track.dragging {
  animation-play-state: paused;
  cursor: grabbing;
}

@keyframes cs-mobileMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cs-phone-carousel-track .cs-phone-frame {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cs-phone-carousel-track {
    gap: 1.25rem;
    animation-duration: 60s;
  }
}

/* Legacy static showcase (kept for other pages) */
.cs-phone-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2.5rem;
  padding: 4rem 0;
}

.cs-phone-showcase .cs-phone-frame {
  flex-shrink: 0;
}

/* ── LARGE STATEMENT TEXT (Baunfire style) ──────────── */
.cs-statement {
  padding: 8rem 0;
  text-align: center;
}

.cs-statement-text {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 900px;
  margin: 0 auto;
}

.cs-statement-text em {
  font-style: normal;
  color: var(--mint);
}

.cs-statement-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── APPROACH CARDS GRID (alternative to steps) ────── */
.cs-approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.cs-approach-card {
  padding: 3rem 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-approach-card:hover {
  border-color: rgba(var(--mint-rgb), 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.cs-approach-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--mint-rgb), 0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.cs-approach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cs-approach-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-approach-card-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cs-approach-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 2px;
  background: var(--mint);
}

@media (max-width: 900px) {
  .cs-approach-cards { grid-template-columns: 1fr; }
}

/* ── FULL-WIDTH BROWSER (wider than container) ─────── */
.cs-browser-fullwidth {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── IMPACT GRID (text-based results) ──────────────── */
.cs-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.cs-impact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-impact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cs-impact-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.cs-impact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--mint-rgb), 0.08);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-impact-card-icon svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .cs-impact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── DESKTOP + PHONE COMBO ─────────────────────────── */
.cs-combo-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cs-combo-layout .cs-phone-frame {
  max-width: 260px;
  justify-self: center;
}

@media (max-width: 900px) {
  .cs-combo-layout { grid-template-columns: 1fr; }
  .cs-combo-layout .cs-phone-frame { max-width: 220px; margin: 0 auto; }
}

/* ── SECTION DIVIDER LINE ──────────────────────────── */
.cs-divider {
  width: 60px;
  height: 2px;
  background: var(--mint);
  margin: 0 auto;
  opacity: 0.4;
}

/* ── NEXT PROJECT ENHANCED ─────────────────────────── */
.cs-next-enhanced {
  padding: 10rem 0;
  text-align: center;
  border-top: 1px solid var(--border-base);
  position: relative;
  overflow: hidden;
}

.cs-next-enhanced::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--mint-rgb),0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO PHONES — Triple phone video mockups
   ══════════════════════════════════════════════════════════════ */
.cs-video-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 4rem;
  perspective: 1200px;
}

.cs-phone-frame--video {
  max-width: 260px;
}

.cs-phone-frame--video .cs-phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-video-phones .cs-phone-frame:nth-child(1) {
  transform: rotateY(8deg) scale(0.92);
}

.cs-video-phones .cs-phone-frame:nth-child(2) {
  transform: scale(1.05);
  z-index: 3;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.6),
    0 0 60px rgba(var(--mint-rgb), 0.08);
}

.cs-video-phones .cs-phone-frame:nth-child(3) {
  transform: rotateY(-8deg) scale(0.92);
}

@media (max-width: 768px) {
  .cs-video-phones {
    gap: 1rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem;
    justify-content: flex-start;
  }

  .cs-phone-frame--video {
    max-width: 200px;
    flex-shrink: 0;
  }

  .cs-video-phones .cs-phone-frame:nth-child(1),
  .cs-video-phones .cs-phone-frame:nth-child(2),
  .cs-video-phones .cs-phone-frame:nth-child(3) {
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   PLATFORM GALLERY — Browser grid with hover effects
   ══════════════════════════════════════════════════════════════ */
.cs-platform-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.cs-platform-gallery .cs-browser {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.cs-platform-gallery .cs-browser:hover {
  transform: translateY(-8px);
  box-shadow: 0 60px 120px -25px rgba(0,0,0,0.7), 0 0 40px rgba(var(--mint-rgb), 0.06);
}

.cs-platform-gallery--wide {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .cs-platform-gallery {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE ACCENT DOTS
   ══════════════════════════════════════════════════════════════ */
.cs-marquee-item--accent {
  color: var(--mint);
  opacity: 0.6;
}

/* ══════════════════════════════════════════════════════════════
   ENHANCED REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.cs-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cs-reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.cs-reveal-delay-1 { transition-delay: 0.15s; }
.cs-reveal-delay-2 { transition-delay: 0.3s; }
.cs-reveal-delay-3 { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════════════════════
   GLOW ACCENTS on key sections
   ══════════════════════════════════════════════════════════════ */
.cs-feature-block {
  position: relative;
}

.cs-showcase-header h2 {
  position: relative;
}

/* Subtle glow behind approach cards */
.cs-approach-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.cs-approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px -15px rgba(var(--mint-rgb), 0.1);
}

/* Impact card glow on hover */
.cs-impact-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.cs-impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4), 0 0 30px rgba(var(--mint-rgb), 0.08);
  border-color: rgba(var(--mint-rgb), 0.15);
}

/* Service link card glow */
.cs-service-link {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.cs-service-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4), 0 0 30px rgba(var(--mint-rgb), 0.08);
}

/* ══════════════════════════════════════════════════════════════
   HERO BROWSER IMAGE — ensure proper sizing
   ══════════════════════════════════════════════════════════════ */
.cs-browser-floating .cs-browser-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── HEADER LAYOUT (Simple, non-split hero) ──────────── */
.cs-header {
  padding: 8rem 0 2rem;
  border-bottom: 1px solid var(--border);
}

.cs-header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cs-header-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cs-header-sector {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cs-header-name {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text-primary);
}

.cs-header-services {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cs-header-brief {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  padding: 1.5rem;
  background: rgba(var(--mint-rgb), 0.04);
  border-left: 3px solid var(--mint);
  border-radius: 4px;
}

/* ── OVERVIEW CARDS (3-column variant) ───────────────── */
.cs-overview-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.cs-overview-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

.cs-overview-card:hover {
  border-color: var(--mint);
  background: rgba(var(--mint-rgb), 0.02);
}

.cs-overview-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cs-overview-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-primary);
}

/* ── TEXT SECTION (Prose blocks) ──────────────────────── */
.cs-text-section {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.cs-text-section:last-child {
  border-bottom: none;
}

.cs-text-section-header {
  margin-bottom: 2rem;
}

.cs-text-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.cs-text-section-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

.cs-text-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 900px;
  margin-top: 1.5rem;
}

.cs-text-content p {
  margin-bottom: 1rem;
}

.cs-text-content p:last-child {
  margin-bottom: 0;
}

/* ── STATS GRID — Cards variant ──────────────────────── */
.cs-stats-grid--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cs-stats-grid--cards .cs-stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.cs-stats-grid--cards .cs-stat-card:hover {
  border-color: var(--mint);
  background: rgba(var(--mint-rgb), 0.02);
}

/* ── HERO BROWSER MOCKUP (Perspective) ───────────────── */
.cs-hero-mockup {
  margin: 3rem 0;
  perspective: 1200px;
}

.cs-hero-mockup .cs-browser {
  transform: rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-hero-mockup .cs-browser:hover {
  transform: rotateX(0deg);
}

/* ── SCROLL BROWSER (Auto-scroll animation) ──────────── */
.cs-scroll-browser {
  margin: 4rem auto;
  max-width: 900px;
}

.cs-scroll-viewport {
  height: 500px;
  overflow: hidden;
  position: relative;
}

.cs-scroll-viewport::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #0a0a0a, transparent);
  pointer-events: none;
  z-index: 2;
}

.cs-scroll-viewport::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom, #0a0a0a, transparent);
  pointer-events: none;
  z-index: 2;
}

.cs-scroll-viewport img {
  width: 100%;
  display: block;
  animation: csScrollPage 45s ease-in-out infinite;
}

@keyframes csScrollPage {
  0%, 5% { transform: translateY(0); }
  45%, 55% { transform: translateY(calc(-100% + 500px)); }
  95%, 100% { transform: translateY(0); }
}

/* ── MOBILE CAROUSEL SECTION ─────────────────────────── */
.cs-mobile-section {
  padding: 4rem 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.cs-mobile-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cs-mobile-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

/* ── PHONE FRAME — Small variant (carousel) ──────────── */
.cs-phone-frame--sm {
  flex-shrink: 0;
  width: 220px;
  max-width: 220px;
  background: #000;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  aspect-ratio: auto;
}

.cs-phone-frame--sm:hover {
  transform: translateY(-8px) scale(1.02);
}

.cs-phone-frame--sm .cs-phone-screen {
  border-radius: 26px;
  aspect-ratio: 9 / 19.5;
}

.cs-phone-frame--sm .cs-phone-screen img {
  object-position: top;
}

/* ── DETAIL PHONES GRID ──────────────────────────────── */
.cs-detail-phones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  justify-items: center;
}

.cs-detail-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cs-detail-phone .cs-phone-frame--sm {
  width: 100%;
  max-width: 200px;
}

.cs-detail-phone-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
}

/* ── SCROLL INDICATOR LABEL ──────────────────────────── */
.cs-scroll-indicator-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.cs-scroll-indicator-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s infinite;
}

/* ── EXPERT SECTION (Case study variant) ─────────────── */
.cs-expert {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

.cs-expert-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.cs-expert-quote .section-badge {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.cs-expert-h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.cs-expert-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.cs-expert-author {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
}

.cs-expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.cs-expert-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.cs-expert-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.cs-expert-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--mint);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}

.cs-expert-linkedin:hover {
  opacity: 0.7;
}

/* ── RESPONSIVE: New exitbcn blocks ──────────────────── */
@media (max-width: 768px) {
  .cs-header-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cs-header-name {
    font-size: 1.8rem;
  }
  .cs-text-section {
    padding: 2rem 0;
  }
  .cs-text-section h2 {
    font-size: 1.4rem;
  }
  .cs-overview-cards {
    grid-template-columns: 1fr;
  }
  .cs-detail-phones {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .cs-scroll-viewport {
    height: 300px;
  }
  @keyframes csScrollPage {
    0%, 5% { transform: translateY(0); }
    45%, 55% { transform: translateY(calc(-100% + 300px)); }
    95%, 100% { transform: translateY(0); }
  }
  .cs-phone-frame--sm {
    width: 180px;
    border-radius: 26px;
    padding: 6px;
  }
  .cs-phone-frame--sm .cs-phone-screen {
    border-radius: 22px;
  }
  .cs-expert-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ─── CTA FORM: Service Checkboxes (shared with /contacto) ─── */
.services-section { margin-top: 1.5rem; }
.services-label { font-size: .8125rem; font-weight: 600; color: var(--text-primary); margin-bottom: .75rem; display: block; }
.services-grid {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
}
.service-card {
  display: flex; align-items: center; gap: .5rem;
  padding: .25rem 0; border: none; background: transparent !important;
  border-radius: 0; cursor: pointer; min-height: 0 !important; min-width: 0 !important;
  transition: color .15s; user-select: none;
}
.service-card:hover { background: none; }
.service-card:hover .service-card-label { color: var(--text-primary); }
.service-card.selected { background: none; }
.service-card-check {
  width: 14px; height: 14px; min-width: 14px; border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center; transition: all .15s; flex-shrink: 0;
}
.service-card.selected .service-card-check { background: var(--mint); border-color: var(--mint); }
.service-card-check svg { width: 9px; height: 9px; color: var(--text-inverse); opacity: 0; transition: opacity .1s; }
.service-card.selected .service-card-check svg { opacity: 1; }
.service-card-label { font-size: .8125rem; font-weight: 500; color: var(--text-muted); line-height: 1.2; transition: color .15s; white-space: nowrap !important; overflow: visible !important; text-overflow: clip !important; }
.service-card.selected .service-card-label { color: var(--text-primary); }

.custom-select { position: relative; }
.custom-select-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-input, rgba(255,255,255,.04)); border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px); padding: .625rem .875rem;
  font-size: .9rem; color: var(--text-muted); cursor: pointer;
  transition: border-color .2s;
}
.custom-select-trigger:hover { border-color: var(--mint); }
.custom-select-chevron { width: 16px; height: 16px; transition: transform .2s; }
.custom-select[aria-expanded="true"] .custom-select-chevron { transform: rotate(180deg); }
.custom-select-panel {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--bg-surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm, 6px); z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.custom-select[aria-expanded="true"] .custom-select-panel { display: block; }
.custom-select-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: .625rem .875rem; border-radius: var(--radius-sm, 6px);
  font-size: .875rem; color: var(--text-secondary); cursor: pointer;
  transition: background .15s, color .15s;
}
.custom-select-option:hover { background: rgba(var(--mint-rgb),.06); color: var(--text-primary); }
.custom-select-option.selected { color: var(--mint); background: rgba(var(--mint-rgb),.08); }
.custom-select-option.selected::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint); flex-shrink: 0;
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CTA FORM: Button states ─── */
.btn-primary.btn-disabled {
  background: var(--bg-muted);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  border: 1px solid var(--border-strong);
  opacity: 1;
}
.btn-primary.btn-disabled:hover {
  transform: none;
  box-shadow: none;
  background: var(--bg-muted);
}
.btn-primary.btn-enabled {
  background: var(--mint);
  color: var(--text-inverse);
  box-shadow: 0 0 20px rgba(var(--mint-rgb),.15);
  cursor: pointer;
  border: none;
}

/* ─── CTA FORM: Spacing ─── */
#tp-cta-form .form-card-header { margin-bottom: .5rem; }
#tp-cta-form form { display: flex; flex-direction: column; gap: .25rem; }
#tp-cta-form .form-row { margin-bottom: .25rem; }
#tp-cta-form .checkbox-row { margin-top: 1.25rem; }
#tp-cta-form .btn-primary { margin-top: 1rem; }

/* ─── CTA FORM: Briefing Banner ─── */
.briefing-banner {
  display: flex; align-items: center; gap: .875rem;
  margin-top: 1.25rem; padding: .875rem 1rem;
  border: 1px dashed var(--border-strong, #2A2A2A);
  border-radius: var(--radius-md, 12px);
  background: rgba(var(--mint-rgb), .02);
  text-decoration: none; transition: all .25s;
}
.briefing-banner:hover {
  border-color: rgba(var(--mint-rgb), .25);
  background: rgba(var(--mint-rgb), .04);
}
.briefing-banner-icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--mint-dim, rgba(var(--mint-rgb), .12));
  display: flex; align-items: center; justify-content: center; color: var(--mint);
}
.briefing-banner-text {
  flex: 1; display: flex; flex-direction: column; gap: .125rem;
}
.briefing-banner-title {
  font-size: .8125rem; font-weight: 600; color: var(--text-primary);
}
.briefing-banner-desc {
  font-size: .6875rem; color: var(--text-muted); line-height: 1.5;
}
.briefing-banner-arrow {
  flex-shrink: 0; color: var(--text-muted); transition: transform .2s, color .2s;
}
.briefing-banner:hover .briefing-banner-arrow {
  color: var(--mint); transform: translateX(2px);
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .cs-reveal, .cs-reveal-left, .cs-reveal-right,
  .cs-reveal-blur, .cs-reveal-scale, .cs-stagger,
  .cs-marquee-track, .cs-phone-carousel-track,
  .cs-scroll-content, .cs-browser-scroll-content {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

