:root {
  color-scheme: dark light;
  --bg: #02050b;
  --navy: #07162c;
  --ink: #f2f7ff;
  --muted: #9eb2cc;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #72d7ff;
  --blue: #38bdf8;
  --warm: #f4d8a6;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
  --radius: 28px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body-bg:
    radial-gradient(circle at 16% 8%, rgba(56, 189, 248, 0.18), transparent 34rem),
    radial-gradient(circle at 86% 3%, rgba(244, 216, 166, 0.11), transparent 28rem),
    linear-gradient(145deg, #08172e 0%, #02050b 48%, #000 100%);
  --panel-bg: linear-gradient(145deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)), radial-gradient(circle at 20% 0%, rgba(114,215,255,0.16), transparent 18rem);
  --field-bg: rgba(0,0,0,0.28);
  --header-bg: linear-gradient(180deg, rgba(2, 5, 11, 0.88), rgba(2, 5, 11, 0.36));
  --strip-bg: rgba(0,0,0,0.22);
  --modal-bg: rgba(0,0,0,0.78);
  --rank-banner-height: 2rem;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f7fbff;
  --navy: #eaf3ff;
  --ink: #07111f;
  --muted: #52677f;
  --line: rgba(7, 17, 31, 0.14);
  --cyan: #0077b6;
  --blue: #006bb6;
  --warm: #8a5a14;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 30px 90px rgba(16, 40, 76, 0.16);
  --body-bg:
    radial-gradient(circle at 16% 8%, rgba(56, 189, 248, 0.22), transparent 34rem),
    radial-gradient(circle at 86% 3%, rgba(244, 216, 166, 0.24), transparent 28rem),
    linear-gradient(145deg, #f8fcff 0%, #eaf3ff 50%, #ffffff 100%);
  --panel-bg: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62)), radial-gradient(circle at 20% 0%, rgba(56,189,248,0.16), transparent 18rem);
  --field-bg: rgba(255,255,255,0.78);
  --header-bg: linear-gradient(180deg, rgba(248, 252, 255, 0.90), rgba(248, 252, 255, 0.52));
  --strip-bg: rgba(255,255,255,0.52);
  --modal-bg: rgba(232, 243, 255, 0.82);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--body-bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
}

body.no-scroll { overflow: hidden; }
a { color: inherit; }
.inline-link {
  color: var(--cyan);
  font-weight: 760;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(114,215,255,0.18);
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.aurora-link {
  position: relative;
  display: inline-block;
  isolation: isolate;
  border-radius: 0.4rem;
  color: transparent;
  font-weight: 860;
  text-decoration: none;
  white-space: nowrap;
}

.aurora-link::before {
  content: attr(data-label);
  position: absolute;
  inset: -0.08em -0.12em;
  z-index: -1;
  background: linear-gradient(110deg, rgba(27,42,184,0.22), rgba(123,47,247,0.48), rgba(202,16,176,0.36), rgba(37,99,235,0.42), rgba(27,42,184,0.22));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: blur(0.18em);
  opacity: 0.82;
  animation: auroraShift 5.8s ease-in-out infinite;
  pointer-events: none;
}

.aurora-text {
  display: inline-block;
  background: linear-gradient(110deg, #1d4ed8 0%, #4f46e5 24%, #7c3aed 48%, #c026d3 68%, #2563eb 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: auroraShift 5.8s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(79,70,229,0.22));
}

.aurora-link:hover .aurora-text,
.aurora-link:focus-visible .aurora-text {
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.36));
}

.aurora-link:focus-visible {
  outline: 2px solid rgba(114,215,255,0.72);
  outline-offset: 0.18rem;
}

button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(114, 215, 255, 0.3); }

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 500;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: #07111f;
  text-decoration: none;
}

[data-theme="light"] .skip-link {
  background: #ffffff;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: var(--rank-banner-height) 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--header-bg);
  backdrop-filter: blur(22px);
}

.mobile-menu-toggle {
  display: none;
  width: 3.05rem;
  height: 3.05rem;
  flex: 0 0 3.05rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(2, 5, 11, 0.82);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  backdrop-filter: blur(18px);
}

.mobile-menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 260;
  pointer-events: none;
}

.mobile-drawer-shell[hidden] {
  display: none;
}

.mobile-drawer-shell.is-open {
  pointer-events: auto;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 11, 0.58);
  opacity: 0;
  cursor: pointer;
  transition: opacity 260ms ease;
}

.mobile-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 23rem);
  height: 100%;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  padding: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(8, 18, 36, 0.97), rgba(4, 10, 20, 0.96)),
    rgba(3, 8, 16, 0.96);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(.2, .82, .2, 1);
  backdrop-filter: blur(24px);
}

.mobile-drawer-shell.is-open .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer-shell.is-open .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-drawer-brand .brand-logo {
  width: 2.35rem;
  height: 2.35rem;
  flex-basis: 2.35rem;
}

.mobile-drawer-brand > span:last-child {
  display: inline;
}

.mobile-drawer-close {
  border: 0;
  padding: 0.45rem 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.mobile-drawer-nav,
.mobile-drawer-actions {
  display: grid;
  gap: 0.72rem;
}

.mobile-drawer-nav a {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.92rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 760;
  text-decoration: none;
}

.mobile-drawer-nav a.active {
  border-color: rgba(114, 215, 255, 0.34);
  color: var(--cyan);
}

.mobile-drawer-actions .theme-toggle,
.mobile-drawer-actions .nav-cta {
  width: 100%;
  justify-content: center;
}

[data-theme="light"] .mobile-menu-toggle {
  border-color: rgba(7, 17, 31, 0.18);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.84)),
    rgba(7, 17, 31, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
}

[data-theme="light"] .mobile-drawer-overlay {
  background: rgba(228, 236, 246, 0.48);
}

[data-theme="light"] .mobile-drawer {
  border-left-color: rgba(7, 17, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(242, 247, 255, 0.96)),
    rgba(255, 255, 255, 0.96);
  box-shadow: -24px 0 80px rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .mobile-drawer-close {
  color: rgba(7, 17, 31, 0.6);
}

[data-theme="light"] .mobile-drawer-nav a {
  border-color: rgba(7, 17, 31, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: rgba(7, 17, 31, 0.86);
}

.brand, .site-header nav, .nav-cta, .header-actions, .theme-toggle {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .brand {
  gap: 0;
}

.site-header .brand > span:last-child {
  display: none;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: 0 0 1.7rem;
}

.site-header .brand-logo {
  width: clamp(4.1rem, 5.6vw, 4.7rem);
  height: clamp(4.1rem, 5.6vw, 4.7rem);
  flex-basis: clamp(4.1rem, 5.6vw, 4.7rem);
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-logo-dark {
  display: block;
}

.brand-logo-light {
  display: none;
}

[data-theme="light"] .brand-logo-dark {
  display: none;
}

[data-theme="light"] .brand-logo-light {
  display: block;
}

.footer-brand .brand-logo {
  width: 1.9rem;
  height: 1.9rem;
  flex-basis: 1.9rem;
}

.brand-cube {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 0.32rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255,255,255,0.05)), linear-gradient(225deg, rgba(114,215,255,0.7), transparent);
  box-shadow: 0 0 28px rgba(114, 215, 255, 0.45);
  transform: rotate(45deg);
}

[data-theme="light"] .brand-cube,
[data-theme="light"] .flow-cubes span,
[data-theme="light"] .final-cubes span {
  border-color: rgba(7, 17, 31, 0.18);
}

.site-header nav {
  gap: clamp(0.8rem, 2vw, 1.6rem);
  color: var(--muted);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
}

.site-header nav a, .nav-cta { text-decoration: none; }
.site-header nav a:hover, .site-header nav a:focus-visible { color: var(--ink); }
.site-header nav a.active,
.site-header nav a[aria-current="page"] {
  color: var(--ink);
}

.header-actions {
  gap: 0.7rem;
}

.theme-toggle {
  gap: 0.55rem;
  min-height: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

[data-theme="light"] .theme-toggle {
  border-color: rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.64);
}

[data-theme="light"] .nav-cta {
  border-color: rgba(37, 99, 235, 0.28);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.88), rgba(255,255,255,0.52)),
    radial-gradient(circle at 18% 12%, rgba(37,99,235,0.12), transparent 46%);
  box-shadow: 0 16px 36px rgba(16, 40, 76, 0.12), inset 0 1px 0 rgba(255,255,255,0.82);
}

.theme-toggle-track {
  position: relative;
  width: 2.35rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px var(--line);
}

.theme-toggle-track span {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--warm));
  box-shadow: 0 0 16px rgba(114,215,255,0.46);
  transition: transform 220ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-track span {
  transform: translateX(1.1rem);
}

.theme-toggle-text {
  font-size: 0.82rem;
  font-weight: 760;
}

.nav-cta {
  position: relative;
  isolation: isolate;
  min-height: 2.5rem;
  border: 1px solid rgba(114, 215, 255, 0.24);
  border-radius: 999px;
  padding: 0 0.72rem 0 1.05rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035)),
    radial-gradient(circle at 15% 10%, rgba(114,215,255,0.18), transparent 44%);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: -0.015em;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255,255,255,0.13);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(110deg, transparent 0%, rgba(114,215,255,0.24) 34%, rgba(124,58,237,0.22) 50%, transparent 68%),
    radial-gradient(circle at 78% 30%, rgba(244,216,166,0.18), transparent 42%);
  opacity: 0;
  transform: translateX(-22%) scale(0.96);
  transition: opacity 260ms ease, transform 420ms ease;
}

.nav-cta::after {
  content: "→";
  content: "\2192";
  display: grid;
  place-items: center;
  width: 1.42rem;
  height: 1.42rem;
  margin-left: 0.62rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--cyan);
  font-size: 0.92rem;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(114, 215, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(54,84,255,0.34), rgba(114,215,255,0.12)),
    rgba(255,255,255,0.075);
  box-shadow: 0 20px 58px rgba(54,84,255,0.25), 0 0 0 1px rgba(114,215,255,0.10), inset 0 1px 0 rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-1px);
}

.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  opacity: 1;
  transform: translateX(18%) scale(1);
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after {
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.16);
  color: #fff;
  transform: translateX(0.16rem);
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(114,215,255,0.62);
  outline-offset: 0.22rem;
}

[data-theme="light"] .nav-cta::after {
  border-color: rgba(37,99,235,0.18);
  background: rgba(37,99,235,0.08);
  color: #2457d6;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  column-gap: clamp(2rem, 5vw, 5rem);
  min-height: 65svh;
  padding: 6.35rem clamp(1rem, 5vw, 5rem) 0.75rem;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

[data-theme="light"] .hero::before {
  background:
    linear-gradient(rgba(7,17,31,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,0.045) 1px, transparent 1px);
}

.particles {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(180, 230, 255, 0.78);
  box-shadow: 0 0 18px rgba(114, 215, 255, 0.68);
  opacity: 0.54;
  animation: drift var(--duration) linear infinite;
  animation-delay: var(--delay);
}

[data-theme="light"] .particle {
  background: rgba(0, 103, 166, 0.62);
  box-shadow: 0 0 18px rgba(0, 119, 182, 0.36);
}

.particles.accelerate .particle {
  animation-duration: calc(var(--duration) * 0.32);
  width: 2px;
  height: clamp(2.2rem, 6vw, 4.8rem);
  border-radius: 999px;
  background: linear-gradient(to top, transparent, rgba(180,230,255,0.95));
  box-shadow: 0 0 22px rgba(114, 215, 255, 0.86);
  opacity: 0.88;
}

.hero-haze {
  position: absolute;
  width: min(84vw, 58rem);
  height: min(84vw, 58rem);
  right: -8rem;
  top: 50%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(114,215,255,0.24), transparent 56%),
    radial-gradient(circle, rgba(244,216,166,0.10), transparent 72%);
  filter: blur(42px);
  opacity: 0.92;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(58vw, 58rem);
  z-index: 1;
  display: grid;
  place-items: center;
  perspective: 1000px;
  pointer-events: none;
}

.hero-growth-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(100%, 50.5rem);
  min-height: clamp(30.8rem, 50.5vw, 39.6rem);
  z-index: 2;
  display: grid;
  place-items: center;
  perspective: 1200px;
  pointer-events: none;
}

