/*
Theme Name: AI Edge Promotions
Theme URI: https://aiedgepromotions.com
Author: AI Edge Promotions
Description: Custom WordPress theme for AI Edge Promotions
Version: 1.0.0
License: Private
Text Domain: ai-edge
*/

:root {
  --ink: #f4f4f5;
  --muted: #d2d7df;
  --soft-muted: #9ca3af;
  --chrome: #e7ebf0;
  --platinum: #b8c0cc;
  --graphite: #151821;
  --paper: #0b0b0f;
  --surface: rgba(255, 255, 255, 0.03);
  --charcoal: #0b0b0f;
  --panel: #121216;
  --accent: #d12b47;
  --accent-bright: #ff4d67;
  --accent-deep: #7b1022;
  --red-glass: rgba(209, 43, 71, 0.18);
  --chrome-line: rgba(231, 235, 240, 0.18);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  --mouse-x: 50%;
  --mouse-y: 18%;
}

@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
  .c-dot {
    position: fixed; top: 0; left: 0; width: 7px; height: 7px;
    border-radius: 50%; background: var(--accent-bright);
    pointer-events: none; z-index: 9999; will-change: transform;
    transition: width 180ms ease, height 180ms ease, background 180ms ease, opacity 200ms ease;
  }
  .c-ring {
    position: fixed; top: 0; left: 0; width: 38px; height: 38px;
    border-radius: 50%; border: 1.5px solid rgba(255, 77, 103, 0.52);
    pointer-events: none; z-index: 9998; will-change: transform;
    transition: width 240ms cubic-bezier(0.22, 1, 0.36, 1), height 240ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, background-color 200ms ease;
  }
  body.c-hover .c-dot { width: 11px; height: 11px; background: #fff; }
  body.c-hover .c-ring { width: 62px; height: 62px; border-color: rgba(255, 77, 103, 0.82); background-color: rgba(255, 77, 103, 0.055); }
  body.c-click .c-dot { background: #fff; width: 5px; height: 5px; }
  body.c-click .c-ring { width: 28px; height: 28px; border-color: var(--accent-bright); background-color: rgba(255, 77, 103, 0.1); }
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -8%, rgba(255, 77, 103, 0.1), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(231, 235, 240, 0.045), transparent 22rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  isolation: isolate;
  opacity: 0;
  transition: opacity 420ms ease;
}

body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9; pointer-events: none; opacity: 0.034;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

body.page-ready { opacity: 1; }
body.page-leaving { opacity: 0; }

body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(255, 77, 103, 0.18), rgba(255, 77, 103, 0.052) 18rem, transparent 34rem),
    radial-gradient(circle at calc(100% - var(--mouse-x)) 8%, rgba(231, 235, 240, 0.06), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 38%),
    var(--paper);
  transition: background 220ms ease;
}

.site-header, main, .site-footer { position: relative; z-index: 1; }

@keyframes fadeLift {
  from { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes sheen {
  from { transform: translateX(-140%) skewX(-18deg); }
  to { transform: translateX(240%) skewX(-18deg); }
}
@keyframes borderPulse {
  0%, 100% { border-color: rgba(255, 255, 255, 0.08); box-shadow: var(--shadow); }
  50% { border-color: rgba(255, 77, 103, 0.34); box-shadow: 0 26px 82px rgba(209, 43, 71, 0.18); }
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes panelFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(18px) rotate(-5deg); }
}
@keyframes equalize {
  0%, 100% { transform: scaleY(0.72); }
  50% { transform: scaleY(1); }
}
@keyframes lineSweep {
  from { transform: translateX(-105%); }
  to { transform: translateX(105%); }
}
@keyframes separatorGlow {
  0%, 100% { opacity: 0.44; transform: scaleX(0.88); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes pageSweep {
  from { transform: translateX(-102%) skewX(-8deg); }
  to { transform: translateX(102%) skewX(-8deg); }
}
@keyframes chartGrow { to { transform: scaleY(1); } }
@keyframes trackSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes consoleFloat {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}
@keyframes pulseCore {
  0%, 100% { box-shadow: 0 0 48px rgba(255, 77, 103, 0.24), inset 0 0 44px rgba(231, 235, 240, 0.08); }
  50% { box-shadow: 0 0 82px rgba(255, 77, 103, 0.36), inset 0 0 70px rgba(231, 235, 240, 0.12); }
}
@keyframes chipDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes answerFloat {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
@keyframes countPop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.4); filter: brightness(1.5) drop-shadow(0 0 14px rgba(209, 43, 71, 0.9)); }
  100% { transform: scale(1); filter: brightness(1); }
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(231, 235, 240, 0.07), transparent),
    linear-gradient(90deg, rgba(209, 43, 71, 0.08), transparent 34%, rgba(231, 235, 240, 0.04)),
    rgba(13, 13, 18, 0.92);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 46px rgba(0, 0, 0, 0.18);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.site-header::after {
  content: "";
  position: absolute; right: 0; bottom: -1px; left: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 103, 0.72), rgba(231, 235, 240, 0.36), transparent);
  opacity: 0.62;
}
.nav {
  width: min(1180px, calc(100% - 32px)); min-height: 74px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; }
.brand-logo { width: 250px; height: auto; max-height: 72px; object-fit: contain; filter: drop-shadow(0 12px 26px rgba(209, 43, 71, 0.24)) drop-shadow(0 1px 0 rgba(231, 235, 240, 0.18)); }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(209, 43, 71, 0.7); background: rgba(209, 43, 71, 0.14); color: var(--ink); font-weight: 950; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { position: relative; padding: 10px 12px; color: var(--soft-muted); font-size: 0.94rem; font-weight: 700; transition: color 200ms ease, transform 200ms ease; }
.nav-links a::after { content: ""; position: absolute; right: 12px; bottom: 4px; left: 12px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-bright), transparent); opacity: 0; transform: scaleX(0.35); transition: opacity 220ms ease, transform 220ms ease; }
.nav-links a:hover, .nav-links .active { color: #fff; transform: translateY(-1px); }
.nav-links a:hover::after, .nav-links .active::after { opacity: 1; transform: scaleX(1); }

.button {
  position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 18px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 77, 103, 0.24), rgba(231, 235, 240, 0.055)), rgba(255, 255, 255, 0.03);
  color: #f5f5f5; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease;
}
.button::before { content: ""; position: absolute; top: -20%; bottom: -20%; left: 0; width: 36%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent); transform: translateX(-140%) skewX(-18deg); }
.button:hover { border-color: rgba(255, 77, 103, 0.48); background: linear-gradient(135deg, rgba(255, 77, 103, 0.32), rgba(231, 235, 240, 0.09)), rgba(255, 255, 255, 0.06); box-shadow: 0 0 34px rgba(209, 43, 71, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24); transform: translateY(-2px); }
.button:hover::before { animation: sheen 820ms ease; }
.button.secondary { border-color: rgba(255, 255, 255, 0.15); background: rgba(231, 235, 240, 0.035); color: var(--chrome); }
.button.dark { border-color: var(--accent); background: rgba(209, 43, 71, 0.12); color: #fff; }

.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 74px);
  display: grid; align-items: end;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 77, 103, 0.24), transparent 30%),
    radial-gradient(circle at 42% 0%, rgba(231, 235, 240, 0.08), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(209, 43, 71, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(8, 8, 12, 0.99) 0%, rgba(18, 18, 22, 0.94) 42%, rgba(62, 11, 25, 0.88) 100%);
  color: #fff; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.62;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 68% 32%, black, transparent 68%);
}
.hero::after {
  content: ""; position: absolute; right: -12vw; bottom: 10%; width: min(56vw, 760px); height: 42%; z-index: -1;
  border: 1px solid rgba(255, 77, 103, 0.16); border-radius: 8px;
  background: linear-gradient(115deg, rgba(255, 77, 103, 0.2), transparent 42%), repeating-linear-gradient(90deg, rgba(231, 235, 240, 0.08) 0 1px, transparent 1px 34px);
  filter: blur(0.1px); opacity: 0.68; transform: skewX(-14deg) rotate(-4deg);
}
.hero .eyebrow, .hero h1, .hero .lead, .hero-actions, .stats { animation: fadeLift 780ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero h1 { animation-delay: 90ms; }
.hero .lead { animation-delay: 180ms; }
.hero-actions { animation-delay: 270ms; }

.hero-stats-row { display: flex; align-items: center; gap: 20px; margin-top: 28px; animation: fadeLift 600ms ease both; animation-delay: 400ms; }
.hstat { display: flex; flex-direction: column; gap: 2px; }
.hstat strong { display: block; font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.1; }
.hstat span { font-size: 0.72rem; color: rgba(255, 255, 255, 0.38); letter-spacing: 0.04em; text-transform: uppercase; }
.hstat-sep { width: 1px; height: 28px; background: rgba(255, 255, 255, 0.12); flex-shrink: 0; }
.trust-count { display: inline; font-size: inherit; font-weight: inherit; color: inherit; }
.trust-number { display: inline-block; color: var(--accent-bright); }
.trust-count.pop .trust-number { animation: countPop 700ms cubic-bezier(0.34, 1.56, 0.64, 1) both; }

.channel-matrix { padding: 28px 32px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; display: flex; flex-direction: column; gap: 18px; }
.ch-heading { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); margin: 0 0 4px; }
.ch-row { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 14px; }
.ch-name { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; color: rgba(255, 255, 255, 0.45); text-transform: uppercase; }
.ch-track { height: 5px; background: rgba(255, 255, 255, 0.07); border-radius: 3px; overflow: hidden; }
.ch-track span { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%); transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.ch-row:nth-child(2) .ch-track span { transition-delay: 100ms; }
.ch-row:nth-child(3) .ch-track span { transition-delay: 220ms; }
.ch-row:nth-child(4) .ch-track span { transition-delay: 340ms; }
.ch-row:nth-child(5) .ch-track span { transition-delay: 460ms; }
.ch-row:nth-child(6) .ch-track span { transition-delay: 580ms; }
.section.is-visible .ch-track span { width: var(--w); }
.ch-note { font-size: 0.7rem; color: rgba(255, 255, 255, 0.22); margin: 4px 0 0; letter-spacing: 0.02em; }

