:root {
  --bg: #0B0E11;
  --surface: #151A20;
  --surface-2: #1C2129;
  --ink: #C8CED6;
  --ink-soft: #8A919A;
  --accent: #00D4AA;
  --accent-2: #FF6B35;
  --line: rgba(200,206,214,0.10);
  --line-strong: rgba(200,206,214,0.20);
  --font-heading: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, 'Cascadia Mono', 'Segoe UI Mono', Menlo, monospace;
  --header-h: 72px;
  --max-w: 1180px;
  --pad: clamp(16px, 4vw, 32px);
  --radius: 6px;
  --radius-lg: 10px;
  interpolate-size: allow-keywords;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100vw; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 12px, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.no-js .reveal { opacity: 1; transform: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--accent-2); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; color: #EFF1F3; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3vw + 0.5rem, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem); }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1em; }
ul, ol { padding-left: 1.2em; }
strong { font-weight: 600; color: #EFF1F3; }
.font-mono { font-family: var(--font-mono); font-weight: 500; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding-inline: var(--pad); }

/* ======== SKIP LINK ======== */
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: var(--bg); padding: 8px 18px; border-radius: var(--radius); font-weight: 600; z-index: 10000; }
.skip-link:focus { top: 12px; }

/* ======== HEADER (STICKY WITH MORPH) ======== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(11,14,17,0.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(11,14,17,0.97);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.30);
}
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: var(--accent); width: 0%;
  transition: width 60ms linear;
  pointer-events: none;
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}

/* LOGO */
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #EFF1F3; font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.logo:hover { color: #EFF1F3; }
.logo__icon { width: 28px; height: 28px; flex-shrink: 0; }
.logo__accent { color: var(--accent); }

/* NAV DESKTOP */
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav__link { color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; padding: 6px 0; position: relative; transition: color 240ms cubic-bezier(.4,0,.2,1); }
.nav__link::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 280ms cubic-bezier(.2,.7,.2,1); }
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after, .nav__link:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; padding: 9px 22px; background: var(--accent); color: var(--bg); font-weight: 600; font-size: 0.88rem; border-radius: var(--radius); transition: background 240ms, color 240ms, transform 180ms; }
.nav-cta:hover, .nav-cta:focus-visible { background: #00EBBD; color: var(--bg); transform: translateY(-2px); }
.nav-desktop .nav-cta::after { display: none; }

/* NAV TOGGLE */
.nav-toggle { display: none; background: rgba(200,206,214,0.06); border: 1px solid var(--line); cursor: pointer; width: 48px; height: 48px; position: relative; z-index: 1100; padding: 10px; border-radius: var(--radius); transition: background 200ms, border-color 200ms; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #EFF1F3; border-radius: 2px; transition: transform 300ms cubic-bezier(.2,.7,.2,1), opacity 200ms, background 200ms; position: absolute; left: 11px; }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 30px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}
.nav-toggle:hover span, .nav-toggle:active span { background: var(--accent); }
.nav-toggle:hover { background: rgba(0,212,170,0.08); border-color: rgba(0,212,170,0.3); }

/* ======== DRAWER ======== */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1040; opacity: 0; pointer-events: none; transition: opacity 240ms; }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) 28px 28px;
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer__link { padding: 14px 16px; color: var(--ink); font-size: 1.05rem; font-weight: 500; border-radius: var(--radius); transition: background 200ms, color 200ms; }
.drawer__link:hover, .drawer__link.is-active { background: var(--surface-2); color: var(--accent); }
.drawer__cta { margin-top: 20px; text-align: center; justify-content: center; }
.drawer__contact { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; }
.drawer__contact a { color: var(--ink-soft); }
.drawer__contact a:hover { color: var(--accent); }

/* ======== MAIN ======== */
main { padding-top: var(--header-h); }

/* ======== BUTTONS ======== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--accent); color: var(--bg);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  border: none; border-radius: var(--radius); cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms, box-shadow 240ms;
  text-decoration: none; letter-spacing: -0.01em;
}
.btn-primary:hover, .btn-primary:focus-visible { background: #00EBBD; color: var(--bg); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,212,170,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--ink);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius); cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--surface); color: #EFF1F3; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,212,170,0.08); }

/* ======== EYEBROW ======== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 500; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

/* ======== SECTION SPACING ======== */
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--bg); }
.section__head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 64px); }

