/* ==========================================================================
   Optimo One — Marketing Site
   Design system + shared styles
   Upgraded: premium micro-interactions, layered shadows, refined rhythm
   ========================================================================== */

:root {
  /* Palette — Brand Kit (source: app.optimoone.com) */
  --bg: #ffffff;
  --bg-soft: #FAFBFC;
  --bg-softer: #F1F5F9;
  --bg-dark: #0A162B;
  --bg-dark-2: #22355F;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --border-dark: rgba(255, 255, 255, 0.08);

  --text: #0A162B;
  --text-muted: #64748B;
  --text-dim: #94A3B8;
  --text-body: #334155;
  --text-on-dark: #F8FAFC;
  --text-on-dark-dim: rgba(255, 255, 255, 0.55);

  --primary: #0A162B;
  --primary-hover: #22355F;
  --accent: #00B4F2;
  --accent-hover: #009DD6;
  --accent-soft: #F0FBFF;
  --accent-border: #E0F7FF;
  --accent-glow: rgba(0, 180, 242, 0.35);
  --success: hsl(152, 69%, 31%);
  --warning: hsl(38, 92%, 50%);
  --destructive: hsl(0, 72%, 51%);

  /* Gradients */
  --gradient-logo: linear-gradient(135deg, #22355F 0%, #0A162B 100%);
  --gradient-hero: linear-gradient(180deg, #ffffff 0%, #FAFBFC 100%);
  --gradient-text: linear-gradient(135deg, #0A162B 0%, #22355F 100%);

  /* Type — Inter only */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 960px;
  --header-h: 68px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — navy-based (brand kit) */
  --shadow-xs: 0 1px 2px rgba(10, 22, 43, 0.05);
  --shadow-sm: 0 1px 3px rgba(10, 22, 43, 0.06), 0 1px 2px rgba(10, 22, 43, 0.04);
  --shadow: 0 2px 12px rgba(10, 22, 43, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 43, 0.08), 0 2px 6px rgba(10, 22, 43, 0.04);
  --shadow-lg: 0 20px 40px rgba(10, 22, 43, 0.10), 0 4px 12px rgba(10, 22, 43, 0.05);
  --shadow-xl: 0 32px 64px rgba(10, 22, 43, 0.14), 0 8px 16px rgba(10, 22, 43, 0.06);
  --shadow-glow: 0 0 0 1px rgba(0, 180, 242, 0.3), 0 24px 64px rgba(0, 180, 242, 0.15);
  --shadow-glow-sm: 0 0 0 1px rgba(0, 180, 242, 0.15), 0 8px 24px rgba(0, 180, 242, 0.08);
  --shadow-header: 0 1px 0 rgba(10, 22, 43, 0.06), 0 4px 16px rgba(10, 22, 43, 0.04);
  --shadow-btn: 0 4px 16px rgba(0, 180, 242, 0.2);
  --shadow-mockup: 0 8px 32px rgba(10, 22, 43, 0.12);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur: 220ms;
  --dur-slow: 400ms;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 6px;
  background: var(--bg-softer);
  border-radius: var(--radius-xs);
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: white;
}

/* Keyboard focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.nav-brand:focus-visible {
  outline-offset: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.section-soft {
  background: var(--bg-soft);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-on-dark);
}

.section-head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  margin-bottom: 18px;
}

.display {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.display-xl {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.display em,
.display-xl em,
.hero h1 em,
h2 em,
.cta-final h2 em {
  font-style: normal;
  color: var(--accent);
}

h2.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.55;
}

.lede-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-dark .lede,
.hero .lede {
  color: rgba(248, 250, 252, 0.78);
}

.text-accent { color: var(--accent); }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-dark .text-gradient {
  background: var(--gradient-text-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   Buttons — premium micro-interactions
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius);
  transition:
    transform var(--dur) var(--ease-out),
    background var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: -0.005em;
  will-change: transform;
  isolation: isolate;
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-btn);
}
.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 180, 242, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.section-dark .btn-ghost,
.hero .btn-ghost,
.cta-final .btn-ghost {
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-final .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-group {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-arrow {
  transition: transform var(--dur) var(--ease-out);
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* ==========================================================================
   Header & Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-header);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-brand-name { font-weight: 700; }
.nav-brand-one { font-weight: 400; color: var(--text-muted); }

.nav-brand-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  line-height: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out);
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-signin {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-signin:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--text);
  transition: background var(--dur-fast) var(--ease-out);
}
.nav-toggle:hover { background: var(--bg-soft); }
.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta .nav-signin,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }
}

.mobile-menu {
  display: none;
  padding: 16px 0 24px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.mobile-menu.open {
  display: block;
  animation: slideDown var(--dur) var(--ease-out);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 18px;
  width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(88px, 12vw, 160px) 0 clamp(72px, 10vw, 128px);
  text-align: center;
  overflow: hidden;
  background: var(--gradient-hero);
  color: var(--text);
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--text);
  max-width: 920px;
  margin: 0 auto 22px;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero .lede {
  color: var(--text-body);
  margin: 0 auto 36px;
  max-width: 720px;
  text-align: center;
}

.hero .btn-group {
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.hero-badge:hover {
  background: rgba(0, 180, 242, 0.1);
  border-color: rgba(0, 180, 242, 0.3);
}

.hero-badge-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--success);
  opacity: 0.6;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-meta {
  margin-top: 26px;
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.hero-mockup {
  position: relative;
  z-index: 2;
  margin: 72px auto 0;
  max-width: 1040px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow-mockup);
}

.hero-mockup-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px 12px;
}

.hero-mockup-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.hero-mockup-chrome span:first-child { background: #ff5f56; }
.hero-mockup-chrome span:nth-child(2) { background: #ffbd2e; }
.hero-mockup-chrome span:nth-child(3) { background: #27c93f; }

.hero-mockup-body {
  border-radius: var(--radius);
  background: var(--bg-dark);
  padding: 24px;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  color: var(--text-on-dark);
}

/* ==========================================================================
   Logo wall
   ========================================================================== */

.logo-wall {
  padding: 56px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.logo-wall-title {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px 48px;
  align-items: center;
}

.logo-grid span {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease-out);
}
.logo-grid span:hover { opacity: 0.9; }

/* ==========================================================================
   Feature grid (6-up)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  position: relative;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
  overflow: hidden;
  isolation: isolate;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 180, 242, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease-out);
  pointer-events: none;
  z-index: -1;
}

.feature-card:hover {
  border-color: rgba(0, 180, 242, 0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform var(--dur) var(--ease-out), background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: gap var(--dur) var(--ease-out);
}
.feature-card-link:hover { gap: 8px; }

/* ==========================================================================
   Deep-dive feature row
   ========================================================================== */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 104px) 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:first-child { padding-top: 0; }
.feature-row:last-child { border-bottom: 0; padding-bottom: 0; }

.feature-row.reverse .feature-row-content {
  order: 2;
}

@media (max-width: 860px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row.reverse .feature-row-content {
    order: 0;
  }
}

.feature-row h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.feature-row .lede {
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

.feature-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

.feature-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 12px;
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.08),
    0 4px 12px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feature-visual-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mini-quote {
  margin-top: 32px;
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

.section-soft .mini-quote {
  background: var(--bg);
}

.mini-quote p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  letter-spacing: -0.005em;
}

.mini-quote footer {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  font-style: normal;
}

/* ==========================================================================
   Testimonial card
   ========================================================================== */

.testimonial {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 5vw, 56px) clamp(28px, 4vw, 48px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
  opacity: 0.8;
}

.testimonial blockquote {
  margin: 0 0 28px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 500;
  text-wrap: balance;
}

.testimonial blockquote::before {
  content: '"';
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  line-height: 0.5;
  margin-right: 6px;
  vertical-align: -0.5em;
}

.testimonial-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.01em;
}

.testimonial-meta {
  text-align: left;
  font-size: 14px;
}

.testimonial-meta strong {
  display: block;
  color: var(--text);
  font-weight: 600;
}

.testimonial-meta span {
  color: var(--text-muted);
}

/* ==========================================================================
   Use cases
   ========================================================================== */

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.usecase-card {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--dur) var(--ease-out);
}