.top-rank-banner {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--rank-banner-height);
  border-bottom: 1px solid rgba(114,215,255,0.18);
  background:
    linear-gradient(90deg, rgba(54,84,255,0.34), rgba(2,5,11,0.92) 38%, rgba(114,215,255,0.20)),
    rgba(2,5,11,0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.top-rank-banner span:last-child {
  color: var(--cyan);
  transition: transform 220ms ease;
}

.top-rank-banner:hover span:last-child,
.top-rank-banner:focus-visible span:last-child {
  transform: translateX(4px);
}

[data-theme="light"] .top-rank-banner {
  border-bottom-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(90deg, rgba(56,189,248,0.24), rgba(248,252,255,0.92) 38%, rgba(244,216,166,0.34)),
    rgba(248,252,255,0.92);
}

.hero .hero-growth-visual {
  pointer-events: auto;
}

.chart-waves {
  position: absolute;
  z-index: 1;
  width: min(59vw, 46rem);
  height: min(59vw, 46rem);
  border-radius: 50%;
}

.chart-waves span {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(114,215,255,0.18);
  border-radius: 42% 58% 54% 46%;
  box-shadow:
    inset 0 0 58px rgba(114,215,255,0.055),
    0 0 72px rgba(56,189,248,0.10);
  animation: wavePulse 5.2s ease-in-out infinite;
}

.chart-waves span:nth-child(2) {
  inset: 7%;
  border-color: rgba(244,216,166,0.16);
  animation-delay: 700ms;
  animation-duration: 6.6s;
}

.chart-waves span:nth-child(3) {
  inset: 0;
  border-color: rgba(114,215,255,0.11);
  animation-delay: 1300ms;
  animation-duration: 8s;
}

.growth-dashboard {
  position: relative;
  z-index: 2;
  width: min(100%, 46.2rem);
  min-height: clamp(29.7rem, 48.4vw, 37.4rem);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  overflow: visible;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045) 42%, rgba(0,0,0,0.15)),
    radial-gradient(circle at 26% 15%, rgba(114,215,255,0.18), transparent 38%),
    radial-gradient(circle at 84% 4%, rgba(244,216,166,0.12), transparent 30%);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.20),
    inset 0 0 54px rgba(114,215,255,0.07);
  backdrop-filter: blur(24px);
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg);
  transform-style: preserve-3d;
  animation: dashboardFloat 8s ease-in-out infinite;
  transition: transform 650ms cubic-bezier(.2,.85,.2,1), box-shadow 350ms ease, border-color 350ms ease;
}

.growth-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 86%);
  pointer-events: none;
}

.growth-dashboard::after {
  content: "";
  position: absolute;
  inset: auto 8% -16% 8%;
  height: 44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.22), transparent 68%);
  filter: blur(24px);
}

[data-theme="light"] .growth-dashboard {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.94), rgba(255,255,255,0.58) 42%, rgba(215,234,248,0.32)),
    radial-gradient(circle at 26% 15%, rgba(0,119,182,0.15), transparent 38%),
    radial-gradient(circle at 84% 4%, rgba(138,90,20,0.10), transparent 30%);
  box-shadow:
    0 34px 90px rgba(16,40,76,0.16),
    inset 0 1px 0 rgba(255,255,255,0.78),
    inset 0 0 54px rgba(0,119,182,0.08);
}

.dashboard-topline,
.growth-labels {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.dashboard-topline {
  min-height: 1.25rem;
}

.dashboard-topline span {
  display: none;
}

.hero .dashboard-topline-start {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  border: 1px solid rgba(114,215,255,0.20);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255,255,255,0.06);
  color: rgba(242,247,255,0.78);
  box-shadow: 0 14px 40px rgba(56,189,248,0.10);
  opacity: 0;
  transform: translateY(-0.4rem);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
  backdrop-filter: blur(16px);
}

.hero.growth-active .dashboard-topline-start {
  border-color: rgba(114,215,255,0.42);
  box-shadow: 0 18px 60px rgba(56,189,248,0.18);
  opacity: 1;
  transform: translateY(0);
}

[data-theme="light"] .hero .dashboard-topline-start {
  background: rgba(255,255,255,0.68);
  color: rgba(7,17,31,0.72);
}

.dashboard-topline span,
.growth-labels span {
  color: var(--muted);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-topline strong {
  color: var(--cyan);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 0 32px rgba(114,215,255,0.42);
}

.hero-growth-chart {
  position: absolute;
  z-index: 1;
  left: 12%;
  right: 12%;
  top: 14%;
  width: 76%;
  height: 26%;
  opacity: 0.20;
  overflow: visible;
  filter: blur(0.1px);
}

.hero-line {
  stroke-width: 2.4;
}
.growth-bars {
  position: absolute;
  z-index: 6;
  left: 8%;
  right: 4%;
  bottom: 18%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.75rem, 1.35vw, 1.2rem);
  height: 17rem;
  padding: 2.4rem 2rem 1.8rem;
  border: 1px solid rgba(185,235,255,0.16);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
    linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: auto, auto, 1.6rem 1.6rem, 1.6rem 1.6rem;
  backdrop-filter: blur(10px);
  box-shadow:
    0.08rem 0.08rem 0 rgba(255,255,255,0.045),
    0.16rem 0.16rem 0 rgba(255,255,255,0.035),
    0.24rem 0.24rem 0 rgba(114,215,255,0.025),
    1.6rem 1.9rem 3.2rem rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.growth-column {
  --bar-w: clamp(1.8rem, 3vw, 2.45rem);
  --depth-x: calc(var(--bar-w) * 0.38);

  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;

  /* this is the key fix */
  flex: 0 0 calc(var(--bar-w) + var(--depth-x));
  width: calc(var(--bar-w) + var(--depth-x));
  min-width: calc(var(--bar-w) + var(--depth-x));
  height: 100%;
}

.bar-stack {
  --d: var(--bar-w);
  --depth-x: calc(var(--d) * 0.38);
  --depth-y: calc(var(--d) * 0.24);

  position: relative;
  width: var(--d);
  height: var(--h);
  border: 1px solid rgba(185,235,255,0.22);
  border-radius: 0.48rem 0.48rem 0.18rem 0.18rem;
  isolation: isolate;
  overflow: visible;
  backdrop-filter: blur(10px);

  background:
    radial-gradient(circle at 24% 10%, rgba(255,255,255,0.46), transparent 32%),
    linear-gradient(90deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0.05) 34%, rgba(114,215,255,0.16) 62%, rgba(8,32,94,0.18) 100%),
    linear-gradient(180deg, rgba(142,226,255,0.54) 0%, rgba(72,173,255,0.38) 52%, rgba(22,63,150,0.34) 100%);

  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.22),
    inset 0 1px 0 rgba(255,255,255,0.36),
    inset -1px 0 0 rgba(0,0,0,0.10),
    inset 0 -1.2rem 1.8rem rgba(0,0,0,0.08),
    0 0 1.7rem rgba(56,189,248,0.20),
    0 1rem 1.6rem rgba(0,0,0,0.20);

  transform: scaleY(0.04);
  transform-origin: bottom center;
  animation: barGrow 1050ms cubic-bezier(.18,.92,.22,1) forwards;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 0.9rem rgba(56,189,248,0.20));
}

.bar-stack::before,
.bar-stack::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bar-stack::before {
  top: 0;
  left: 100%;
  width: var(--depth-x);
  height: 100%;
  clip-path: polygon(
    0 var(--depth-y),
    100% 0,
    100% calc(100% - var(--depth-y)),
    0 100%
  );
  background:
    linear-gradient(90deg, rgba(255,255,255,0.11), rgba(0,0,0,0.05)),
    linear-gradient(180deg, rgba(78,203,255,0.42) 0%, rgba(35,112,214,0.32) 55%, rgba(6,22,68,0.44) 100%);
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.14),
    inset -1px 0 0 rgba(0,0,0,0.16);
  filter: blur(0.15px);
}

.bar-stack::after {
  left: 0;
  bottom: 100%;
  width: calc(100% + var(--depth-x));
  height: var(--depth-y);
  clip-path: polygon(
    0 100%,
    calc(100% - var(--depth-x)) 100%,
    100% 0,
    var(--depth-x) 0
  );
  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,0.56), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,0.24), rgba(255,255,255,0.07) 38%, rgba(114,215,255,0.20)),
    linear-gradient(180deg, rgba(211,246,255,0.58), rgba(92,205,255,0.42));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.44),
    inset 0 -1px 0 rgba(0,0,0,0.10),
    0 0 1.1rem rgba(114,215,255,0.18);
}

.bar-stack span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.26), transparent 18%, rgba(255,255,255,0.10) 48%, transparent);
  pointer-events: none;
}

.growth-column:nth-child(even) .bar-stack::before {
  background:
    linear-gradient(180deg, rgba(244,216,166,0.22), rgba(28,80,160,0.24)),
    linear-gradient(90deg, rgba(255,255,255,0.12), transparent 48%);
}

.growth-column:nth-child(even) .bar-stack::after {
  background:
    radial-gradient(circle at 24% 30%, rgba(255,255,255,0.46), transparent 34%),
    linear-gradient(180deg, rgba(244,216,166,0.26), rgba(92,205,255,0.24)),
    linear-gradient(90deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
}

.growth-column:nth-child(even) .bar-stack span {
  background: linear-gradient(90deg, rgba(255,255,255,0.24), transparent 18%, rgba(255,255,255,0.10) 48%, transparent);
}

.growth-column small {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.85rem);
  color: rgba(158,178,204,0.78);
  font-size: 0.68rem;
  font-weight: 760;
  text-align: center;
  transform: translateX(-50%);
}

.growth-labels {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 7%;
}

.hero.growth-active .growth-dashboard {
  border-color: rgba(114,215,255,0.38);
  box-shadow:
    0 38px 120px rgba(0,0,0,0.48),
    0 0 90px rgba(56,189,248,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 0 70px rgba(114,215,255,0.14);
  transform: rotateX(4deg) rotateY(-5deg) rotateZ(1deg) scale(1.025);
}

.hero.growth-active .bar-stack {
  filter: drop-shadow(0 0 30px rgba(56,189,248,0.38));
}

.hero.growth-active .hero-line {
  stroke-width: 3.6;
}

.hero.growth-active .chart-waves span {
  animation-duration: 2.4s;
  border-color: rgba(114,215,255,0.34);
}

.chart-bubble {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  color: rgba(242,247,255,0.78);
  box-shadow: var(--shadow);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  backdrop-filter: blur(18px);
  animation: bubbleFloat 5.8s ease-in-out infinite;
}

.chart-bubble-seo { transform: translate(-13.5rem, -8.8rem); }
.chart-bubble-traffic { transform: translate(12rem, -4.3rem); animation-delay: 850ms; }
.chart-bubble-revenue { transform: translate(-9.5rem, 10.2rem); animation-delay: 1500ms; }

[data-theme="light"] .chart-bubble {
  background: rgba(255,255,255,0.72);
  color: rgba(7, 17, 31, 0.74);
}

.hero.growth-active .chart-bubble {
  border-color: rgba(114,215,255,0.48);
  box-shadow: 0 20px 90px rgba(56,189,248,0.22);
}

.page-hero.growth-active .growth-dashboard {
  border-color: rgba(114,215,255,0.38);
  box-shadow:
    0 38px 120px rgba(0,0,0,0.48),
    0 0 90px rgba(56,189,248,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 0 70px rgba(114,215,255,0.14);
  transform: rotateX(4deg) rotateY(-5deg) rotateZ(1deg) scale(1.025);
}

.page-hero.growth-active .bar-stack {
  filter: drop-shadow(0 0 30px rgba(56,189,248,0.38));
}

.page-hero.growth-active .chart-waves span {
  animation-duration: 2.4s;
  border-color: rgba(114,215,255,0.34);
}

.page-hero.growth-active .chart-bubble {
  border-color: rgba(114,215,255,0.48);
  box-shadow: 0 20px 90px rgba(56,189,248,0.22);
}

.hero-phone {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  right: auto;
  width: clamp(14rem, 24vw, 22rem);
  height: auto;
  pointer-events: none;
  user-select: none;
  transform: translate(-50%, -50%) rotate(-3deg);
  filter:
    drop-shadow(0 44px 70px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 58px rgba(114,215,255,0.24))
    drop-shadow(0 0 18px rgba(244,216,166,0.10));
  animation: phoneFloat 6.4s ease-in-out infinite;
}

.hero-phone::selection {
  background: transparent;
}

.hero-visual-trigger {
  position: absolute;
  inset: 7%;
  z-index: 20;
  border: 0;
  border-radius: 34px;
  background: transparent;
  color: transparent;
  cursor: pointer;
}

.hero-visual-trigger:focus-visible {
  outline: 2px solid rgba(114,215,255,0.70);
  outline-offset: 0.45rem;
}

.hero-audit-entry {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  z-index: 220;
  width: min(34rem, calc(100vw - 2rem));
  min-width: 22rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 26px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.035)),
    radial-gradient(circle at 16% 0%, rgba(114,215,255,0.16), transparent 44%),
    rgba(2,5,11,0.38);
  box-shadow:
    0 28px 95px rgba(0,0,0,0.34),
    0 0 42px rgba(56,189,248,0.10),
    inset 0 1px 0 rgba(255,255,255,0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 1.4rem)) scale(0.97);
  transition: opacity 1100ms ease, transform 1100ms cubic-bezier(.2,.78,.16,1), border-color 320ms ease, box-shadow 320ms ease;
  backdrop-filter: blur(24px);
}

