/* ================================================================
   base.css — Design System: Solar Dusk × White Canvas
   Chethan Kumar S — Portfolio Webapp
   ================================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
/* All design tokens are defined in variables.css (loaded first).  */
/* Do not redefine :root here — it silently overrides variables.css */

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--body);
  background: transparent; /* Aurora provides the background */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ── SKIP NAVIGATION (WCAG 2.1 AA) ─────────────────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-nav:focus {
  top: 0;
  outline: 3px solid var(--orange-deep);
  outline-offset: 2px;
}
button { font-family: inherit; }
::selection { background: var(--orange); color: #fff; }

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--ink); }
h1 {
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 {
  font-weight: 700;
  font-size: clamp(1.15rem, 2.6vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 {
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
p { max-width: 680px; }
strong { color: var(--ink); }

/* Expressive gradient headline */
.headline-gradient {
  background: linear-gradient(135deg, var(--ink) 0%, var(--orange-deep) 60%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Expressive accent word */
.text-accent {
  color: var(--orange);
  font-style: italic;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--border { border-top: 1px solid var(--border); }

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s cubic-bezier(.22,.61,.36,1), background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(249,115,22,0.30);
}
.btn--primary:active { transform: scale(0.97); }
.btn--secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}
.btn--secondary:hover {
  transform: scale(1.03);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 24px rgba(249,115,22,0.18);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  padding: 12px 28px;
}
.btn--outline:hover {
  transform: scale(1.03);
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 24px rgba(249,115,22,0.18);
}

/* ── HEADER ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: padding 0.3s var(--ease-expo), box-shadow 0.3s var(--ease-expo);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Aurora-reactive background: warm spotlight follows --hx (0%→100%) */
  background:
    radial-gradient(
      ellipse 40% 120% at var(--hx, 80%) 50%,
      rgba(249,115,22,0.10) 0%,
      transparent 70%
    ),
    rgba(255,255,255,0.88);
  /* Gradient bottom border via box-shadow */
  box-shadow:
    0 1px 0 0 rgba(249,115,22,0.08),
    inset 0 -1px 0 0 rgba(249,115,22,0.06);
}
.header--scrolled {
  padding: 12px 0;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.06),
    0 1px 0 0 rgba(249,115,22,0.12),
    inset 0 -1px 0 0 rgba(249,115,22,0.08);
}
.header > .header__logo,
.header > .header__nav,
.header > .mobile-toggle {
  /* These are direct children, handled by container */
}
/* Header internal layout via container wrapper */
header.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header__logo img { height: 28px; width: auto; }
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}
.header__nav a:hover {
  color: var(--ink);
  background: rgba(249,115,22,0.07);
  box-shadow: 0 0 14px rgba(249,115,22,0.15);
}
.header__nav a.active {
  color: var(--ink);
  background: rgba(249,115,22,0.08);
}
.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(249,115,22,0.5);
}

/* ── MOBILE TOGGLE ─────────────────────────────────────────────── */
.mobile-toggle {
  display: none;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 101;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease-expo);
}
.mobile-toggle.active span:first-child { transform: rotate(45deg) translateY(9px); }
.mobile-toggle.active span:last-child { transform: rotate(-45deg) translateY(-9px); }

/* ── MOBILE OVERLAY ────────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-expo);
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-overlay nav { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--orange); }

/* ── SECTION LABELS & NUMBERS ──────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 16px;
}
.section-label--orange { color: var(--orange); }
.section-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.06em;
}

/* ── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 8px;
}

/* ── MARQUEE ───────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.marquee__track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-right: 16px;
}
.marquee__item span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.marquee__dot { color: var(--orange); font-size: 0.375rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* ── METRICS GRID ──────────────────────────────────────────────── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}
.metric {
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.metric__label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.metric__value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.hero-image__frame {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.hero-image__photo {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  animation: float-badge 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hero-badge--top { top: 12%; right: -20px; }
.hero-badge--bottom { bottom: 16%; left: -24px; }
.hero-badge__number {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.hero-badge__label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── TAB SYSTEM ────────────────────────────────────────────────── */
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s var(--ease-expo);
  cursor: pointer;
  font-family: var(--font-body);
}
.tab-btn:hover { border-color: var(--orange); color: var(--ink); }
.tab-btn--active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.expertise-detail {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.expertise-detail__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

/* ── EXPAND CARDS ──────────────────────────────────────────────── */
.expand-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease-expo);
}
.expand-card:hover { border-color: rgba(249,115,22,0.2); box-shadow: 0 0 28px rgba(249,115,22,0.20); transform: scale(1.02); }
.expand-card--open { border-color: var(--orange); box-shadow: var(--shadow-lg); }
.expand-card__toggle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: none;
  transition: color 0.2s;
}
.expand-card__toggle:hover { color: var(--orange-deep); }