.usecase-card:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.usecase-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--text);
  color: white;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: transform var(--dur) var(--ease-out);
}
.usecase-card:hover .usecase-icon {
  transform: rotate(-4deg) scale(1.05);
}

.usecase-icon svg {
  width: 20px;
  height: 20px;
}

.usecase-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Integrations
   ========================================================================== */

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 56px 0 32px;
}

.integration-chip {
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--dur) var(--ease-out);
}

.integration-chip:hover {
  border-color: rgba(0, 180, 242, 0.35);
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.integration-chip-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.integration-chip-icon svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 5px;
  margin: 32px auto 56px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}

.pricing-toggle-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  background: var(--text);
  border-radius: 999px;
  transition: transform var(--dur) var(--ease-out-soft),
              width var(--dur) var(--ease-out-soft);
  z-index: 0;
  box-shadow: var(--shadow-sm);
}

.pricing-toggle button {
  position: relative;
  z-index: 1;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color var(--dur) var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-toggle button.active {
  color: white;
}

.pricing-toggle .save {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  padding: 2px 6px;
  background: rgba(16, 185, 129, 0.14);
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.pricing-toggle button.active .save {
  color: #a7f3d0;
  background: rgba(167, 243, 208, 0.18);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.pricing-card.featured {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
}

/* NUKE: force white text on every element inside the Growth card */
.pricing-card.featured,
.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured div,
.pricing-card.featured span,
.pricing-card.featured ul,
.pricing-card.featured li,
.pricing-card.featured li > span,
.pricing-card.featured strong,
.pricing-card.featured em,
.pricing-card.featured .feature-note,
.pricing-card.featured a {
  color: #ffffff !important;
}

/* Keep green checkmarks */
.pricing-card.featured .pricing-features li svg {
  color: #10b981 !important;
}

/* Dim disabled feature rows */
.pricing-card.featured .pricing-features li.disabled,
.pricing-card.featured .pricing-features li.disabled strong,
.pricing-card.featured .pricing-features li.disabled span {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Inline subtle annotation (e.g. "(Claude-powered)") */
.pricing-features .feature-subtle {
  display: inline;
  font-size: 0.9em;
  opacity: 0.8;
  white-space: nowrap;
  font-weight: 400;
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  background: var(--accent);
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-btn);
}

.pricing-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-price strong {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.pricing-price strong.swap {
  opacity: 0;
}

.pricing-price span {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  min-height: 18px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 11px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--success);
  margin-top: 3px;
}

.pricing-features li > span {
  flex: 1;
  min-width: 0;
}

.pricing-features li strong {
  font-weight: 600;
  color: var(--text);
}

/* Inline secondary note e.g. (Claude-powered) (fair use) */
.pricing-features .feature-note {
  display: inline;
  font-style: normal;
  opacity: 0.7;
  font-size: 0.85em;
  font-weight: 400;
  margin-left: 0.25rem;
}

.pricing-features li.disabled {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(148, 163, 184, 0.4);
  text-decoration-thickness: 1px;
}

.pricing-features li.disabled svg {
  color: var(--text-dim);
}

/* ==========================================================================
   Compare table
   ========================================================================== */

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 56px;
  font-size: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.compare-table thead th {
  font-weight: 600;
  background: var(--bg);
  position: sticky;
  top: calc(var(--header-h) - 1px);
  z-index: 10;
  border-bottom: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

.compare-table td:not(:first-child),
.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table tr.group td {
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 20px;
}

.compare-table tbody tr:not(.group):hover td {
  background: var(--bg-soft);
}

.compare-yes {
  color: var(--success);
  font-weight: 600;
}

.compare-no {
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 56px auto 0;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item[open] {
  border-color: rgba(0, 180, 242, 0.35);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background:
    linear-gradient(currentColor, currentColor) center/12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 12px no-repeat;
  color: var(--text-muted);
  transition: transform var(--dur) var(--ease-out), color var(--dur-fast) var(--ease-out);
  transform-origin: center;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item-body {
  padding: 0 24px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  animation: fadeInDown var(--dur) var(--ease-out);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-item-body a {
  color: var(--accent);
  font-weight: 500;
}
.faq-item-body a:hover { text-decoration: underline; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.cta-final {
  padding: clamp(72px, 10vw, 128px) 0;
  text-align: center;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* no decorative pseudo-elements — clean navy block */

.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 20px;
}

.cta-final h2 em {
  color: var(--accent);
  font-style: normal;
}

.cta-final p {
  color: rgba(248, 250, 252, 0.72);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  margin-bottom: 36px;
  text-wrap: balance;
}

.cta-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(248, 250, 252, 0.65);
}

.cta-perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-perks svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark-dim);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 250, 252, 0.5);
  max-width: 320px;
}

.footer-brand .nav-brand {
  color: white;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-on-dark);
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(248, 250, 252, 0.6);
  transition: color var(--dur-fast) var(--ease-out);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: rgba(248, 250, 252, 0.42);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover { color: white; }

.social-links {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: rgba(248, 250, 252, 0.7);
  transition: all var(--dur) var(--ease-out);
}

.social-links a:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
}

.social-links svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

[data-aos] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

[data-aos].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="1"].in-view { transition-delay: 80ms; }
[data-aos-delay="2"].in-view { transition-delay: 160ms; }
[data-aos-delay="3"].in-view { transition-delay: 240ms; }

/* ==========================================================================
   Utility
   ========================================================================== */

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 48px; }

/* ==========================================================================
   Testimonials grid (when used as 3-up)
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 48px;
  align-items: stretch;
}

.testimonials-grid .testimonial {
  max-width: none;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonials-grid .testimonial blockquote {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  text-align: left;
  flex: 1;
}

.testimonials-grid .testimonial blockquote::before {
  display: block;
  margin-bottom: 8px;
  vertical-align: baseline;
}

.testimonials-grid .testimonial .testimonial-author {
  margin-top: auto;
  padding-top: 20px;
}

/* ==========================================================================
   Add-ons
   ========================================================================== */

.addons-row {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  gap: 16px;
}

.addon-card {
  flex: 1;
  padding: 22px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}

.addon-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow);
}