.hero-audit-entry[hidden],
.hero-audit-entry.is-dismissed {
  display: none;
}

.hero-audit-entry.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.hero-audit-entry p {
  margin: 0 0 0.7rem;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-audit-entry h3 {
  max-width: 24rem;
  margin: 0 2.8rem 0.35rem 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.audit-popup-offer {
  display: block;
  max-width: 30rem;
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.audit-popup-close {
  position: absolute;
  top: 0.82rem;
  right: 0.82rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.audit-popup-close:hover,
.audit-popup-close:focus-visible {
  border-color: rgba(114,215,255,0.46);
  color: var(--ink);
  outline: none;
}

.audit-url-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 0.38rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    rgba(2,5,11,0.34);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(24px);
}

.audit-url-form label {
  min-width: 0;
}

.audit-url-input {
  width: 100%;
  min-height: 2.75rem;
  border: 0;
  border-radius: 14px;
  padding: 0 0.85rem;
  background: rgba(0,0,0,0.14);
  color: var(--ink);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.audit-url-input::placeholder {
  color: rgba(242,247,255,0.52);
}

.audit-url-input:focus {
  border-color: rgba(114,215,255,0.72);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}

.audit-submit {
  min-height: 2.75rem;
  border: 1px solid rgba(114,215,255,0.34);
  border-radius: 14px;
  padding: 0 0.95rem;
  background:
    linear-gradient(145deg, rgba(114,215,255,0.18), rgba(54,84,255,0.26)),
    rgba(255,255,255,0.055);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 820;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.audit-submit:hover,
.audit-submit:focus-visible {
  border-color: rgba(114,215,255,0.64);
  background:
    linear-gradient(145deg, rgba(114,215,255,0.32), rgba(54,84,255,0.46)),
    rgba(255,255,255,0.08);
  box-shadow: 0 16px 42px rgba(54,84,255,0.20);
  transform: translateY(-1px);
}

.audit-submit:focus-visible {
  outline: 2px solid rgba(114,215,255,0.66);
  outline-offset: 3px;
}

[data-theme="light"] .hero-audit-entry {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.50)),
    radial-gradient(circle at 16% 0%, rgba(0,119,182,0.10), transparent 44%),
    rgba(255,255,255,0.58);
  box-shadow: 0 28px 80px rgba(16,40,76,0.16), inset 0 1px 0 rgba(255,255,255,0.70);
}

[data-theme="light"] .audit-popup-close {
  border-color: rgba(7,17,31,0.12);
  background: rgba(255,255,255,0.60);
}

[data-theme="light"] .audit-url-input {
  background: rgba(255,255,255,0.72);
}

[data-theme="light"] .audit-url-form {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.84), rgba(255,255,255,0.48)),
    rgba(255,255,255,0.52);
  box-shadow: 0 22px 54px rgba(16,40,76,0.13), inset 0 1px 0 rgba(255,255,255,0.72);
}

[data-theme="light"] .audit-url-input::placeholder {
  color: rgba(7,17,31,0.46);
}

.glass-core {
  --cube-size: clamp(7.6rem, 16vw, 11rem);
  --half: calc(var(--cube-size) / 2);
  position: relative;
  z-index: 2;
  width: var(--cube-size);
  height: var(--cube-size);
  transform-style: preserve-3d;
  transform: translateX(5%) rotateX(-24deg) rotateY(38deg) rotateZ(5deg);
  filter:
    drop-shadow(0 28px 52px rgba(0, 10, 34, 0.62))
    drop-shadow(0 0 48px rgba(56, 189, 248, 0.34));
  animation: cubeFloat 8s ease-in-out infinite;
  transition: transform 650ms cubic-bezier(.2,.85,.2,1), filter 350ms ease, opacity 300ms ease;
}

.glass-core span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 1.55rem;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.26), rgba(255,255,255,0.03) 42%, rgba(1,12,28,0.22) 100%),
    radial-gradient(circle at 24% 18%, rgba(114,215,255,0.38), transparent 34%),
    linear-gradient(145deg, rgba(12, 70, 165, 0.28), rgba(2, 11, 38, 0.20));
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.10),
    inset 0 0 44px rgba(56, 189, 248, 0.16),
    0 0 18px rgba(56, 189, 248, 0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  backface-visibility: visible;
}

.glass-core span:nth-child(1) { transform: translateZ(var(--half)); }
.glass-core span:nth-child(2) { transform: rotateY(180deg) translateZ(var(--half)); }
.glass-core span:nth-child(3) { transform: rotateY(90deg) translateZ(var(--half)); }
.glass-core span:nth-child(4) { transform: rotateY(-90deg) translateZ(var(--half)); }
.glass-core span:nth-child(5) { transform: rotateX(90deg) translateZ(var(--half)); }
.glass-core span:nth-child(6) { transform: rotateX(-90deg) translateZ(var(--half)); }

[data-theme="light"] .glass-core span {
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(160deg, rgba(255,255,255,0.88), rgba(255,255,255,0.26) 42%, rgba(202,224,244,0.34) 100%),
    radial-gradient(circle at 24% 18%, rgba(0,119,182,0.22), transparent 34%),
    linear-gradient(145deg, rgba(0, 123, 255, 0.10), rgba(255, 255, 255, 0.42));
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.44),
    inset 0 0 44px rgba(0, 119, 182, 0.12),
    0 0 18px rgba(0, 119, 182, 0.12);
}

.hero-waves {
  position: absolute;
  z-index: 1;
  width: min(56vw, 42rem);
  height: min(56vw, 42rem);
  border-radius: 50%;
  transform: translateX(5%);
}

.hero-waves span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(114, 215, 255, 0.20);
  border-radius: 42% 58% 54% 46%;
  box-shadow:
    inset 0 0 60px rgba(114, 215, 255, 0.06),
    0 0 80px rgba(56, 189, 248, 0.10);
  animation: wavePulse 4.8s ease-in-out infinite;
}

.hero-waves span:nth-child(2) {
  inset: 8%;
  border-color: rgba(244, 216, 166, 0.18);
  animation-delay: 700ms;
  animation-duration: 6.2s;
}

.hero-waves span:nth-child(3) {
  inset: 0;
  border-color: rgba(114, 215, 255, 0.12);
  animation-delay: 1200ms;
  animation-duration: 7.6s;
}

.hero-bubble {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.07);
  color: rgba(242,247,255,0.76);
  box-shadow: var(--shadow);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  backdrop-filter: blur(18px);
  animation: bubbleFloat 5.8s ease-in-out infinite;
}

.bubble-seo {
  transform: translate(-12rem, -8.4rem);
}

.bubble-content {
  transform: translate(12rem, -3.2rem);
  animation-delay: 900ms;
}

.bubble-cro {
  transform: translate(-9.5rem, 8.2rem);
  animation-delay: 1500ms;
}

[data-theme="light"] .hero-bubble {
  background: rgba(255,255,255,0.72);
  color: rgba(7, 17, 31, 0.74);
}

.hero.growth-active .glass-core {
  transform: translateX(5%) scale(1.04) rotateX(-28deg) rotateY(58deg) rotateZ(8deg);
  filter:
    drop-shadow(0 34px 80px rgba(0, 10, 34, 0.7))
    drop-shadow(0 0 70px rgba(56,189,248,0.46));
}

.hero.growth-active .hero-waves span {
  animation-duration: 2.6s;
  border-color: rgba(114, 215, 255, 0.34);
}

.hero.growth-active .hero-bubble {
  border-color: rgba(114, 215, 255, 0.48);
  box-shadow: 0 20px 90px rgba(56,189,248,0.22);
}

.chart-glow, .chart-line, .line-draw, .pipe-guide, .pipe-line, .big-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-glow {
  stroke: rgba(114,215,255,0.18);
  stroke-width: 13;
}

.chart-line, .line-draw, .pipe-line, .big-line {
  stroke: var(--cyan);
  stroke-width: 3.5;
  filter: drop-shadow(0 0 14px rgba(114,215,255,0.65));
}

.line-draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1100ms cubic-bezier(.2,.8,.2,1);
}

.hero.growth-active .line-draw,
.in-view .line-draw,
.line-draw.in-view,
.final-cta.growth-active .line-draw {
  stroke-dashoffset: 0;
}

.hero-copy {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 4;
  display: grid;
  justify-items: start;
  max-width: 720px;
  margin-top: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 {
  margin: 0;
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 7vw, 7.2rem); }

#hero-title {
  line-height: 1;
  padding-bottom: 0.04em;
  overflow: visible;
}

#hero-title .aurora-text {
  display: inline-block;
  line-height: 1.18;
  padding: 0 0.015em 0.18em;
  margin: -0.04em 0 -0.18em;
  vertical-align: -0.045em;
  overflow: visible;
}

.hero-copy p:not(.eyebrow) {
  max-width: 700px;
  margin: 0.85rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.3rem);
}

.hero-copy small {
  margin-top: 0.75rem;
  color: var(--muted);
}

.hero-cta-row,
.section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.section-actions {
  justify-content: center;
  max-width: 1180px;
  margin: clamp(1.5rem, 4vw, 2.8rem) auto 0;
}

.primary-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0 1.35rem;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(114,215,255,0.95), rgba(244,216,166,0.9));
  color: #03101d;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 20px 70px rgba(56,189,248,0.34);
  cursor: pointer;
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent 42%, rgba(255,255,255,0.28));
  opacity: 0;
  transform: translateX(-60%);
  transition: transform 500ms ease, opacity 260ms ease;
}

.primary-cta span { position: relative; z-index: 1; }
.primary-cta:hover, .primary-cta:focus-visible { transform: translateY(-2px); }
.primary-cta:hover::before, .primary-cta:focus-visible::before { opacity: 1; transform: translateX(60%); }

.arrow-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  min-width: clamp(13.5rem, 20vw, 17.5rem);
  height: 3.15rem;
  border: 0.18em solid #3654ff;
  border-radius: 11px;
  padding: 0 1.1rem 0 3.65rem;
  overflow: hidden;
  background-color: transparent;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.02em;
  text-align: right;
  text-decoration: none;
  box-shadow: 0 18px 54px rgba(54, 84, 255, 0.18), inset 0 0 28px rgba(114,215,255,0.045);
  backdrop-filter: blur(18px);
  transition: color 0.6s ease, background-color 0.6s ease, border-color 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
}

.arrow-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.15), transparent 44%, rgba(114,215,255,0.12)),
    radial-gradient(circle at 12% 50%, rgba(54,84,255,0.28), transparent 42%);
  opacity: 0.82;
  pointer-events: none;
}

.arrow-cta svg {
  position: absolute;
  left: 0.95rem;
  z-index: 1;
  width: 1.6em;
  height: 1.6em;
  margin: 0;
  display: block;
  transition: transform 0.6s ease;
}

.arrow-cta-text {
  position: relative;
  z-index: 1;
  margin: 0 0 0 1.5em;
}