/* ── CASE PREVIEW ──────────────────────────────────────────────── */
.case-preview {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease-expo);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.case-preview:hover { border-color: rgba(249,115,22,0.25); box-shadow: 0 0 36px rgba(249,115,22,0.22); transform: scale(1.02); }
.case-preview__inner { display: grid; grid-template-columns: 1fr; }
.case-preview__content { padding: 40px; }
.case-preview__image { overflow: hidden; position: relative; }
.case-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}
.case-preview:hover .case-preview__image img { transform: scale(1.05); }

/* ── BOOK CARDS ────────────────────────────────────────────────── */
.book-card { display: block; text-decoration: none; transition: transform 0.6s var(--ease-expo); }
.book-card:hover { transform: translateY(-8px); }
.book-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  perspective: 1000px;
}
.book-card__inner img { width: 100%; display: block; transition: transform 0.6s var(--ease-expo); }
.book-card__glint {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 55%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}
.book-card:hover .book-card__glint { opacity: 1; }

/* ── TESTIMONIALS ──────────────────────────────────────────────── */
.testimonial-track {
  display: flex;
  gap: 24px;
  animation: testimonial-scroll 40s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.06;
  line-height: 1;
}
.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author { font-weight: 700; font-size: 0.8125rem; color: var(--ink); }
.testimonial-card__role { font-size: 0.75rem; color: var(--muted); }
@keyframes testimonial-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── CUSTOM CURSOR ─────────────────────────────────────────────── */
.custom-cursor {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--ink);
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  transition: width 0.25s var(--ease-expo), height 0.25s var(--ease-expo), border-color 0.25s, background 0.25s, opacity 0.3s;
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  will-change: transform;
  opacity: 0;
}
.custom-cursor.hover {
  width: 44px;
  height: 44px;
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.10);
}
.custom-cursor.click {
  width: 10px;
  height: 10px;
  background: var(--ink);
  border-color: var(--ink);
}
@media (pointer: coarse) { .custom-cursor { display: none; } }
@media (pointer: fine) {
  body.custom-cursor-active,
  body.custom-cursor-active a,
  body.custom-cursor-active button,
  body.custom-cursor-active .interactive,
  body.custom-cursor-active .expand-card__toggle,
  body.custom-cursor-active .tab-btn,
  body.custom-cursor-active .book-card,
  body.custom-cursor-active .mobile-link {
    cursor: none !important;
  }
}

/* ── AURORA BACKGROUND ─────────────────────────────────────────── */
.aurora {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, #ffffff 0%, var(--bg) 55%, #f3ead0 100%);
}

/* Each blob is driven by JS via CSS variables --tx, --ty, --s */
.aurora .blob {
  position: absolute;
  width: 65vmax; height: 65vmax;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
  --tx: 0px; --ty: 0px; --s: 1;
  transform: translate3d(var(--tx), var(--ty), 0) scale(var(--s));
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
}