.addon-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
}

.addon-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.addon-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.addon-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  margin-top: 8px;
}

.addon-price span {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .addons-row {
    flex-direction: column;
  }
}

/* ==========================================================================
   Hero trust markers
   ========================================================================== */

/* Hero actions — stacked button row + trust markers */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 8px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 0.875rem;
  color: #64748b;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero-specific ghost button (transparent bg, dark text, solid outline) */
.btn-hero-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn-hero-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--text);
  transform: translateY(-1px);
}

/* ==========================================================================
   Logo marquee
   ========================================================================== */

.marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  padding: 8px 0 24px;
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  font-family: var(--font-sans);
  opacity: 0.5;
  white-space: nowrap;
  transition: opacity var(--dur) var(--ease-out);
}

.marquee-track span:hover {
  opacity: 0.9;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Button glow
   ========================================================================== */

.btn-glow {
  position: relative;
}

.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--accent);
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.btn-glow:hover::after {
  opacity: 0.35;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ==========================================================================
   Comparison table (pricing page)
   ========================================================================== */

.vs-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}

.vs-table thead th {
  padding: 16px 20px;
  background: var(--bg-soft);
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
}

.vs-table thead th:first-child {
  width: 40%;
}

.vs-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.vs-table tbody tr:last-child td {
  border-bottom: 0;
}

.vs-table .highlight {
  background: rgba(0, 180, 242, 0.04);
  font-weight: 600;
  color: var(--text);
}

.vs-table .competitor {
  color: var(--text-muted);
}

/* ==========================================================================
   Marketplace banner
   ========================================================================== */

.marketplace-banner {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 24px;
  align-items: center;
}

.marketplace-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 180, 242, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 24px;
}

.marketplace-banner h3 {
  font-size: 18px;
  color: var(--text-on-dark);
  margin-bottom: 4px;
}

.marketplace-banner p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .marketplace-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Legal page
   ========================================================================== */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-mockup { animation: none; }
  .hero-badge-dot::after { animation: none; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  [data-aos] { opacity: 1; transform: none; }
}