.arrow-cta:hover,
.arrow-cta:focus-visible {
  background-color: #3654ff;
  border-color: #5d74ff;
  color: #fff;
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 24px 74px rgba(54, 84, 255, 0.32), 0 0 42px rgba(114,215,255,0.18);
}

.arrow-cta:hover svg,
.arrow-cta:focus-visible svg {
  transform: translateX(5px);
}

.arrow-cta:focus-visible {
  outline: 2px solid rgba(114,215,255,0.72);
  outline-offset: 4px;
}

[data-theme="light"] .arrow-cta {
  background-color: rgba(255,255,255,0.36);
  color: #07111f;
  box-shadow: 0 18px 44px rgba(54, 84, 255, 0.13), inset 0 0 22px rgba(0,119,182,0.05);
}

[data-theme="light"] .arrow-cta:hover,
[data-theme="light"] .arrow-cta:focus-visible {
  color: #fff;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1.15rem;
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
  backdrop-filter: blur(18px);
}

.secondary-cta:hover,
.secondary-cta:focus-visible {
  border-color: rgba(114,215,255,0.62);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(56,189,248,0.16);
}

.service-card h3 a,
.detail-card h3 a {
  color: inherit;
  text-decoration: none;
}

.service-card h3 a:hover,
.service-card h3 a:focus-visible,
.detail-card h3 a:hover,
.detail-card h3 a:focus-visible {
  color: var(--cyan);
}

[data-theme="light"] .secondary-cta {
  background: rgba(255,255,255,0.66);
}

.section, .final-cta {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9.75rem clamp(1rem, 5vw, 5rem) 4rem;
  isolation: isolate;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.22rem);
}

.page-visual {
  position: relative;
  min-height: 28rem;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.page-hero .hero-waves {
  width: min(48vw, 34rem);
  height: min(48vw, 34rem);
  transform: none;
}

.page-hero .glass-core {
  --cube-size: clamp(7rem, 14vw, 9.5rem);
  transform: rotateX(-24deg) rotateY(38deg) rotateZ(5deg);
}

.page-hero.growth-active .glass-core {
  transform: scale(1.04) rotateX(-28deg) rotateY(58deg) rotateZ(8deg);
}

.page-hero.growth-active .hero-waves span {
  animation-duration: 2.6s;
  border-color: rgba(114, 215, 255, 0.34);
}

.page-hero.growth-active .hero-bubble {
  border-color: rgba(114, 215, 255, 0.48);
  box-shadow: 0 20px 90px rgba(56,189,248,0.22);
}

.seo-hero {
  position: relative;
  min-height: 82svh;
  padding: 9.75rem clamp(1rem, 5vw, 5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 68% 44%, #000 0%, transparent 72%);
}

[data-theme="light"] .seo-hero::before {
  background:
    linear-gradient(rgba(7,17,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,0.04) 1px, transparent 1px);
}

.seo-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.seo-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.85vw, 1.22rem);
}

.local-serp {
  position: relative;
  min-height: clamp(34rem, 46vw, 40rem);
  perspective: 1100px;
}

.local-serp::before,
.local-serp::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.local-serp::before {
  inset: 7% -7% 12% 12%;
  background: radial-gradient(circle, rgba(114,215,255,0.24), transparent 66%);
  filter: blur(34px);
  opacity: 0.85;
}

.local-serp::after {
  left: 7%;
  right: 6%;
  bottom: 5%;
  height: 18%;
  background: radial-gradient(circle, rgba(244,216,166,0.18), transparent 72%);
  filter: blur(26px);
  transform: rotateX(72deg);
}

.serp-browser {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    radial-gradient(circle at 28% 0%, rgba(114,215,255,0.18), transparent 38%),
    radial-gradient(circle at 92% 10%, rgba(244,216,166,0.11), transparent 30%);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 0 54px rgba(114,215,255,0.06);
  backdrop-filter: blur(24px);
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg);
  transform-style: preserve-3d;
}

.serp-search {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.2);
  box-shadow: inset 0 0 28px rgba(114,215,255,0.06);
}

.serp-search span {
  color: var(--cyan);
  font-weight: 860;
  letter-spacing: -0.05em;
}

.serp-search b {
  color: var(--ink);
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  font-weight: 760;
}

.serp-map-pack,
.serp-result,
.seo-system-card,
.intent-card,
.seo-timeline article {
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    radial-gradient(circle at 18% 0%, rgba(114,215,255,0.12), transparent 44%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.serp-map-pack {
  display: grid;
  gap: 0.55rem;
  border-radius: 22px;
  padding: 0.9rem;
}

.serp-map-pack p {
  margin: 0 0 0.15rem;
  color: var(--warm);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.serp-map-pack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-radius: 14px;
  padding: 0.62rem 0.7rem;
  background: rgba(255,255,255,0.045);
}

.serp-map-pack strong {
  font-size: 0.88rem;
}

.serp-map-pack small {
  color: var(--muted);
}

.serp-results {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.serp-result {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  align-items: start;
  border-radius: 20px;
  padding: 0.85rem;
  transition: border-color 350ms ease, box-shadow 350ms ease, opacity 350ms ease;
}

.serp-result span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(114,215,255,0.22);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 840;
}

.serp-result h3,
.serp-result p {
  margin: 0;
}

.serp-result p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.serp-result.featured {
  border-color: rgba(114,215,255,0.58);
  box-shadow:
    0 0 52px rgba(114,215,255,0.18),
    0 0 22px rgba(244,216,166,0.12),
    inset 0 0 28px rgba(114,215,255,0.11);
}

.seo-proof .glass-card {
  min-height: 100%;
}

.seo-system-grid,
.intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intent-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-system-card,
.intent-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
}

.seo-system-card::after,
.intent-card::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1rem;
  background: radial-gradient(circle, rgba(114,215,255,0.28), transparent 66%);
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.seo-system-card span,
.seo-timeline span {
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
}

.seo-system-card h3,
.intent-card h3,
.seo-timeline h3 {
  margin: 0.6rem 0 0;
  letter-spacing: -0.04em;
}

.seo-system-card p,
.intent-card p,
.seo-timeline p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.intent-card b {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.seo-timeline article {
  position: relative;
  border-radius: 22px;
  padding: clamp(1rem, 1.7vw, 1.25rem);
}

.seo-timeline article::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: -1rem;
  top: 1.55rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(114,215,255,0.48), transparent);
  pointer-events: none;
}

.seo-timeline article:last-child::before {
  display: none;
}

[data-theme="light"] .serp-browser,
[data-theme="light"] .serp-map-pack,
[data-theme="light"] .serp-result,
[data-theme="light"] .seo-system-card,
[data-theme="light"] .intent-card,
[data-theme="light"] .seo-timeline article {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.58)),
    radial-gradient(circle at 18% 0%, rgba(0,119,182,0.11), transparent 44%);
}

[data-theme="light"] .serp-search {
  background: rgba(255,255,255,0.66);
}

.service-hero {
  position: relative;
  min-height: 82svh;
  padding: 9.75rem clamp(1rem, 5vw, 5rem) 5rem;
  overflow: hidden;
  isolation: isolate;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at 70% 44%, #000 0%, transparent 72%);
}

[data-theme="light"] .service-hero::before {
  background:
    linear-gradient(rgba(7,17,31,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,0.04) 1px, transparent 1px);
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
}

.service-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 1.2rem 0 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.85vw, 1.22rem);
}

.service-mock {
  position: relative;
  min-height: clamp(32rem, 44vw, 39rem);
  perspective: 1100px;
}

.service-mock::before,
.service-mock::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.service-mock::before {
  inset: 5% -8% 14% 12%;
  background: radial-gradient(circle, rgba(114,215,255,0.24), transparent 66%);
  filter: blur(34px);
  opacity: 0.86;
}

.service-mock::after {
  left: 8%;
  right: 6%;
  bottom: 6%;
  height: 18%;
  background: radial-gradient(circle, rgba(244,216,166,0.18), transparent 72%);
  filter: blur(26px);
  transform: rotateX(72deg);
}

.creative-board {
  display: grid;
  place-items: center;
}

.creative-card,
.landing-frame,
.landing-score {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    radial-gradient(circle at 20% 0%, rgba(114,215,255,0.17), transparent 42%);
  box-shadow:
    0 34px 110px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 0 42px rgba(114,215,255,0.06);
  backdrop-filter: blur(24px);
}

.creative-card {
  display: grid;
  gap: 0.5rem;
  width: min(72vw, 18rem);
  padding: 1.25rem;
  transform-style: preserve-3d;
}

.creative-card-main {
  left: 50%;
  top: 50%;
  width: min(78vw, 24rem);
  min-height: 14rem;
  place-content: end;
  transform: translate(-50%, -50%) rotateX(8deg) rotateY(-12deg) translateZ(3rem);
}

.creative-card:nth-child(2) {
  left: 2%;
  top: 12%;
  transform: rotateX(8deg) rotateY(10deg) rotateZ(-4deg);
}

.creative-card:nth-child(3) {
  right: 0;
  top: 26%;
  transform: rotateX(8deg) rotateY(-18deg) rotateZ(5deg);
}

.creative-card:nth-child(4) {
  left: 17%;
  bottom: 9%;
  transform: rotateX(8deg) rotateY(16deg) rotateZ(3deg);
}

.creative-card span,
.landing-pill,
.landing-score span {
  color: var(--warm);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.creative-card strong,
.landing-frame strong,
.landing-score strong {
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.creative-card small,
.landing-frame p {
  color: var(--muted);
}

.landing-mock {
  display: grid;
  place-items: center;
}

.landing-frame {
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(82vw, 28rem);
  min-height: 24rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  transform: translate(-50%, -50%) rotateX(6deg) rotateY(-10deg) rotateZ(1deg);
}

.landing-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.landing-proof-row span,
.landing-form-lines i {
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  box-shadow: inset 0 0 22px rgba(114,215,255,0.08);
}

.landing-proof-row span {
  min-height: 4.2rem;
}

.landing-form-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.landing-form-lines i {
  height: 2.7rem;
}

.landing-form-lines button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(114,215,255,0.86), rgba(54,84,255,0.82));
  color: #06111f;
  font-weight: 860;
}

.landing-score {
  right: 2%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  min-width: 13rem;
  padding: 1.1rem;
  transform: rotateX(9deg) rotateY(-18deg) translateZ(4rem);
}

[data-theme="light"] .creative-card,
[data-theme="light"] .landing-frame,
[data-theme="light"] .landing-score {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.58)),
    radial-gradient(circle at 20% 0%, rgba(0,119,182,0.12), transparent 42%);
  box-shadow:
    0 34px 90px rgba(16,40,76,0.16),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 0 42px rgba(0,119,182,0.07);
}

.crm-stack {
  display: grid;
  place-items: center;
}

.crm-panel {
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(82vw, 31rem);
  min-height: 24rem;
  padding: clamp(1.2rem, 2.4vw, 2rem);
  transform: translate(-50%, -50%) rotateX(7deg) rotateY(-10deg) rotateZ(1deg);
}

.crm-panel-top,
.crm-system-row,
.crm-flow-row {
  display: grid;
  gap: 0.7rem;
}

.crm-panel-top {
  grid-template-columns: 1.2fr 0.8fr;
}

.crm-chip,
.crm-module,
.crm-status,
.crm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1rem;
  background: rgba(255,255,255,0.06);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 760;
  box-shadow: inset 0 0 24px rgba(114,215,255,0.08);
}

.crm-chip {
  justify-content: flex-start;
}

.crm-chip strong,
.crm-status strong {
  color: var(--cyan);
}

.crm-system-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.crm-module {
  flex-direction: column;
  align-items: flex-start;
  min-height: 5.6rem;
  gap: 0.35rem;
  border-radius: 1.15rem;
}