.aurora .b1 {
  background: radial-gradient(circle, var(--orange), transparent 60%);
  left: -18vmax; top: -20vmax;
  opacity: 0.50; mix-blend-mode: multiply;
}
.aurora .b2 {
  background: radial-gradient(circle, var(--orange-light), transparent 65%);
  right: -22vmax; top: -10vmax;
  opacity: 0.75; mix-blend-mode: multiply;
}
.aurora .b3 {
  background: radial-gradient(circle, #ffffff, transparent 60%);
  left: 15vmax; bottom: -15vmax;
  opacity: 0.9; mix-blend-mode: screen;
}
.aurora .b4 {
  background: radial-gradient(circle, var(--orange), transparent 55%);
  right: -10vmax; bottom: -25vmax;
  opacity: 0.35; mix-blend-mode: multiply;
}

/* Particle canvas — above aurora, below content */
canvas.particles {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  width: 100%; height: 100%;
}

/* Aurora ripple on click */
.aurora-ripple {
  position: fixed; z-index: 2; pointer-events: none;
  width: 40vmax; height: 40vmax;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange), transparent 60%);
  filter: blur(60px);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(0.1);
  animation: aurora-ripple-burst 1.4s cubic-bezier(.16,.84,.36,1) forwards;
}
@keyframes aurora-ripple-burst {
  0%   { transform: translate(-50%, -50%) scale(0.1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Grain texture — paper-like, multiply at low opacity */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.9'/></svg>");
}

/* Warm vignette — keeps page edges atmospheric */
.vignette {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 40%, transparent 55%, rgba(120, 70, 30, 0.12) 100%);
}
.page-content { position: relative; z-index: 3; }
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: transparent;
  pointer-events: none;
}

/* ── SCROLL PROGRESS ───────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 200;
  pointer-events: none;
}

/* ── LIGHTBOX ──────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }

/* ── ANIMATED UNDERLINE ────────────────────────────────────────── */
.animated-underline {
  position: relative;
  display: inline-block;
  --uscale: 0;
}
.animated-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(var(--uscale));
}

/* ── MAGNETIC WRAP ─────────────────────────────────────────────── */
.magnetic-wrap { display: inline-block; }

/* ── INTERACTIVE ───────────────────────────────────────────────── */
.interactive { transition: transform 0.35s cubic-bezier(.22,.61,.36,1), box-shadow 0.35s cubic-bezier(.22,.61,.36,1); }
.interactive:hover { transform: scale(1.02); box-shadow: 0 0 28px rgba(249,115,22,0.22); }

/* ── COOKIE BANNER ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.8125rem; color: var(--muted); flex: 1; margin: 0; }
.cookie-banner__accept {
  padding: 8px 20px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-banner__accept:hover { background: var(--orange); }
.cookie-banner__decline {
  padding: 8px 16px;
  background: transparent;
  color: var(--muted);
  border: none;
  font-size: 0.8125rem;
  cursor: pointer;
  transition: color 0.3s;
}
.cookie-banner__decline:hover { color: var(--ink); }

/* ── FOOTER ────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
/* Row 1 */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 48px;
  padding-bottom: 40px;
  margin-bottom: 0;
}
/* Brand block */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__brand-identity {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand-separator {
  color: var(--border-strong);
  opacity: 0.6;
  font-size: 1.125rem;
  font-weight: 300;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.footer__logo img { border-radius: 50%; }
.footer__tagline {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}
.footer__contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__contact-separator {
  color: var(--muted);
  opacity: 0.5;
  font-size: 0.875rem;
}
.footer__contact a {
  font-size: 0.8125rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer__contact a:hover { color: var(--orange); }

/* Nav block */
.footer__nav-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__nav-block a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s, transform 0.2s;
  display: inline-block;
}
.footer__nav-block a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* Social block */
.footer__social-block {
  display: flex;
  align-items: center;
}
.footer__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.85;
  background: transparent;
  color: var(--muted);
}
.footer__social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  border-color: transparent;
}
.footer__social-link svg {
  fill: currentColor;
  transition: fill 0.3s ease;
}
.footer__social-link--linkedin:hover { background: #0A66C2; color: #fff; }
.footer__social-link--x:hover { background: #0A0A0A; color: #fff; }
.footer__social-link--instagram:hover { background: #E1306C; color: #fff; }
.footer__social-link--amazon:hover { background: #FF9900; color: #fff; }

/* Row 2 */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-strong);
}
.footer__copy { font-size: 0.75rem; color: var(--muted); }
.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
}
.footer__legal a { color: var(--muted); text-decoration: none; transition: color 0.25s; }
.footer__legal a:hover { color: var(--orange); }
.footer__legal span { color: #9ca3af; }

/* ── CARDS & INTERACTION ────────────────────────────────────────── */
.card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: rgba(249, 115, 22, 0.2);
  box-shadow: 0 0 32px rgba(249,115,22,0.20);
  transform: scale(1.02);
}
.hover-glow:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
}
.expertise-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s var(--ease-expo);
}
.expertise-card:hover {
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 0 28px rgba(249,115,22,0.20);
  transform: scale(1.02);
}