.service-featured { border-color: rgba(209, 43, 71, 0.4) !important; background: linear-gradient(135deg, rgba(209, 43, 71, 0.1), rgba(255, 255, 255, 0.03)), rgba(255, 255, 255, 0.03) !important; position: relative; }
.service-featured h3 { font-size: 1.15rem; }
.featured-arrow { position: absolute; bottom: 22px; right: 22px; font-size: 1.1rem; color: var(--accent); opacity: 0.7; transition: opacity 200ms ease, transform 200ms ease; }
.service-featured:hover .featured-arrow { opacity: 1; transform: translateX(3px); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { padding: 28px 26px 24px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 12px; background: rgba(255, 255, 255, 0.02); margin: 0; display: flex; flex-direction: column; gap: 16px; transition: border-color 220ms ease; }
.testimonial-card:hover { border-color: rgba(255, 255, 255, 0.14); }
.tq-mark { font-family: "DM Serif Display", Georgia, serif; font-size: 2.8rem; line-height: 0.7; color: var(--accent); opacity: 0.7; }
.tq-body { font-size: 0.92rem; line-height: 1.72; color: rgba(255, 255, 255, 0.68); flex: 1; }
.tq-author { display: flex; flex-direction: column; gap: 3px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.tq-author strong { font-size: 0.85rem; color: #fff; font-weight: 700; }
.tq-author span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.38); }

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats-row { gap: 14px; }
}

.stats { animation-delay: 360ms; }
.hero-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 92px 0 70px; }
.home-hero .hero-inner { display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(330px, 0.62fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.hero-copy { min-width: 0; }

.growth-console {
  position: relative; min-height: auto; display: grid; align-content: start; overflow: hidden;
  border: 1px solid rgba(231, 235, 240, 0.2); border-radius: 8px;
  background: linear-gradient(115deg, rgba(255, 77, 103, 0.16), transparent 36%), radial-gradient(circle at 18% 8%, rgba(231, 235, 240, 0.13), transparent 22%), linear-gradient(145deg, rgba(231, 235, 240, 0.082), rgba(255, 255, 255, 0.018)), rgba(8, 8, 12, 0.72);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38), 0 0 90px rgba(209, 43, 71, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: consoleFloat 8s ease-in-out infinite;
}
.growth-console::before {
  content: ""; position: absolute; inset: 24px; border: 1px solid rgba(231, 235, 240, 0.12);
  background: linear-gradient(90deg, rgba(231, 235, 240, 0.045) 1px, transparent 1px), linear-gradient(180deg, rgba(231, 235, 240, 0.045) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(circle at 50% 42%, black, transparent 74%);
}
.growth-console::after {
  content: ""; position: absolute; inset: 86px 50px auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 103, 0.9), rgba(231, 235, 240, 0.44), transparent);
  box-shadow: 0 0 32px rgba(255, 77, 103, 0.38);
}
.console-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; min-height: 56px; padding: 0 20px; border-bottom: 1px solid rgba(231, 235, 240, 0.12); background: rgba(255, 255, 255, 0.035); }
.console-top span { width: 9px; height: 9px; border-radius: 50%; background: rgba(231, 235, 240, 0.42); }
.console-top span:first-child { background: var(--accent-bright); }
.console-top strong { margin-left: auto; color: var(--chrome); font-size: 0.72rem; letter-spacing: 0.16em; }

.conversion-flow { position: relative; z-index: 1; display: grid; gap: 10px; margin: 30px 26px 26px; }
.flow-step {
  position: relative; min-height: 72px; display: grid; grid-template-columns: 44px minmax(0, 1fr); column-gap: 14px; align-items: center;
  overflow: hidden; padding: 14px 16px; border: 1px solid rgba(231, 235, 240, 0.14); border-radius: 8px;
  background: linear-gradient(100deg, rgba(255, 77, 103, 0.16), transparent 42%), rgba(7, 8, 12, 0.72);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}
.flow-step::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(231, 235, 240, 0.12), transparent); transform: translateX(-110%) skewX(-18deg); animation: lineSweep 4.6s ease-in-out infinite; }
.flow-step:nth-child(2)::after { animation-delay: 320ms; }
.flow-step:nth-child(3)::after { animation-delay: 640ms; }
.flow-step:nth-child(4)::after { animation-delay: 960ms; }
.flow-step span { grid-row: span 2; color: var(--accent-bright); font-size: 0.82rem; font-weight: 950; letter-spacing: 0.08em; }
.flow-step strong { position: relative; z-index: 1; color: #fff; font-size: 1rem; line-height: 1.1; font-weight: 950; }
.flow-step em { position: relative; z-index: 1; color: var(--muted); font-style: normal; font-size: 0.78rem; line-height: 1.25; }

.page-sweep {
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 77, 103, 0.09) 40%, rgba(255, 77, 103, 0.14) 50%, rgba(255, 77, 103, 0.09) 60%, transparent 100%);
  animation: pageSweep 300ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.hero h1 em, .page-hero h1 em { font-style: italic; }