/* ======== HERO ======== */
.hero {
  position: relative; min-height: clamp(600px, 85vh, 900px);
  display: flex; align-items: center;
  padding: clamp(100px, 14vh, 160px) 0 clamp(60px, 8vh, 100px);
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,212,170,0.04) 39px, rgba(0,212,170,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,212,170,0.04) 39px, rgba(0,212,170,0.04) 40px),
    var(--bg);
}
.hero__wave {
  position: absolute; bottom: 10%; left: 0; right: 0; width: 120%; height: 120px;
  opacity: 0.35; pointer-events: none;
}
.hero__wave path {
  fill: none; stroke: var(--accent); stroke-width: 1.5;
  stroke-dasharray: 12 6;
  animation: wave-trace 10s linear infinite;
}
@keyframes wave-trace { to { stroke-dashoffset: -600; } }

.hero__wave-2 {
  position: absolute; bottom: 18%; left: -5%; width: 130%; height: 80px;
  opacity: 0.15; pointer-events: none;
}
.hero__wave-2 path {
  fill: none; stroke: var(--accent); stroke-width: 1;
  stroke-dasharray: 8 10;
  animation: wave-trace 14s linear infinite;
}

.hero__content { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { margin-bottom: 0.3em; }
.hero h1 span { color: var(--accent); }
.hero__sub { font-size: clamp(1rem, 1.2vw + 0.6rem, 1.2rem); color: var(--ink-soft); max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 20px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
.trust-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse-dot 2.4s ease infinite; }
@keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.4); } }

/* HERO READOUTS */
.hero__readouts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; max-width: 620px; }
.readout { background: var(--surface); padding: 18px 16px; text-align: center; }
.readout__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 4px; font-family: var(--font-mono); }
.readout__value { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 1.1rem; color: var(--accent); }

@media (max-width: 640px) {
  .hero__readouts { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .hero { min-height: auto; padding: 100px 0 60px; }
}

/* HERO MOVEMENT SVG */
.hero__mechanism {
  position: absolute; right: clamp(-80px, -4vw, 0px); top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 30vw, 440px); height: auto;
  opacity: 0.06; pointer-events: none;
}
@media (max-width: 768px) { .hero__mechanism { display: none; } }

/* ======== STATS STRIP ======== */
.stats-strip { padding: clamp(40px, 6vw, 60px) 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__number {
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--accent); display: block;
  line-height: 1.1; margin-bottom: 6px;
}
.stat__label { font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 640px) { .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; } }

/* ======== PROCESS / TIMELINE ======== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 15px; width: 1px; background: var(--line-strong); }
.timeline__step { position: relative; margin-bottom: 48px; }
.timeline__step:last-child { margin-bottom: 0; }
.timeline__dot {
  position: absolute; left: -40px; top: 4px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-2); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; color: var(--accent);
  z-index: 2;
}
.timeline__step.is-in .timeline__dot { background: var(--accent); color: var(--bg); }
.timeline__time { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-2); margin-bottom: 6px; display: block; }
.timeline__step h3 { margin-bottom: 8px; }
.timeline__step p { color: var(--ink-soft); font-size: 0.92rem; max-width: 520px; }

/* ======== CARDS (MONOSPACE STYLE) ======== */
.mono-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.mono-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
  position: relative; overflow: hidden;
}
.mono-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent); opacity: 0;
  transition: opacity 280ms;
}
.mono-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,212,170,0.08); border-color: rgba(0,212,170,0.2); }
.mono-card:hover::before { opacity: 1; }
.mono-card__icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; transition: transform 360ms cubic-bezier(.2,.7,.2,1); }
.mono-card:hover .mono-card__icon { transform: rotate(8deg) scale(1.06); }
.mono-card__number { font-family: var(--font-mono); font-size: 0.72rem; color: var(--accent-2); letter-spacing: 0.1em; margin-bottom: 10px; display: block; }
.mono-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.mono-card p { color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 0; }
@media (max-width: 640px) { .mono-card { padding: 22px 18px; } .mono-card__icon { width: 34px; height: 34px; } }