/* ── LOGO REVEAL MICRO-ANIMATION ───────────────────────────────── */
.logo-reveal {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.logo-reveal img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s var(--ease-expo);
}
.logo-reveal__gray {
  filter: grayscale(100%);
  opacity: 0.85;
}
.logo-reveal__color {
  position: absolute;
  inset: 6px;
  opacity: 0;
  transform: scale(0.9) rotate(-10deg);
}
.card:hover .logo-reveal__gray {
  filter: grayscale(0%);
  opacity: 0;
  transform: scale(1.1) rotate(5deg);
}
.card:hover .logo-reveal__color {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ── FORMS & INPUTS ────────────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}
.form-group--honeypot {
  display: none !important;
}
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: all 0.3s var(--ease-expo);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--bg);
  box-shadow: 0 0 0 4px var(--orange-glow);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-subtle);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkmark svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── STICKY JOURNEY TIMELINE (DESKTOP) ──────────────────────────── */
.journey-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.journey-text {
  width: 50%;
  padding: 30vh 48px;
  border-right: 1px solid var(--border);
}
.journey-chapter {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}
.journey-chapter__number {
  font-family: var(--font-mono);
  color: var(--orange);
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.journey-visuals {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.images-track {
  display: flex;
  height: 100%;
  align-items: center;
  flex-shrink: 0;
}
.journey-slide {
  flex-shrink: 0;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-slide img {
  width: 75%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  display: block;
}
.journey-mobile {
  display: none;
}

/* ── CASE STUDY DETAIL LAYOUT ───────────────────────────────────── */
.cs-layout {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.cs-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
.cs-row--reverse {
  flex-direction: row-reverse;
}
.cs-row__text {
  width: 52%;
}
.cs-row__image {
  width: 42%;
  position: relative;
}
@media (min-width: 769px) {
  .cs-row__image {
    position: sticky;
    top: 140px;
    align-self: flex-start;
  }
}
.cs-row__image-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
  aspect-ratio: 4/3;
}
.cs-row__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-expo);
}
.cs-row:hover .cs-row__image-inner img {
  transform: scale(1.05);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .case-preview__inner { grid-template-columns: 1.2fr 0.8fr; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .mobile-toggle { display: flex; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer__top { flex-direction: column; align-items: stretch; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 16px; }
  .footer__social { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .footer__social-link { padding: 6px 12px; }
  .footer__nav-block { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
  .footer__tagline { max-width: 100%; }
  .hero-badge--top { right: 0; }
  .hero-badge--bottom { left: 0; }
  .expertise-detail { flex-direction: column; padding: 24px; }
  
  /* Timeline responsive */
  .journey-container { display: none; }
  .journey-mobile { display: block; padding: 0 clamp(16px, 4vw, 32px); }
  .journey-mobile__chapter { margin-bottom: 64px; }
  .journey-mobile__chapter img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 16px 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
  }
  
  /* Case studies responsive */
  .cs-layout { gap: 48px; }
  .cs-row {
    flex-direction: column !important;
    gap: 32px;
    padding: 32px 0 !important;
  }
  .cs-row__text, .cs-row__image { width: 100%; }
  .cs-row__image-inner { aspect-ratio: 16/10; }
}
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat__number { font-size: 1.75rem; }
}

/* ── FROSTED GLASS CARDS (aurora edition) ────────────────────────── */
.card,
.expand-card,
.expertise-detail,
.testimonial-card,
.metric {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(10,10,10,0.08);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  transition: all 0.4s var(--ease-expo);
}
.card:hover,
.expand-card:hover,
.testimonial-card:hover {
  box-shadow: 0 0 32px rgba(249,115,22,0.22);
  border-color: rgba(249,115,22,0.2);
  transform: scale(1.02);
}

/* ── VERTICAL SIDE DOCK (RIGHT) ────────────────────────────────── */
.side-dock {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0,0,0,0.04);
}
.dock-item {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.dock-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}
.dock-item:hover {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.07);
}
.dock-item.active {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.09);
  border-color: rgba(249, 115, 22, 0.2);
}
/* Tooltip */
.dock-tooltip {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  padding: 5px 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.dock-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--ink);
}
.dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 1100px) { .side-dock { display: none; } }