.crm-module span {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crm-module strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.crm-flow-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.crm-badge {
  min-height: 3.2rem;
  border-radius: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crm-flow-line {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(114,215,255,0.15), rgba(114,215,255,0.76), rgba(54,84,255,0.18));
  box-shadow: 0 0 16px rgba(114,215,255,0.24);
}

.crm-status {
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 1.15rem;
}

.crm-status small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.crm-score {
  right: 1%;
  bottom: 8%;
  z-index: 3;
  display: grid;
  gap: 0.35rem;
  min-width: 14rem;
  padding: 1.1rem;
  transform: rotateX(9deg) rotateY(-18deg) translateZ(4rem);
}

[data-theme="light"] .crm-panel,
[data-theme="light"] .crm-score {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.58)),
    radial-gradient(circle at 20% 0%, rgba(0,119,182,0.12), transparent 42%);
  box-shadow:
    0 34px 90px rgba(16,40,76,0.16),
    inset 0 1px 0 rgba(255,255,255,0.72),
    inset 0 0 42px rgba(0,119,182,0.07);
}

.trust-strip {
  display: grid;
  gap: 1.2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--strip-bg);
  text-align: center;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.trust-strip span {
  min-width: 8rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.035);
  color: rgba(242,247,255,0.58);
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-theme="light"] .trust-strip span {
  border-color: rgba(7, 17, 31, 0.10);
  background: rgba(255,255,255,0.72);
  color: rgba(7, 17, 31, 0.58);
}

.proof-section {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
  overflow: hidden;
}

.proof-section::before {
  content: "";
  position: absolute;
  inset: 12% 4%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(114,215,255,0.12), transparent 66%);
  filter: blur(20px);
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5.4vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.proof-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.benefit-list article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.benefit-list span,
.kpi-3d-card span {
  color: var(--warm);
  font-size: 0.6rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-list h3 {
  margin: 0.65rem 0 0;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.benefit-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.kpi-orbit {
  position: relative;
  min-height: clamp(24rem, 50vw, 38rem);
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.kpi-stage {
  position: relative;
  width: min(82vw, 32rem);
  height: min(82vw, 32rem);
  transform-style: preserve-3d;
  animation: kpiSpin 16s linear infinite;
}

.kpi-3d-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 0.35rem;
  width: clamp(11rem, 22vw, 14rem);
  min-height: 8.6rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 1.15rem;
  background: var(--panel-bg);
  box-shadow: var(--shadow), inset 0 0 28px rgba(114,215,255,0.08);
  backdrop-filter: blur(24px);
  transform-style: preserve-3d;
}

.kpi-3d-card::after {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border-radius: 18px;
  border: 1px solid rgba(114,215,255,0.14);
  pointer-events: none;
}

.kpi-3d-card strong {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}

.kpi-card-b strong {
  font-size: clamp(2.15rem, 5.2vw, 3.7rem);
  line-height: 0.9;
}

.kpi-3d-card small {
  color: var(--muted);
}

.kpi-card-a {
  --kpi-transform: translate(-50%, -50%) rotateY(0deg) translateZ(14rem);
  transform: var(--kpi-transform);
}

.kpi-card-b {
  --kpi-transform: translate(-50%, -50%) rotateY(90deg) translateZ(14rem);
  transform: var(--kpi-transform);
}

.kpi-card-c {
  --kpi-transform: translate(-50%, -50%) rotateY(180deg) translateZ(14rem);
  transform: var(--kpi-transform);
}

.kpi-card-d {
  --kpi-transform: translate(-50%, -50%) rotateY(270deg) translateZ(14rem);
  transform: var(--kpi-transform);
}

.kpi-base-glow {
  position: absolute;
  width: min(76vw, 34rem);
  height: min(34vw, 13rem);
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,215,255,0.24), rgba(114,215,255,0.04) 45%, transparent 72%);
  filter: blur(18px);
  transform: rotateX(70deg);
}

.service-showcase {
  overflow: hidden;
  isolation: isolate;
}

.service-showcase .section-head,
.service-showcase .card-grid,
.service-showcase .section-actions {
  position: relative;
  z-index: 2;
}

.service-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.service-backdrop::before,
.service-backdrop::after {
  content: "";
  position: absolute;
  inset: 8% 5%;
  border-radius: 999px;
  pointer-events: none;
}

.service-backdrop::before {
  background:
    radial-gradient(circle at 24% 24%, rgba(114,215,255,0.13), transparent 36%),
    radial-gradient(circle at 78% 30%, rgba(244,216,166,0.10), transparent 38%);
  filter: blur(28px);
}

.service-backdrop::after {
  background: linear-gradient(145deg, rgba(2,5,11,0.42), rgba(2,5,11,0.12) 46%, rgba(2,5,11,0.46));
  backdrop-filter: blur(3px);
}

.service-bg {
  position: absolute;
  inset: -22%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(1.16) contrast(1.02);
  mix-blend-mode: screen;
  transform: scale(1.08);
  transition: opacity 420ms ease, transform 900ms ease, filter 900ms ease;
  mask-image: radial-gradient(circle at 50% 44%, rgba(0,0,0,0.82), transparent 68%);
}

.service-bg-seo {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80");
}

.service-bg-content {
  background-image: url("https://images.unsplash.com/photo-1499750310107-5fef28a66643?auto=format&fit=crop&w=1600&q=80");
}

.service-bg-conversion {
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
}

.service-showcase[data-active-service="seo"] .service-bg-seo,
.service-showcase[data-active-service="content"] .service-bg-content,
.service-showcase[data-active-service="conversion"] .service-bg-conversion {
  opacity: 0.46;
  filter: blur(12px) saturate(1.28) contrast(1.04);
  transform: scale(1);
}

[data-theme="light"] .service-backdrop::after {
  background: linear-gradient(145deg, rgba(248,252,255,0.54), rgba(248,252,255,0.20) 46%, rgba(234,243,255,0.58));
}

[data-theme="light"] .service-bg {
  mix-blend-mode: multiply;
  filter: blur(22px) saturate(1.02) contrast(0.96);
}

[data-theme="light"] .service-showcase[data-active-service="seo"] .service-bg-seo,
[data-theme="light"] .service-showcase[data-active-service="content"] .service-bg-content,
[data-theme="light"] .service-showcase[data-active-service="conversion"] .service-bg-conversion {
  opacity: 0.30;
  filter: blur(12px) saturate(1.08) contrast(0.98);
}

.section-head {
  max-width: 850px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section h2, .final-cta h2 {
  font-size: clamp(2.25rem, 5.6vw, 5.6rem);
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.section-head.left p:not(.eyebrow) { margin-left: 0; }

.card-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}

.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.glass-card, .service-card, .pipeline, .metric-card, .growth-form, .modal-panel {
  border: 1px solid rgba(255,255,255,0.11);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.glass-card {
  min-height: 18rem;
  border-radius: 24px;
  padding: 1.6rem;
}

.glass-card h3, .service-card h3, .pipeline h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.glass-card p, .service-card p, .pipeline p, .metric-card small, .metric-card p {
  color: var(--muted);
}

.mini-chart {
  width: 7.5rem;
  height: 3.4rem;
  margin-bottom: 2.2rem;
}

.service-card {
  position: relative;
  min-height: 25rem;
  border-radius: var(--radius);
  padding: 1.6rem;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover, .service-card:focus-visible {
  border-color: rgba(114,215,255,0.48);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  margin-bottom: 5rem;
  color: var(--warm);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card > svg {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.25rem;
  width: calc(100% - 3rem);
  opacity: 0.36;
  transition: opacity 250ms ease, transform 250ms ease;
  transform: translateY(0.5rem);
}

.service-card:hover > svg, .service-card:focus-visible > svg {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .line-draw, .service-card:focus-visible .line-draw {
  stroke-dashoffset: 0;
}

.seo-card > span,
.content-card > span,
.conversion-card > span {
  margin-bottom: 1.25rem;
}

.service-visual {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  height: 10.5rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(114,215,255,0.13), transparent 42%),
    rgba(0,0,0,0.12);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

[data-theme="light"] .service-visual {
  border-color: rgba(7,17,31,0.10);
  background:
    linear-gradient(rgba(7,17,31,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,31,0.035) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(0,119,182,0.12), transparent 42%),
    rgba(255,255,255,0.50);
}

.service-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
  transition: opacity 260ms ease, transform 260ms ease;
}

.service-card:hover .service-visual svg,
.service-card:focus-visible .service-visual svg {
  opacity: 1;
  transform: scale(1.035);
}

.search-map i {
  position: absolute;
  z-index: 2;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 16%, var(--cyan) 17% 58%, rgba(56,189,248,0.12) 59%);
  box-shadow: 0 0 24px rgba(114,215,255,0.58);
  animation: nodePulse 3.4s ease-in-out infinite;
}

.search-map i:nth-child(1) { left: 12%; top: 64%; }
.search-map i:nth-child(2) { left: 30%; top: 24%; animation-delay: 240ms; }
.search-map i:nth-child(3) { left: 51%; top: 42%; animation-delay: 480ms; }
.search-map i:nth-child(4) { left: 69%; top: 18%; animation-delay: 720ms; }
.search-map i:nth-child(5) { left: 84%; top: 58%; animation-delay: 960ms; }

.content-flow b {
  position: absolute;
  z-index: 2;
  min-width: 4.5rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045));
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  font-size: 0.78rem;
  text-align: center;
  animation: flowFloat 5.6s ease-in-out infinite;
}

.content-flow b:nth-child(1) { left: 10%; top: 54%; }
.content-flow b:nth-child(2) { left: 39%; top: 24%; animation-delay: 700ms; }
.content-flow b:nth-child(3) { right: 10%; top: 50%; animation-delay: 1400ms; }

.conversion-path i {
  position: absolute;
  z-index: 2;
  bottom: 18%;
  width: 18%;
  border: 1px solid rgba(114,215,255,0.28);
  border-radius: 14px 14px 6px 6px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(114,215,255,0.56), rgba(28,80,160,0.16));
  box-shadow: 0 0 28px rgba(56,189,248,0.20);
  transform: scaleY(0.55);
  transform-origin: bottom;
  animation: conversionRise 4.4s ease-in-out infinite;
}

.conversion-path i:nth-child(1) { left: 14%; height: 30%; }
.conversion-path i:nth-child(2) { left: 41%; height: 52%; animation-delay: 350ms; }
.conversion-path i:nth-child(3) { right: 14%; height: 74%; animation-delay: 700ms; }

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem 1.2rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114,215,255,0.13), transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
  pointer-events: none;
}

.content-card::after {
  background: radial-gradient(circle, rgba(244,216,166,0.13), transparent 70%);
}

.conversion-card::after {
  background: radial-gradient(circle, rgba(114,215,255,0.12), transparent 58%), radial-gradient(circle at 72% 35%, rgba(244,216,166,0.12), transparent 62%);
}

.pipeline {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 3rem);
  overflow: hidden;
}

.pipeline svg { width: 100%; min-height: 13rem; }
.pipe-guide { stroke: rgba(255,255,255,0.12); stroke-width: 2; }
.pipe-line { stroke-width: 4; }

.flow-cubes {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 47%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.flow-cubes span {
  width: clamp(2.1rem, 5vw, 3.4rem);
  height: clamp(2.1rem, 5vw, 3.4rem);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 0.55rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0.04)), linear-gradient(225deg, rgba(114,215,255,0.32), rgba(244,216,166,0.08));
  box-shadow: 0 0 45px rgba(114,215,255,0.25);
  opacity: 0.56;
  transform: rotate(45deg) scale(0.82);
  transition: opacity 260ms ease, border-color 260ms ease, box-shadow 260ms ease, background 260ms ease, transform 260ms ease;
}

.pipeline.in-view .flow-cubes span { animation: cubePulse 1600ms ease both; }
.pipeline.in-view .flow-cubes span:nth-child(2) { animation-delay: 180ms; }
.pipeline.in-view .flow-cubes span:nth-child(3) { animation-delay: 360ms; }
.pipeline.in-view .flow-cubes span:nth-child(4) { animation-delay: 540ms; }

.pipeline[data-active-step="diagnose"] .flow-cubes span:nth-child(1),
.pipeline[data-active-step="map"] .flow-cubes span:nth-child(2),
.pipeline[data-active-step="build"] .flow-cubes span:nth-child(3),
.pipeline[data-active-step="compound"] .flow-cubes span:nth-child(4),
.pipeline[data-preview-step="diagnose"] .flow-cubes span:nth-child(1),
.pipeline[data-preview-step="map"] .flow-cubes span:nth-child(2),
.pipeline[data-preview-step="build"] .flow-cubes span:nth-child(3),
.pipeline[data-preview-step="compound"] .flow-cubes span:nth-child(4) {
  border-color: rgba(114,215,255,0.58);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.48), rgba(255,255,255,0.09)),
    linear-gradient(225deg, rgba(114,215,255,0.72), rgba(244,216,166,0.20));
  box-shadow:
    0 0 52px rgba(114,215,255,0.42),
    0 0 18px rgba(244,216,166,0.18),
    inset 0 0 18px rgba(255,255,255,0.12);
  opacity: 1;
  transform: rotate(45deg) scale(1.03);
}