.result-pulse { position: relative; z-index: 1; display: grid; gap: 16px; padding: 22px 24px 24px; }
.pulse-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.pulse-client { margin: 0 0 4px; color: #fff; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em; }
.pulse-period { margin: 0; color: var(--soft-muted); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.pulse-badge { flex-shrink: 0; display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border: 1px solid rgba(255, 77, 103, 0.48); border-radius: 999px; background: rgba(255, 77, 103, 0.12); color: var(--accent-bright); font-size: 0.62rem; font-weight: 950; letter-spacing: 0.14em; }
.pulse-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-bright); animation: pulseCore 1.8s ease-in-out infinite; }
.pulse-chart { display: flex; align-items: flex-end; gap: 4px; height: 68px; padding: 0 2px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.pulse-chart span { flex: 1; height: var(--h); min-height: 3px; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--accent-bright), rgba(209, 43, 71, 0.18)); transform-origin: bottom; transform: scaleY(0); animation: chartGrow 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.pulse-chart span:nth-child(1)  { animation-delay: 0.06s; }
.pulse-chart span:nth-child(2)  { animation-delay: 0.11s; }
.pulse-chart span:nth-child(3)  { animation-delay: 0.16s; }
.pulse-chart span:nth-child(4)  { animation-delay: 0.21s; }
.pulse-chart span:nth-child(5)  { animation-delay: 0.26s; }
.pulse-chart span:nth-child(6)  { animation-delay: 0.31s; }
.pulse-chart span:nth-child(7)  { animation-delay: 0.36s; }
.pulse-chart span:nth-child(8)  { animation-delay: 0.41s; }
.pulse-chart span:nth-child(9)  { animation-delay: 0.46s; }
.pulse-chart span:nth-child(10) { animation-delay: 0.51s; }
.pulse-chart span:nth-child(11) { animation-delay: 0.56s; }
.pulse-chart span:nth-child(12) { animation-delay: 0.61s; }
.pulse-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: var(--line); }
.pulse-metric { display: grid; gap: 3px; padding: 12px 12px 10px; background: rgba(10, 10, 14, 0.78); }
.pulse-metric strong { color: #fff; font-size: 0.76rem; font-weight: 950; letter-spacing: -0.01em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.pulse-metric span { color: var(--soft-muted); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pulse-metric em { font-style: normal; color: #4ade80; font-size: 0.7rem; font-weight: 800; }
.pulse-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pulse-tags span { padding: 5px 9px; border: 1px solid rgba(231, 235, 240, 0.13); border-radius: 4px; background: rgba(231, 235, 240, 0.03); color: var(--muted); font-size: 0.62rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }

.hero-actions .button:first-child { background: linear-gradient(135deg, #e8283e, #c01832); border-color: rgba(255, 110, 130, 0.5); box-shadow: 0 0 42px rgba(232, 40, 62, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22); color: #fff; min-height: 52px; padding: 0 28px; font-size: 0.86rem; }
.hero-actions .button:first-child:hover { background: linear-gradient(135deg, #f03254, #d01838); border-color: rgba(255, 130, 148, 0.62); box-shadow: 0 0 64px rgba(232, 40, 62, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.28); transform: translateY(-3px); }

.service-strip { position: relative; overflow: hidden; border-block: 1px solid rgba(231, 235, 240, 0.12); background: linear-gradient(90deg, rgba(123, 16, 34, 0.28), rgba(231, 235, 240, 0.045), rgba(123, 16, 34, 0.2)), #09090d; }
.service-strip::before, .service-strip::after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 1; width: 110px; pointer-events: none; }
.service-strip::before { left: 0; background: linear-gradient(90deg, #09090d, transparent); }
.service-strip::after { right: 0; background: linear-gradient(270deg, #09090d, transparent); }
.service-track { width: max-content; display: flex; gap: 28px; padding: 16px 0; animation: trackSlide 28s linear infinite; }
.service-track span { color: var(--chrome); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.15em; text-transform: uppercase; white-space: nowrap; }

.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--accent-bright); font-weight: 950; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; }
.eyebrow::before { content: ''; flex-shrink: 0; display: block; width: 22px; height: 1.5px; background: var(--accent-bright); opacity: 0.85; border-radius: 1px; }

h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 22px; font-family: "DM Serif Display", Georgia, ui-serif, serif; font-size: clamp(3rem, 8vw, 7.6rem); font-weight: 400; line-height: 1.0; letter-spacing: -0.01em; }
.hero h1, .page-hero h1 { color: #fff; background: linear-gradient(118deg, #ffffff 0%, #e7ebf0 28%, #ff8094 58%, #ffd0d7 80%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; text-shadow: none; }
@supports (-webkit-background-clip: text) { .hero h1, .page-hero h1 { -webkit-text-fill-color: transparent; } }
h2 { margin-bottom: 18px; font-family: "DM Serif Display", Georgia, ui-serif, serif; color: #fff; font-size: clamp(2.1rem, 4.8vw, 4.7rem); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; text-shadow: 0 16px 52px rgba(0, 0, 0, 0.26); }
h3 { margin-bottom: 10px; font-size: 1.08rem; line-height: 1.2; }
.lead { max-width: 720px; color: rgba(255, 255, 255, 0.82); font-size: clamp(1.04rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; width: min(760px, 100%); margin-top: 54px; background: rgba(255, 255, 255, 0.17); border: 1px solid rgba(255, 255, 255, 0.18); }
.home-hero .stats { grid-column: 1 / -1; }
.stat { padding: 20px; background: rgba(255, 255, 255, 0.03); transition: background 220ms ease, transform 220ms ease; }
.stat:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-2px); }
.stat strong { display: block; font-size: 1.42rem; color: #fff; }
.stat span { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; }

.section { position: relative; padding: 72px 0; scroll-margin-top: 92px; }
.section::after { content: ""; position: absolute; right: 8%; bottom: 0; left: 8%; height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255, 77, 103, 0.7), rgba(210, 215, 223, 0.16), transparent); transform-origin: center; animation: separatorGlow 5.5s ease-in-out infinite; }
.section:last-of-type::after { display: none; }

.reveal-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.grid .reveal-on-scroll:nth-child(2), .results-grid .reveal-on-scroll:nth-child(2), .video-grid .reveal-on-scroll:nth-child(2), .client-logo-grid .reveal-on-scroll:nth-child(2), .ai-product-grid .reveal-on-scroll:nth-child(2) { transition-delay: 90ms; }
.grid .reveal-on-scroll:nth-child(3), .results-grid .reveal-on-scroll:nth-child(3), .video-grid .reveal-on-scroll:nth-child(3), .client-logo-grid .reveal-on-scroll:nth-child(3), .ai-product-grid .reveal-on-scroll:nth-child(3) { transition-delay: 180ms; }
.grid .reveal-on-scroll:nth-child(4), .ai-product-grid .reveal-on-scroll:nth-child(4) { transition-delay: 270ms; }
.grid .reveal-on-scroll:nth-child(5), .ai-product-grid .reveal-on-scroll:nth-child(5) { transition-delay: 360ms; }
.grid .reveal-on-scroll:nth-child(6), .ai-product-grid .reveal-on-scroll:nth-child(6) { transition-delay: 450ms; }

.section:nth-of-type(odd) { background: radial-gradient(circle at 8% 0%, rgba(231, 235, 240, 0.035), transparent 26rem), #0b0b0f; }
.section:nth-of-type(even) { background: radial-gradient(circle at 92% 0%, rgba(209, 43, 71, 0.085), transparent 24rem), linear-gradient(180deg, rgba(231, 235, 240, 0.028), rgba(255, 255, 255, 0.008)), #101015; }
.dark-section { background: radial-gradient(circle at 88% 12%, rgba(123, 16, 34, 0.22), transparent 26rem), linear-gradient(145deg, #08080b, #111217 58%, #12090e); color: #fff; }
.dark-section .section-copy, .dark-section p { color: rgba(255, 255, 255, 0.74); }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.52fr); gap: 32px; align-items: end; margin-bottom: 34px; }
.section-copy { color: var(--muted); font-size: 1.04rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.results-section, .websites-section { position: relative; overflow: hidden; }
.results-section::before, .websites-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 16% 0%, rgba(209, 43, 71, 0.14), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%); }
.results-section > .container, .websites-section > .container { position: relative; }

.results-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 18px; }
.result-card { position: relative; overflow: hidden; min-height: 300px; padding: 30px; border: 1px solid var(--chrome-line); border-radius: 8px; background: linear-gradient(180deg, rgba(231, 235, 240, 0.055), rgba(255, 255, 255, 0.018)), rgba(255, 255, 255, 0.03); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.feature-result { background: radial-gradient(circle at 10% 0%, rgba(255, 77, 103, 0.24), transparent 28%), linear-gradient(135deg, rgba(123, 16, 34, 0.34), rgba(231, 235, 240, 0.055)), rgba(255, 255, 255, 0.03); animation: borderPulse 6s ease-in-out infinite; }
.result-card p { color: var(--muted); }
.result-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--line); }
.result-metrics div { min-height: 142px; padding: 20px; background: rgba(11, 11, 15, 0.78); transition: background 220ms ease, transform 220ms ease; }
.result-metrics div:hover { background: rgba(17, 17, 24, 0.96); transform: translateY(-2px); }
.result-metrics strong { display: block; margin-bottom: 8px; color: #fff; font-size: clamp(1.7rem, 4.2vw, 3.4rem); line-height: 0.95; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }
.result-metrics span, .mini-list { color: var(--muted); }
.mini-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.mini-list li { padding-top: 12px; border-top: 1px solid var(--line); }

.website-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.client-logo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.client-logo-card { position: relative; min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; overflow: hidden; padding: 34px; border: 1px solid var(--chrome-line); border-radius: 8px; background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 77, 103, 0.18), transparent 44%), linear-gradient(180deg, rgba(231, 235, 240, 0.052), rgba(255, 255, 255, 0.018)), rgba(255, 255, 255, 0.03); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.client-logo-card::before { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.12), transparent 64%); transform: translateX(-22%); transition: opacity 300ms ease, transform 700ms ease; }
.client-logo-card:hover { border-color: rgba(255, 77, 103, 0.36); background: rgba(255, 255, 255, 0.052); box-shadow: 0 28px 90px rgba(209, 43, 71, 0.16); transform: translateY(-5px); }
.client-logo-card:hover::before { opacity: 1; transform: translateX(22%); }
.client-logo-card img { width: min(240px, 82%); max-height: 128px; object-fit: contain; filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.24)); }
.client-logo-card span { position: relative; color: var(--muted); font-size: 0.86rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }

.website-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.browser-top { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.035); }
.browser-top span { width: 9px; height: 9px; border-radius: 50%; background: var(--soft-muted); }
.browser-top span:first-child { background: var(--accent); }
.website-preview { min-height: 230px; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end; border-bottom: 1px solid var(--line); transition: transform 420ms ease, filter 420ms ease; }
.website-card:hover .website-preview { transform: scale(1.018); filter: saturate(1.12) contrast(1.04); }
.website-preview strong { display: block; max-width: 280px; font-size: 1.8rem; line-height: 1; }
.website-preview p { max-width: 300px; margin: 12px 0 0; color: var(--muted); }
.clinic-preview { background: linear-gradient(135deg, rgba(11, 11, 15, 0.18), rgba(11, 11, 15, 0.86)), linear-gradient(135deg, rgba(209, 43, 71, 0.48), rgba(255, 255, 255, 0.07)); }
.media-preview { background: linear-gradient(135deg, rgba(11, 11, 15, 0.08), rgba(11, 11, 15, 0.84)), linear-gradient(135deg, rgba(255, 77, 103, 0.38), rgba(210, 215, 223, 0.1)); }
.service-preview { background: linear-gradient(135deg, rgba(11, 11, 15, 0.12), rgba(11, 11, 15, 0.82)), linear-gradient(135deg, rgba(210, 215, 223, 0.18), rgba(209, 43, 71, 0.34)); }
.website-card h3, .website-card p { padding-inline: 24px; }
.website-card h3 { margin-top: 24px; }
.website-card > p { min-height: 118px; margin-bottom: 24px; color: var(--muted); }

