@property --shine {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

:root {
  --trae-intelligent-green: #10b981;
  --trae-intelligent-green-dark: #059669;
  --trae-intelligent-green-light: #34d399;
  --trae-intelligent-green-muted: rgba(16, 185, 129, 0.1);
  --radius: 0.65rem;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

  --bg: #0c0f14;
  --surface: #11151b;
  --elevated: #171b22;
  --trae-border: #2c333d;
  --trae-border-subtle: #1d232c;

  --text-primary: #e7e9ee;
  --text-secondary: rgba(231, 233, 238, 0.72);
  --text-muted: rgba(231, 233, 238, 0.52);
  --text-color: var(--text-primary);
  --accent: var(--trae-intelligent-green);
  --surface-bg: var(--surface);
  --surface-border: var(--trae-border);

  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-grad-top: rgba(255, 255, 255, 0.035);
  --glass-grad-bottom: var(--glass-bg);
  --glass-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 0 0 1px rgba(16, 185, 129, 0.04);
  --glass-shadow-hover: 0 16px 44px rgba(0, 0, 0, 0.42), 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 0 0 1px rgba(16, 185, 129, 0.08);

  --shadow-soft: 0 22px 70px rgba(0, 0, 0, 0.38);
  --shadow-card: 0 16px 46px rgba(0, 0, 0, 0.24);

  --pin-shot-0: none;
  --pin-shot-1: none;
  --pin-shot-2: none;
  --pin-shot-3: none;
}

:root[data-theme='light'] {
  --bg: #e7edf3;
  --surface: #edf2f7;
  --elevated: #e3e9f1;
  --trae-border: #c8d1dc;
  --trae-border-subtle: #d9e0e8;

  --text-primary: #334155;
  --text-secondary: rgba(51, 65, 85, 0.72);
  --text-muted: rgba(51, 65, 85, 0.52);
  --text-color: var(--text-primary);
  --accent: var(--trae-intelligent-green-dark);
  --surface-bg: #f3f7fb;
  --surface-border: rgba(15, 23, 42, 0.12);

  --glass-bg: rgba(231, 238, 246, 0.72);
  --glass-grad-top: rgba(236, 242, 249, 0.84);
  --glass-grad-bottom: rgba(221, 232, 243, 0.72);
  --glass-shadow: 0 10px 24px rgba(15, 23, 42, 0.12), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  --glass-shadow-hover: 0 16px 34px rgba(15, 23, 42, 0.16), 0 1px 0 rgba(255, 255, 255, 0.42) inset;

  --shadow-soft: 0 22px 70px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 16px 46px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.55;
  letter-spacing: -0.012em;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

:root[data-theme='light'] body::before {
  opacity: .10;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.26);
}

:root[data-theme='light'] a:focus-visible,
:root[data-theme='light'] button:focus-visible,
:root[data-theme='light'] input:focus-visible,
:root[data-theme='light'] textarea:focus-visible {
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.18);
  border-color: rgba(5, 150, 105, 0.26);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: .6rem .85rem;
  border-radius: .7rem;
  background: var(--surface);
  border: 1px solid var(--trae-border);
  color: var(--text-primary);
  transform: translateY(-160%);
  transition: transform .2s ease;
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.94), rgba(7, 10, 16, 0.76)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018));
  backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.028),
    0 16px 42px rgba(0, 0, 0, 0.16);
}

:root[data-theme='light'] .nav {
  background:
    linear-gradient(180deg, rgba(232, 238, 245, 0.94), rgba(232, 238, 245, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.34));
  border-bottom-color: rgba(15, 23, 42, 0.06);
}

.nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(7, 10, 16, 0.98), rgba(7, 10, 16, 0.84)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.024));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

:root[data-theme='light'] .nav.is-scrolled {
  border-bottom-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(232, 238, 245, 0.98), rgba(232, 238, 245, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.38));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.32);
}

.nav.is-deep .nav-inner {
  padding-top: .82rem;
  padding-bottom: .82rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: .82rem 1.35rem;
  width: 100%;
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-stack {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  overflow: hidden;
  transition: opacity .48s cubic-bezier(.22, 1, .36, 1), transform .48s cubic-bezier(.22, 1, .36, 1), max-width .48s cubic-bezier(.22, 1, .36, 1), margin .48s cubic-bezier(.22, 1, .36, 1);
  max-width: 32px;
}

.logo-glow {
  position: absolute;
  inset: -14px;
  border-radius: 18px;
  background: radial-gradient(circle at 45% 45%, rgba(16, 185, 129, 0.16), transparent 62%);
  filter: blur(10px);
  opacity: .65;
  transform: translate3d(0, 0, 0);
  animation: logoPulse 3.2s ease-in-out infinite;
  pointer-events: none;
}

:root[data-theme='light'] .logo-glow {
  background: radial-gradient(circle at 45% 45%, rgba(5, 150, 105, 0.16), transparent 62%);
  opacity: .55;
}

.logo-img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  animation: logoFloat 6.4s ease-in-out infinite;
  transform: translate3d(0, 0, 0) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
}

:root[data-theme='light'] .logo-img {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.brand-text {
  display: grid;
  line-height: 1.05;
  transform: translate3d(0, 0, 0);
  transition: opacity .48s cubic-bezier(.22, 1, .36, 1), transform .48s cubic-bezier(.22, 1, .36, 1), max-width .48s cubic-bezier(.22, 1, .36, 1);
  max-width: 150px;
  overflow: hidden;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-size: 1.23rem;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: -0.025em;
}

.logo-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.28) 46%, transparent 56% 100%);
  opacity: 0;
  transform: translateX(-45%) skewX(-18deg);
  filter: blur(0.2px);
  pointer-events: none;
}

.brand:hover .logo-stack::after {
  opacity: .75;
  animation: logoSheen .9s ease both;
}

.wordmark span {
  display: inline-block;
  animation: wordIn .7s ease both;
}

.wordmark .wm-c { animation-delay: 40ms; }
.wordmark .wm-rest { animation-delay: 90ms; }
.wordmark .wm-t { animation-delay: 140ms; }

.nav-inner {
  animation: navIn .6s ease both;
}

.nav-inner { animation-delay: 30ms; }

.wm-c {
  font-weight: 900;
}

.wm-rest {
  font-weight: 800;
}

.wm-t {
  font-weight: 900;
  color: #00ff88;
  letter-spacing: -0.02em;
}

:root[data-theme='light'] .wm-t {
  color: #00ff88;
}

.brand:hover .logo-img {
  transform: translate3d(0, -1px, 0) rotate(-2deg);
}

.brand:hover .logo-glow {
  opacity: .9;
}

.brand:hover .wm-t {
  filter: drop-shadow(0 10px 22px rgba(0, 255, 136, 0.18));
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -2px, 0); }
}

@keyframes logoPulse {
  0%, 100% { opacity: .55; transform: scale(0.98); }
  50% { opacity: .85; transform: scale(1.03); }
}

@keyframes wordIn {
  from { opacity: 0; transform: translate3d(0, -6px, 0); filter: blur(3px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}

@keyframes navIn {
  from { opacity: 0; transform: translate3d(0, -8px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes logoSheen {
  from { transform: translateX(-55%) skewX(-18deg); }
  to { transform: translateX(55%) skewX(-18deg); }
}

.nav-compact .brand {
  min-width: auto;
}

.nav-compact .brand-text {
  opacity: 0;
  transform: translate3d(-10px, 0, 0);
  max-width: 0;
}

.nav-compact .logo-stack {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

html:not(.nav-compact) .logo-stack {
  opacity: 0;
  transform: translate3d(-6px, 0, 0) scale(0.7);
  max-width: 0;
  margin-right: -0.75rem;
}

.nav-links {
  display: flex;
  gap: .32rem;
  color: var(--text-secondary);
  font-size: .94rem;
  align-items: center;
  margin-left: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
  padding: .5rem .72rem;
  border-radius: .8rem;
  font-weight: 520;
  letter-spacing: -0.012em;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
  border: 1px solid transparent;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: .78rem;
  right: .78rem;
  bottom: .42rem;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transform: scaleX(.65);
  transform-origin: center;
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links a.nav-cta {
  margin-left: .38rem;
  padding: .58rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

:root[data-theme='light'] .nav-links a.nav-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.54));
  border-color: rgba(15, 23, 42, 0.12);
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.032);
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav-links a:not(.nav-cta):hover::after {
  opacity: .78;
  transform: scaleX(1);
}

.nav-links a.nav-cta:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
  border-color: rgba(134, 216, 187, 0.18);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.nav-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: .75rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  justify-content: center;
  gap: 4px;
}

:root[data-theme='light'] .nav-toggle {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
  opacity: .85;
}

.btn {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: .78rem;
  padding: .6rem .95rem;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  user-select: none;
}

:root[data-theme='light'] .btn {
  border-color: rgba(15, 23, 42, 0.14);
}

.btn-primary {
  background: linear-gradient(135deg, var(--trae-intelligent-green), var(--trae-intelligent-green-light));
  border-color: rgba(16, 185, 129, 0.22);
  color: #08120c;
  box-shadow: 0 18px 46px rgba(16, 185, 129, 0.06);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 54px rgba(16, 185, 129, 0.08);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--glass-grad-top), var(--glass-grad-bottom));
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.8rem 0 3.4rem;
  min-height: clamp(700px, 84svh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  --hero-parallax: 0px;
  --hero-depth-shift: 0px;
  --hero-rails-shift: 0px;
  --hero-content-shift: 0px;
}

@keyframes heroAtmosphereDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-1.2%, 1.8%, 0) scale(1.035); }
}