.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.pipeline-step {
  position: relative;
  display: block;
  appearance: none;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 3rem 1rem 1rem;
  background: rgba(0,0,0,0.24);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.pipeline-step:hover,
.pipeline-step:focus-visible,
.pipeline-step[aria-pressed="true"] {
  border-color: rgba(114,215,255,0.42);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    rgba(0,0,0,0.28);
  box-shadow: 0 18px 54px rgba(56,189,248,0.12), inset 0 0 28px rgba(114,215,255,0.06);
  transform: translateY(-2px);
}

.pipeline-step:focus-visible {
  outline: 2px solid rgba(114,215,255,0.68);
  outline-offset: 3px;
}

[data-theme="light"] .pipeline-step {
  background: rgba(255,255,255,0.68);
}

[data-theme="light"] .pipeline-step:hover,
[data-theme="light"] .pipeline-step:focus-visible,
[data-theme="light"] .pipeline-step[aria-pressed="true"] {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.90), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.78);
}

.pipeline-step-number, .metric-card > p {
  color: var(--warm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pipeline-step-title {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pipeline-step-copy {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.pipeline-step-arrow {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 0.18rem;
  height: 0.18rem;
  color: var(--cyan);
  opacity: 0.18;
  transition: opacity 220ms ease, transform 220ms ease;
}

.pipeline-step:hover .pipeline-step-arrow,
.pipeline-step:focus-visible .pipeline-step-arrow,
.pipeline-step[aria-pressed="true"] .pipeline-step-arrow {
  opacity: 0.32;
  transform: none;
}

.process-detail-panel {
  margin-top: 1rem;
  border: 1px solid rgba(114,215,255,0.18);
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    radial-gradient(circle at 12% 0%, rgba(114,215,255,0.13), transparent 34%);
  box-shadow: inset 0 0 34px rgba(114,215,255,0.055);
  backdrop-filter: blur(18px);
}

.process-detail-panel h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.process-detail-panel p {
  max-width: 850px;
  margin: 0.55rem 0 0;
  color: var(--muted);
}

[data-theme="light"] .process-detail-panel {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.58)),
    radial-gradient(circle at 12% 0%, rgba(0,119,182,0.11), transparent 34%);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.metric-card {
  min-height: 22rem;
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow: hidden;
}

.metric-card strong {
  display: block;
  margin: 1.7rem 0 1rem;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.cube-bars {
  display: flex;
  align-items: end;
  gap: 0.7rem;
  height: 8rem;
  margin-bottom: 2rem;
}

.cube-bars span {
  width: 3.1rem;
  height: var(--h);
  min-height: 2rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0.7rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0.04)), linear-gradient(180deg, rgba(114,215,255,0.30), rgba(16,40,76,0.10));
  box-shadow: 0 18px 50px rgba(56,189,248,0.16);
  transform: skewY(-6deg) scaleY(0.18);
  transform-origin: bottom;
  transition: transform 900ms cubic-bezier(.2,.8,.2,1);
}

.metric-card.in-view .cube-bars span { transform: skewY(-6deg) scaleY(1); }
.metric-card svg { width: 100%; margin: 1.2rem 0; }
.chart-area { fill: rgba(56,189,248,0.08); }
.big-line { stroke-width: 4; }

.story-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 5vw, 3rem);
}

.story {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.story span {
  display: grid;
  place-items: center;
  width: clamp(5.5rem, 12vw, 8.5rem);
  height: clamp(5.5rem, 12vw, 8.5rem);
  border: 2px solid rgba(244,216,166,0.66);
  border-radius: 50%;
  background: radial-gradient(circle at 28% 18%, rgba(255,255,255,0.28), transparent 34%), linear-gradient(145deg, rgba(56,189,248,0.26), rgba(244,216,166,0.16));
  box-shadow: 0 0 0 7px rgba(244,216,166,0.08), 0 20px 70px rgba(0,0,0,0.42);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 850;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

[data-theme="light"] .story span {
  border-color: rgba(138, 90, 20, 0.48);
  box-shadow: 0 0 0 7px rgba(244,216,166,0.22), 0 20px 70px rgba(16,40,76,0.18);
}

.story:hover span, .story:focus-visible span {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 0 0 8px rgba(114,215,255,0.12), 0 20px 80px rgba(56,189,248,0.25);
}

.story b { color: var(--muted); }

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 90svh;
  background: radial-gradient(circle at 15% 55%, rgba(56,189,248,0.18), transparent 26rem), radial-gradient(circle at 88% 28%, rgba(244,216,166,0.10), transparent 24rem);
}

.final-visual {
  position: relative;
  min-height: 24rem;
}

.final-cubes {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16rem;
  height: 18rem;
  transform: translate(-50%, -50%);
}

.final-cubes span {
  position: absolute;
  width: 5.2rem;
  height: 5.2rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.04)), linear-gradient(225deg, rgba(114,215,255,0.34), rgba(244,216,166,0.08));
  box-shadow: 0 20px 80px rgba(56,189,248,0.18);
  transform: rotate(45deg);
  transition: transform 550ms ease;
}

.final-cubes span:nth-child(1) { left: 2rem; bottom: 1rem; }
.final-cubes span:nth-child(2) { left: 6rem; bottom: 4rem; }
.final-cubes span:nth-child(3) { left: 3.8rem; bottom: 7.3rem; }
.final-cubes span:nth-child(4) { left: 8rem; bottom: 10.4rem; }
.final-cta.growth-active .final-cubes span:nth-child(2) { transform: rotate(45deg) translate(-0.4rem, -0.8rem); }
.final-cta.growth-active .final-cubes span:nth-child(3) { transform: rotate(45deg) translate(0.3rem, -1.2rem); }
.final-cta.growth-active .final-cubes span:nth-child(4) { transform: rotate(45deg) translate(0.7rem, -1.6rem); }

.final-visual svg {
  position: absolute;
  left: 45%;
  top: 28%;
  width: min(90%, 28rem);
  opacity: 0.62;
}

.growth-form {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.growth-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.growth-form input, .growth-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--field-bg);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
  resize: vertical;
}

.growth-form input:focus, .growth-form textarea:focus {
  border-color: rgba(114,215,255,0.72);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.14);
}

.growth-form .primary-cta { width: fit-content; }
.form-status { min-height: 1.5rem; margin: 0; color: var(--warm); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: var(--modal-bg);
  backdrop-filter: blur(20px);
}

.modal-panel {
  position: relative;
  width: min(100%, 980px);
  min-height: min(760px, 86svh);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 4vw, 2rem);
  overflow: hidden;
}

.audit-modal-panel {
  width: min(100%, 560px);
  min-height: auto;
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
    radial-gradient(circle at 16% 0%, rgba(114,215,255,0.18), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(244,216,166,0.10), transparent 36%);
}

.audit-modal-copy {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.audit-modal-copy strong {
  color: var(--ink);
}

.audit-email-form {
  display: grid;
  gap: 1rem;
  margin-top: 0.35rem;
}

.audit-email-form label,
.bottom-contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.audit-email-form input,
.bottom-contact-form input,
.bottom-contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--field-bg);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
}

.audit-email-form input:focus,
.bottom-contact-form input:focus,
.bottom-contact-form select:focus {
  border-color: rgba(114,215,255,0.72);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.14);
}

.audit-email-form .primary-cta {
  width: fit-content;
}

.bottom-contact-form {
  width: min(100%, 760px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04)),
    radial-gradient(circle at 16% 0%, rgba(114,215,255,0.16), transparent 44%);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(22px);
}

.bottom-contact-form > p:first-child {
  margin: 0 0 0.9rem;
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bottom-contact-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.75fr) auto;
  gap: 0.75rem;
  align-items: center;
}

.bottom-contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.7rem) 50%;
  background-size: 0.36rem 0.36rem, 0.36rem 0.36rem;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

[data-theme="light"] .bottom-contact-form {
  border-color: rgba(7,17,31,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.58)),
    radial-gradient(circle at 16% 0%, rgba(0,119,182,0.12), transparent 44%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: var(--field-bg);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
}

.video-placeholder {
  display: grid;
  place-items: center;
  min-height: 22rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  margin-bottom: 1.7rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)), radial-gradient(circle at 50% 50%, rgba(114,215,255,0.16), transparent 50%);
  color: var(--muted);
}

[data-theme="light"] .video-placeholder {
  border-color: rgba(7,17,31,0.10);
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.42)), radial-gradient(circle at 50% 50%, rgba(0,119,182,0.14), transparent 50%);
}

.video-placeholder b {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin-top: 1rem;
  background: rgba(244,216,166,0.16);
  color: var(--warm);
}

.modal-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.modal-panel blockquote {
  margin: 1.4rem 0 0;
  max-width: 760px;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
}

.site-footer p { margin: 0; }
.site-footer a { color: var(--ink); text-decoration: none; }