.card { position: relative; overflow: hidden; min-height: 230px; padding: 28px; border: 1px solid var(--chrome-line); border-radius: 8px; background: linear-gradient(180deg, rgba(231, 235, 240, 0.05), rgba(255, 255, 255, 0.014)), var(--surface); color: var(--ink); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.075); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.card::before, .result-card::before, .website-card::before, .client-logo-card::after { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 77, 103, 0.22), transparent 42%); transition: opacity 240ms ease; }
.card:hover, .result-card:hover, .website-card:hover { border-color: rgba(255, 77, 103, 0.38); background: linear-gradient(180deg, rgba(231, 235, 240, 0.07), rgba(255, 255, 255, 0.022)), rgba(255, 255, 255, 0.048); box-shadow: 0 28px 90px rgba(209, 43, 71, 0.18), 0 0 0 1px rgba(231, 235, 240, 0.045) inset; transform: translateY(-5px); }
.card:hover::before, .result-card:hover::before, .website-card:hover::before, .client-logo-card:hover::after { opacity: 1; }
.card p { color: var(--muted); }
.card.dark { border-color: rgba(231, 235, 240, 0.18); background: linear-gradient(145deg, rgba(231, 235, 240, 0.075), rgba(209, 43, 71, 0.055)), rgba(255, 255, 255, 0.052); }
.card.dark p { color: rgba(255, 255, 255, 0.72); }

.services-section { overflow: hidden; background: radial-gradient(circle at 8% 14%, rgba(255, 77, 103, 0.14), transparent 24rem), linear-gradient(180deg, rgba(231, 235, 240, 0.032), rgba(255, 255, 255, 0.006)), #0b0b0f; }
.services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; counter-reset: service; }
.service-tile { counter-increment: service; min-height: 168px; display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 22px; align-items: start; padding: 0; border-color: rgba(231, 235, 240, 0.14); background: linear-gradient(90deg, rgba(255, 77, 103, 0.13), transparent 42%), rgba(255, 255, 255, 0.028); }
.service-tile::after { content: counter(service, decimal-leading-zero); min-height: 100%; display: grid; place-items: center; border-right: 1px solid rgba(231, 235, 240, 0.12); background: linear-gradient(180deg, rgba(255, 77, 103, 0.28), rgba(123, 16, 34, 0.12)), rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; font-weight: 950; letter-spacing: 0.12em; }
.service-tile .tag, .service-tile h3, .service-tile p { grid-column: 2; margin-right: 24px; }
.service-tile .tag { margin-top: 24px; margin-bottom: 10px; }
.service-tile h3 { margin-bottom: 8px; font-size: 1.18rem; }
.service-tile p { margin-bottom: 24px; }
.service-tile:hover { transform: translateX(6px); }