@keyframes heroHaloFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .84; }
  50% { transform: translate3d(1.5%, -2.5%, 0) scale(1.05); opacity: .96; }
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .6;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(148, 163, 184, 0.07) 0%, transparent 58%),
    radial-gradient(circle at 85% 78%, rgba(71, 85, 105, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 76% 34%, rgba(84, 124, 134, 0.12) 0%, transparent 34%),
    radial-gradient(ellipse at 72% 42%, rgba(17, 27, 39, 0.34) 0%, transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.025) 0%, transparent 40%);
  filter: blur(68px);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  animation: heroAtmosphereDrift 24s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .32;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.035) 0%, transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 52px);
  mask-image: radial-gradient(circle at 40% 35%, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.0) 55%);
  animation: heroAtmosphereDrift 30s ease-in-out infinite reverse;
}

:root[data-theme='light'] .hero::after {
  opacity: .28;
  background:
    radial-gradient(circle at var(--cx, 20%) var(--cy, 30%), rgba(15, 23, 42, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.04) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.035) 0 1px, transparent 1px 56px);
}

:root[data-theme='light'] .hero::before {
  background:
    radial-gradient(circle at 15% 22%, rgba(148, 163, 184, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 85% 78%, rgba(100, 116, 139, 0.07) 0%, transparent 62%),
    radial-gradient(ellipse at 76% 34%, rgba(100, 116, 139, 0.16) 0%, transparent 35%),
    radial-gradient(ellipse at 72% 42%, rgba(226, 232, 240, 0.26) 0%, transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.04) 0%, transparent 40%);
}

.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 430px);
  gap: 1.8rem;
  align-items: start;
  text-align: left;
  position: relative;
  z-index: 10;
  transform: translate3d(0, var(--hero-content-shift), 0);
  transition: transform .18s linear;
}

.hero-content {
  min-width: 0;
  position: relative;
  padding-top: 0;
}

.hero-kicker {
  margin: 0 0 1.45rem;
  color: rgba(134, 216, 187, 0.76);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-rails {
  position: relative;
  z-index: 5;
  margin-top: 2.35rem;
  display: grid;
  padding-top: 0;
  transform: translate3d(0, var(--hero-rails-shift), 0);
  transition: transform .18s linear;
}

.hero-depth {
  position: relative;
  inset: auto;
  width: 100%;
  max-width: 470px;
  min-height: max(336px, var(--hero-support-height, 336px));
  height: max(336px, var(--hero-support-height, 336px));
  z-index: 4;
  pointer-events: auto;
  perspective: 1400px;
  transform: translate3d(0, var(--hero-depth-shift), 0);
  transition: transform .18s linear;
  justify-self: end;
  margin-top: .4rem;
  display: block;
  padding: 0;
  overflow: visible;
  isolation: isolate;
}

.hero-depth::before,
.hero-depth::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-depth::before {
  inset: -6% -18% -12% 10%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 64% 48%, rgba(108, 151, 160, 0.16) 0%, rgba(62, 94, 103, 0.14) 24%, transparent 62%),
    radial-gradient(ellipse at 58% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 26%),
    radial-gradient(ellipse at 62% 76%, rgba(3, 7, 18, 0.46) 0%, transparent 68%);
  filter: blur(34px);
  opacity: .88;
  animation: heroHaloFloat 19s ease-in-out infinite;
}

.hero-depth::after {
  inset: 8% -8% 14% 28%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 55% 50%, rgba(244, 248, 250, 0.08) 0%, rgba(255, 255, 255, 0.02) 18%, transparent 54%),
    radial-gradient(ellipse at 58% 52%, rgba(30, 41, 59, 0.22) 0%, transparent 66%);
  filter: blur(18px);
  opacity: .58;
  animation: heroHaloFloat 23s ease-in-out infinite reverse;
}

.hero-depth-stage {
  position: relative;
  min-height: 0;
  height: 100%;
  perspective: 1400px;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 1;
}

.hero-depth-stage::before,
.hero-depth-stage::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-depth-stage::before {
  inset: 3% -6% -8% -6%;
  border-radius: 2rem;
  background:
    radial-gradient(ellipse at 52% 16%, rgba(255, 255, 255, 0.07), transparent 28%),
    radial-gradient(ellipse at 54% 58%, rgba(116, 150, 158, 0.12), transparent 32%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.44), transparent 72%);
  opacity: .9;
  filter: blur(30px);
  animation: heroHaloFloat 17s ease-in-out infinite;
}

.hero-depth-stage::after {
  inset: auto 11% 2% 11%;
  height: 96px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.07), rgba(116, 150, 158, 0.06) 28%, rgba(0, 0, 0, 0) 72%);
  opacity: .7;
  filter: blur(18px);
  animation: heroAtmosphereDrift 22s ease-in-out infinite;
}

.hero-depth-card {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(100%, 388px);
  min-height: 268px;
  padding: .98rem 1rem 1rem;
  display: grid;
  align-content: start;
  gap: .44rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% -16%, rgba(255, 255, 255, 0.085), transparent 28%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(23, 28, 36, 0.996), rgba(9, 12, 17, 0.996) 68%, rgba(6, 9, 13, 0.998)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 24%);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.50),
    0 18px 34px rgba(0, 0, 0, 0.20),
    0 0 0 1px rgba(255, 255, 255, 0.028),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -28px 54px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.075);
  opacity: 0;
  filter: saturate(.98) brightness(.985) contrast(1.045);
  transform-origin: center center;
  transform:
    translate3d(-50%, 0, 0)
    rotateX(8deg)
    rotateY(-6deg)
    translateY(30px)
    translateZ(-34px)
    scale(.972);
  transition:
    opacity .92s cubic-bezier(.18, 1, .26, 1),
    transform .92s cubic-bezier(.18, 1, .26, 1),
    filter .92s cubic-bezier(.18, 1, .26, 1),
    box-shadow .92s cubic-bezier(.18, 1, .26, 1),
    border-color .92s cubic-bezier(.18, 1, .26, 1);
  will-change: transform, opacity, filter;
  pointer-events: none;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.hero-depth-card::before,
.hero-depth-card::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.hero-depth-card::before {
  inset: 1px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.10), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 46%);
  opacity: .72;
}

.hero-depth-card::after {
  inset: 10px 22px auto 22px;
  width: auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.015), var(--hero-accent, rgba(255, 255, 255, 0.16)), rgba(255, 255, 255, 0.015));
  opacity: .28;
}

.hero-depth-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: saturate(1.02) brightness(1.02) contrast(1.07);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 60px 146px rgba(0, 0, 0, 0.6),
    0 26px 48px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(148, 163, 184, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -26px 52px rgba(0, 0, 0, 0.16);
  transform:
    translate3d(-50%, 0, 0)
    rotateX(0deg)
    rotateY(0deg)
    translateY(-3px)
    translateZ(40px)
    scale(1);
  pointer-events: auto;
}

.hero-depth-card.is-entering {
  opacity: 1;
  filter: saturate(.94) brightness(.95) contrast(1.03) blur(1.6px);
  transform:
    translate3d(-50%, 0, 0)
    rotateX(6deg)
    rotateY(-4deg)
    translateY(28px)
    translateZ(-28px)
    scale(.968);
}

.hero-depth-card.is-exit {
  z-index: 2;
  opacity: 0;
  filter: saturate(.9) brightness(.92) contrast(1.02) blur(1.8px);
  transform:
    translate3d(-50%, 0, 0)
    rotateX(-3deg)
    rotateY(4deg)
    translateY(-8px)
    translateZ(-18px)
    scale(.972);
}

.hero-depth:not(.is-mounted) .hero-depth-card {
  transition-duration: 0ms;
}

.hero-depth:not(.is-mounted) .hero-depth-card.is-active {
  opacity: 0;
  filter: saturate(.82) brightness(.84) contrast(1.02) blur(18px);
  transform:
    translate3d(-50%, 0, 0)
    rotateX(12deg)
    rotateY(-9deg)
    translateY(78px)
    translateZ(-88px)
    scale(.926);
}

.hero-depth.is-mounted .hero-depth-card {
  transition:
    opacity 1.08s cubic-bezier(.18, 1, .26, 1),
    transform 1.08s cubic-bezier(.18, 1, .26, 1),
    filter 1.08s cubic-bezier(.18, 1, .26, 1),
    box-shadow 1.08s cubic-bezier(.18, 1, .26, 1),
    border-color 1.08s cubic-bezier(.18, 1, .26, 1);
}

.hero-depth-card.hero-depth-card-a {
  --hero-accent: rgba(226, 232, 240, 0.34);
}

.hero-depth-card.hero-depth-card-b {
  --hero-accent: rgba(203, 213, 225, 0.28);
}

.hero-depth-card.hero-depth-card-c {
  --hero-accent: rgba(148, 163, 184, 0.26);
}

.hero-depth-card.hero-depth-card-c strong {
  letter-spacing: -0.045em;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.hero-depth-card.hero-depth-card-c .hero-depth-copy {
  color: rgba(231, 233, 238, 0.76);
}

.hero-depth-card.hero-depth-card-c .hero-depth-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028));
  border-color: rgba(255, 255, 255, 0.075);
}

.hero-depth-card-no {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1.74rem;
  font-weight: 900;
  line-height: .9;
  letter-spacing: -0.045em;
  color: rgba(255, 255, 255, 0.06);
  transform: translateZ(30px);
}