.quote-grid,
.bio-grid,
.principles-grid,
.detail-grid,
.comparison-grid,
.stats-strip,
.proof-stack,
.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quote-card,
.detail-card,
.comparison-card,
.bio-card,
.stat-chip,
.cta-panel {
  border: 1px solid rgba(255,255,255,0.11);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.quote-card {
  border-radius: 24px;
  padding: 1.5rem;
}

.quote-card p {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.45;
}

.quote-card strong,
.bio-role,
.footer-note {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  gap: 1rem;
}

.detail-card,
.comparison-card,
.bio-card {
  border-radius: 28px;
  padding: 1.6rem;
}

.detail-number {
  color: var(--warm);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card h3,
.comparison-card h3,
.bio-card h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.detail-card > p,
.comparison-card > p,
.bio-card > p {
  color: var(--muted);
}

.deliverable-list {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink);
}

.deliverable-list li + li {
  margin-top: 0.55rem;
}

.muted-list li {
  color: var(--muted);
}

.detail-meta {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.detail-meta strong {
  display: block;
  font-size: 0.92rem;
}

.detail-meta p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.left-actions {
  justify-content: flex-start;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bio-grid,
.principles-grid,
.stats-strip {
  display: grid;
  gap: 1rem;
}

.bio-grid,
.comparison-grid,
.contact-layout {
  align-items: start;
}

.bio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bio-mark {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(244,216,166,0.46);
  background: radial-gradient(circle at 28% 18%, rgba(255,255,255,0.28), transparent 34%), linear-gradient(145deg, rgba(56,189,248,0.26), rgba(244,216,166,0.16));
  font-size: 1.6rem;
  font-weight: 850;
}

.principles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-chip {
  border-radius: 22px;
  padding: 1.35rem;
}

.stat-chip span {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.stat-chip small {
  color: var(--muted);
}

.proof-stack {
  display: grid;
  gap: 1rem;
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  padding: 1.5rem;
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.proof-row h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.proof-row p {
  color: var(--muted);
}

.proof-meta {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.proof-meta strong {
  display: block;
  font-size: 0.92rem;
}

.results-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 1.04fr);
}

.results-report-visual {
  position: relative;
  min-height: clamp(26rem, 42vw, 38rem);
  perspective: 1200px;
}

.report-stack {
  position: absolute;
  inset: 6% 0 0;
  transform-style: preserve-3d;
  transform: rotateX(9deg) rotateY(-13deg) rotateZ(1deg);
}

.report-sheet {
  position: absolute;
  inset: 8% 5% 4%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.035)),
    radial-gradient(circle at 20% 4%, rgba(114,215,255,0.20), transparent 36%),
    rgba(5,13,25,0.68);
  box-shadow:
    0 42px 120px rgba(0,0,0,0.46),
    inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(26px);
}

.report-sheet-back {
  transform: translate3d(-1.5rem, 1.8rem, -110px) rotateZ(-5deg);
  opacity: 0.48;
}

.report-sheet-mid {
  transform: translate3d(1.1rem, 0.8rem, -52px) rotateZ(4deg);
  opacity: 0.64;
}

.report-sheet-front {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  transform: translateZ(24px);
  animation: reportFloat 8s ease-in-out infinite;
}

.report-topline,
.case-card-top,
.report-proof-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.report-topline span,
.case-category,
.verification-tag,
.case-step,
.case-back-link {
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.report-topline strong {
  color: var(--cyan);
  font-size: 0.88rem;
}

.report-media-strip {
  min-height: clamp(7rem, 14vw, 11rem);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(2,5,11,0.10), rgba(2,5,11,0.74)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1400&q=80") center / cover;
  box-shadow: inset 0 0 60px rgba(114,215,255,0.12);
  overflow: hidden;
}

.report-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.report-kpi-row span,
.case-kpi-list div {
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  padding: 0.82rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.report-kpi-row b,
.case-kpi-list dd {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.report-kpi-row small,
.case-kpi-list small,
.case-note {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.report-line-chart {
  width: 100%;
  min-height: 8rem;
}

.report-proof-badges span {
  flex: 1;
  border: 1px solid rgba(114,215,255,0.16);
  border-radius: 999px;
  padding: 0.62rem 0.8rem;
  background: rgba(114,215,255,0.055);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-align: center;
}

.results-proof-note .stat-chip span {
  color: var(--ink);
}

.case-summary-grid,
.case-framework-grid,
.case-gallery,
.case-timeline {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 1rem;
}

.case-summary-grid,
.case-framework-grid,
.case-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-summary-card {
  min-height: 100%;
}

.case-summary-card a,
.case-report-card,
.case-report-section,
.case-fact-panel,
.case-media-panel,
.case-timeline article {
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.11);
  background: var(--panel-bg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.case-summary-card a {
  min-height: 34rem;
  align-content: start;
  gap: 1.05rem;
  border-radius: 32px;
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.case-summary-card a:hover,
.case-summary-card a:focus-visible {
  border-color: rgba(114,215,255,0.36);
  box-shadow: 0 34px 110px rgba(0,0,0,0.42), 0 0 70px rgba(56,189,248,0.12);
  outline: none;
  transform: translateY(-0.35rem);
}

.case-media-bg {
  position: absolute;
  inset: -12%;
  z-index: -2;
  background:
    linear-gradient(145deg, rgba(2,5,11,0.10), rgba(2,5,11,0.84)),
    var(--case-media) center / cover;
  filter: blur(16px) saturate(1.25);
  opacity: 0.34;
  transform: scale(1.08);
}

.case-summary-card a::after,
.case-report-hero::after,
.case-media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, rgba(114,215,255,0.16), transparent 36%),
    linear-gradient(180deg, rgba(2,5,11,0.04), rgba(2,5,11,0.38));
  pointer-events: none;
}

.verification-tag {
  border: 1px solid rgba(244,216,166,0.24);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(244,216,166,0.07);
  color: rgba(244,216,166,0.92);
  letter-spacing: 0.08em;
}

.case-summary-card h3,
.case-report-section h2,
.case-report-card h2,
.case-fact-panel h3,
.case-media-panel strong,
.case-timeline h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.045em;
}

.case-summary-card h3 {
  margin-top: clamp(6rem, 14vw, 10rem);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.case-summary-card p,
.case-report-section p,
.case-fact-panel li,
.case-timeline p {
  color: var(--muted);
}

.case-kpi-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 0;
}

.case-kpi-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-link-text {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cyan);
  font-weight: 850;
}

.case-summary-card a:hover .case-link-text span,
.case-summary-card a:focus-visible .case-link-text span {
  transform: translateX(0.22rem);
}

.case-report-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 92svh;
  padding: 10rem clamp(1rem, 5vw, 5rem) 5rem;
}

.case-report-hero > .case-media-bg {
  inset: 0;
  filter: blur(26px) saturate(1.16);
  opacity: 0.20;
  transform: scale(1.08);
}

.case-report-hero-grid,
.case-report-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
}

.case-report-layout.reverse {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
}

.case-report-layout.reverse .case-report-section {
  order: 2;
}

.case-report-copy {
  max-width: 780px;
}

.case-report-copy h1 {
  margin: 0.85rem 0 1rem;
  font-size: clamp(2.7rem, 6.4vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.case-report-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.75vw, 1.22rem);
}

.case-back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--cyan);
  text-decoration: none;
}

.case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.case-report-card {
  gap: 1rem;
  border-radius: 32px;
  padding: clamp(1.2rem, 3vw, 1.65rem);
}

.case-report-card h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1;
}

.case-kpi-large dd {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.case-note {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.case-report-section,
.case-fact-panel {
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.case-report-section h2 {
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 0.98;
}

.case-fact-panel {
  gap: 1rem;
}

.case-fact-panel ul {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding-left: 1.1rem;
}

.case-media-panel {
  min-height: 23rem;
  place-items: end start;
  border-radius: 32px;
  padding: 1.35rem;
}

.case-media-panel .case-media-bg {
  filter: blur(8px) saturate(1.16);
  opacity: 0.62;
}

.case-media-panel strong {
  position: relative;
  z-index: 2;
  max-width: 22rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  background: rgba(2,5,11,0.44);
  font-size: 0.94rem;
  line-height: 1.3;
  backdrop-filter: blur(16px);
}

.case-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-timeline article {
  align-content: start;
  min-height: 16rem;
  border-radius: 26px;
  padding: 1.25rem;
}

.case-timeline span,
.case-step {
  color: var(--cyan);
}

.case-timeline h3 {
  margin-top: 2.8rem;
  font-size: 1.25rem;
}

.case-gallery .case-media-panel {
  min-height: 18rem;
}

.case-quote-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.case-quote-grid .quote-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.case-quote-grid .quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(114,215,255,0.14), transparent 38%),
    radial-gradient(circle at 90% 100%, rgba(244,216,166,0.10), transparent 42%);
  pointer-events: none;
}

.case-quote-grid .quote-card > * {
  position: relative;
  z-index: 1;
}

[data-theme="light"] .report-sheet,
[data-theme="light"] .case-summary-card a,
[data-theme="light"] .case-report-card,
[data-theme="light"] .case-report-section,
[data-theme="light"] .case-fact-panel,
[data-theme="light"] .case-media-panel,
[data-theme="light"] .case-timeline article {
  border-color: rgba(7,17,31,0.11);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.54)),
    rgba(255,255,255,0.62);
}

[data-theme="light"] .case-media-bg {
  opacity: 0.26;
  filter: blur(14px) saturate(1.04);
}

[data-theme="light"] .case-media-panel .case-media-bg {
  opacity: 0.42;
}

[data-theme="light"] .case-media-panel strong {
  border-color: rgba(7,17,31,0.12);
  background: rgba(255,255,255,0.66);
}

@keyframes reportFloat {
  0%, 100% { transform: translateZ(24px) translateY(0); }
  50% { transform: translateZ(24px) translateY(-0.55rem); }
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.contact-top {
  padding-top: clamp(8.7rem, 12vw, 11.2rem);
}

.contact-top .section-head h1 {
  font-size: clamp(2.6rem, 6vw, 5.9rem);
}

.contact-options {
  display: grid;
  gap: 1rem;
}

.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--field-bg);
  color: var(--ink);
  padding: 0.95rem 1rem;
  outline: none;
}

.contact-form select:focus {
  border-color: rgba(114,215,255,0.72);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.14);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  max-width: 1180px;
  margin: 0 auto clamp(5rem, 8vw, 7rem);
  border-radius: 32px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.cta-panel-copy h2 {
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin: 0;
}

.cta-panel-copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 760px;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.contact-form-actions {
  width: min(100%, 760px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.65fr));
  gap: 1.5rem;
  width: 100%;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-brand {
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view, .in-view.reveal {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@keyframes auroraShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(var(--drift-x), -120vh, 0) scale(1.25); }
}

@keyframes wavePulse {
  0%, 100% {
    opacity: 0.42;
    transform: scale(0.86) rotate(0deg);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.08) rotate(8deg);
  }
}

@keyframes bubbleFloat {
  0%, 100% { margin-top: -0.35rem; }
  50% { margin-top: 0.55rem; }
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translate(-50%, -53%) rotate(-3deg);
  }
  50% {
    transform: translate(-50%, -47%) rotate(-1deg);
  }
}

@keyframes dashboardFloat {
  0%, 100% {
    translate: 0 -0.45rem;
  }
  50% {
    translate: 0 0.45rem;
  }
}