.audience-section { background: radial-gradient(circle at 88% 12%, rgba(255, 77, 103, 0.16), transparent 25rem), linear-gradient(145deg, #07080b, #151821 52%, #13080d); }
.audience-grid { grid-template-columns: 1.2fr 0.95fr 0.95fr; align-items: stretch; }
.audience-panel { min-height: 330px; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 82px; background: linear-gradient(180deg, transparent, rgba(7, 8, 12, 0.82)), radial-gradient(circle at 22px 22px, rgba(231, 235, 240, 0.16) 0 1px, transparent 1.8px), linear-gradient(135deg, rgba(255, 77, 103, 0.12), rgba(231, 235, 240, 0.035)); background-size: auto, 24px 24px, auto; }
.audience-panel::after { content: attr(data-audience); position: absolute; top: 22px; left: 24px; color: rgba(231, 235, 240, 0.12); font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 950; line-height: 0.8; letter-spacing: 0; text-transform: uppercase; }
.audience-panel:nth-child(1)::after { content: "Medical"; }
.audience-panel:nth-child(2)::after { content: "Care"; }
.audience-panel:nth-child(3)::after { content: "Local"; }
.audience-panel .tag, .audience-panel h3, .audience-panel p { position: relative; z-index: 1; }

.ai-preview-section { overflow: hidden; background: radial-gradient(circle at 88% 10%, rgba(231, 235, 240, 0.08), transparent 24rem), radial-gradient(circle at 12% 88%, rgba(255, 77, 103, 0.1), transparent 22rem), linear-gradient(140deg, #08090d, #151821 58%, #10080d); }
.ai-preview-grid { grid-template-columns: 0.9fr 1.15fr 0.95fr; gap: 16px; }
.ai-module { min-height: 330px; padding: 30px; border-color: rgba(231, 235, 240, 0.2); background: linear-gradient(180deg, rgba(231, 235, 240, 0.064), rgba(255, 255, 255, 0.014)), radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 77, 103, 0.14), transparent 42%), #0b0d12; }
.ai-module::after { content: ""; position: absolute; right: 24px; bottom: 24px; width: 96px; aspect-ratio: 1; border: 1px solid rgba(255, 77, 103, 0.22); border-radius: 50%; background: radial-gradient(circle, rgba(255, 77, 103, 0.18), transparent 36%), conic-gradient(from 40deg, transparent, rgba(231, 235, 240, 0.2), transparent, rgba(255, 77, 103, 0.34), transparent); }
.ai-module:nth-child(2) { min-height: 380px; transform: translateY(-18px); }
.ai-module:nth-child(2)::after { width: 132px; }
.ai-module:hover { transform: translateY(-8px); }
.ai-module:nth-child(2):hover { transform: translateY(-26px); }

.tag { display: inline-flex; align-items: center; margin-bottom: 20px; color: var(--accent-bright); font-weight: 950; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }
.split { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr); gap: 44px; align-items: center; }

.signal-visual { position: relative; min-height: 480px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: radial-gradient(circle at 50% 42%, rgba(255, 77, 103, 0.24), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)); box-shadow: var(--shadow); }
.signal-visual::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(90deg, transparent 0 49%, rgba(255, 77, 103, 0.22) 50%, transparent 51%), linear-gradient(180deg, transparent 0 49%, rgba(255, 77, 103, 0.18) 50%, transparent 51%); opacity: 0.62; }
.signal-orbit { position: absolute; inset: 60px; border: 1px solid rgba(255, 77, 103, 0.26); border-radius: 50%; animation: slowSpin 20s linear infinite; }
.orbit-two { inset: 108px 46px; border-color: rgba(210, 215, 223, 0.16); animation-duration: 28s; animation-direction: reverse; }
.signal-core { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); place-content: center; gap: 12px; width: min(260px, calc(100% - 64px)); margin: auto; }
.signal-core span { min-height: 68px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(11, 11, 15, 0.72); color: #fff; font-size: 0.82rem; font-weight: 950; letter-spacing: 0.16em; }
.signal-bars { position: absolute; right: 24px; bottom: 24px; left: 24px; height: 90px; display: flex; align-items: end; gap: 10px; }
.signal-bars span { flex: 1; height: var(--height); min-height: 18px; transform-origin: bottom; background: linear-gradient(180deg, var(--accent-bright), rgba(209, 43, 71, 0.16)); animation: equalize 2.8s ease-in-out infinite; }
.signal-bars span:nth-child(2) { animation-delay: 180ms; }
.signal-bars span:nth-child(3) { animation-delay: 360ms; }
.signal-bars span:nth-child(4) { animation-delay: 120ms; }
.signal-bars span:nth-child(5) { animation-delay: 520ms; }

.video-section { background: radial-gradient(circle at 84% 12%, rgba(209, 43, 71, 0.18), transparent 26%), #0b0b0f; }

.digital-page { --section-red: rgba(209, 43, 71, 0.16); }
.digital-page .section:nth-of-type(even) { background: radial-gradient(circle at 86% 4%, rgba(255, 77, 103, 0.16), transparent 25rem), radial-gradient(circle at 10% 90%, rgba(123, 16, 34, 0.18), transparent 22rem), linear-gradient(180deg, rgba(231, 235, 240, 0.03), transparent), #0f0f14; }
.digital-page .card, .digital-page .video-card, .digital-page .result-card { background: linear-gradient(135deg, rgba(255, 77, 103, 0.07), rgba(231, 235, 240, 0.028)), rgba(255, 255, 255, 0.032); }

.ai-page { --section-red: rgba(255, 77, 103, 0.1); }
.ai-page .section:nth-of-type(odd) { background: radial-gradient(circle at 80% 4%, rgba(231, 235, 240, 0.075), transparent 23rem), radial-gradient(circle at 12% 78%, rgba(209, 43, 71, 0.09), transparent 22rem), linear-gradient(140deg, #090a0e, var(--graphite) 58%, #10090d); }
.ai-page .section:nth-of-type(even) { background: radial-gradient(circle at 16% 4%, rgba(255, 77, 103, 0.11), transparent 24rem), linear-gradient(180deg, rgba(231, 235, 240, 0.052), rgba(255, 255, 255, 0.008)), #11141c; }
.ai-page .tag { color: #ff6b7f; }
.ai-page .ai-product-card, .ai-page .card { border-color: rgba(231, 235, 240, 0.2); background: linear-gradient(160deg, rgba(231, 235, 240, 0.078), rgba(255, 77, 103, 0.045) 48%, rgba(255, 255, 255, 0.014)), rgba(255, 255, 255, 0.03); }
.ai-hero .container { min-height: 460px; }
.ai-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 760px; margin-top: 34px; }
.ai-hero-chips span { position: relative; overflow: hidden; min-height: 38px; display: inline-flex; align-items: center; border: 1px solid rgba(231, 235, 240, 0.16); border-radius: 999px; padding: 0 14px; background: linear-gradient(135deg, rgba(255, 77, 103, 0.16), rgba(231, 235, 240, 0.055)), rgba(255, 255, 255, 0.032); color: var(--chrome); font-size: 0.74rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2); animation: chipDrift 4.8s ease-in-out infinite; }
.ai-hero-chips span:nth-child(2) { animation-delay: 220ms; }
.ai-hero-chips span:nth-child(3) { animation-delay: 440ms; }
.ai-hero-chips span:nth-child(4) { animation-delay: 140ms; }
.ai-hero-chips span:nth-child(5) { animation-delay: 620ms; }

.video-grid { display: grid; grid-template-columns: minmax(280px, 0.8fr) repeat(2, minmax(0, 1fr)); gap: 18px; }
.video-card { position: relative; overflow: hidden; min-height: 280px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.03); box-shadow: var(--shadow); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.video-card:hover { border-color: rgba(255, 77, 103, 0.34); background: rgba(255, 255, 255, 0.052); box-shadow: 0 28px 90px rgba(209, 43, 71, 0.16); transform: translateY(-5px); }
.video-card p { color: var(--muted); }
.sample-video-card { padding: 0; }
.sample-video { width: 100%; aspect-ratio: 9 / 16; max-height: 520px; display: block; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 24%, rgba(255, 77, 103, 0.18), transparent 32%), #050507; object-fit: contain; }
.sample-video-card h3, .sample-video-card p { padding-inline: 24px; }
.sample-video-card h3 { margin-top: 22px; }
.sample-video-card p { margin-bottom: 24px; }

.ai-products-section, .ai-search-section { position: relative; overflow: hidden; }
.ai-products-section::before, .ai-search-section::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 8%, rgba(255, 77, 103, 0.18), transparent 30%), radial-gradient(circle at 14% 4%, rgba(231, 235, 240, 0.07), transparent 24%), linear-gradient(180deg, rgba(255, 255, 255, 0.034), transparent 42%); }
.ai-products-section > .container, .ai-search-section > .container { position: relative; }
.ai-automation-section { overflow: hidden; background: radial-gradient(circle at 18% 0%, rgba(231, 235, 240, 0.075), transparent 24rem), radial-gradient(circle at 88% 34%, rgba(255, 77, 103, 0.14), transparent 28rem), linear-gradient(145deg, #08090d, #151821 52%, #11070c); }
.ai-automation-grid { grid-template-columns: 1.1fr 0.9fr 1fr; gap: 14px; }
.automation-card { min-height: 210px; border-radius: 8px; background: linear-gradient(135deg, rgba(231, 235, 240, 0.06), rgba(255, 77, 103, 0.045)), rgba(255, 255, 255, 0.025); }
.automation-card:nth-child(1), .automation-card:nth-child(6) { min-height: 280px; }
.automation-card:nth-child(2), .automation-card:nth-child(5) { transform: translateY(28px); }
.automation-card::after { content: ""; position: absolute; right: 22px; bottom: 22px; left: 22px; height: 1px; background: linear-gradient(90deg, rgba(255, 77, 103, 0.72), rgba(231, 235, 240, 0.2), transparent); }
.automation-card:hover { transform: translateY(-7px); }
.automation-card:nth-child(2):hover, .automation-card:nth-child(5):hover { transform: translateY(18px); }

.ai-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.ai-product-card { position: relative; overflow: hidden; min-height: 430px; padding: 86px 26px 26px; border: 1px solid var(--chrome-line); border-radius: 8px; background: radial-gradient(circle at 18% 10%, rgba(231, 235, 240, 0.1), transparent 22%), radial-gradient(circle at 86% 0%, rgba(255, 77, 103, 0.17), transparent 30%), linear-gradient(180deg, rgba(231, 235, 240, 0.062), rgba(255, 255, 255, 0.018)), rgba(255, 255, 255, 0.03); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08); transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease, background 240ms ease; }
.ai-product-card::before { content: ""; position: absolute; inset: 0; opacity: 0; pointer-events: none; background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 77, 103, 0.22), transparent 44%); transition: opacity 240ms ease; }
.ai-product-card::after { content: attr(data-ai-icon); position: absolute; top: 24px; left: 24px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255, 77, 103, 0.34); border-radius: 50%; background: radial-gradient(circle, rgba(255, 77, 103, 0.32), transparent 68%), rgba(8, 9, 13, 0.78); color: #fff; font-size: 0.8rem; font-weight: 950; letter-spacing: 0.08em; box-shadow: 0 0 34px rgba(255, 77, 103, 0.18); }
.ai-product-card:nth-child(even) { transform: translateY(24px); }
.ai-product-card:hover { border-color: rgba(255, 77, 103, 0.36); background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(255, 77, 103, 0.18), transparent 42%), rgba(255, 255, 255, 0.052); box-shadow: 0 28px 90px rgba(209, 43, 71, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12); transform: translateY(-8px); }
.ai-product-card:nth-child(even):hover { transform: translateY(12px); }
.ai-product-card:hover::before { opacity: 1; }
.ai-product-card p { color: var(--muted); }

.ai-search-visual { position: relative; min-height: 430px; overflow: hidden; border: 1px solid var(--chrome-line); border-radius: 8px; background: radial-gradient(circle at 50% 36%, rgba(255, 77, 103, 0.22), transparent 32%), radial-gradient(circle at 16% 8%, rgba(231, 235, 240, 0.12), transparent 25%), linear-gradient(145deg, rgba(231, 235, 240, 0.08), rgba(255, 255, 255, 0.018)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
.ai-search-visual::before { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 8px; background: linear-gradient(90deg, transparent 0 48%, rgba(255, 77, 103, 0.16) 50%, transparent 52%), linear-gradient(180deg, transparent 0 48%, rgba(255, 77, 103, 0.12) 50%, transparent 52%); }
.answer-card { position: absolute; right: 36px; left: 36px; min-height: 58px; display: flex; align-items: center; padding: 16px 18px; border: 1px solid rgba(231, 235, 240, 0.16); background: linear-gradient(135deg, rgba(231, 235, 240, 0.055), rgba(255, 255, 255, 0.012)), rgba(11, 11, 15, 0.76); color: var(--muted); font-weight: 800; box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28); animation: answerFloat 5.5s ease-in-out infinite; }
.answer-card:nth-child(1) { top: 44px; }
.answer-card:nth-child(2) { top: 132px; left: 72px; animation-delay: 180ms; }
.answer-card:nth-child(3) { top: 220px; right: 72px; animation-delay: 360ms; }
.answer-card:nth-child(4) { top: 308px; left: 92px; animation-delay: 540ms; }
.primary-answer { border-color: rgba(255, 77, 103, 0.42); color: #fff; background: linear-gradient(135deg, rgba(209, 43, 71, 0.32), rgba(231, 235, 240, 0.075)), rgba(11, 11, 15, 0.78); box-shadow: 0 18px 56px rgba(209, 43, 71, 0.2); }
.ai-page .dark-section .card.dark { overflow: hidden; background: radial-gradient(circle at 84% 8%, rgba(255, 77, 103, 0.2), transparent 34%), linear-gradient(145deg, rgba(231, 235, 240, 0.09), rgba(255, 255, 255, 0.022)), rgba(255, 255, 255, 0.052); }
.ai-page .dark-section .card.dark::after { content: ""; position: absolute; right: -48px; bottom: -48px; width: 190px; aspect-ratio: 1; border: 1px solid rgba(255, 77, 103, 0.18); border-radius: 50%; background: conic-gradient(from 80deg, transparent, rgba(255, 77, 103, 0.34), transparent, rgba(231, 235, 240, 0.16), transparent); }

.tall-video { min-height: 420px; }
.video-screen { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; margin-bottom: 24px; padding: 22px; border: 1px solid var(--line); background: linear-gradient(180deg, transparent, rgba(11, 11, 15, 0.9)), radial-gradient(circle at 70% 20%, rgba(255, 77, 103, 0.28), transparent 38%), linear-gradient(135deg, rgba(209, 43, 71, 0.24), rgba(255, 255, 255, 0.04)); }
.play-dot { width: 52px; height: 52px; display: block; margin-bottom: auto; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; background: radial-gradient(circle, var(--accent-bright), rgba(209, 43, 71, 0.15)); box-shadow: 0 0 34px rgba(255, 77, 103, 0.24); }
.video-screen strong { font-size: 1.8rem; line-height: 1; }
.timeline { position: relative; display: grid; gap: 10px; margin-bottom: 70px; padding: 22px 0; overflow: hidden; }
.timeline::after { content: ""; position: absolute; top: 0; bottom: 0; width: 40%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent); animation: lineSweep 2.8s ease-in-out infinite; }
.timeline span { height: 18px; border-radius: 999px; background: linear-gradient(90deg, rgba(255, 77, 103, 0.72), rgba(255, 255, 255, 0.08)); }
.timeline span:nth-child(2) { width: 74%; }
.timeline span:nth-child(3) { width: 88%; }
.timeline span:nth-child(4) { width: 58%; }
.caption-stack { display: grid; gap: 10px; margin-bottom: 64px; }
.caption-stack span { padding: 14px 16px; border: 1px solid var(--line); background: rgba(11, 11, 15, 0.64); color: #fff; font-size: 0.78rem; font-weight: 950; letter-spacing: 0.12em; }

.feature-list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); }
.dark-section .feature-list li { border-color: rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.74); }