/* ======== TABLE SCROLL ======== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0; border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
}
.table-scroll > table { margin: 0 !important; min-width: 580px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead { background: var(--surface-2); }
th { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); text-align: left; padding: 14px 18px; white-space: nowrap; }
td { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--ink-soft); vertical-align: top; }
tr:hover td { background: rgba(0,212,170,0.03); }
.table-accent { color: var(--accent); font-family: var(--font-mono); font-weight: 500; }

/* ======== PRICING CARDS ======== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pricing-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 24px;
  position: relative; transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms, border-color 280ms;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,212,170,0.08); border-color: rgba(0,212,170,0.2); }
.pricing-card--featured { border-color: var(--accent); }
.pricing-card--featured::before {
  content: 'Popüler'; position: absolute; top: -1px; right: 20px;
  background: var(--accent); color: var(--bg); font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #EFF1F3; margin-bottom: 8px; }
.pricing-card__desc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.5; }
.pricing-card__price { font-family: var(--font-mono); font-weight: 500; font-size: 1.8rem; color: var(--accent); margin-bottom: 4px; }
.pricing-card__price small { font-size: 0.6em; color: var(--ink-soft); font-weight: 400; }
.pricing-card__time { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-2); margin-bottom: 20px; display: block; }
.pricing-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); margin-bottom: 10px; }
.pricing-card ul { list-style: none; padding: 0; margin-bottom: 16px; }
.pricing-card li { padding: 5px 0; font-size: 0.88rem; padding-left: 20px; position: relative; color: var(--ink-soft); }
.pricing-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; }
.pricing-card .dahil li::before { background: var(--accent); }
.pricing-card .dahil-degil li::before { background: var(--accent-2); opacity: 0.5; }
.pricing-card .dahil-degil li { opacity: 0.65; text-decoration: line-through; }
@media (max-width: 640px) { .pricing-card { padding: 24px 18px; } }

/* ======== REPORT MOCKUP ======== */
.report-mockup {
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px);
  max-width: 700px; position: relative; overflow: hidden;
}
.report-mockup::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.report__header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.report__logo-area h3 { font-size: 1rem; margin-bottom: 2px; }
.report__logo-area span { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-soft); }
.report__meta { text-align: right; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); line-height: 1.8; }
.report__watch { margin-bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.report__watch dt { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); }
.report__watch dd { font-size: 0.9rem; color: #EFF1F3; margin-bottom: 10px; }
.report__graph { margin: 24px 0; padding: 20px; background: rgba(0,212,170,0.04); border-radius: var(--radius); border: 1px solid rgba(0,212,170,0.12); }
.report__graph svg { width: 100%; height: auto; }
.report__rating { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: rgba(0,212,170,0.08); border-radius: var(--radius); border: 1px solid rgba(0,212,170,0.15); margin-top: 24px; }
.report__rating-label { font-family: var(--font-mono); font-size: 0.82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.report__rating-value { font-family: var(--font-mono); font-weight: 500; font-size: 1.3rem; color: var(--accent); }
@media (max-width: 480px) { .report__watch { grid-template-columns: 1fr; } .report__header { flex-direction: column; } .report__meta { text-align: left; } }
.report-mockup > * { min-width: 0; max-width: 100%; }
@media (max-width: 640px) {
  .report-mockup .table-scroll { box-shadow: inset -20px 0 16px -16px rgba(0,212,170,0.1); position: relative; }
  .report-mockup .table-scroll::after {
    content: ''; position: sticky; right: 0; top: 0; bottom: 0; width: 24px; pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--surface));
    display: block; float: right; margin-top: -100%; height: 100%;
  }
  .report-mockup .table-scroll > table { min-width: 420px; }
  .report-mockup th, .report-mockup td { padding: 10px 10px; font-size: 0.82rem; }
}

/* ======== TESTIMONIALS ======== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  position: relative;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.testimonial::before {
  content: '\201C'; font-family: Georgia, serif; font-size: 3.5rem;
  color: var(--accent); opacity: 0.3; line-height: 1; position: absolute; top: 16px; left: 20px;
}
.testimonial__text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; padding-top: 28px; font-style: italic; }
.testimonial__author { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: #EFF1F3; }
.testimonial__meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent-2); margin-top: 2px; }
@media (max-width: 640px) { .testimonial { padding: 22px 18px; } }

/* ======== FAQ ACCORDION (PURE CSS) ======== */
.faq-list { max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: #EFF1F3; list-style: none; transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-mono); font-size: 1.3rem; font-weight: 400;
  color: var(--accent); flex-shrink: 0; width: 28px; text-align: center;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0; padding: 0 0; overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1), padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body { height: auto; padding-block-end: 24px; }