/* ── ARTICLE BODY ───────────────────────────────────────────────── */
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.article-body p {
  color: var(--body);
  font-size: 1.0625rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p {
  font-style: italic;
  color: var(--ink);
  font-size: 1.0625rem;
  margin: 0;
}
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.article-body ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 0.625rem;
}
.article-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.75rem;
  top: 5px;
}
.article-body strong { color: var(--ink); }

/* ── LIQUID MOTION SYSTEM ───────────────────────────────────────── */

/* Liquid hero image — morphing border radius */
.hero-image__frame .parallax-container {
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  animation: liquid-morph-frame 10s ease-in-out infinite;
  transition: border-radius 0.4s var(--ease-expo);
}
@keyframes liquid-morph-frame {
  0%   { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
  25%  { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  50%  { border-radius: 55% 45% 60% 40% / 45% 60% 40% 55%; }
  75%  { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  100% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; }
}

/* Liquid section label pill */
.section-label {
  border-radius: 100px;
  padding: 4px 14px;
  background: transparent;
  transition: background 0.3s;
}
.section-label--orange {
  background: var(--orange-subtle);
  animation: label-pulse 3s ease-in-out infinite;
}
@keyframes label-pulse {
  0%, 100% { background: var(--orange-subtle); }
  50% { background: rgba(249, 115, 22, 0.12); }
}

/* Liquid CTA button ripple */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(249,115,22,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.btn--primary:hover::before { opacity: 1; }

/* Liquid expertise icon container */
.expertise-detail__icon {
  animation: icon-float 4s ease-in-out infinite;
  border-radius: 50% 44% 56% 44% / 44% 50% 50% 56%;
  transition: border-radius 0.6s var(--ease-expo);
}
.expertise-detail__icon:hover {
  border-radius: 44% 56% 44% 56% / 56% 44% 56% 44%;
}
@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Liquid hero badge — enhanced */
.hero-badge {
  border-radius: 16px 12px 14px 10px / 10px 14px 12px 16px;
  animation: float-badge 3s ease-in-out infinite, badge-morph 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s), calc(var(--delay, 0s) + 1s);
}
@keyframes badge-morph {
  0%, 100% { border-radius: 16px 12px 14px 10px / 10px 14px 12px 16px; }
  50% { border-radius: 10px 16px 10px 16px / 16px 10px 16px 10px; }
}

/* ── ANIMATED ICONS ─────────────────────────────────────────────── */

/* Arrow icons on CTAs — slide-in on hover */
.btn svg {
  transition: transform 0.35s var(--ease-expo);
}
.btn:hover svg {
  transform: translateX(4px);
}

/* Dock icons — continuous micro-float when active */
.dock-item.active svg {
  animation: dock-active-pulse 2s ease-in-out infinite;
}
@keyframes dock-active-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* Section expand toggle icon */
.expand-card__toggle {
  transition: transform 0.3s var(--ease-expo), color 0.2s;
}
.expand-card--open .expand-card__toggle {
  transform: translateX(6px);
}

/* Footer social icons — hover effects are handled by .footer__social-link transitions */

/* Document/article icons — tilt on hover */
.interactive svg {
  transition: transform 0.3s var(--ease-expo);
}
.interactive:hover svg {
  transform: rotate(-8deg) scale(1.15);
}

/* Stats number glow on intersect */
.stat__number {
  text-shadow: 0 0 32px rgba(249, 115, 22, 0.15);
  transition: text-shadow 0.4s;
}
.stat__number.counted {
  text-shadow: 0 0 24px rgba(249, 115, 22, 0.3);
}

/* ── NAV LINK EXPRESSIVE UNDERLINE ──────────────────────────────── */
.header__nav a {
  padding-bottom: 2px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  border-radius: 2px;
  transition: width 0.35s var(--ease-expo);
}
.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* ── MARQUEE PILL — GRADIENT FADE EDGES ─────────────────────────── */
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

/* ── BLOB OPACITY BOOST ─────────────────────────────────────────── */
.blob { opacity: 0.1; }
.blob--orange { opacity: 0.1; }
.blob--peach { opacity: 0.08; }
.blob--amber { opacity: 0.07; }

/* ── EXPERTISE CARD (expanded grid) ───────────────────────────── */
.expertise-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--orange-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
  transition: background 0.3s, transform 0.4s var(--ease-expo);
}
.expertise-card:hover .expertise-card__icon {
  background: var(--orange);
  color: #fff;
  transform: scale(1.08);
}
.expertise-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.expertise-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── JOURNEY PREVIEW CARDS ─────────────────────────────────────── */
.journey-preview-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .journey-preview-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .journey-preview-card > div[style*="order: 2"] {
    order: 0 !important;
  }
  .journey-preview-card > div[style*="order: 1"] {
    order: 1 !important;
  }
}