.band { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 50%, rgba(255, 77, 103, 0.2), transparent 52%), linear-gradient(145deg, #140810 0%, #1e0c14 50%, #130810 100%); color: #fff; border-top: 1px solid rgba(255, 77, 103, 0.16); border-bottom: 1px solid rgba(255, 77, 103, 0.16); }
.band::before { content: "2008"; position: absolute; right: -3%; top: 50%; transform: translateY(-50%); font-family: Inter, ui-sans-serif, sans-serif; font-size: clamp(6rem, 18vw, 15rem); font-weight: 950; line-height: 1; letter-spacing: -0.04em; color: rgba(255, 77, 103, 0.065); pointer-events: none; user-select: none; }
.band::after { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 55%; background: linear-gradient(180deg, transparent, var(--accent-bright), transparent); border-radius: 0 2px 2px 0; }
.band-inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr); gap: 36px; align-items: center; }
.band p { color: rgba(255, 255, 255, 0.76); }

.page-hero { position: relative; overflow: hidden; isolation: isolate; background: radial-gradient(circle at 78% 8%, rgba(255, 77, 103, 0.24), transparent 31%), radial-gradient(circle at 12% 82%, rgba(209, 43, 71, 0.18), transparent 36%), linear-gradient(122deg, rgba(11, 11, 15, 0.98) 0%, rgba(19, 15, 19, 0.95) 42%, rgba(50, 12, 23, 0.88) 100%); color: #fff; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.54; background: linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px); background-size: 68px 68px; mask-image: radial-gradient(circle at 72% 20%, black, transparent 68%); }
.page-hero::after { content: ""; position: absolute; right: clamp(-120px, -8vw, -32px); top: clamp(18px, 6vw, 72px); width: min(44vw, 520px); aspect-ratio: 1; z-index: -1; border: 1px solid rgba(255, 77, 103, 0.2); border-radius: 50%; background: radial-gradient(circle, rgba(255, 77, 103, 0.2), transparent 34%), conic-gradient(from 160deg, transparent, rgba(255, 77, 103, 0.38), transparent, rgba(210, 215, 223, 0.14), transparent); opacity: 0.88; animation: slowSpin 22s linear infinite; }

.digital-hero { background: linear-gradient(112deg, rgba(255, 77, 103, 0.22) 0 1px, transparent 1px 18%), linear-gradient(292deg, transparent 0 58%, rgba(231, 235, 240, 0.08) 58.2% 58.5%, transparent 58.8% 100%), radial-gradient(circle at 84% 10%, rgba(255, 77, 103, 0.34), transparent 30%), radial-gradient(circle at 8% 88%, rgba(123, 16, 34, 0.26), transparent 34%), linear-gradient(122deg, rgba(8, 8, 12, 0.99) 0%, rgba(28, 14, 19, 0.96) 44%, rgba(82, 12, 30, 0.92) 100%); }
.digital-hero::before { opacity: 0.78; background: linear-gradient(116deg, transparent 0 23%, rgba(255, 77, 103, 0.14) 23.2% 23.6%, transparent 23.8% 100%), linear-gradient(116deg, transparent 0 49%, rgba(210, 215, 223, 0.08) 49.2% 49.5%, transparent 49.8% 100%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 74px); mask-image: linear-gradient(90deg, transparent, black 16%, black 92%, transparent); }
.digital-hero::after { right: clamp(28px, 8vw, 132px); top: clamp(26px, 8vw, 92px); width: min(34vw, 380px); border-radius: 28px; border-color: rgba(255, 77, 103, 0.26); background: linear-gradient(135deg, rgba(255, 77, 103, 0.3), transparent 42%), linear-gradient(90deg, transparent, rgba(231, 235, 240, 0.16), transparent), repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0 2px, transparent 2px 18px); box-shadow: 0 0 80px rgba(209, 43, 71, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18); transform: rotate(-8deg); animation: panelFloat 9s ease-in-out infinite; }