.faq-body p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .faq-item > .faq-body { transition: none; } }

/* ======== FORM ======== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 640px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  padding: 12px 16px; background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.92rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,170,0.15); }
.field textarea { min-height: 120px; resize: vertical; }
.field select { appearance: auto; cursor: pointer; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field--checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--checkbox label { font-size: 0.82rem; line-height: 1.5; cursor: pointer; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ======== CONTACT CHANNELS ======== */
.contact-channels { display: grid; gap: 0; max-width: 520px; }
.contact-row {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start;
  padding: 16px 12px; border-radius: var(--radius);
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover { background: var(--surface-2); transform: translateX(4px); }
.contact-row__icon { width: 20px; height: 20px; color: var(--ink-soft); flex-shrink: 0; margin-top: 2px; transition: color 240ms; }
.contact-row:hover .contact-row__icon { color: var(--accent); }
.contact-row__label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); margin-bottom: 2px; }
.contact-row__value { font-size: 0.95rem; color: #EFF1F3; word-break: break-word; overflow-wrap: anywhere; }
.contact-row__value a { color: #EFF1F3; }
.contact-row__value a:hover { color: var(--accent); }

/* ======== CONTACT LAYOUT ======== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 64px); align-items: start; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

/* ======== FOOTER ======== */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: clamp(48px, 8vw, 80px) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); margin-bottom: clamp(36px, 6vw, 56px); }
.footer__brand p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 16px; line-height: 1.6; }
.site-footer h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 16px; }
.footer__nav a, .footer__legal a { display: block; color: var(--ink-soft); font-size: 0.88rem; padding: 4px 0; transition: color 200ms, transform 200ms; }
.footer__nav a:hover, .footer__legal a:hover { color: var(--accent); transform: translateX(4px); }
.footer__contact { font-size: 0.88rem; color: var(--ink-soft); }
.footer__contact a { display: block; color: var(--ink-soft); margin-bottom: 4px; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact p { margin-top: 10px; line-height: 1.6; }
.footer__bottom { padding: 20px 0; border-top: 1px solid var(--line); text-align: center; font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* ======== COOKIE BANNER ======== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  max-width: 520px; margin: 0 auto;
  background: var(--surface-2); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); padding: 22px 24px;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie__title { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: #EFF1F3; margin-bottom: 8px; }
.cookie__text { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.6; }
.cookie__text a { text-decoration: underline; }
.cookie__buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie__btn {
  padding: 12px 22px; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: 1px solid var(--line-strong); transition: background 200ms, color 200ms, border-color 200ms, transform 180ms, box-shadow 200ms;
  font-family: var(--font-body); min-height: 48px; min-width: 88px;
}
.cookie__btn--accept { background: var(--accent); color: var(--bg); border-color: var(--accent); font-weight: 600; box-shadow: 0 4px 16px rgba(0,212,170,0.3); }
.cookie__btn--accept:hover { background: #00EBBD; color: var(--bg); border-color: #00EBBD; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,212,170,0.4); }
.cookie__btn--reject { background: rgba(239,241,243,0.04); color: var(--ink-soft); border-color: var(--line-strong); font-weight: 600; }
.cookie__btn--reject:hover { background: rgba(239,241,243,0.10); color: var(--ink); border-color: var(--ink-soft); }
.cookie__btn--settings { background: transparent; color: var(--ink-soft); border-color: transparent; font-weight: 600; }
.cookie__btn--settings:hover { color: var(--ink); background: var(--surface); }
@media (min-width: 640px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
@media (max-width: 640px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 18px 16px; max-width: none; }
  .cookie__buttons { width: 100%; }
  .cookie__btn { flex: 1; min-width: 0; text-align: center; justify-content: center; padding: 14px 16px; }
  .cookie__btn--accept { flex: 1.3; }
}

/* ======== REVEAL ======== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 560ms cubic-bezier(.16,.7,.3,1), transform 560ms cubic-bezier(.16,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 90ms); }
a.reveal, button.reveal, .reveal:has(> a), .reveal:has(> button), .reveal:has(> form) { pointer-events: auto; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ======== NICHE ANIMATIONS ======== */

/* Balance wheel oscillation */
@keyframes balance-oscillate {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(12deg); }
}
.anim-balance { animation: balance-oscillate 1.8s cubic-bezier(.4,0,.2,1) infinite; transform-origin: center; }

/* Precision crosshair converge */
@keyframes crosshair-draw {
  0% { stroke-dashoffset: 40; }
  100% { stroke-dashoffset: 0; }
}
.anim-crosshair line { stroke-dasharray: 40; stroke-dashoffset: 40; }
.is-in .anim-crosshair line { animation: crosshair-draw 800ms cubic-bezier(.4,0,.2,1) forwards; }
.is-in .anim-crosshair line:nth-child(2) { animation-delay: 200ms; }

/* Gear mesh rotation on hover */
@keyframes gear-spin { to { transform: rotate(360deg); } }
.mono-card:hover .anim-gear { animation: gear-spin 3s linear infinite; }

/* Beat rate flash */
@keyframes beat-flash {
  0%, 80%, 100% { opacity: 0.2; }
  10% { opacity: 1; }
}
.anim-beat { animation: beat-flash 0.83s ease infinite; }

/* Amplitude swing */
@keyframes amplitude-swing {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}
.anim-amplitude { animation: amplitude-swing 2s cubic-bezier(.4,0,.2,1) infinite; transform-origin: 50% 100%; }

@media (prefers-reduced-motion: reduce) {
  .anim-balance, .anim-gear, .anim-beat, .anim-amplitude, .hero__wave path, .hero__wave-2 path,
  .trust-badge::before { animation: none !important; }
}

/* ======== COUNTER UP ======== */
.counter-up { font-variant-numeric: tabular-nums; }

/* ======== PAGE CONTENT ======== */
.page-hero { padding: clamp(100px, 14vh, 140px) 0 clamp(40px, 6vh, 64px); background: var(--surface); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(1.8rem, 3vw + 0.8rem, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--ink-soft); max-width: 580px; }

.page-content { padding: clamp(48px, 8vw, 80px) 0; max-width: 740px; line-height: 1.7; }
.page-content h2 {
  margin-top: 2.4em; padding-top: 2em;
  border-top: 1px solid var(--line);
  position: relative;
}
.page-content h2::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 40px; height: 2px;
  background: var(--accent);
}
.page-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.page-content h2:first-child::before { display: none; }
.page-content h3 { margin-top: 1.5em; margin-bottom: 0.5em; color: var(--ink); }
.page-content p { max-width: 740px; color: var(--ink-soft); }
.page-content ul, .page-content ol { margin-bottom: 1em; max-width: 740px; color: var(--ink-soft); }
.page-content li { margin-bottom: 0.5em; padding-left: 4px; }
.page-content strong { color: #EFF1F3; }

/* ======== TEAM ======== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.team-card__photo { width: 72px; height: 72px; border-radius: 50%; background: var(--surface-2); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.team-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: #EFF1F3; margin-bottom: 2px; }
.team-card__role { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); margin-bottom: 14px; display: block; }
.team-card__bio { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }

/* ======== CTA BAND ======== */
.cta-band {
  padding: clamp(48px, 8vw, 80px) 0; text-align: center;
  background: linear-gradient(135deg, rgba(0,212,170,0.08) 0%, rgba(255,107,53,0.05) 100%);
  border-top: 1px solid rgba(0,212,170,0.12); border-bottom: 1px solid rgba(0,212,170,0.12);
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); max-width: 480px; margin: 0 auto 28px; }

/* ======== SITEMAP PAGE ======== */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 0.95rem; }