.hero-depth-card strong {
  font-family: 'Space Grotesk', var(--font-body);
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  position: relative;
  z-index: 1;
  line-height: 1.04;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.hero-depth-copy {
  color: var(--text-secondary);
  font-size: .85rem;
  line-height: 1.45;
}

.hero-depth-copy-tight {
  font-size: .72rem;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.hero-depth-mini {
  margin-top: .35rem;
  display: grid;
  gap: .4rem;
}

.hero-mini-line,
.hero-depth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
  padding: .58rem .68rem;
  border-radius: .78rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: .78rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    0 6px 14px rgba(0, 0, 0, 0.06);
}

.hero-mini-line span,
.hero-depth-row span {
  color: var(--text-secondary);
}

.hero-mini-line b,
.hero-depth-row b {
  font-size: .82rem;
  letter-spacing: -0.015em;
}

.hero-depth-mini-rules {
  gap: .34rem;
}

.hero-depth-table {
  margin-top: .3rem;
  display: grid;
  gap: .38rem;
}

.hero-depth-k {
  color: rgba(255, 255, 255, 0.58);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

:root[data-theme='light'] .hero-depth-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 247, 250, 0.96)),
    linear-gradient(180deg, rgba(15, 23, 42, 0.018), transparent 24%);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow:
    0 22px 52px rgba(15, 23, 42, 0.12),
    0 8px 18px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

:root[data-theme='light'] .hero-depth-stage::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.5), transparent 30%),
    radial-gradient(circle at 50% 72%, rgba(148, 163, 184, 0.12), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(148, 163, 184, 0.12), transparent 72%);
  opacity: .75;
}

:root[data-theme='light'] .hero-depth-stage::after {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.46), rgba(148, 163, 184, 0.12) 26%, rgba(255, 255, 255, 0) 70%);
  opacity: .5;
}

:root[data-theme='light'] .hero-depth::before {
  background:
    radial-gradient(ellipse at 64% 48%, rgba(148, 163, 184, 0.18) 0%, rgba(203, 213, 225, 0.16) 24%, transparent 62%),
    radial-gradient(ellipse at 58% 40%, rgba(255, 255, 255, 0.34) 0%, transparent 26%),
    radial-gradient(ellipse at 62% 76%, rgba(203, 213, 225, 0.24) 0%, transparent 68%);
  opacity: .72;
}

:root[data-theme='light'] .hero-depth::after {
  background:
    radial-gradient(ellipse at 55% 50%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.16) 18%, transparent 54%),
    radial-gradient(ellipse at 58% 52%, rgba(148, 163, 184, 0.16) 0%, transparent 66%);
  opacity: .42;
}

:root[data-theme='light'] .hero-depth-card.is-active {
  border-color: rgba(15, 23, 42, 0.10);
  box-shadow:
    0 26px 64px rgba(15, 23, 42, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(15, 23, 42, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

:root[data-theme='light'] .hero-mini-line,
:root[data-theme='light'] .hero-depth-row {
  background: rgba(248, 250, 252, 0.88);
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme='light'] .hero-mini-pill {
  background: rgba(241, 245, 249, 0.92);
  border-color: rgba(15, 23, 42, 0.08);
}

:root[data-theme='light'] .hero-depth-card-no {
  color: rgba(15, 23, 42, 0.08);
}

:root[data-theme='light'] .hero-depth-k {
  color: rgba(51, 65, 85, 0.56);
}

.hero-rail-wrap {
  position: relative;
  padding: .3rem 0 .8rem;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero-rail-wrap::before,
.hero-rail-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.hero-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.hero-rail-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.hero-rail {
  display: flex;
  gap: .75rem;
  padding: 0.25rem 1rem 0.65rem;
  overflow-x: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  cursor: grab;
}

.hero-rail::-webkit-scrollbar {
  display: none;
}

.hero-rail:active {
  cursor: grabbing;
}

.rail-item {
  min-width: 230px;
  padding: .9rem .95rem;
  border-radius: 1.05rem;
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012));
  transition: transform .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  transform-style: preserve-3d;
}

:root[data-theme='light'] .rail-item {
  border-color: rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
}

.rail-k {
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: -0.012em;
  color: var(--text-muted);
}

.rail-t {
  margin-top: .25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.rail-item:hover {
  transform: translateY(-1px);
  border-color: rgba(16, 185, 129, 0.14);
}

.h1-accent {
  background: linear-gradient(135deg, rgba(238, 242, 247, 0.98), rgba(142, 207, 184, 0.58));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: accentShift 10s ease-in-out infinite;
}

:root[data-theme='light'] .h1-accent {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(5, 150, 105, 0.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
}

@keyframes accentShift {
  0%, 100% { background-position: 20% 40%; }
  50% { background-position: 80% 60%; }
}

h1 {
  margin: 0;
  font-family: 'Space Grotesk', var(--font-display);
  font-size: clamp(2.66rem, 5.02vw, 4.6rem);
  line-height: 0.985;
  letter-spacing: -0.058em;
  font-weight: 670;
}

.hero-title {
  max-width: 670px;
  will-change: transform, filter, clip-path, opacity;
  text-wrap: balance;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.hero-title-prefix {
  display: block;
  padding-bottom: 0.07em;
}

.hero-title-soft-accent {
  color: rgba(76, 208, 160, 0.94);
  text-shadow: 0 16px 38px rgba(8, 20, 16, 0.28);
}

.hero-title-dyn {
  display: block;
  margin-top: 0.13em;
  color: rgba(92, 201, 164, 0.88);
  font-weight: 700;
  letter-spacing: -0.045em;
  min-height: var(--hero-dyn-height, 2.4em);
  opacity: 1;
  filter: blur(0);
  transition: opacity .38s cubic-bezier(.22, 1, .36, 1), filter .38s cubic-bezier(.22, 1, .36, 1);
  text-shadow: 0 14px 34px rgba(8, 20, 16, 0.22);
}

.hero-title-dyn.is-fading {
  opacity: 0;
  filter: blur(4px);
}

.hero-title-dyn::after {
  content: '│';
  display: inline-block;
  margin-left: .12em;
  color: rgba(255, 255, 255, 0.18);
  transform: translateY(-0.02em);
  animation: caretBlink 1.65s steps(2, end) infinite;
}

:root[data-theme='light'] .hero-title-dyn::after {
  color: rgba(15, 23, 42, 0.22);
}

:root[data-theme='light'] .hero-title-dyn {
  color: rgba(5, 150, 105, 0.8);
  text-shadow: none;
}

:root[data-theme='light'] .hero-kicker {
  color: rgba(5, 150, 105, 0.74);
  text-shadow: none;
}

:root[data-theme='light'] .hero-title-soft-accent {
  color: rgba(5, 150, 105, 0.86);
  text-shadow: none;
}

@keyframes caretBlink {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

.hero-content.reveal .hero-title {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  filter: blur(7px);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .92s cubic-bezier(.22, 1, .36, 1), transform .92s cubic-bezier(.22, 1, .36, 1), filter .92s cubic-bezier(.22, 1, .36, 1), opacity .92s cubic-bezier(.22, 1, .36, 1);
  transition-delay: 90ms;
}

.hero-content.is-visible .hero-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  clip-path: inset(0 0 0 0);
}

.hero-content.is-visible .hero-badges .badge,
.hero-content.is-visible .hero-metrics .metric {
  animation: popIn .55s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-content.is-visible .hero-badges .badge:nth-child(1) { animation-delay: 180ms; }
.hero-content.is-visible .hero-badges .badge:nth-child(2) { animation-delay: 240ms; }
.hero-content.is-visible .hero-badges .badge:nth-child(3) { animation-delay: 300ms; }
.hero-content.is-visible .hero-badges .badge:nth-child(4) { animation-delay: 360ms; }

.hero-content.is-visible .hero-metrics .metric:nth-child(1) { animation-delay: 240ms; }
.hero-content.is-visible .hero-metrics .metric:nth-child(2) { animation-delay: 320ms; }
.hero-content.is-visible .hero-metrics .metric:nth-child(3) { animation-delay: 400ms; }
.hero-content.is-visible .hero-metrics .metric:nth-child(4) { animation-delay: 480ms; }

@keyframes popIn {
  from { opacity: 0; transform: translate3d(0, 10px, 0) scale(0.985); filter: blur(4px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}

.subtitle {
  color: var(--text-secondary);
  margin: 0;
  max-width: 50ch;
  font-size: 1.02rem;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-support .subtitle {
  max-width: none;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
  overflow: visible;
}

.hero-support {
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 1.5rem;
  padding: 1.35rem 1.55rem 1.28rem;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 1.2rem;
  align-items: stretch;
  overflow: hidden;
  border-radius: 1.35rem;
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.14), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.hero-support.reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(.985);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
}

.hero-support.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-support::before,
.hero-support::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.hero-support::before {
  inset: 0 auto auto 0;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.55), transparent);
  opacity: .95;
}

.hero-support::after {
  inset: auto -84px -92px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.03) 58%, transparent 70%);
  filter: blur(8px);
  opacity: .9;
}

.hero-support-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: stretch;
  gap: 1.15rem;
  min-height: 100%;
  padding: .2rem .3rem .15rem;
  transform: translateZ(18px);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 0;
}

.hero-badges {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .72rem;
  justify-content: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .56rem;
  min-height: 52px;
  padding: .82rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 14, 0.42);
  color: var(--text-primary);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 28px rgba(0, 0, 0, 0.14);
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: radial-gradient(circle at 35% 35%, rgba(110, 255, 194, 1), rgba(16, 185, 129, 0.72));
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.38);
}

:root[data-theme='light'] .badge {
  border-color: rgba(15, 23, 42, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.45);
  color: var(--text-color);
}

.hero-metrics {
  position: relative;
  z-index: 1;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .95rem;
  align-content: stretch;
  min-height: 100%;
  transform: translateZ(24px);
}

.card {
  background: linear-gradient(180deg, var(--glass-grad-top), var(--glass-grad-bottom));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative;
}

:root[data-theme='light'] .card {
  border-color: rgba(15, 23, 42, 0.12);
}

.card[data-shine]::after {
  content: none;
}

.tilt-3d {
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.tilt-3d:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(16, 185, 129, 0.08);
}

:root[data-theme='light'] .tilt-3d:hover {
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(5, 150, 105, 0.08);
}

.metric {
  padding: 1.05rem 1.02rem 1.02rem;
  display: grid;
  align-content: start;
  gap: .38rem;
  transform-style: preserve-3d;
  min-height: 126px;
  overflow: hidden;
  border-radius: 1.15rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent 72%);
}