.ai-hero { background: radial-gradient(circle at 72% 16%, rgba(255, 77, 103, 0.22), transparent 27%), radial-gradient(circle at 28% 16%, rgba(231, 235, 240, 0.12), transparent 20%), radial-gradient(circle at 50% 92%, rgba(123, 16, 34, 0.23), transparent 36%), linear-gradient(145deg, rgba(7, 8, 12, 0.99) 0%, rgba(19, 23, 31, 0.96) 46%, rgba(45, 10, 24, 0.9) 100%); }
.ai-hero::before { opacity: 0.7; background: radial-gradient(circle, rgba(255, 77, 103, 0.2) 0 1px, transparent 1.6px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 24px 24px, 86px 86px, 86px 86px; mask-image: radial-gradient(circle at 70% 34%, black, transparent 68%); }
.ai-hero::after { right: clamp(-70px, 4vw, 80px); top: clamp(18px, 5vw, 64px); width: min(42vw, 500px); border-color: rgba(255, 77, 103, 0.24); background: radial-gradient(circle at 50% 50%, rgba(255, 77, 103, 0.26), transparent 26%), radial-gradient(circle at 50% 50%, transparent 38%, rgba(231, 235, 240, 0.18) 39% 40%, transparent 41%), conic-gradient(from 45deg, transparent, rgba(255, 77, 103, 0.46), transparent 44%, rgba(231, 235, 240, 0.22), transparent 74%); box-shadow: 0 0 100px rgba(255, 77, 103, 0.2), inset 0 0 70px rgba(231, 235, 240, 0.04); animation: slowSpin 18s linear infinite; }

.page-hero .container { position: relative; padding: 86px 0 70px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
.page-hero p { max-width: 740px; color: rgba(255, 255, 255, 0.78); font-size: 1.17rem; }

.process { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { min-height: 220px; padding: 26px; background: rgba(255, 255, 255, 0.03); }
.step strong { display: block; margin-bottom: 42px; color: var(--accent-bright); font-size: 0.9rem; }

.site-footer { padding: 0; background: #07070b; border-top: 1px solid rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.6); }
.footer-inner { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; padding: 60px 0 52px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.footer-logo { display: block; width: auto; height: 44px; object-fit: contain; margin-bottom: 20px; filter: brightness(1.1) drop-shadow(0 4px 14px rgba(209, 43, 71, 0.22)); }
.footer-desc { margin: 0 0 22px; color: rgba(255, 255, 255, 0.44); font-size: 0.875rem; line-height: 1.68; max-width: 280px; }
.footer-contact-links { display: flex; flex-direction: column; gap: 7px; }
.footer-contact-links a { color: rgba(255, 255, 255, 0.52); font-size: 0.875rem; transition: color 160ms ease; }
.footer-contact-links a:hover { color: var(--accent-bright); }
.footer-col-head { display: block; margin-bottom: 16px; color: rgba(255, 255, 255, 0.86); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-office { font-style: normal; color: rgba(255, 255, 255, 0.44); font-size: 0.875rem; line-height: 1.72; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255, 255, 255, 0.46); font-size: 0.875rem; display: inline-block; transition: color 160ms ease, transform 160ms ease; }
.footer-nav a:hover { color: rgba(255, 255, 255, 0.88); transform: translateX(3px); }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: rgba(255, 255, 255, 0.45); transition: color 160ms ease, border-color 160ms ease, background 160ms ease; text-decoration: none; }
.footer-social a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.06); }
.footer-bar { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-size: 0.78rem; color: rgba(255, 255, 255, 0.26); flex-wrap: wrap; }
.footer-bar-links { display: flex; gap: 20px; }
.footer-bar-links a { color: rgba(255, 255, 255, 0.26); transition: color 160ms ease; }
.footer-bar-links a:hover { color: rgba(255, 255, 255, 0.58); }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 28px; padding: 44px 0 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 38px 0 30px; }
}

.sticky-audit { position: fixed; right: 22px; bottom: 22px; z-index: 30; display: grid; gap: 2px; min-width: 230px; padding: 14px 18px; border: 1px solid rgba(255, 77, 103, 0.38); border-radius: 8px; background: linear-gradient(135deg, rgba(255, 77, 103, 0.28), rgba(231, 235, 240, 0.07)), rgba(10, 10, 14, 0.88); color: #fff; box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 42px rgba(209, 43, 71, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16); backdrop-filter: blur(16px); transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.sticky-audit strong { font-size: 0.82rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.sticky-audit span { color: var(--muted); font-size: 0.82rem; }
.sticky-audit:hover { border-color: rgba(255, 77, 103, 0.62); box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4), 0 0 62px rgba(209, 43, 71, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22); transform: translateY(-4px); }

@media (max-width: 860px) {
  .nav { align-items: center; flex-direction: column; gap: 12px; padding: 14px 0; }
  .brand-logo { width: 210px; max-height: 58px; }
  .nav-links { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; overflow: visible; padding-bottom: 0; }
  .nav-links a { min-height: 42px; display: flex; align-items: center; justify-content: center; padding: 8px 4px; text-align: center; font-size: 0.82rem; line-height: 1.2; }
  .hero { min-height: auto; background: radial-gradient(circle at 72% 12%, rgba(255, 77, 103, 0.2), transparent 34%), linear-gradient(145deg, rgba(11, 11, 15, 0.98), rgba(46, 12, 22, 0.84)); }
  .home-hero .hero-inner { grid-template-columns: 1fr; }
  .growth-console { min-height: auto; order: 2; }
  .conversion-flow { margin: 22px 18px 0; }
  .flow-step { min-height: 66px; padding: 12px 14px; }
  .services-grid, .audience-grid, .ai-preview-grid, .ai-automation-grid { grid-template-columns: 1fr; }
  .service-tile { grid-template-columns: 72px minmax(0, 1fr); min-height: auto; }
  .service-tile:hover, .ai-product-card:nth-child(even), .ai-product-card:hover, .ai-product-card:nth-child(even):hover, .automation-card:nth-child(2), .automation-card:nth-child(5), .automation-card:hover, .automation-card:nth-child(2):hover, .automation-card:nth-child(5):hover, .ai-module, .ai-module:nth-child(2), .ai-module:hover, .ai-module:nth-child(2):hover { transform: none; }
  .ai-hero-chips { gap: 8px; }
  .ai-hero-chips span { min-height: 34px; font-size: 0.68rem; padding: 0 11px; }
  .audience-panel { min-height: 260px; }
  .sticky-audit { right: 12px; bottom: 12px; left: 12px; min-width: 0; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; padding: 12px 14px; }
  .sticky-audit span { text-align: right; font-size: 0.74rem; }
  .service-track { animation-duration: 22s; }
  .hero::after { width: 92vw; height: 32vw; right: -42vw; bottom: 24vw; opacity: 0.46; }
  .page-hero::after { width: 82vw; right: -42vw; top: 18vw; opacity: 0.62; }
  .digital-hero::after { width: 76vw; right: -46vw; top: 24vw; opacity: 0.46; }
  .ai-hero::after { width: 88vw; right: -48vw; top: 20vw; opacity: 0.6; }
  .hero-inner { padding: 72px 0 44px; }
  .section, .page-hero .container { padding: 62px 0; }
  .section-head, .split, .band-inner { grid-template-columns: 1fr; }
  .grid, .results-grid, .website-grid, .client-logo-grid, .video-grid, .ai-product-grid, .process, .stats { grid-template-columns: 1fr; }
  .result-metrics { grid-template-columns: 1fr; }
  .card, .step, .result-card, .ai-product-card { min-height: auto; }
  .signal-visual { min-height: 360px; }
  .tall-video, .video-card { min-height: auto; }
  .ai-search-visual { min-height: 360px; }
  .answer-card { right: 20px; left: 20px; }
  .answer-card:nth-child(2), .answer-card:nth-child(3), .answer-card:nth-child(4) { right: 20px; left: 20px; }
}