/* ======== 404 ======== */
.four-oh-four { text-align: center; padding: clamp(120px, 20vh, 200px) 0; }
.four-oh-four__code { font-family: var(--font-mono); font-size: clamp(5rem, 12vw, 10rem); font-weight: 700; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 16px; }
.four-oh-four h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.four-oh-four p { color: var(--ink-soft); margin-bottom: 28px; }

/* ======== THANK YOU ======== */
.thank-you { text-align: center; padding: clamp(120px, 20vh, 200px) 0; }
.thank-you__icon { width: 64px; height: 64px; color: var(--accent); margin: 0 auto 24px; }
.thank-you h1 { margin-bottom: 12px; }
.thank-you p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 28px; }

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  :root { --header-h: 64px; }
}
@media (max-width: 768px) {
  .hero__content { max-width: 100%; }
  .section { padding: clamp(48px, 8vw, 80px) 0; }
}
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn-primary, .hero__actions .btn-ghost { width: 100%; justify-content: center; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 34px; }
  .timeline::before { left: 12px; }
  .timeline__dot { left: -34px; width: 24px; height: 24px; font-size: 0.65rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero__readouts { grid-template-columns: 1fr 1fr; }
  .readout { padding: 14px 10px; }
  .readout__value { font-size: 0.95rem; }
}
@media (max-width: 360px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: 2rem; }
}