.metric::before {
  content: '';
  position: absolute;
  inset: auto -18% -42% auto;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), rgba(16, 185, 129, 0.02) 62%, transparent 72%);
  transform: translateZ(16px);
  pointer-events: none;
}

.metric:nth-child(2n)::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 48%);
  opacity: .55;
  pointer-events: none;
}

.metric strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.metric span {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: .9;
}

.dot.r { background: rgba(255, 95, 86, .95); }
.dot.y { background: rgba(255, 189, 46, .95); }
.dot.g { background: rgba(39, 201, 63, .95); }

.section {
  padding: 3.35rem 0 4rem;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  letter-spacing: -0.02em;
}

.cta {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 1.3rem;
  align-items: stretch;
  border-radius: 1.2rem;
  overflow: hidden;
  transform-style: preserve-3d;
  isolation: isolate;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(16, 185, 129, 0.12), transparent 38%),
    radial-gradient(circle at 86% 84%, rgba(255, 255, 255, 0.06), transparent 34%);
  pointer-events: none;
  z-index: 0;
}

.cta-copy {
  display: grid;
  align-content: center;
  gap: .9rem;
  padding: .4rem;
  position: relative;
  z-index: 1;
  transform: translateZ(36px);
}

.cta-kicker {
  margin: 0;
  color: var(--trae-intelligent-green-light);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.cta-copy p {
  color: var(--text-secondary);
  margin: 0;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.72;
}

.cta-points {
  display: grid;
  gap: .6rem;
  margin-top: .2rem;
}

.cta-point {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--text-primary);
  font-size: .94rem;
  font-weight: 650;
}

.cta-point::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--trae-intelligent-green), var(--trae-intelligent-green-light));
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.08);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.cta-actions .btn {
  min-width: 182px;
}

.cta-depth {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  perspective: 1200px;
}

.cta-depth-plane,
.cta-depth-glow {
  position: absolute;
  border-radius: 1.4rem;
}

.cta-depth-plane {
  border: 1px solid rgba(16, 185, 129, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.cta-depth-plane-a {
  inset: 20px auto auto 22px;
  width: 210px;
  height: 140px;
  transform: rotateX(70deg) rotateZ(-22deg) translateZ(-20px);
}

.cta-depth-plane-b {
  inset: auto 36px 14px auto;
  width: 180px;
  height: 110px;
  transform: rotateX(70deg) rotateZ(24deg) translateZ(-12px);
}

.cta-depth-glow {
  inset: auto 8% -22% 42%;
  height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.22), transparent 68%);
  filter: blur(36px);
  opacity: .85;
  transform: translateZ(-40px);
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 1.1rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  transform: translateZ(52px);
}

:root[data-theme='light'] .cta-form {
  border-color: rgba(15, 23, 42, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.56));
}

.cta-form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: .2rem;
  margin-bottom: .1rem;
}

.cta-form-head strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.cta-form-head span {
  color: var(--text-secondary);
  font-size: .9rem;
}

.cta-form label {
  display: grid;
  gap: .35rem;
  font-size: .85rem;
  color: var(--text-secondary);
}

.cta-form label.full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border-radius: .85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
  padding: .7rem .8rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

:root[data-theme='light'] input,
:root[data-theme='light'] textarea {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

input:focus,
textarea:focus {
  border-color: rgba(16, 185, 129, 0.28);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.cta-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.55;
}

.contact-form-status {
  min-height: 1.45em;
}

.contact-form-status.is-success {
  color: #6ee7b7;
}

.contact-form-status.is-error {
  color: #fda4af;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: .92rem 0 1.12rem;
  color: var(--text-muted);
  font-size: .8rem;
}

:root[data-theme='light'] .footer {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
  gap: .9rem clamp(2.8rem, 4.6vw, 5.2rem);
  align-items: start;
  justify-content: space-between;
}

.brand-col {
  padding-right: .75rem;
  justify-self: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 900;
  color: var(--text-primary);
  font-size: .9rem;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-col {
  display: grid;
  gap: .32rem;
  align-content: start;
  justify-items: start;
}

.product-col {
  justify-self: center;
  text-align: center;
  justify-items: center;
}

.support-col {
  justify-self: end;
  min-width: max-content;
}

.footer-tagline {
  margin: .34rem 0 0;
  max-width: 29ch;
  color: var(--text-secondary);
  line-height: 1.42;
}

.footer-heading {
  color: var(--text-primary);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--text-secondary);
  transition: color .18s ease;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: auto;
  max-width: 100%;
  gap: .38rem;
  padding: .28rem .46rem;
  border-radius: .72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
  font-size: .73rem;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-contact-link:hover {
  border-color: rgba(134, 216, 187, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  transform: translateY(-1px);
}

.footer-contact-icon {
  width: .9rem;
  height: .9rem;
  display: inline-grid;
  place-items: center;
  color: rgba(134, 216, 187, 0.9);
  flex: 0 0 auto;
  transform: translateY(-.2px);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-contact-link-whatsapp .footer-contact-icon svg {
  transform: translateY(0) scale(.93);
}

:root[data-theme='light'] .footer-contact-icon {
  color: rgba(5, 150, 105, 0.82);
}

:root[data-theme='light'] .footer-contact-link {
  border-color: rgba(15, 23, 42, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.footer-support-note {
  color: var(--text-muted);
  line-height: 1.34;
  max-width: 24ch;
  padding-left: .1rem;
  margin-top: .18rem;
}

.footer-bottom {
  margin-top: .72rem;
  padding-top: .68rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .65rem;
}

:root[data-theme='light'] .footer-bottom {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.footer-copy {
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.footer-legal a {
  padding: .24rem .42rem;
  border-radius: .56rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  font-size: .72rem;
}

:root[data-theme='light'] .footer-legal a {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.footer-legal a:hover {
  transform: translateY(-1px);
  color: var(--text-primary);
  border-color: rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pin {
  padding: 0;
}

.pin-spacer {
  height: 336vh;
}

.pin-sticky {
  position: sticky;
  top: clamp(20px, 4.5vh, 56px);
  padding: .72rem 0 .95rem;
}

.pin-grid {
  display: grid;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  gap: .82rem;
}

.pin-title {
  display: grid;
  gap: .34rem;
}

.pin-title-kicker {
  color: var(--trae-intelligent-green-light);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: .76rem;
  text-transform: uppercase;
}

.pin-title-main {
  margin: 0;
  font-size: clamp(1.95rem, 3.6vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: var(--font-display);
}

.pin-title-sub {
  color: var(--text-secondary);
  max-width: 72ch;
  margin: 0;
  font-size: .94rem;
  line-height: 1.42;
  white-space: normal;
  overflow: visible;
}

.pin-cards {
  padding: .9rem .9rem .98rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    'head'
    'visual';
  gap: .82rem;
  align-items: stretch;
  perspective: 1200px;
  perspective: 1200px;
  border-radius: 1rem;
  transform: translateY(-4px);
  width: 100%;
  max-width: none;
  margin: 0 auto;
  min-width: 0;
  justify-self: stretch;
}

.pin-head {
  grid-area: head;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: .68rem;
  align-items: start;
  min-width: 0;
}

.pin-nums {
  position: relative;
  width: 66px;
  height: 56px;
  padding-top: .1rem;
}

.pin-num {
  position: absolute;
  inset: 0 auto auto 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 900;
  color: var(--text-muted);
  opacity: 0;
  letter-spacing: -0.02em;
  font-size: .96rem;
  transform: translate3d(0, 18px, 0) scale(.94);
  filter: blur(2px);
  transition:
    opacity .5s cubic-bezier(.22, 1, .36, 1),
    transform .5s cubic-bezier(.22, 1, .36, 1),
    filter .5s cubic-bezier(.22, 1, .36, 1),
    border-color .5s cubic-bezier(.22, 1, .36, 1),
    box-shadow .5s cubic-bezier(.22, 1, .36, 1);
}

.pin-num.is-active {
  color: var(--text-primary);
  opacity: 1;
  border-color: rgba(16, 185, 129, 0.18);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.03));
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.08);
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.pin-num.is-before {
  opacity: 0;
  transform: translate3d(-12px, -10px, 0) scale(.88);
}

.pin-num.is-after {
  opacity: 0;
  transform: translate3d(12px, 16px, 0) scale(.9);
}

.pin-num.is-entering {
  opacity: 1;
  transform: translate3d(0, 6px, 0) scale(.96);
}

.pin-num.is-exit {
  opacity: 0;
  transform: translate3d(0, -14px, 0) scale(.9);
}

.pin-text {
  position: relative;
  min-height: 98px;
  min-width: 0;
  padding: .04rem .06rem 0 0;
}

.pin-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(0, 16px, 0) rotateX(5deg) scale(0.988);
  transform-origin: 50% 0%;
  filter: blur(2.6px);
  transition: opacity .52s cubic-bezier(.22, 1, .36, 1), transform .52s cubic-bezier(.22, 1, .36, 1), filter .52s cubic-bezier(.22, 1, .36, 1);
}

.pin-item.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0);
}

.pin-item.is-before {
  opacity: 0;
  transform: translate3d(0, -18px, 0) rotateX(-4deg) scale(.985);
}

.pin-item.is-after {
  opacity: 0;
  transform: translate3d(0, 20px, 0) rotateX(5deg) scale(.985);
}

.pin-item.is-entering {
  opacity: 1;
  transform: translate3d(0, 8px, 0) rotateX(2deg) scale(.992);
}

.pin-item.is-exit {
  opacity: 0;
  transform: translate3d(0, -20px, 0) rotateX(-5deg) scale(.982);
  filter: blur(2px);
}

.pin-item-title {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: .3rem;
}

.pin-item-desc {
  color: var(--text-secondary);
  max-width: none;
  font-size: .93rem;
  line-height: 1.5;
}

.pin-visual {
  grid-area: visual;
  display: grid;
  gap: .65rem;
  align-content: start;
  position: relative;
  perspective: 1400px;
  --mockup-float-y: 0px;
  --mockup-float-rx: 0deg;
  --mockup-float-ry: 0deg;
}

.pin-visual-orb,
.pin-visual-grid {
  position: absolute;
  pointer-events: none;
}

.pin-visual-orb {
  border-radius: 999px;
  filter: blur(10px);
  opacity: .9;
}

.pin-visual-orb-a {
  top: 20px;
  right: 10px;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle at 35% 35%, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.02) 66%, transparent 72%);
  transform: translate3d(0, 0, -20px);
}

.pin-visual-orb-b {
  left: 22px;
  bottom: 18px;
  width: 88px;
  height: 88px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 62%, transparent 72%);
  transform: translate3d(0, 0, -10px);
}

.pin-visual-grid {
  inset: 28px 18px 18px 18px;
  border-radius: 1.2rem;
  border: 1px solid rgba(16, 185, 129, 0.08);
  background:
    linear-gradient(transparent, transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px);
  opacity: .45;
  transform: rotateX(73deg) rotateZ(-10deg) translateZ(-30px);
}

.pin-visual-frame {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  transform: translate3d(0, var(--mockup-float-y), 0) rotateX(var(--mockup-float-rx)) rotateY(var(--mockup-float-ry));
  transition: transform .24s ease-out;
}

:root[data-theme='light'] .pin-visual-frame {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.6);
}

:root[data-theme='light'] .pin-visual-grid {
  border-color: rgba(5, 150, 105, 0.1);
  background:
    linear-gradient(transparent, transparent),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, 0.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(15, 23, 42, 0.04) 0 1px, transparent 1px 34px);
}

:root[data-theme='light'] .pin-visual-orb-a {
  background: radial-gradient(circle at 35% 35%, rgba(5, 150, 105, 0.24), rgba(5, 150, 105, 0.02) 66%, transparent 72%);
}

:root[data-theme='light'] .pin-visual-orb-b {
  background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.01) 62%, transparent 72%);
}