.audit-section { position: relative; overflow: hidden; background: radial-gradient(circle at 18% 8%, rgba(255, 77, 103, 0.16), transparent 30%), #0b0b0f; }
.audit-form { display: grid; gap: 14px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.022)), rgba(255, 255, 255, 0.03); box-shadow: var(--shadow); }
.audit-form label { display: grid; gap: 8px; color: var(--muted); font-size: 0.82rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.audit-form input, .audit-form textarea, .audit-form select { width: 100%; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 6px; background: rgba(11, 11, 15, 0.78); color: var(--ink); font: inherit; letter-spacing: 0; padding: 13px 14px; text-transform: none; outline: none; transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.audit-form textarea { resize: vertical; }
.audit-form input:focus, .audit-form textarea:focus, .audit-form select:focus { border-color: rgba(255, 77, 103, 0.54); background: rgba(11, 11, 15, 0.94); box-shadow: 0 0 0 3px rgba(209, 43, 71, 0.16); }
.audit-form .button { margin-top: 8px; cursor: pointer; }
.form-status { min-height: 22px; margin: 2px 0 0; color: var(--accent-bright); font-size: 0.86rem; font-weight: 800; }
.form-note { margin: 2px 0 0; color: var(--soft-muted); font-size: 0.82rem; line-height: 1.45; }
.form-note a, .site-footer a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 77, 103, 0.55); text-underline-offset: 3px; }

/* ── Articles / Blog ─────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.article-card { border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; background: rgba(255, 255, 255, 0.02); display: flex; flex-direction: column; transition: border-color 220ms ease, transform 220ms ease; text-decoration: none; color: inherit; }
.article-card:hover { border-color: rgba(255, 255, 255, 0.18); transform: translateY(-4px); }
.article-card-body { padding: 26px 26px 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.article-category { font-size: 0.7rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent-bright); }
.article-card h3 { font-size: 1.02rem; line-height: 1.42; color: #fff; margin: 0; }
.article-card p { font-size: 0.86rem; color: rgba(255, 255, 255, 0.48); line-height: 1.65; flex: 1; margin: 0; }
.article-card-footer { padding: 14px 26px; border-top: 1px solid rgba(255, 255, 255, 0.06); display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: rgba(255, 255, 255, 0.28); }
.article-card-footer span { display: flex; align-items: center; gap: 6px; }
.article-read { color: var(--accent-bright); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }

.article-page-hero { padding: 72px 0 52px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.article-page-hero .container { max-width: 780px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); margin-bottom: 24px; }
.article-breadcrumb a { color: rgba(255, 255, 255, 0.35); transition: color 160ms ease; }
.article-breadcrumb a:hover { color: rgba(255, 255, 255, 0.7); }
.article-page-hero .eyebrow { margin-bottom: 16px; }
.article-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.08; margin-bottom: 20px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; font-size: 0.78rem; color: rgba(255, 255, 255, 0.35); margin-top: 24px; }
.article-meta-divider { width: 3px; height: 3px; border-radius: 50%; background: rgba(255, 255, 255, 0.25); }

.prose-section { padding: 56px 0 80px; }
.prose { max-width: 740px; }
.prose h2 { margin-top: 52px; margin-bottom: 16px; font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
.prose h3 { margin-top: 34px; margin-bottom: 12px; font-size: 1.05rem; font-family: inherit; font-weight: 700; color: rgba(255, 255, 255, 0.9); letter-spacing: -0.01em; }
.prose p { margin-bottom: 22px; font-size: 0.97rem; line-height: 1.8; color: rgba(255, 255, 255, 0.62); }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 22px; }
.prose li { font-size: 0.97rem; line-height: 1.74; color: rgba(255, 255, 255, 0.62); margin-bottom: 8px; }
.prose strong { color: rgba(255, 255, 255, 0.9); font-weight: 700; }
.prose .callout { padding: 20px 24px; background: rgba(209, 43, 71, 0.07); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; margin: 32px 0; }
.prose .callout p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.93rem; }
.article-cta-box { margin-top: 60px; padding: 36px 38px; border: 1px solid rgba(209, 43, 71, 0.28); border-radius: 14px; background: rgba(209, 43, 71, 0.05); }
.article-cta-box h3 { font-family: "DM Serif Display", Georgia, serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; }
.article-cta-box p { color: rgba(255, 255, 255, 0.52); margin-bottom: 22px; font-size: 0.92rem; }
.more-articles-section { padding: 60px 0; border-top: 1px solid rgba(255, 255, 255, 0.07); }

@media (max-width: 860px) {
  .articles-grid { grid-template-columns: 1fr; }
}

/* ── FAQ page ────────────────────────────────────────── */
.faq-body { max-width: 760px; }
.faq-group { margin-bottom: 52px; }
.faq-group h2 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.faq-item summary { padding: 18px 0; font-size: 0.95rem; font-weight: 600; color: rgba(255, 255, 255, 0.88); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 160ms ease; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; font-weight: 300; color: var(--accent); flex-shrink: 0; transition: transform 240ms ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: #fff; }
.faq-item p { padding: 0 0 20px; font-size: 0.9rem; line-height: 1.72; color: rgba(255, 255, 255, 0.55); }
.faq-cta { margin-top: 48px; }

/* ── Legal pages ─────────────────────────────────────── */
.legal-body { max-width: 760px; }
.legal-body h2 { margin-top: 52px; margin-bottom: 14px; font-size: clamp(1.25rem, 2vw, 1.55rem); }
.legal-body h2:first-of-type { margin-top: 36px; }
.legal-body .section-copy { margin-bottom: 0; }
.legal-body .feature-list { margin-top: 12px; }
.legal-contact-card { margin-top: 40px; max-width: 420px; }
.legal-contact-card p { margin: 4px 0; font-size: 0.9rem; color: var(--muted); }
.legal-contact-card a { color: var(--accent-bright); text-decoration: none; transition: opacity 160ms ease; }
.legal-contact-card a:hover { opacity: 0.8; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  body { opacity: 1; }
  body::after { display: none; }
  .reveal-on-scroll { opacity: 1; transform: none; }
  .reveal-on-scroll, .grid .reveal-on-scroll, .results-grid .reveal-on-scroll, .video-grid .reveal-on-scroll, .client-logo-grid .reveal-on-scroll, .ai-product-grid .reveal-on-scroll { transition-delay: 0ms !important; }
  .service-track { animation: none !important; }
  .pulse-chart span { transform: scaleY(1); animation: none !important; }
  .c-dot, .c-ring { display: none !important; }
}