/* ======== WATCH-PRECISION MICRO-EFFECTS ======== */

@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0,212,170,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,170,0); }
}
@keyframes mechanism-drift { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes readout-tick {
  0%, 85%, 100% { opacity: 1; }
  90% { opacity: 0.6; }
}
@keyframes bar-sweep {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.hero__mechanism { animation: mechanism-drift 180s linear infinite; }

.readout__value { animation: readout-tick 2.8s ease-in-out infinite; }
.readout:nth-child(2) .readout__value { animation-delay: 0.7s; }
.readout:nth-child(3) .readout__value { animation-delay: 1.4s; }
.readout:nth-child(4) .readout__value { animation-delay: 2.1s; }

.timeline__step.is-in .timeline__dot {
  animation: dot-pulse 600ms cubic-bezier(.2,.7,.2,1);
  animation-delay: calc(var(--i, 0) * 120ms);
}

.report-mockup::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent));
  background-size: 200% 100%;
  animation: bar-sweep 5s ease-in-out infinite;
}

.timeline__step { transition: transform 280ms cubic-bezier(.2,.7,.2,1); }
.timeline__step:hover { transform: translateX(6px); }
.timeline__step:hover .timeline__dot { background: var(--accent); color: var(--bg); transition: background 200ms, color 200ms; }

.faq-item summary { transition: color 200ms, padding-left 280ms cubic-bezier(.2,.7,.2,1); }
.faq-item summary:hover { padding-left: 8px; }
.faq-item summary:hover::after { color: #00EBBD; }

.team-card:hover .team-card__photo { border-color: #00EBBD; background: rgba(0,212,170,0.1); transition: border-color 240ms, background 240ms; }
.team-card:hover { border-color: rgba(0,212,170,0.2); }

.stat { transition: transform 280ms cubic-bezier(.2,.7,.2,1); }
.stat:hover { transform: translateY(-4px); }

.trust-badge { transition: background 240ms, border-color 240ms, transform 180ms; cursor: default; }
.trust-badge:hover { border-color: rgba(0,212,170,0.3); background: var(--surface-2); transform: translateY(-2px); }

.testimonial:hover::before { color: #00EBBD; opacity: 0.5; transition: color 280ms, opacity 280ms; }

.pricing-card:hover { box-shadow: 0 20px 48px rgba(0,212,170,0.1), 0 0 0 1px rgba(0,212,170,0.12); }

.contact-row:hover .contact-row__icon { filter: drop-shadow(0 0 4px rgba(0,212,170,0.3)); }

.footer__nav a, .footer__legal a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: color 200ms, transform 200ms, background-size 280ms cubic-bezier(.2,.7,.2,1);
}
.footer__nav a:hover, .footer__legal a:hover { background-size: 100% 1px; }

@media (max-width: 480px) {
  .report__rating { flex-direction: column; gap: 8px; }
  .report__rating-value { font-size: 1rem; }
}

/* Stagger-reveal enhancements for cards/grids */
.pricing-card.reveal:nth-child(1) { --i: 0; }
.pricing-card.reveal:nth-child(2) { --i: 1; }
.pricing-card.reveal:nth-child(3) { --i: 2; }
.pricing-card.reveal:nth-child(4) { --i: 3; }
.testimonial.reveal:nth-child(1) { --i: 0; }
.testimonial.reveal:nth-child(2) { --i: 1; }
.testimonial.reveal:nth-child(3) { --i: 2; }
.team-card.reveal:nth-child(1) { --i: 0; }
.team-card.reveal:nth-child(2) { --i: 1; }
.team-card.reveal:nth-child(3) { --i: 2; }

/* Precision-feel hover on contact rows */
.contact-row { position: relative; }
.contact-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--accent); opacity: 0; transform: scaleY(0);
  transition: opacity 280ms cubic-bezier(.2,.7,.2,1), transform 280ms cubic-bezier(.2,.7,.2,1);
  border-radius: 1px;
}
.contact-row:hover::before { opacity: 1; transform: scaleY(1); }