:root[data-theme='light'] .cta::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(5, 150, 105, 0.1), transparent 38%),
    radial-gradient(circle at 86% 84%, rgba(15, 23, 42, 0.06), transparent 34%);
}

:root[data-theme='light'] .cta-depth-plane {
  border-color: rgba(5, 150, 105, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

:root[data-theme='light'] .cta-depth-glow {
  background: radial-gradient(circle at 50% 50%, rgba(5, 150, 105, 0.16), transparent 68%);
}

.pin-visual-top {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

:root[data-theme='light'] .pin-visual-top {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.pin-visual-title {
  margin-left: .25rem;
  font-weight: 900;
  color: var(--text-secondary);
  font-size: .9rem;
}

.pin-visual-body {
  position: relative;
  height: clamp(300px, 40vh, 388px);
  padding: .65rem;
  transform-style: preserve-3d;
}

.pin-shot {
  position: absolute;
  inset: .8rem;
  border-radius: 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.985);
  filter: saturate(1.03) contrast(1.02) blur(0.25px);
  transition: opacity .46s cubic-bezier(.22, 1, .36, 1), transform .46s cubic-bezier(.22, 1, .36, 1), filter .46s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
  transform-origin: center center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 34px rgba(0, 0, 0, 0.18);
}

:root[data-theme='light'] .pin-shot {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.pin-shot.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) translateZ(36px);
  filter: saturate(1.02) contrast(1.01) blur(0);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 52px rgba(0, 0, 0, 0.24);
}

.pin-shot.is-before {
  opacity: 0;
  transform: translate3d(0, -22px, 0) scale(.975) translateZ(12px);
  filter: saturate(.98) contrast(1) blur(1.6px);
}

.pin-shot.is-after {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(.978) translateZ(10px);
  filter: saturate(.98) contrast(1) blur(1.8px);
}

.pin-shot.is-entering {
  opacity: 1;
  transform: translate3d(0, 10px, 0) scale(.988) translateZ(24px);
  filter: saturate(1.01) contrast(1.01) blur(.8px);
}

.pin-shot.is-exit {
  opacity: 0;
  transform: translate3d(0, -24px, 0) scale(.972) translateZ(8px);
  filter: saturate(.97) contrast(.99) blur(2px);
}

.pin-shot:nth-child(2) .mock-ui-ledger,
.pin-shot:nth-child(3) .mock-ui-reconcile {
  opacity: .92;
  transform: translate3d(0, 10px, 0) scale(.988);
  transition:
    opacity .4s ease,
    transform .54s cubic-bezier(.22, 1, .36, 1),
    box-shadow .54s cubic-bezier(.22, 1, .36, 1);
}

.pin-shot:nth-child(2).is-active .mock-ui-ledger,
.pin-shot:nth-child(3).is-active .mock-ui-reconcile {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: .08s;
}

.pin-shot:nth-child(1) {
  background:
    var(--pin-shot-0),
    radial-gradient(circle at 30% 30%, rgba(148, 163, 184, 0.08), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.pin-shot:nth-child(2) {
  background:
    var(--pin-shot-1),
    radial-gradient(circle at 70% 25%, rgba(148, 163, 184, 0.07), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.pin-shot:nth-child(3) {
  background:
    var(--pin-shot-2),
    radial-gradient(circle at 50% 35%, rgba(148, 163, 184, 0.06), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

.pin-shot:nth-child(4) {
  background:
    var(--pin-shot-3),
    radial-gradient(circle at 35% 70%, rgba(148, 163, 184, 0.07), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 60%),
    rgba(255, 255, 255, 0.02);
  background-size: cover, auto, auto, auto;
  background-position: center, center, center, center;
  background-repeat: no-repeat;
}

:root.pin-compact .pin-sticky {
  top: 8px;
  padding: .26rem 0 .38rem;
}

:root.pin-compact .pin-grid {
  gap: .68rem;
}

:root.pin-compact .pin-title {
  gap: .24rem;
}

:root.pin-compact .pin-title-main {
  font-size: clamp(1.72rem, 3vw, 2.34rem);
  line-height: 1.02;
}

:root.pin-compact .pin-title-sub {
  font-size: .72rem;
  line-height: 1.1;
  max-width: none;
  white-space: nowrap;
  letter-spacing: -0.015em;
}

:root.pin-compact .pin-cards {
  padding: .6rem .66rem .68rem;
  gap: .38rem;
  transform: none;
}

:root.pin-compact .pin-head {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: .42rem;
}

:root.pin-compact .pin-nums {
  width: 54px;
  height: 48px;
}

:root.pin-compact .pin-num {
  width: 48px;
  height: 48px;
  border-radius: .82rem;
  font-size: .88rem;
}

:root.pin-compact .pin-text {
  min-height: 56px;
  padding-top: 0;
}

:root.pin-compact .pin-item-title {
  font-size: .92rem;
  margin-bottom: .08rem;
}

:root.pin-compact .pin-item-desc {
  font-size: .76rem;
  line-height: 1.18;
}

:root.pin-compact .pin-visual-top {
  padding: .44rem .56rem;
}

:root.pin-compact .pin-visual-body {
  height: clamp(352px, 46vh, 414px);
  padding: .32rem;
}

:root.pin-compact .pin-shot {
  inset: .3rem;
  border-radius: .86rem;
}

/* =========================================
   Mockups UI en Pinned
   ========================================= */
.mock-ui {
  position: absolute;
  inset: 8%;
  background: var(--surface-bg);
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transform: translateZ(26px);
}

[data-theme="light"] .mock-ui {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.mock-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 700;
  color: var(--text-color);
  font-size: 0.92rem;
  transform: translateZ(14px);
}

[data-theme="light"] .mock-header {
  background: rgba(0, 0, 0, 0.02);
}

.mock-list, .mock-table, .mock-export, .mock-grid {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-summary,
.mock-toolbar,
.mock-bars,
.mock-export-side {
  padding: 0 16px;
}

.mock-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
}

.mock-stat {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.025);
  display: grid;
  gap: 4px;
  transform: translateZ(14px);
}

.mock-stat-k {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mock-stat strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.mock-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 10px;
}

.mock-chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  color: var(--text-secondary);
  transform: translateZ(12px);
}

.mock-chip.success {
  border-color: rgba(255, 255, 255, 0.10);
  color: rgba(232, 236, 241, 0.92);
  background: rgba(255, 255, 255, 0.05);
}

.mock-chip.warn {
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(204, 212, 221, 0.86);
  background: rgba(255, 255, 255, 0.03);
}

.mock-sparkline {
  margin: auto 12px 12px;
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  transform: translateZ(16px);
}

.mock-sparkline span {
  height: var(--h, 60%);
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(196, 203, 214, 0.92), rgba(134, 145, 160, 0.18));
  box-shadow: 0 0 16px rgba(148, 163, 184, 0.10);
  animation: mockBarPulse 4.2s ease-in-out infinite;
}

.mock-sparkline span:nth-child(2) { animation-delay: .12s; }
.mock-sparkline span:nth-child(3) { animation-delay: .24s; }
.mock-sparkline span:nth-child(4) { animation-delay: .36s; }
.mock-sparkline span:nth-child(5) { animation-delay: .48s; }
.mock-sparkline span:nth-child(6) { animation-delay: .6s; }

.mock-bars {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.mock-bar {
  display: grid;
  gap: 6px;
}

.mock-bar span,
.mock-progress span {
  color: var(--text-muted);
  font-size: 0.74rem;
}

.mock-bar i,
.mock-progress-track {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mock-bar i::before,
.mock-progress-track i {
  content: '';
  display: block;
  width: var(--w, 70%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(214, 219, 227, 0.92), rgba(118, 128, 144, 0.42));
  box-shadow: 0 0 16px rgba(148, 163, 184, 0.12);
  animation: mockWidthPulse 4.6s ease-in-out infinite;
}

.mock-progress {
  padding: 0 12px 12px;
  display: grid;
  gap: 8px;
}

.mock-export {
  position: relative;
}

.mock-export-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@keyframes mockBarPulse {
  0%, 100% { opacity: .8; filter: saturate(1); }
  50% { opacity: 1; filter: saturate(1.18); }
}

@keyframes mockWidthPulse {
  0%, 100% { filter: saturate(1); }
  50% { filter: saturate(1.18); }
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid var(--surface-border);
  transform: translateZ(12px);
}

[data-theme="light"] .mock-row {
  background: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .mock-stat,
[data-theme="light"] .mock-chip,
[data-theme="light"] .mock-bar i,
[data-theme="light"] .mock-progress-track {
  background: rgba(0, 0, 0, 0.03);
}

.mock-badge {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mock-badge.blue { background: rgba(255, 255, 255, 0.07); color: rgba(221, 227, 235, 0.9); }
.mock-badge.orange { background: rgba(255, 255, 255, 0.05); color: rgba(196, 203, 214, 0.86); }

[data-theme="light"] .mock-badge.blue { color: #334155; }
[data-theme="light"] .mock-badge.orange { color: #475569; }

.mock-text { color: var(--text-muted); flex: 1; margin: 0 12px; }
.mock-num { font-family: monospace; font-weight: 500; color: var(--text-color); }

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-card {
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  border: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateZ(18px);
}

[data-theme="light"] .mock-card { background: rgba(0, 0, 0, 0.02); }

.mock-card.full { grid-column: 1 / -1; }
.mock-label { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.mock-value { color: var(--text-color); font-weight: 500; font-family: monospace; }
.mock-value.success { color: var(--accent); }

.mock-tr {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .mock-tr { border-bottom-color: rgba(0, 0, 0, 0.05); }
.mock-tr:last-child { border-bottom: none; }
.mock-tr.head { color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; font-weight: 600; padding-top: 0; }
.mock-td { flex: 1; }
.mock-td:nth-child(2) { flex: 2; color: var(--text-muted); }
.mock-td.right { text-align: right; font-family: monospace; font-weight: 500; }
.mock-td.red { color: #ef4444; }
.mock-td.green { color: var(--accent); }

.mock-code {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--surface-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  transform: translateZ(14px);
}

[data-theme="light"] .mock-code { background: rgba(0, 0, 0, 0.8); border-color: transparent; }

.mock-code code { color: #a3e635; font-family: monospace; font-size: 0.8rem; }
.mock-code code:first-child { color: #94a3b8; margin-bottom: 4px; }

.mock-btn {
  align-self: flex-end;
  padding: 9px 16px;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.92), rgba(185, 194, 206, 0.92));
  color: #0f172a;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  transform: translateZ(22px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
}

.mock-code code { color: rgba(222, 226, 232, 0.92); font-family: monospace; font-size: 0.8rem; }
.mock-code code:first-child { color: rgba(148, 163, 184, 0.92); margin-bottom: 4px; }

.mock-ui-ledger,
.mock-ui-reconcile,
.mock-ui-ingest,
.mock-ui-export {
  inset: 5.5%;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(22, 26, 34, 0.985), rgba(10, 13, 18, 0.995)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.035), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.mock-ui-export {
  inset: 4.2%;
}

.mock-app-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006)),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mock-app-title {
  color: var(--text-color);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.mock-app-pill {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(223, 228, 235, 0.9);
  font-size: 0.67rem;
  font-weight: 700;
}

.mock-app-actions {
  display: flex;
  gap: 6px;
}

.mock-soft-btn,
.mock-primary-inline,
.mock-searchbox,
.mock-filter-box {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014));
  color: var(--text-secondary);
  font-size: 0.64rem;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.mock-primary-inline {
  border-color: rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  color: rgba(239, 242, 246, 0.94);
  font-weight: 700;
}

.mock-searchbox {
  min-width: 118px;
  color: var(--text-muted);
}

.mock-ledger-shell,
.mock-reconcile-shell {
  display: grid;
  gap: 9px;
  padding: 12px 13px 13px;
  flex: 1;
  overflow: hidden;
}

.mock-ui-reconcile,
.mock-reconcile-shell,
.mock-reconcile-panel {
  min-height: 0;
}

.mock-reconcile-shell {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.mock-ledger-config,
.mock-file-card,
.mock-mini-stat,
.mock-reconcile-panel {
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.mock-ledger-config {
  padding: 10px;
}

.mock-ledger-config-title,
.mock-panel-head {
  color: var(--text-primary);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mock-ledger-config-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.mock-ledger-field {
  display: grid;
  gap: 4px;
}

.mock-ledger-field span,
.mock-file-label,
.mock-mini-stat span,
.mock-filter-box,
.mock-ledger-row.head,
.mock-reconcile-row.head {
  color: var(--text-muted);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
}

.mock-ledger-field strong {
  display: block;
  min-height: 24px;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.62), rgba(5, 8, 15, 0.78));
  color: var(--text-primary);
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mock-ledger-toolbar {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 7px;
  align-items: center;
}

.mock-ledger-table,
.mock-reconcile-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.mock-ledger-row {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) .56fr .64fr .62fr .98fr .42fr .56fr;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.61rem;
}

.mock-ledger-row:first-child,
.mock-reconcile-row:first-child {
  border-top: none;
}

.mock-ledger-row.head,
.mock-reconcile-row.head {
  background: rgba(255, 255, 255, 0.038);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.mock-provider {
  color: var(--text-primary);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-flag {
  color: var(--text-primary);
  font-weight: 700;
}

.mock-reconcile-files {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mock-file-card {
  padding: 9px 10px;
  display: grid;
  gap: 4px;
}

.mock-file-card strong {
  color: var(--text-secondary);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-reconcile-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mock-mini-stat {
  padding: 8px 10px;
  display: grid;
  gap: 4px;
}

.mock-mini-stat strong {
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mock-mini-stat.success strong {
  color: rgba(236, 240, 244, 0.96);
}

.mock-mini-stat.warn strong {
  color: rgba(216, 222, 230, 0.86);
}

.mock-mini-stat.danger strong {
  color: rgba(200, 208, 218, 0.82);
}

.mock-reconcile-panel {
  padding: 9px 10px 10px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 8px;
  min-height: 0;
}

.mock-filter-row {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1.15fr .95fr;
  gap: 6px;
}

.mock-reconcile-row {
  display: grid;
  grid-template-columns: .9fr .92fr 1.45fr .78fr .38fr .38fr;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.6rem;
}

.mock-reconcile-table {
  min-height: 0;
  align-content: start;
}

.mock-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(235, 239, 244, 0.92);
  font-size: 0.58rem;
  font-weight: 700;
}

.mock-ingest-shell,
.mock-export-flow {
  display: grid;
  gap: 10px;
  padding: 12px 13px 13px;
  flex: 1;
}

.mock-ingest-dropzone,
.mock-ingest-table,
.mock-export-preview,
.mock-download-tray {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012));
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.022);
}

.mock-ingest-dropzone {
  position: relative;
  min-height: 100px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(2, 6, 23, 0.09)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 58%);
  overflow: hidden;
}

.mock-ingest-file {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 96px;
  padding: 7px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(55, 65, 81, 0.95), rgba(24, 30, 39, 0.98));
  display: grid;
  gap: 3px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transform-origin: center center;
  z-index: 2;
}

.mock-file-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 38px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(228, 233, 240, 0.92);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mock-ingest-file strong,
.mock-export-flyfile strong {
  color: var(--text-primary);
  font-size: 0.58rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-ingest-file span:last-child,
.mock-export-flyfile span:last-child,
.mock-drop-hint {
  color: var(--text-muted);
  font-size: 0.56rem;
}

.mock-drop-hint {
  position: absolute;
  inset: 14px 16px auto 16px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.mock-drop-target {
  position: absolute;
  inset: auto 10px 10px 10px;
  min-height: 60px;
  border-radius: 13px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
  display: grid;
  place-items: center;
  color: rgba(223, 228, 235, 0.88);
  font-size: 0.64rem;
  overflow: hidden;
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.mock-ingest-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
}

.mock-ingest-table {
  display: grid;
  overflow: hidden;
  min-height: 128px;
}

.mock-ingest-head,
.mock-ingest-row {
  display: grid;
  grid-template-columns: .55fr 1.45fr .7fr .65fr;
  gap: 7px;
  align-items: center;
  padding: 6px 9px;
}

.mock-ingest-head {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.mock-ingest-row {
  color: var(--text-secondary);
  font-size: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(7px);
}

.mock-ingest-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mock-mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(220, 226, 234, 0.88);
  font-size: 0.6rem;
}

.mock-ui-ingest .mock-mini-badge {
  opacity: 0;
  transform: translateY(4px);
}

.mock-ui-ingest.is-playing .mock-ingest-file {
  animation: mockFileDropOnce 2s cubic-bezier(.22, .78, .3, 1) forwards;
}

.mock-ui-ingest.is-playing .mock-drop-target {
  animation: mockDropTargetFlash .7s ease 1.25s forwards;
}

.mock-ui-ingest.is-playing .mock-ingest-row:nth-child(2) {
  animation: mockRowsRevealOnce .38s ease-out 2.04s forwards;
}

.mock-ui-ingest.is-playing .mock-ingest-row:nth-child(3) {
  animation: mockRowsRevealOnce .38s ease-out 2.16s forwards;
}

.mock-ui-ingest.is-playing .mock-ingest-row:nth-child(4) {
  animation: mockRowsRevealOnce .38s ease-out 2.28s forwards;
}

.mock-ui-ingest.is-playing .mock-mini-badge {
  animation: mockBadgeRevealOnce .32s ease-out 2.34s forwards;
}

.mock-ui-ingest.is-complete .mock-ingest-file {
  opacity: 0;
  transform: translate3d(var(--ingest-drop-x, 132px), var(--ingest-drop-y, 44px), 0) scale(.08);
}

.mock-ui-ingest.is-complete .mock-drop-target {
  border-color: rgba(0, 255, 136, 0.22);
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 0 0 1px rgba(0, 255, 136, 0.08),
    0 0 22px rgba(0, 255, 136, 0.08);
}

.mock-ui-ingest.is-complete .mock-drop-target span,
.mock-ui-ingest.is-complete .mock-drop-hint {
  color: rgba(235, 245, 239, 0.96);
}

.mock-ui-ingest.is-complete .mock-ingest-row,
.mock-ui-ingest.is-complete .mock-mini-badge {
  opacity: 1;
  transform: translateY(0);
}

.mock-export-flow {
  grid-template-columns: 1fr;
  gap: 8px;
}

.mock-export-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px;
  gap: 7px;
  align-items: stretch;
}

.mock-export-preview-head {
  display: grid;
  gap: 6px;
  padding: 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.mock-export-headline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.58rem;
}

.mock-export-headline strong {
  color: var(--text-primary);
  font-size: 0.92rem;
  letter-spacing: -0.03em;
}

.mock-export-action {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 34px;
}

.mock-btn-export {
  min-width: 168px;
  min-height: 34px;
  padding-inline: 12px;
  font-size: 0.68rem;
}

.mock-cursor {
  position: absolute;
  top: -6px;
  left: 10px;
  width: 18px;
  height: 22px;
  clip-path: polygon(0 0, 0 100%, 31% 72%, 49% 100%, 62% 93%, 45% 66%, 100% 66%);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(71, 85, 105, 0.98));
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.22);
  z-index: 2;
}

.mock-export-iconbox {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.mock-download-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(73, 85, 107, 0.34);
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.mock-download-icon-arrow,
.mock-download-icon-stem,
.mock-download-icon-tray {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.mock-download-icon-arrow {
  top: 8px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(220, 236, 237, 0.92);
  border-bottom: 2px solid rgba(220, 236, 237, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.mock-download-icon-stem {
  top: 6px;
  width: 2px;
  height: 12px;
  background: rgba(220, 236, 237, 0.92);
}

.mock-download-icon-tray {
  bottom: 8px;
  width: 14px;
  height: 7px;
  border: 2px solid rgba(220, 236, 237, 0.92);
  border-top: none;
  border-radius: 0 0 3px 3px;
}

.mock-export-flyfile {
  position: absolute;
  left: -156px;
  top: 18px;
  width: 112px;
  padding: 7px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(47, 55, 67, 0.95), rgba(24, 29, 37, 0.98));
  display: grid;
  gap: 3px;
  opacity: 0;
}

.mock-ui-export.is-playing .mock-btn-export {
  animation: mockExportPressOnce .62s ease-out .82s forwards;
}

.mock-ui-export.is-playing .mock-cursor {
  animation: mockCursorPressOnce 1.08s cubic-bezier(.22, .78, .3, 1) .08s forwards;
}

.mock-ui-export.is-playing .mock-export-flyfile {
  animation: mockFileToIconOnce 1.24s cubic-bezier(.2, .8, .28, 1) 1.08s forwards;
}

.mock-ui-export.is-playing .mock-download-icon {
  animation: mockDownloadPulseOnce .68s ease-out 1.96s forwards;
}

.mock-ui-export.is-complete .mock-cursor {
  transform: translate3d(138px, 28px, 0) scale(1);
}

.mock-ui-export.is-complete .mock-export-flyfile {
  opacity: 0;
  transform: translate3d(144px, -12px, 0) scale(.08);
}

.mock-ui-export.is-complete .mock-download-icon {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.96), rgba(0, 214, 116, 0.92));
  box-shadow:
    0 0 0 1px rgba(0, 255, 136, 0.24),
    0 0 24px rgba(0, 255, 136, 0.26),
    0 8px 18px rgba(0, 255, 136, 0.16);
  transform: scale(1.06);
}

.mock-ui-export.is-complete .mock-download-icon-arrow,
.mock-ui-export.is-complete .mock-download-icon-tray {
  border-color: rgba(3, 18, 13, 0.88);
}

.mock-ui-export.is-complete .mock-download-icon-stem {
  background: rgba(3, 18, 13, 0.88);
}

.mock-export-table {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.012));
  min-height: 178px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.mock-export-row {
  display: grid;
  grid-template-columns: .42fr .7fr 1.12fr .7fr .62fr;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.61rem;
}

.mock-export-row:first-child {
  border-top: none;
}

.mock-export-row.head {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.57rem;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes mockFileDropOnce {
  0%, 14% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  56%, 68% {
    transform: translate3d(var(--ingest-drop-x, 132px), var(--ingest-drop-y, 44px), 0) scale(.62);
    opacity: .92;
  }
  74%, 100% {
    transform: translate3d(var(--ingest-drop-x, 132px), var(--ingest-drop-y, 44px), 0) scale(.08);
    opacity: 0;
  }
}

@keyframes mockRowsRevealOnce {
  0% {
    opacity: 0;
    transform: translateY(7px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mockBadgeRevealOnce {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mockDropTargetFlash {
  0% {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
  }
  100% {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(148, 163, 184, 0.06);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.06);
  }
}

@keyframes mockExportPressOnce {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(2px) scale(.985);
  }
  100% {
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes mockCursorPressOnce {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  54%, 72% {
    transform: translate3d(138px, 28px, 0) scale(1);
  }
  78% {
    transform: translate3d(138px, 30px, 0) scale(.94);
  }
  100% {
    transform: translate3d(138px, 28px, 0) scale(1);
  }
}

@keyframes mockFileToIconOnce {
  0%, 16% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(.88);
  }
  34%, 46% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  72% {
    opacity: .96;
    transform: translate3d(136px, -8px, 0) scale(.34);
  }
  100% {
    opacity: 0;
    transform: translate3d(144px, -12px, 0) scale(.08);
  }
}

@keyframes mockDownloadPulseOnce {
  0% {
    background: rgba(73, 85, 107, 0.34);
    box-shadow: none;
  }
  100% {
    background: linear-gradient(180deg, rgba(0, 255, 136, 0.96), rgba(0, 214, 116, 0.92));
    box-shadow:
      0 0 0 1px rgba(0, 255, 136, 0.24),
      0 0 24px rgba(0, 255, 136, 0.24),
      0 8px 18px rgba(0, 255, 136, 0.14);
    transform: scale(1.06);
  }
}


[data-theme="light"] .mock-ui-ledger,
[data-theme="light"] .mock-ui-reconcile,
[data-theme="light"] .mock-ui-ingest,
[data-theme="light"] .mock-ui-export {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.97)),
    radial-gradient(circle at top right, rgba(100, 116, 139, 0.06), transparent 40%);
}

[data-theme="light"] .mock-app-bar,
[data-theme="light"] .mock-ledger-config,
[data-theme="light"] .mock-file-card,
[data-theme="light"] .mock-mini-stat,
[data-theme="light"] .mock-reconcile-panel,
[data-theme="light"] .mock-ledger-table,
[data-theme="light"] .mock-reconcile-table,
[data-theme="light"] .mock-ingest-dropzone,
[data-theme="light"] .mock-ingest-table,
[data-theme="light"] .mock-export-preview-head,
[data-theme="light"] .mock-export-iconbox,
[data-theme="light"] .mock-ledger-field strong,
[data-theme="light"] .mock-soft-btn,
[data-theme="light"] .mock-primary-inline,
[data-theme="light"] .mock-searchbox,
[data-theme="light"] .mock-filter-box {
  border-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .mock-app-bar,
[data-theme="light"] .mock-ledger-config,
[data-theme="light"] .mock-file-card,
[data-theme="light"] .mock-mini-stat,
[data-theme="light"] .mock-reconcile-panel,
[data-theme="light"] .mock-ledger-table,
[data-theme="light"] .mock-reconcile-table,
[data-theme="light"] .mock-ingest-dropzone,
[data-theme="light"] .mock-ingest-table,
[data-theme="light"] .mock-export-preview-head,
[data-theme="light"] .mock-export-iconbox,
[data-theme="light"] .mock-soft-btn,
[data-theme="light"] .mock-searchbox,
[data-theme="light"] .mock-filter-box {
  background: rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .mock-ledger-field strong {
  background: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .mock-ingest-file,
[data-theme="light"] .mock-export-flyfile {
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.98), rgba(203, 213, 225, 0.98));
}

[data-theme="light"] .mock-drop-target {
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.45);
  color: #334155;
}

[data-theme="light"] .mock-ingest-dropzone {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 245, 249, 0.8));
}

[data-theme="light"] .mock-download-icon {
  background: rgba(148, 163, 184, 0.22);
}

[data-theme="light"] .mock-download-icon-arrow,
[data-theme="light"] .mock-download-icon-tray {
  border-color: #0f766e;
}

[data-theme="light"] .mock-download-icon-stem {
  background: #0f766e;
}

[data-theme="light"] .mock-export-table {
  border-color: rgba(15, 23, 42, 0.08);
  background: rgba(15, 23, 42, 0.03);
}

@keyframes mockDownloadPulseLightOnce {
  0% {
    background: rgba(148, 163, 184, 0.22);
    box-shadow: none;
  }
  100% {
    background: rgba(148, 163, 184, 0.28);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.16), 0 0 18px rgba(148, 163, 184, 0.12);
  }
}

[data-theme="light"] .mock-ui-export.is-playing .mock-download-icon {
  animation: mockDownloadPulseLightOnce .68s ease-out 1.96s forwards;
}

[data-theme="light"] .mock-ui-export.is-complete .mock-download-icon {
  background: rgba(148, 163, 184, 0.28);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.16), 0 0 18px rgba(148, 163, 184, 0.12);
}

[data-theme="light"] .mock-export-row {
  border-top-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .mock-export-row.head {
  background: rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .mock-ui { inset: 5%; }
  .mock-list, .mock-table, .mock-export, .mock-grid { padding: 12px; gap: 8px; }
  .mock-row { padding: 6px 8px; }
  .mock-text { font-size: 0.8rem; }
  .mock-header,
  .mock-row,
  .mock-code,
  .mock-btn {
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-inner {
    padding-inline: 1rem;
    gap: .85rem;
  }

  .brand-text {
    max-width: 144px;
  }

  .wordmark {
    font-size: 1.18rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-depth {
    position: relative;
    inset: auto;
    width: min(1180px, calc(100% - 2rem));
    max-width: 620px;
    min-height: 340px;
    margin: 1.8rem auto 0;
  }

  .hero-depth {
    min-height: 340px;
  }

  .hero-depth-stage {
    min-height: 238px;
  }

  .hero-depth-card {
    width: min(100%, 350px);
  }

  .hero-depth-card.is-prev {
    --hero-card-x: -108px;
    --hero-card-y: 34px;
    --hero-card-z: -70px;
  }

  .hero-depth-card.is-next {
    --hero-card-x: 108px;
    --hero-card-y: 34px;
    --hero-card-z: -70px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-support {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
    padding: 1.05rem;
    animation: none;
  }

  .subtitle {
    -webkit-line-clamp: 3;
  }

  .pin-cards {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .pin-visual {
    grid-column: auto;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .cta-copy,
  .cta-form {
    transform: none;
  }

  .cta-depth-plane-a {
    width: 170px;
    height: 112px;
    inset: 16px auto auto 14px;
  }

  .cta-depth-plane-b {
    width: 148px;
    height: 92px;
    inset: auto 18px 10px auto;
  }

  .cta-copy {
    padding: 0;
  }

  .cta-copy h2 {
    max-width: 16ch;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: .85rem 1rem;
  }

  .product-col {
    justify-self: start;
    text-align: left;
    justify-items: start;
  }

  .support-col {
    justify-self: end;
  }
}

@media (min-width: 981px) {
  .pin-title-sub {
    white-space: nowrap;
    max-width: none;
    font-size: .88rem;
  }

  .pin-sticky {
    top: 14px;
    padding: .32rem 0 .42rem;
  }

  .pin-cards {
    padding: .72rem .76rem .82rem;
    gap: .5rem;
  }

  .pin-head {
    gap: .56rem;
  }

  .pin-text {
    min-height: 82px;
  }

  .pin-item-title {
    font-size: 1.06rem;
    margin-bottom: .16rem;
  }

  .pin-item-desc {
    font-size: .84rem;
    line-height: 1.28;
  }

  .pin-visual-top {
    padding: .56rem .72rem;
  }

  .pin-visual-body {
    height: clamp(392px, 50vh, 492px);
    padding: .48rem;
  }

  .pin-shot {
    inset: .46rem;
  }

  .mock-ui-ledger,
  .mock-ui-reconcile,
  .mock-ui-ingest {
    inset: 3.4%;
  }

  .mock-app-bar {
    padding: 10px 12px 9px;
    gap: 8px;
  }

  .mock-app-title {
    font-size: .72rem;
  }

  .mock-soft-btn,
  .mock-primary-inline,
  .mock-searchbox,
  .mock-filter-box {
    min-height: 23px;
    padding: 0 8px;
    font-size: .6rem;
  }

  .mock-reconcile-shell,
  .mock-ingest-shell {
    gap: 7px;
    padding: 9px 10px 10px;
  }

  .mock-file-card,
  .mock-mini-stat {
    padding: 7px 8px;
    gap: 3px;
  }

  .mock-file-card strong {
    font-size: .58rem;
  }

  .mock-mini-stat strong {
    font-size: .8rem;
  }

  .mock-reconcile-panel {
    padding: 7px 8px 8px;
    gap: 6px;
  }

  .mock-filter-row {
    gap: 5px;
  }

  .mock-reconcile-row {
    padding: 5px 7px;
    font-size: .56rem;
  }

  .mock-ingest-dropzone {
    min-height: 84px;
    padding: 8px;
  }

  .mock-drop-hint {
    inset: 10px 12px auto 12px;
    font-size: .52rem;
  }

  .mock-drop-target {
    inset: auto 8px 8px 8px;
    min-height: 48px;
    font-size: .58rem;
  }

  .mock-ingest-table {
    min-height: 156px;
  }

  .mock-ingest-head,
  .mock-ingest-row {
    padding: 5px 8px;
    font-size: .56rem;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    padding: .82rem .8rem;
  }

  .brand {
    gap: .55rem;
  }

  .brand-text {
    max-width: 128px;
  }

  .wordmark {
    font-size: 1.08rem;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 64px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    gap: .25rem;
    padding: .75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(15, 17, 19, 0.94), rgba(15, 17, 19, 0.72));
    box-shadow: var(--shadow-card);
  }

  :root.nav-open .nav-links {
    display: flex;
  }

  :root[data-theme='light'] .nav-links {
    border-color: rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, rgba(219, 228, 238, 0.92), rgba(219, 228, 238, 0.72));
  }

  .nav-links a {
    padding: .75rem .8rem;
  }

  .hero {
    padding: 6rem 0 4.25rem;
    min-height: auto;
  }

  .section {
    padding: 3.1rem 0;
  }

  h1 {
    font-size: clamp(2.28rem, 10.4vw, 3.16rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-support {
    margin-top: 1rem;
    padding: .95rem;
  }

  .hero-kicker {
    margin-bottom: 1.15rem;
    font-size: .71rem;
    letter-spacing: 0.14em;
  }

  .hero-title {
    max-width: 11.2ch;
    text-wrap: pretty;
  }

  .hero-title-dyn {
    margin-top: 0.15em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-rails {
    margin-top: 2rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-depth {
    max-width: none;
    margin-top: 1.35rem;
  }

  .hero-depth {
    min-height: 320px;
  }

  .hero-depth-stage {
    min-height: 228px;
    padding-top: .2rem;
  }

  .hero-depth-stage::after {
    inset: auto 9% 0 9%;
    height: 86px;
  }

  .hero-depth-card {
    width: min(100%, 286px);
    min-height: 232px;
    padding: .92rem .92rem .96rem;
  }

  .hero-depth-card strong {
    font-size: 1.12rem;
  }

  .hero-depth-card.is-prev {
    --hero-card-x: -68px;
    --hero-card-y: 26px;
    --hero-card-z: -40px;
    --hero-card-scale: .9;
  }

  .hero-depth-card.is-next {
    --hero-card-x: 68px;
    --hero-card-y: 26px;
    --hero-card-z: -40px;
    --hero-card-scale: .9;
  }

  .mock-summary {
    grid-template-columns: 1fr;
  }

  .mock-export-side {
    grid-template-columns: 1fr;
  }

  .pin-visual-orb-a {
    top: 10px;
    right: 0;
    width: 92px;
    height: 92px;
  }

  .pin-visual-orb-b,
  .pin-visual-grid,
  .cta-depth-plane-b {
    display: none;
  }

  .cta-depth-glow {
    inset: auto 0 -18% 0;
    height: 180px;
  }

  .pin-sticky {
    top: 18px;
  }

  .pin-cards {
    grid-template-columns: 1fr;
    gap: .78rem;
  }

  .pin-nums {
    width: 56px;
    height: 52px;
  }

  .pin-num {
    width: 52px;
    height: 52px;
    font-size: .95rem;
  }

  .pin-num {
    width: 48px;
    height: 48px;
    border-radius: .85rem;
  }

  .pin-text {
    min-height: 146px;
  }

  .pin-item-title {
    font-size: 1.18rem;
  }

  .pin-item-desc {
    font-size: .96rem;
    line-height: 1.65;
  }

  .pin-title-sub {
    font-size: .93rem;
  }

  .pin-visual-body {
    height: min(292px, 38vh);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .support-col {
    justify-self: start;
    min-width: 0;
  }

  .product-col {
    justify-self: start;
    text-align: left;
    justify-items: start;
  }

  .footer-contact-link {
    white-space: normal;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn,
  .cta-form button {
    width: 100%;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }

  .cta-form-head {
    margin-bottom: .3rem;
  }

  .cta-copy h2 {
    max-width: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: .7rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .tilt-3d,
  .hero-depth,
  .hero-depth-card,
  .pin-shot,
  .pin-item,
  .mock-ui,
  .mock-card,
  .mock-header,
  .mock-row,
  .mock-code,
  .mock-btn,
  .cta-copy,
  .cta-form,
  .cta-depth-plane,
  .cta-depth-glow,
  .pin-visual-grid,
  .pin-visual-orb,
  .logo-img {
    transform: none !important;
  }

  .pin-shot::after,
  body::before,
  .hero::before,
  .hero::after,
  .hero-depth::before,
  .hero-depth::after,
  .hero-depth-stage::before,
  .hero-depth-stage::after {
    animation: none !important;
  }

  .hero-grid,
  .hero-depth,
  .hero-rails,
  .pin-visual-frame {
    transition: none !important;
  }
}