@keyframes barGrow {
  from {
    opacity: 0;
    transform: scaleY(0.04);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes nodePulse {
  0%, 100% {
    opacity: 0.62;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes flowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.55rem);
  }
}

@keyframes conversionRise {
  0%, 100% {
    opacity: 0.72;
    transform: scaleY(0.62);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes cubeFloat {
  0%, 100% {
    transform: translateX(5%) translateY(-0.55rem) rotateX(-24deg) rotateY(38deg) rotateZ(5deg);
  }
  50% {
    transform: translateX(5%) translateY(0.55rem) rotateX(-20deg) rotateY(32deg) rotateZ(3deg);
  }
}

@keyframes cubePulse {
  0% { opacity: 0.35; transform: rotate(45deg) scale(0.72); }
  55% { opacity: 1; transform: rotate(45deg) scale(1.04); }
  100% { opacity: 0.78; transform: rotate(45deg) scale(0.92); }
}

@keyframes kpiSpin {
  from { transform: rotateX(-8deg) rotateY(0deg); }
  to { transform: rotateX(-8deg) rotateY(360deg); }
}

@media (max-width: 1120px) {
  body:not(.index3-page) .site-header nav,
  body:not(.index3-page) .site-header > .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    position: fixed;
    top: calc(var(--rank-banner-height) + 1rem);
    right: clamp(1rem, 4vw, 4rem);
    z-index: 170;
  }
}

@media (max-width: 960px) {
  .site-header nav { display: none; }
  .card-grid.three, .results-grid, .pipeline-steps, .final-cta, .proof-section, .benefit-list, .page-hero-grid, .seo-hero-grid, .service-hero-grid, .quote-grid, .bio-grid, .principles-grid, .comparison-grid, .stats-strip, .contact-layout, .cta-panel, .proof-row, .footer-grid { grid-template-columns: 1fr; }
  .hero {
    grid-template-columns: 1fr;
    min-height: 78svh;
    place-items: center;
  }
  .hero-visual {
    inset: 0;
    width: 100%;
  }
  .hero-growth-visual {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    width: 100%;
    min-height: 23rem;
    padding-top: 0;
  }
  .hero-phone {
    display: none;
  }
  .hero-audit-entry {
    display: none;
  }
  .growth-dashboard {
    width: min(84vw, 34rem);
    min-height: 21rem;
    transform: rotateX(5deg) rotateY(-6deg);
  }
  .growth-bars {
    left: 18%;
    right: 10%;
    bottom: 20%;
    height: 9.5rem;
    gap: 0.5rem;
    transform: scale(0.86);
  }
  .chart-waves {
    width: min(78vw, 36rem);
    height: min(78vw, 36rem);
  }
  .chart-bubble-seo { transform: translate(-9rem, -7.6rem); }
  .chart-bubble-traffic { transform: translate(8.5rem, -3.2rem); }
  .chart-bubble-revenue { transform: translate(-7.2rem, 8.8rem); }
  .hero-haze {
    right: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-copy {
    grid-column: 1;
    grid-row: 1;
    justify-items: center;
    max-width: 820px;
    margin-top: 0;
    text-align: center;
  }
  .glass-core {
    --cube-size: clamp(7.2rem, 18vw, 10rem);
  }
  .hero-waves {
    width: min(74vw, 40rem);
    height: min(74vw, 40rem);
  }
  .bubble-seo { transform: translate(-8.5rem, -8rem); }
  .bubble-content { transform: translate(8.5rem, -2.5rem); }
  .bubble-cro { transform: translate(-7.4rem, 7.2rem); }
  .hero-cta-row { justify-content: center; }
  .page-hero {
    padding-top: 9.35rem;
  }
  .seo-hero {
    min-height: auto;
    padding-top: 9.35rem;
  }
  .service-hero {
    min-height: auto;
    padding-top: 9.35rem;
  }
  .seo-hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .service-hero-copy,
  .seo-hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .service-hero-copy .hero-cta-row,
  .seo-hero-copy .hero-cta-row {
    justify-content: center;
  }
  .service-mock {
    min-height: 34rem;
  }
  .local-serp {
    min-height: 34rem;
  }
  .serp-browser {
    transform: rotateX(4deg) rotateY(-3deg);
  }
  .seo-system-grid,
  .intent-grid,
  .seo-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .crm-panel-top,
  .crm-system-row,
  .crm-flow-row {
    grid-template-columns: 1fr;
  }
  .crm-flow-line {
    height: 1px;
  }
  .seo-timeline article::before {
    display: none;
  }
  .page-hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .page-hero-copy .hero-cta-row {
    justify-content: center;
  }
  .page-visual {
    min-height: 22rem;
  }
  .final-visual { order: -1; min-height: 18rem; }
  .growth-form .primary-cta { width: 100%; }
  .kpi-orbit { min-height: 28rem; }
  .kpi-card-a {
    --kpi-transform: translate(-50%, -50%) rotateY(0deg) translateZ(10rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-b {
    --kpi-transform: translate(-50%, -50%) rotateY(90deg) translateZ(10rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-c {
    --kpi-transform: translate(-50%, -50%) rotateY(180deg) translateZ(10rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-d {
    --kpi-transform: translate(-50%, -50%) rotateY(270deg) translateZ(10rem);
    transform: var(--kpi-transform);
  }
  .proof-meta {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 1rem;
  }
  .cta-panel-actions {
    justify-content: flex-start;
  }
  body[data-page="contact"] .contact-form {
    order: -1;
  }
  .bottom-contact-fields {
    grid-template-columns: 1fr;
  }
  .bottom-contact-form .primary-cta {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .site-header { padding: 0.8rem 1rem; }
  .nav-cta, .theme-toggle-text { display: none; }
  .mobile-drawer .theme-toggle-text {
    display: inline;
  }
  .mobile-drawer .nav-cta {
    display: inline-flex;
  }
  .mobile-menu-toggle {
    right: auto;
    left: min(82vw, 330px);
  }
  .brand-logo {
      width: 1.5rem;
      height: 1.5rem;
      flex-basis: 1.5rem;
    }
  .site-header .brand-logo {
      width: clamp(3.1rem, 12vw, 3.55rem);
      height: clamp(3.1rem, 12vw, 3.55rem);
      flex-basis: clamp(3.1rem, 12vw, 3.55rem);
    }
  .footer-brand .brand-logo {
      width: 1.7rem;
      height: 1.7rem;
      flex-basis: 1.7rem;
  }
  .hero { min-height: 82svh; padding-top: 8.75rem; }
  .hero-copy { margin-top: 0; }
  .reveal {
    opacity: 1;
    transform: none;
  }
  h1 {
    font-size: clamp(2.1rem, 10.6vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.055em;
    max-width: 100%;
  }
  .page-hero-copy,
  .seo-hero-copy,
  .service-hero-copy,
  .case-report-copy {
    width: min(100%, calc(min(100vw, 390px) - 2rem));
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-top .section-head {
    width: min(100%, calc(min(100vw, 390px) - 2rem));
    margin-left: auto;
    margin-right: auto;
  }
  .page-hero-copy h1,
  .seo-hero-copy h1,
  .service-hero-copy h1,
  .contact-top .section-head h1,
  .case-report-copy h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 10.2vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-wrap: balance;
  }
  .section-head {
    margin-bottom: 2rem;
  }
  .section-head h2,
  .cta-panel-copy h2,
  .case-report-section h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.052em;
  }
  .hero-cta-row,
  .section-actions,
  .case-hero-actions,
  .cta-panel-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-cta-row > *,
  .section-actions > *,
  .case-hero-actions > *,
  .cta-panel-actions > *,
  .primary-cta,
  .secondary-cta,
  .arrow-cta {
    width: 100%;
    justify-content: center;
  }
  .arrow-cta {
    min-width: 0;
    padding: 0 1rem 0 3.35rem;
  }
  .hero-growth-visual {
    min-height: 19rem;
    padding-top: 0;
  }
  .growth-dashboard {
    width: min(92vw, 24rem);
    min-height: 17.5rem;
    border-radius: 24px;
    transform: scale(0.92);
  }
  .dashboard-topline strong {
    font-size: 2rem;
  }
  .hero-growth-chart {
    top: 18%;
    height: 26%;
  }
  .growth-bars {
    left: 17%;
    right: 8%;
    bottom: 18%;
    height: 7.6rem;
    gap: 0.34rem;
    padding: 1.2rem 0.8rem 0.7rem;
    transform: scale(0.68);
  }
  .bar-stack {
    --d: 1.25rem;
  }
  .bar-stack span {
    border-radius: 0.26rem;
  }
  .growth-labels {
    display: none;
  }
  .chart-waves {
    width: min(92vw, 27rem);
    height: min(92vw, 27rem);
  }
  .chart-bubble {
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
  }
  .chart-bubble-seo { transform: translate(-6.2rem, -6.4rem); }
  .chart-bubble-traffic { transform: translate(5.5rem, -2.5rem); }
  .chart-bubble-revenue { transform: translate(-4.9rem, 6.8rem); }
  .page-hero {
    padding-top: 8.65rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .seo-hero {
    padding: 8.65rem 1rem 3.5rem;
  }
  .service-hero {
    padding: 8.65rem 1rem 3.5rem;
  }
  .service-mock {
    min-height: auto;
    display: grid;
    gap: 0.85rem;
    place-items: stretch;
  }
  .service-mock::before,
  .service-mock::after {
    display: none;
  }
  .crm-panel {
    width: min(100%, 24rem);
    min-height: 0;
  }
  .crm-score {
    min-width: 0;
    width: min(70vw, 15rem);
  }
  .creative-card,
  .creative-card-main,
  .landing-frame,
  .landing-score,
  .crm-panel,
  .crm-score {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    min-height: auto;
    transform: none;
  }
  .creative-card,
  .landing-frame,
  .landing-score,
  .crm-panel,
  .crm-score {
    padding: 1rem;
    box-shadow: 0 18px 54px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.12);
  }
  .creative-card-main {
    place-content: start;
  }
  .creative-card strong,
  .landing-frame strong,
  .landing-score strong {
    font-size: clamp(1.4rem, 8vw, 2.2rem);
  }
  .crm-panel-top,
  .crm-system-row,
  .crm-flow-row,
  .landing-proof-row {
    grid-template-columns: 1fr;
  }
  .crm-flow-line {
    display: none;
  }
  .creative-card {
    width: 100%;
  }
  .creative-card-main {
    width: 100%;
    min-height: auto;
  }
  .creative-card:nth-child(2) {
    left: auto;
    top: auto;
  }
  .creative-card:nth-child(3) {
    right: auto;
    top: auto;
  }
  .creative-card:nth-child(4) {
    left: auto;
    bottom: auto;
  }
  .landing-frame {
    width: 100%;
    min-height: auto;
    transform: none;
  }
  .landing-score {
    right: auto;
    bottom: auto;
    min-width: 0;
    transform: none;
  }
  .local-serp {
    min-height: auto;
  }
  .local-serp::before,
  .local-serp::after {
    display: none;
  }
  .serp-browser {
    border-radius: 24px;
    transform: none;
    height: auto;
    gap: 0.75rem;
  }
  .serp-map-pack div,
  .serp-search {
    align-items: flex-start;
    flex-direction: column;
  }
  .seo-system-grid,
  .intent-grid,
  .seo-timeline {
    grid-template-columns: 1fr;
  }
  .glass-core {
    --cube-size: clamp(6.4rem, 25vw, 8.2rem);
  }
  .hero-waves {
    width: min(86vw, 26rem);
    height: min(86vw, 26rem);
  }
  .hero-bubble {
    padding: 0.55rem 0.75rem;
    font-size: 0.72rem;
  }
  .bubble-seo { transform: translate(-5.8rem, -6.8rem); }
  .bubble-content { transform: translate(5.2rem, -2.4rem); }
  .bubble-cro { transform: translate(-4.8rem, 5.8rem); }
  .trust-strip span { min-width: 42%; }
  .section, .final-cta { padding-left: 1rem; padding-right: 1rem; }
  .proof-section { padding-left: 1rem; padding-right: 1rem; }
  .site-footer { flex-direction: column; }
  .quote-card,
  .detail-card,
  .comparison-card,
  .bio-card,
  .stat-chip,
  .cta-panel,
  .glass-card,
  .seo-system-card,
  .intent-card,
  .case-report-card,
  .case-report-section,
  .case-fact-panel {
    padding: 1.15rem;
  }
  .glass-card,
  .service-card,
  .case-timeline article {
    min-height: auto;
  }
  .contact-top {
    padding-top: 8.85rem;
  }
  .contact-top .section-head {
    text-align: left;
  }
  .contact-options .glass-card {
    min-height: auto;
  }
  .growth-form {
    border-radius: 22px;
  }
  .kpi-stage { width: 18rem; height: 18rem; }
  .kpi-3d-card { width: 10.5rem; min-height: 7.8rem; }
  .kpi-card-a {
    --kpi-transform: translate(-50%, -50%) rotateY(0deg) translateZ(7rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-b {
    --kpi-transform: translate(-50%, -50%) rotateY(90deg) translateZ(7rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-c {
    --kpi-transform: translate(-50%, -50%) rotateY(180deg) translateZ(7rem);
    transform: var(--kpi-transform);
  }
  .kpi-card-d {
    --kpi-transform: translate(-50%, -50%) rotateY(270deg) translateZ(7rem);
    transform: var(--kpi-transform);
  }
}

@media (max-width: 960px) {
  .results-hero .page-hero-grid,
  .case-summary-grid,
  .case-framework-grid,
  .case-gallery,
  .case-timeline,
  .case-report-hero-grid,
  .case-report-layout,
  .case-report-layout.reverse {
    grid-template-columns: 1fr;
  }

  .results-report-visual {
    min-height: 28rem;
  }

  .report-stack {
    inset: 0;
    transform: rotateX(5deg) rotateY(-7deg);
  }

  .case-summary-card a {
    min-height: auto;
  }

  .case-summary-card h3 {
    margin-top: 6rem;
  }

  .case-report-hero {
    min-height: auto;
    padding-top: 9.35rem;
  }

  .case-report-layout.reverse .case-report-section {
    order: 0;
  }
}

@media (max-width: 620px) {
  .results-report-visual {
    min-height: 31rem;
  }

  .report-stack {
    transform: none;
  }

  .report-sheet-back,
  .report-sheet-mid {
    display: none;
  }

  .report-sheet-front {
    inset: 0;
    gap: 0.85rem;
  }

  .report-kpi-row,
  .report-proof-badges {
    grid-template-columns: 1fr;
  }

  .report-proof-badges,
  .case-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-report-copy h1 {
    font-size: clamp(2.05rem, 10.4vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .case-report-hero {
    padding-top: 8.75rem;
  }

  .case-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .case-media-panel {
    min-height: 16rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .line-draw { stroke-dashoffset: 0; }
  .particle { display: none; }
  .hero-waves span,
  .hero-bubble,
  .chart-waves span,
  .chart-bubble { animation: none; }
  .glass-core { animation: none; }
  .growth-dashboard,
  .bar-stack,
  .hero-phone,
  .aurora-link::before,
  .aurora-text,
  .search-map i,
  .content-flow b,
  .conversion-path i {
    animation: none;
  }
  .bar-stack {
    opacity: 1;
    transform: scaleY(1);
  }
  .arrow-cta:hover svg,
  .arrow-cta:focus-visible svg,
  .pipeline-step:hover .pipeline-step-arrow,
  .pipeline-step:focus-visible .pipeline-step-arrow,
  .pipeline-step[aria-pressed="true"] .pipeline-step-arrow {
    transform: none;
  }
  .hero .dashboard-topline-start,
  .hero.growth-active .dashboard-topline-start,
  .audit-submit:hover,
  .audit-submit:focus-visible {
    transform: none;
  }
  .service-bg {
    transform: none;
  }
  .kpi-stage { animation: none; transform: rotateX(-8deg) rotateY(-18deg); }
}