/* Watchmaker precision line on pricing card hover */
.pricing-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 360ms cubic-bezier(.2,.7,.2,1);
}
.pricing-card:hover::after { opacity: 0.6; }

/* Subtle glow on hero readout values */
.readout { transition: background 280ms; }
.readout:hover { background: rgba(0,212,170,0.04); }
.readout:hover .readout__value { text-shadow: 0 0 8px rgba(0,212,170,0.25); }

/* Timegrapher scan-line effect on table row hover */
tr { position: relative; }
tr:hover td { transition: background 200ms; }

/* Team card photo pulse on hover */
@keyframes photo-precision-ring {
  0% { box-shadow: 0 0 0 0 rgba(0,212,170,0.3); }
  100% { box-shadow: 0 0 0 6px rgba(0,212,170,0); }
}
.team-card:hover .team-card__photo { animation: photo-precision-ring 800ms cubic-bezier(.2,.7,.2,1); }

/* Eyebrow line grow on reveal */
.eyebrow::before { transition: width 600ms cubic-bezier(.2,.7,.2,1); }
.reveal .eyebrow::before { width: 0; }
.reveal.is-in .eyebrow::before { width: 28px; }

/* Escapement tick on FAQ toggle */
@keyframes escapement-tick {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(12deg); }
  60% { transform: rotate(-6deg); }
  100% { transform: rotate(0deg); }
}
.faq-item[open] summary::after { animation: escapement-tick 400ms cubic-bezier(.2,.7,.2,1); }

/* Precision lock glow on CTA hover */
@keyframes precision-lock {
  0% { box-shadow: 0 8px 24px rgba(0,212,170,0.25); }
  50% { box-shadow: 0 8px 32px rgba(0,212,170,0.4), 0 0 0 2px rgba(0,212,170,0.12); }
  100% { box-shadow: 0 8px 24px rgba(0,212,170,0.25); }
}
.btn-primary:hover { animation: precision-lock 1.6s ease infinite; }

/* Gear tooth border shimmer on featured pricing card */
@keyframes gear-shimmer {
  0% { border-color: var(--accent); }
  50% { border-color: rgba(0,235,189,0.7); }
  100% { border-color: var(--accent); }
}
.pricing-card--featured:hover { animation: gear-shimmer 2s ease infinite; }

/* Stagger cascade for timeline entries */
.timeline__step.is-in { transition-delay: calc(var(--i, 0) * 120ms); }
.timeline__step.is-in .timeline__dot {
  transition: background 300ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 120ms),
              color 300ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 120ms),
              box-shadow 300ms cubic-bezier(.2,.7,.2,1) calc(var(--i, 0) * 120ms);
}

/* Testimonial quote mark float */
@keyframes quote-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.testimonial:hover::before { animation: quote-float 2.4s ease infinite; }

/* Subtle crosshair pulse on stat hover */
.stat:hover .stat__number { text-shadow: 0 0 12px rgba(0,212,170,0.3); transition: text-shadow 280ms; }

@media (prefers-reduced-motion: reduce) {
  .hero__mechanism, .readout__value,
  .timeline__step.is-in .timeline__dot { animation: none !important; }
  .report-mockup::before { animation: none !important; }
  .timeline__step, .stat, .trust-badge { transition: none !important; }
  .faq-item[open] summary::after,
  .btn-primary:hover,
  .pricing-card--featured:hover,
  .testimonial:hover::before { animation: none !important; }
  .team-card:hover .team-card__photo { animation: none !important; }
  .contact-row::before, .pricing-card::after, .eyebrow::before { transition: none !important; }
  .reveal .eyebrow::before { width: 28px; }
}

/* ======== PRINT ======== */
@media print {
  .site-header, .drawer, .drawer-backdrop, .cookie-banner, .nav-toggle, .skip-link { display: none !important; }
  main { padding-top: 0 !important; }
  body { color: #000; background: #fff; }
  .section, .hero { padding: 24px 0; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