/* ── EXECUTION CARDS (full bullets visible) ────────────────────── */
.execution-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.4s var(--ease-expo), transform 0.3s;
}
.execution-card:hover {
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 0 28px rgba(249,115,22,0.22);
  transform: scale(1.02);
}
.execution-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.execution-logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.execution-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(70%) opacity(0.8);
  transition: filter 0.5s var(--ease-expo);
}
.execution-card:hover .execution-logo {
  filter: grayscale(0%) opacity(1);
}
.execution-card__company {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.execution-card__role {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}
.execution-chip {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  background: var(--orange-subtle);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: background 0.2s, color 0.2s;
}
.execution-card:hover .execution-chip {
  background: var(--orange);
  color: #fff;
}
.execution-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.execution-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--body);
  line-height: 1.65;
}
.execution-bullet__arrow {
  color: var(--orange);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.2s;
}
.execution-card:hover .execution-bullet__arrow {
  transform: translateX(3px);
}

/* ── IMPACT STATS GRID ─────────────────────────────────────────── */
.impact-stat {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.3s;
}
.impact-stat:hover {
  border-color: rgba(249,115,22,0.2);
  box-shadow: 0 0 28px rgba(249,115,22,0.22);
  transform: scale(1.03);
}
.impact-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.impact-stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.impact-stat__context {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── LOGO REVEAL (Trust Bar) ───────────────────────────────────── */
.logo-reveal-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity 0.3s;
  cursor: default;
}
.logo-reveal-wrap:hover {
  opacity: 1;
}
.logo-reveal-img {
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.5s var(--ease-expo);
  border-radius: 6px;
}
.logo-reveal-wrap:hover .logo-reveal-img {
  filter: grayscale(0%) opacity(1);
}

/* ── ARTICLE LINK CARD ─────────────────────────────────────────── */
.article-link:hover {
  border-color: var(--orange) !important;
  background: var(--orange-subtle) !important;
  transform: translateY(-2px);
}
.article-link:hover span[style*="color: var(--ink)"] {
  color: var(--orange) !important;
}

/* ── TESTIMONIAL STARS ─────────────────────────────────────────── */
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

/* ── CONNECT SERVICE TAGS hover ────────────────────────────────── */
section#connect span[style*="border: 1px solid var(--border)"]:hover {
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}
