@charset "UTF-8";
:root {
  --brand-purple: #7c3aed;
  --brand-purple-light: #a78bfa;
  --brand-purple-dark: #5b21b6;
  --brand-gold: #c9a227;
  --brand-gold-light: #e2c45a;
  --brand-gold-dark: #8a6d10;
  --brand-navy: #0d2556;
  --green: #25D366;
  --green-d: #128C7E;
  --red: #ef4444;
  --amber: #f59e0b;
  --blue: #3b82f6;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 32px;
  --fs-3xl: clamp(2rem, 4.2vw, 3.25rem);
  --fs-4xl: clamp(2.5rem, 5.6vw, 4.25rem);
  --fs-5xl: clamp(3rem, 7.4vw, 5.75rem);
  --fs-6xl: clamp(3.5rem, 9vw, 7rem);
  --container: 1240px;
  --container-tight: 1080px;
  --container-narrow: 880px;
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --z-base: 1;
  --z-raised: 10;
  --z-sticky: 50;
  --z-nav: 100;
  --z-modal: 1000;
  --d-fast: 150ms;
  --d-base: 240ms;
  --d-slow: 400ms;
  --d-slower: 600ms;
}

:root,
[data-theme=dark] {
  color-scheme: dark;
  --bg: #07070e;
  --bg-elev: #0b0b16;
  --surface: #0d0d1a;
  --surface-2: #14141f;
  --surface-3: #1a1a28;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(167, 139, 250, 0.35);
  --text: #ece9e3;
  --text-mute: #a8a4b8;
  --text-faint: #6c6b80;
  --accent: var(--brand-purple);
  --accent-light: var(--brand-purple-light);
  --accent-glow: rgba(124, 58, 237, 0.30);
  --gold: var(--brand-gold);
  --gold-light: var(--brand-gold-light);
  --gold-glow: rgba(201, 162, 39, 0.22);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --scrim: rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 28px 64px rgba(0,0,0,0.55), 0 0 80px rgba(124,58,237,0.10);
  --shadow-gold: 0 0 60px rgba(201,162,39,0.18);
  --grid-dot: rgba(167, 139, 250, 0.10);
  --grain-opacity: 0.04;
  --phone-bg: #0a0a14;
  --phone-frame: #1a1a28;
  --whatsapp-bg: #0b141a;
  --bubble-in: #202c33;
  --bubble-out: #005c4b;
}

[data-theme=light] {
  color-scheme: light;
  --bg: #f7f5f0;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-2: #f3f1ec;
  --surface-3: #ebe7df;
  --border: rgba(13, 37, 86, 0.08);
  --border-strong: rgba(13, 37, 86, 0.16);
  --border-glow: rgba(124, 58, 237, 0.30);
  --text: #0d1428;
  --text-mute: #4a4f63;
  --text-faint: #888da0;
  --accent: #6d28d9;
  --accent-light: #7c3aed;
  --accent-glow: rgba(109, 40, 217, 0.20);
  --gold: #8a6d10;
  --gold-light: #c9a227;
  --gold-glow: rgba(138, 109, 16, 0.18);
  --glass: rgba(13, 20, 40, 0.04);
  --glass-strong: rgba(13, 20, 40, 0.07);
  --scrim: rgba(13, 20, 40, 0.45);
  --shadow-sm: 0 2px 8px rgba(13,20,40,0.06);
  --shadow-md: 0 12px 32px rgba(13,20,40,0.10);
  --shadow-lg: 0 28px 64px rgba(13,20,40,0.14), 0 0 60px rgba(124,58,237,0.08);
  --shadow-gold: 0 0 60px rgba(138,109,16,0.10);
  --grid-dot: rgba(13, 37, 86, 0.10);
  --grain-opacity: 0.03;
  --phone-bg: #ffffff;
  --phone-frame: #d8d5cd;
  --whatsapp-bg: #efeae2;
  --bubble-in: #ffffff;
  --bubble-out: #d9fdd3;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

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

input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

html {
  background-color: var(--bg);
}

body {
  font-family: "Inter Tight", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(circle at 0% 0%, var(--accent-glow) 0%, transparent 35%), radial-gradient(circle at 100% 100%, var(--gold-glow) 0%, transparent 35%);
  background-attachment: fixed;
  background-size: 100% 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv11" 1;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background-color var(--d-base) var(--ease-soft), color var(--d-base) var(--ease-soft);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: var(--grain-opacity);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

.font-display {
  font-family: "Cormorant Garamond", "Source Serif Pro", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.font-mono {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

.font-tabular {
  font-variant-numeric: tabular-nums;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
@media (min-width: 1024px) {
  .container {
    padding-inline: var(--sp-10);
  }
}
.container--tight {
  max-width: var(--container-tight);
}
.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  position: relative;
  padding-block: clamp(72px, 12vw, 144px);
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-light);
  margin-bottom: var(--sp-5);
}
.section__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.section__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: var(--fs-4xl);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--sp-5);
}
.section__title em {
  font-style: italic;
  color: var(--accent-light);
  font-weight: 400;
}
.section__title .gold {
  color: var(--gold-light);
}
.section__lead {
  max-width: 60ch;
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--text-mute);
  margin-bottom: var(--sp-10);
}
.section__roman {
  position: absolute;
  top: var(--sp-10);
  right: var(--sp-10);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--text-faint);
  pointer-events: none;
}
@media (max-width: 768px) {
  .section__roman {
    display: none;
  }
}

.btn {
  --bg: var(--accent);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  height: 52px;
  padding-inline: var(--sp-8);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.005em;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--d-base) var(--ease-spring), box-shadow var(--d-base) var(--ease-soft), background var(--d-base) var(--ease-soft);
  box-shadow: 0 14px 32px var(--accent-glow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px var(--accent-glow), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.btn:active {
  transform: translateY(0) scale(0.98);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out-expo);
  pointer-events: none;
}
.btn:hover::after {
  transform: translateX(120%);
}
.btn--ghost {
  --bg: transparent;
  --fg: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.btn--ghost:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.btn--gold {
  --bg: var(--gold);
  --fg: #1a1100;
  box-shadow: 0 14px 32px var(--gold-glow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.btn--gold:hover {
  --bg: var(--gold-light);
}
.btn--sm {
  height: 40px;
  padding-inline: var(--sp-5);
  font-size: var(--fs-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent-light);
  background: var(--glass);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 12px var(--accent-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
.pill--gold {
  color: var(--gold-light);
}
.pill--gold .pill__dot {
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-light);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal--right {
  transform: translateX(40px);
}
.reveal--right.is-in {
  transform: none;
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--left.is-in {
  transform: none;
}
.reveal--scale {
  transform: scale(0.94);
}
.reveal--scale.is-in {
  transform: none;
}

.stagger > * {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mesh-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: orb-drift 22s ease-in-out infinite;
}

@keyframes orb-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.94);
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  padding-block: var(--sp-4);
  transition: background-color var(--d-base) var(--ease-soft), border-color var(--d-base) var(--ease-soft), backdrop-filter var(--d-base) var(--ease-soft);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--sp-6);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.site-header__logo img {
  width: 32px;
  height: 32px;
  transition: transform var(--d-base) var(--ease-spring);
}
.site-header__logo:hover img {
  transform: rotate(-6deg) scale(1.05);
}
.site-header__logo .light-only {
  display: none;
}
[data-theme=light] .site-header__logo .dark-only {
  display: none;
}
[data-theme=light] .site-header__logo .light-only {
  display: inline-block;
}
.site-header__nav {
  display: none;
  justify-content: center;
  gap: var(--sp-2);
}
@media (min-width: 1024px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__nav a {
  position: relative;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--text-mute);
  border-radius: var(--r-pill);
  transition: color var(--d-base) var(--ease-soft);
}
.site-header__nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--glass);
  opacity: 0;
  transition: opacity var(--d-base) var(--ease-soft);
  z-index: -1;
}
.site-header__nav a:hover {
  color: var(--text);
}
.site-header__nav a:hover::before {
  opacity: 1;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.theme-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--glass);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--d-base) var(--ease-soft), transform var(--d-base) var(--ease-spring);
}
.theme-toggle:hover {
  border-color: var(--border-glow);
  transform: rotate(15deg);
}
.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: transform var(--d-slow) var(--ease-out-expo), opacity var(--d-slow) var(--ease-out-expo);
}
.theme-toggle .icon-sun {
  color: var(--gold-light);
  transform: translateY(120%) rotate(-90deg);
  opacity: 0;
}
.theme-toggle .icon-moon {
  color: var(--accent-light);
  transform: translateY(0) rotate(0);
  opacity: 1;
}
[data-theme=light] .theme-toggle .icon-sun {
  transform: translateY(0) rotate(0);
  opacity: 1;
}
[data-theme=light] .theme-toggle .icon-moon {
  transform: translateY(-120%) rotate(90deg);
  opacity: 0;
}

.mobile-menu-btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--glass);
}
@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: all var(--d-base);
}
.mobile-menu-btn span::before, .mobile-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}
.mobile-menu-btn span::before {
  top: -6px;
}
.mobile-menu-btn span::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: clamp(120px, 16vw, 200px);
  padding-bottom: clamp(80px, 14vw, 160px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.hero__bg .orb--1 {
  width: 720px;
  height: 720px;
  top: -10%;
  left: -12%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: orb-drift 24s var(--ease-soft) infinite;
}
.hero__bg .orb--2 {
  width: 540px;
  height: 540px;
  top: 20%;
  right: -8%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  animation: orb-drift 30s var(--ease-soft) infinite reverse;
  animation-delay: -7s;
}
.hero__bg .orb--3 {
  width: 460px;
  height: 460px;
  bottom: -10%;
  left: 30%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  animation: orb-drift 26s var(--ease-soft) infinite;
  animation-delay: -12s;
}
.hero__bg .dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 75% at 50% 45%, black 40%, transparent 100%);
}
.hero__bg .ray {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, var(--accent-glow), transparent);
  transform-origin: top center;
  animation: ray-sweep 14s linear infinite;
  opacity: 0.45;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: -1;
}
.hero__content {
  text-align: center;
  max-width: 1080px;
  margin-inline: auto;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}
.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: var(--fs-6xl);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--sp-8);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-block: 0.06em;
}
.hero__title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: hero-word-rise 1.1s var(--ease-out-expo) forwards;
}
.hero__title .accent {
  color: transparent;
  background-image: linear-gradient(120deg, var(--accent-light) 0%, var(--gold-light) 65%, var(--accent-light) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
  font-weight: 400;
  animation: hero-word-rise 1.1s var(--ease-out-expo) forwards, gradient-pan 9s var(--ease-soft) 1.6s infinite;
}
.hero__title .strike {
  position: relative;
}
.hero__title .strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 56%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: strike-line 1s var(--ease-out-expo) forwards;
  animation-delay: 1.8s;
}
.hero__title .underline {
  position: relative;
  display: inline-block;
}
.hero__title .underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: strike-line 1.4s var(--ease-out-expo) forwards;
  animation-delay: 2.2s;
  box-shadow: 0 0 16px var(--gold-glow);
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
  color: var(--text-mute);
  max-width: 760px;
  margin: 0 auto var(--sp-10);
  opacity: 0;
  animation: fade-rise 1s var(--ease-out-expo) forwards;
  animation-delay: 1.1s;
}
.hero__lead strong {
  color: var(--text);
  font-weight: 600;
}
.hero__lead .em-gold {
  color: var(--gold-light);
  font-weight: 600;
}
.hero__lead .em-purple {
  color: var(--accent-light);
  font-weight: 600;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-16);
  opacity: 0;
  animation: fade-rise 1s var(--ease-out-expo) forwards;
  animation-delay: 1.3s;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-6) var(--sp-10);
  padding: var(--sp-5) var(--sp-8);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: max-content;
  margin: 0 auto var(--sp-12);
  opacity: 0;
  animation: fade-rise 1s var(--ease-out-expo) forwards;
  animation-delay: 1.5s;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--text-mute);
}
.hero__trust-item strong {
  color: var(--text);
  font-weight: 600;
}
.hero__trust-item .icon {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
}
.hero__trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border-strong);
}
@media (max-width: 720px) {
  .hero__trust-divider {
    display: none;
  }
}
.hero__mock {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  perspective: 1800px;
  opacity: 0;
  animation: fade-rise 1.2s var(--ease-out-expo) forwards;
  animation-delay: 1.7s;
}
.hero__device {
  position: relative;
  transform: rotateX(8deg);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out-expo);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.7), 0 0 80px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero__device-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.hero__device-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero__device-bar .dot:nth-child(1) {
  background: #ff5f57;
}
.hero__device-bar .dot:nth-child(2) {
  background: #febc2e;
}
.hero__device-bar .dot:nth-child(3) {
  background: #28c840;
}
.hero__device-bar .url {
  margin-left: var(--sp-4);
  flex: 1;
  max-width: 360px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-faint);
  background: var(--bg-elev);
  text-align: center;
}
.hero__float {
  position: absolute;
  z-index: 3;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  animation: float-y 5s var(--ease-soft) infinite;
}
.hero__float--tl {
  top: -32px;
  left: -28px;
  animation-delay: 0s;
}
.hero__float--tr {
  top: 18%;
  right: -36px;
  animation-delay: -1.5s;
}
.hero__float--bl {
  bottom: 18%;
  left: -40px;
  animation-delay: -3s;
}
.hero__float .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-glow);
  color: var(--accent-light);
}
.hero__float .icon--bare {
  background: transparent;
}
.hero__float .icon--bare img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.45));
  animation: float-y 4s var(--ease-soft) infinite;
}
.hero__float .label {
  font-size: var(--fs-xs);
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__float .value {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
@media (max-width: 768px) {
  .hero__float {
    display: none;
  }
}

@keyframes hero-word-rise {
  0% {
    transform: translateY(110%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes gradient-pan {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes strike-line {
  to {
    transform: scaleX(1);
  }
}
@keyframes ray-sweep {
  0% {
    transform: translateX(-30vw) rotate(8deg);
  }
  100% {
    transform: translateX(30vw) rotate(8deg);
  }
}
@keyframes float-y {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.whatsapp {
  position: relative;
  overflow: hidden;
}
.whatsapp__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-16);
}
.whatsapp__crest {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-6);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.whatsapp__crest img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 12px 28px rgba(37, 211, 102, 0.45));
  animation: zap-bob 4s var(--ease-soft) infinite;
  position: relative;
  z-index: 2;
}
.whatsapp__crest::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25), transparent 70%);
  filter: blur(12px);
  animation: zap-pulse 3.4s var(--ease-soft) infinite;
  z-index: 0;
}
.whatsapp__crest-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.55);
  animation: zap-ripple 3s var(--ease-out-expo) infinite;
  z-index: 1;
}
.whatsapp__crest-ring--2 {
  animation-delay: 1s;
  border-color: rgba(167, 139, 250, 0.45);
}
.whatsapp__crest-ring--3 {
  animation-delay: 2s;
  border-color: rgba(226, 196, 90, 0.45);
}
.whatsapp__stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 900px) {
  .whatsapp__stage {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
    max-width: 380px;
  }
}
.whatsapp__stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  box-shadow: 0 0 24px var(--accent-glow);
  animation: beam-pulse 3s var(--ease-soft) infinite;
  pointer-events: none;
}
@media (max-width: 900px) {
  .whatsapp__stage::before {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--accent-light), transparent);
  }
}
.whatsapp__device-label {
  text-align: center;
  margin-bottom: var(--sp-5);
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}

.phone {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9/19;
  background: var(--phone-frame);
  border-radius: 42px;
  padding: 12px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04) inset, 0 60px 120px -30px rgba(0, 0, 0, 0.8), 0 0 80px var(--accent-glow);
  position: relative;
  transform-style: preserve-3d;
}
.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--whatsapp-bg);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.phone__notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 5;
}
.phone__wa-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-12) var(--sp-4) var(--sp-3);
  background: #1f2c33;
  color: #fff;
}
[data-theme=light] .phone__wa-header {
  background: #008069;
}
.phone__wa-header .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}
.phone__wa-header .avatar--brand {
  background: #fff;
  padding: 4px;
}
.phone__wa-header .avatar--brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.phone__wa-header .meta {
  flex: 1;
}
.phone__wa-header .meta .name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.phone__wa-header .meta .status {
  font-size: 11px;
  opacity: 0.7;
}
.phone__wa-header .icons {
  display: inline-flex;
  gap: 14px;
}
.phone__wa-header .icons svg {
  width: 18px;
  height: 18px;
  opacity: 0.85;
}
.phone__wa-body {
  height: calc(100% - 110px);
  overflow: hidden;
  padding: var(--sp-3) var(--sp-3);
  background-image: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.02) 1px, transparent 1px), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scroll-behavior: smooth;
}
[data-theme=light] .phone__wa-body {
  background-color: #efeae2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='8' cy='8' r='1' fill='rgba(0,0,0,0.04)'/><circle cx='28' cy='28' r='1' fill='rgba(0,0,0,0.04)'/></svg>");
}
.phone .bubble {
  max-width: 78%;
  padding: 8px 11px 18px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #e9edef;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  word-wrap: break-word;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}
[data-theme=light] .phone .bubble {
  color: #111b21;
}
.phone .bubble.is-shown {
  animation: bubble-in 0.4s var(--ease-spring) forwards;
}
.phone .bubble .time {
  position: absolute;
  right: 8px;
  bottom: 4px;
  font-size: 10px;
  opacity: 0.6;
}
.phone .bubble--in {
  align-self: flex-start;
  background: var(--bubble-in);
  border-top-left-radius: 0;
}
.phone .bubble--out {
  align-self: flex-end;
  background: var(--bubble-out);
  border-top-right-radius: 0;
}
[data-theme=dark] .phone .bubble--out {
  color: #e9edef;
}
.phone .bubble--audio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 18px;
  min-width: 200px;
}
.phone .bubble--audio .play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.phone .bubble--audio .play svg {
  width: 12px;
  height: 12px;
}
.phone .bubble--audio .wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
}
.phone .bubble--audio .wave span {
  flex: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: wave-bounce 1.2s var(--ease-soft) infinite;
}
.phone .bubble--audio .wave span:nth-child(1) {
  height: 35%;
  animation-delay: 0.04s;
}
.phone .bubble--audio .wave span:nth-child(2) {
  height: 60%;
  animation-delay: 0.08s;
}
.phone .bubble--audio .wave span:nth-child(3) {
  height: 22%;
  animation-delay: 0.12s;
}
.phone .bubble--audio .wave span:nth-child(4) {
  height: 75%;
  animation-delay: 0.16s;
}
.phone .bubble--audio .wave span:nth-child(5) {
  height: 48%;
  animation-delay: 0.2s;
}
.phone .bubble--audio .wave span:nth-child(6) {
  height: 90%;
  animation-delay: 0.24s;
}
.phone .bubble--audio .wave span:nth-child(7) {
  height: 30%;
  animation-delay: 0.28s;
}
.phone .bubble--audio .wave span:nth-child(8) {
  height: 65%;
  animation-delay: 0.32s;
}
.phone .bubble--audio .wave span:nth-child(9) {
  height: 18%;
  animation-delay: 0.36s;
}
.phone .bubble--audio .wave span:nth-child(10) {
  height: 80%;
  animation-delay: 0.4s;
}
.phone .bubble--audio .wave span:nth-child(11) {
  height: 42%;
  animation-delay: 0.44s;
}
.phone .bubble--audio .wave span:nth-child(12) {
  height: 70%;
  animation-delay: 0.48s;
}
.phone .bubble--audio .wave span:nth-child(13) {
  height: 28%;
  animation-delay: 0.52s;
}
.phone .bubble--audio .wave span:nth-child(14) {
  height: 55%;
  animation-delay: 0.56s;
}
.phone .bubble--audio .wave span:nth-child(15) {
  height: 88%;
  animation-delay: 0.6s;
}
.phone .bubble--audio .wave span:nth-child(16) {
  height: 35%;
  animation-delay: 0.64s;
}
.phone .bubble--audio .wave span:nth-child(17) {
  height: 62%;
  animation-delay: 0.68s;
}
.phone .bubble--audio .wave span:nth-child(18) {
  height: 24%;
  animation-delay: 0.72s;
}
.phone .bubble--audio .wave span:nth-child(19) {
  height: 78%;
  animation-delay: 0.76s;
}
.phone .bubble--audio .wave span:nth-child(20) {
  height: 45%;
  animation-delay: 0.8s;
}
.phone .bubble--audio .wave span:nth-child(21) {
  height: 68%;
  animation-delay: 0.84s;
}
.phone .bubble--audio .wave span:nth-child(22) {
  height: 32%;
  animation-delay: 0.88s;
}
.phone .bubble--audio .duration {
  font-size: 10px;
  opacity: 0.7;
  min-width: 30px;
}
.phone .bubble--analyzing {
  align-self: center;
  background: linear-gradient(120deg, var(--brand-purple), var(--brand-gold));
  background-size: 200% 100%;
  animation: bubble-in 0.4s var(--ease-spring) forwards, gradient-pan 4s linear infinite;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
  max-width: max-content;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}
.phone .typing {
  align-self: flex-start;
  background: var(--bubble-in);
  border-radius: 8px;
  padding: 10px 14px;
  display: inline-flex;
  gap: 4px;
  border-top-left-radius: 0;
  opacity: 0;
}
.phone .typing.is-shown {
  animation: bubble-in 0.4s var(--ease-spring) forwards;
}
.phone .typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  animation: typing-bounce 1.2s var(--ease-soft) infinite;
}
.phone .typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.phone .typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.phone--lawyer .phone__screen {
  background: var(--phone-bg);
}
.phone--lawyer .lawyer-status-bar {
  padding: var(--sp-12) var(--sp-4) var(--sp-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  border-bottom: 1px solid var(--border);
}
.phone--lawyer .lawyer-status-bar .time {
  font-weight: 600;
}
.phone--lawyer .lawyer-status-bar .signals {
  display: inline-flex;
  gap: 6px;
  opacity: 0.6;
}
.phone--lawyer .lawyer-feed {
  padding: var(--sp-4) var(--sp-3);
  height: calc(100% - 88px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.phone--lawyer .feed-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  padding: 0 var(--sp-2);
}
.phone--lawyer .feed-title .small {
  display: block;
  margin-top: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.lead-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 88%, transparent), var(--surface-2));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateX(40px);
}
.lead-card.is-shown {
  animation: card-slide-in 0.6s var(--ease-out-expo) forwards;
}
.lead-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, var(--accent-light), transparent 100%);
  z-index: -1;
  animation: angle-spin 4s linear infinite;
}
.lead-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.lead-card__head .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-glow);
  color: var(--accent-light);
  border: 1px solid var(--border-glow);
}
.lead-card__head .badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
}
.lead-card__head .time {
  font-size: 10px;
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
}
.lead-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 2px;
}
.lead-card__case {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-faint);
  margin-bottom: var(--sp-3);
}
.lead-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 6px;
  border-bottom: 1px dashed var(--border);
  font-size: 12px;
}
.lead-card__row:last-child {
  border: none;
}
.lead-card__row .k {
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}
.lead-card__row .v {
  color: var(--text);
  font-weight: 600;
}
.lead-card__row .v.gold {
  color: var(--gold-light);
}
.lead-card__row .v.purple {
  color: var(--accent-light);
}
.lead-card__meter {
  margin-top: var(--sp-3);
  height: 6px;
  border-radius: 3px;
  background: var(--surface-3);
  overflow: hidden;
}
.lead-card__meter span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 12px var(--gold-glow);
  border-radius: inherit;
  transition: width 1.2s var(--ease-out-expo) 0.6s;
}
.lead-card__meter.is-filled span {
  width: var(--score, 78%);
}
.lead-card__cta {
  display: flex;
  margin-top: var(--sp-4);
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
}
.lead-card__cta svg {
  width: 14px;
  height: 14px;
}
.lead-card--gold::before {
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, var(--gold-light), transparent 100%);
}

@keyframes bubble-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes card-slide-in {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  30% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
@keyframes wave-bounce {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}
@keyframes beam-pulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes angle-spin {
  to {
    --angle: 360deg;
  }
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes zap-bob {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(-3deg);
  }
}
@keyframes zap-pulse {
  0%, 100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}
@keyframes zap-ripple {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.process {
  position: relative;
  background: linear-gradient(180deg, transparent, var(--surface) 30%, var(--surface) 70%, transparent);
}
.process__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-16);
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  position: relative;
}
@media (max-width: 900px) {
  .process__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
.process__grid::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 16%;
  right: 16%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--border-strong) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}
@media (max-width: 900px) {
  .process__grid::before {
    display: none;
  }
}

.step-card {
  position: relative;
  z-index: 1;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: color-mix(in srgb, var(--surface-2) 80%, transparent);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.5s var(--ease-out-expo), border-color 0.5s var(--ease-soft), box-shadow 0.5s var(--ease-soft);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 30px 60px -20px var(--accent-glow), var(--shadow-md);
}
.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  color: var(--accent-light);
  margin-bottom: var(--sp-5);
  position: relative;
  isolation: isolate;
}
.step-card__num::before, .step-card__num::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-light);
  animation: ripple 2.6s var(--ease-out-expo) infinite;
}
.step-card__num::after {
  animation-delay: 1.3s;
}
.step-card__icon {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--glass-strong);
  display: grid;
  place-items: center;
  color: var(--gold-light);
}
.step-card__icon svg {
  width: 22px;
  height: 22px;
}
.step-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--sp-3);
}
.step-card__desc {
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-mute);
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.antiha {
  position: relative;
  overflow: hidden;
}
.antiha__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 980px) {
  .antiha__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
}
.antiha__claims {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.antiha__claim {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: border-color var(--d-base) var(--ease-soft);
}
.antiha__claim:hover {
  border-color: var(--border-glow);
}
.antiha__claim .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: grid;
  place-items: center;
  color: var(--accent-light);
}
.antiha__claim .check svg {
  width: 14px;
  height: 14px;
}
.antiha__claim strong {
  color: var(--text);
  font-weight: 600;
  display: block;
}
.antiha__claim span {
  color: var(--text-mute);
  font-size: var(--fs-sm);
}
.antiha__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  margin-inline: auto;
}
.antiha__core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-light), var(--accent) 60%, var(--brand-purple-dark));
  box-shadow: 0 0 80px var(--accent-glow), inset 0 -20px 40px rgba(0, 0, 0, 0.4), inset 0 20px 30px rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  text-align: center;
  line-height: 1.1;
  animation: float-y 6s var(--ease-soft) infinite;
}
.antiha__core::before, .antiha__core::after {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
  animation: orbit-rotate 30s linear infinite;
}
.antiha__core::after {
  inset: -22%;
  animation-duration: 50s;
  animation-direction: reverse;
}
.antiha__node {
  position: absolute;
  width: 80px;
  padding: 6px 10px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  font-size: 10px;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.antiha__node--1 {
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-y 4s var(--ease-soft) infinite;
}
.antiha__node--2 {
  top: 30%;
  right: 0;
  animation: float-y 4.5s var(--ease-soft) infinite -0.5s;
}
.antiha__node--3 {
  bottom: 12%;
  right: 8%;
  animation: float-y 5s var(--ease-soft) infinite -1s;
}
.antiha__node--4 {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  animation: float-y 4.2s var(--ease-soft) infinite -1.5s;
}
.antiha__node--5 {
  bottom: 12%;
  left: 8%;
  animation: float-y 4.7s var(--ease-soft) infinite -2s;
}
.antiha__node--6 {
  top: 30%;
  left: 0;
  animation: float-y 5s var(--ease-soft) infinite -2.5s;
}
.antiha__node .label {
  color: var(--text-faint);
  font-size: 9px;
}
.antiha__node .val {
  color: var(--accent-light);
  font-weight: 600;
}
.antiha__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.antiha__lines path {
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1;
  stroke-dasharray: 4 6;
  opacity: 0.4;
  animation: dash-flow 4s linear infinite;
}
.antiha__bigtag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14vw;
  color: var(--text);
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
}

@keyframes orbit-rotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes dash-flow {
  to {
    stroke-dashoffset: -100;
  }
}
.versus {
  position: relative;
}
.versus__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-16);
}
.versus__board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: stretch;
}
@media (max-width: 900px) {
  .versus__board {
    grid-template-columns: 1fr;
  }
  .versus__board .versus__vs {
    order: 0;
    height: 80px;
  }
}
.versus__col {
  position: relative;
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out-expo);
}
.versus__col--bad {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.05), transparent);
}
.versus__col--bad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 14px, rgba(239, 68, 68, 0.03) 14px, rgba(239, 68, 68, 0.03) 16px);
  pointer-events: none;
}
.versus__col--good {
  background: radial-gradient(circle at 0% 0%, var(--accent-glow), transparent 60%), linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: var(--border-glow);
  box-shadow: 0 0 0 1px var(--border-glow), var(--shadow-lg);
}
.versus__col h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  margin-bottom: var(--sp-2);
}
.versus__col .col-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.versus__col--bad .col-tag {
  background: rgba(239, 68, 68, 0.1);
  color: #ff8a8a;
  border: 1px solid rgba(239, 68, 68, 0.25);
}
.versus__col--good .col-tag {
  background: var(--accent-glow);
  color: var(--accent-light);
  border: 1px solid var(--border-glow);
}
.versus__col ul {
  display: grid;
  gap: var(--sp-3);
}
.versus__col li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--text-mute);
}
.versus__col li strong {
  color: var(--text);
  font-weight: 600;
}
.versus__col li .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.versus__col--bad li .icon {
  background: rgba(239, 68, 68, 0.12);
  color: #ff8a8a;
}
.versus__col--good li .icon {
  background: var(--accent-glow);
  color: var(--accent-light);
}
.versus__vs {
  align-self: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border-glow);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 36px;
  color: var(--accent-light);
  box-shadow: 0 0 60px var(--accent-glow);
  position: relative;
  z-index: 2;
}
.versus__vs::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  animation: ripple 3s var(--ease-out-expo) infinite;
}

.jurimetria {
  position: relative;
  overflow: hidden;
}
.jurimetria__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 980px) {
  .jurimetria__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }
}
.jurimetria__list {
  display: grid;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.jurimetria__item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: all var(--d-base) var(--ease-soft);
}
.jurimetria__item:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}
.jurimetria__item .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: grid;
  place-items: center;
  color: var(--accent-light);
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.jurimetria__item .body strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.jurimetria__item .body span {
  color: var(--text-mute);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.jurimetria__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: linear-gradient(120deg, var(--accent-glow), var(--gold-glow));
  border: 1px solid var(--border-glow);
  margin-top: var(--sp-8);
  font-size: var(--fs-sm);
  color: var(--text);
  font-weight: 500;
}
.jurimetria__badge .star {
  color: var(--gold-light);
}
.jurimetria__badge strong {
  color: var(--accent-light);
  font-weight: 700;
}

.speedo {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 1.05/1;
  padding: var(--sp-8);
  border-radius: var(--r-2xl);
  background: radial-gradient(circle at 50% 100%, var(--accent-glow), transparent 50%), linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.speedo__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.speedo__svg .track {
  fill: none;
  stroke: var(--surface-3);
  stroke-width: 18;
  stroke-linecap: round;
}
.speedo__svg .bar {
  fill: none;
  stroke: url(#speedoGradient);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  filter: drop-shadow(0 0 12px var(--accent-glow));
  transition: stroke-dashoffset 2s var(--ease-out-expo) 0.3s;
}
.speedo__svg .ticks line {
  stroke: var(--text-faint);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.6;
}
.speedo__svg .ticks line.major {
  stroke: var(--text-mute);
  stroke-width: 2;
}
.speedo__svg .needle {
  transform-origin: 50% 50%;
  transform: rotate(-130deg);
  transition: transform 2s var(--ease-out-expo) 0.3s;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.speedo.is-on .bar {
  stroke-dashoffset: calc(360 - 360 * var(--pct, 0.78));
}
.speedo.is-on .needle {
  transform: rotate(calc(-130deg + 260deg * var(--pct, 0.78)));
}
.speedo__readout {
  position: absolute;
  inset: auto 0 28% 0;
  text-align: center;
  pointer-events: none;
}
.speedo__readout .value {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(56px, 9vw, 84px);
  color: var(--text);
  line-height: 1;
  font-feature-settings: "tnum" 1;
}
.speedo__readout .value::after {
  content: "%";
  font-size: 0.45em;
  color: var(--accent-light);
  margin-left: 4px;
  vertical-align: super;
}
.speedo__readout .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: var(--sp-2);
}
.speedo__chips {
  position: absolute;
  inset: auto 0 var(--sp-6) 0;
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
}
.speedo__chips .chip {
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-mute);
  background: var(--glass);
  border: 1px solid var(--border);
}
.speedo__chips .chip.is-active {
  color: var(--accent-light);
  border-color: var(--border-glow);
  background: var(--accent-glow);
}

.precedentes {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--gold-glow), transparent 70%);
}
.precedentes__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--sp-12);
}
.precedentes__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-16);
  max-width: 980px;
  margin-inline: auto;
}
@media (max-width: 800px) {
  .precedentes__pillars {
    grid-template-columns: 1fr;
  }
}
.precedentes__pillars .pillar {
  padding: var(--sp-5);
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.precedentes__pillars .pillar .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gold-glow);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-3);
}
.precedentes__pillars .pillar .icon svg {
  width: 18px;
  height: 18px;
}
.precedentes__pillars .pillar strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 600;
}
.precedentes__pillars .pillar p {
  color: var(--text-mute);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.precedentes__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 980px) {
  .precedentes__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

.precedent-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo), box-shadow var(--d-base);
}
.precedent-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.precedent-card:hover .precedent-card__seal {
  transform: rotate(-12deg) scale(1.05);
}
.precedent-card__seal {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.06;
  transform: rotate(-8deg);
  transition: transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}
.precedent-card__seal::before, .precedent-card__seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
}
.precedent-card__seal::after {
  inset: 24px;
  border: 1px solid var(--gold);
}
.precedent-card__court {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--gold-glow);
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.precedent-card__case {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: var(--sp-3);
  word-break: break-all;
}
.precedent-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.precedent-card__quote {
  position: relative;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border-left: 3px solid var(--gold);
  margin-bottom: var(--sp-4);
}
.precedent-card__quote::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
}
.precedent-card__quote p {
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.55;
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
}
.precedent-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--border-strong);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.precedent-card__foot .relevance {
  color: var(--accent-light);
  font-weight: 600;
}

.ai-strategy {
  position: relative;
}
.ai-strategy__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (max-width: 980px) {
  .ai-strategy__grid {
    grid-template-columns: 1fr;
  }
}
.ai-strategy__list {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.ai-strategy__list li {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.ai-strategy__list li .check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-glow);
  color: var(--accent-light);
  display: grid;
  place-items: center;
}
.ai-strategy__list li .check svg {
  width: 16px;
  height: 16px;
}
.ai-strategy__list li strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}
.ai-strategy__list li span {
  color: var(--text-mute);
  font-size: var(--fs-sm);
}

.ai-feed {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  overflow: hidden;
}
.ai-feed::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, var(--accent-light), transparent 100%);
  z-index: -1;
  animation: angle-spin 6s linear infinite;
}
.ai-feed__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-5);
}
.ai-feed__head h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--text);
}
.ai-feed__head h4 em {
  color: var(--accent-light);
  font-style: normal;
  font-weight: 600;
}
.ai-feed__head .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--accent-glow);
  color: var(--accent-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ai-feed__head .live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.ai-feed__case {
  display: flex;
  gap: var(--sp-3);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: var(--sp-5);
}
.ai-feed__case .dot {
  color: var(--text-mute);
}
.ai-feed__case .area {
  color: var(--gold-light);
}
.ai-feed__steps {
  display: grid;
  gap: var(--sp-3);
}
.ai-feed__step {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.ai-feed__step .num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 700;
}
.ai-feed__step .text {
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.55;
}
.ai-feed__step .text .ref {
  color: var(--accent-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
}
.ai-feed__step .text .gold {
  color: var(--gold-light);
  font-weight: 600;
}
.ai-feed__step.is-streaming .text::after {
  content: "▋";
  display: inline-block;
  margin-left: 2px;
  color: var(--accent-light);
  animation: cursor-blink 1s steps(2) infinite;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}
.features {
  position: relative;
}
.features__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-12);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

.feature-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: radial-gradient(circle at 0% 0%, var(--accent-glow), transparent 60%), var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.6s var(--ease-out-expo), border-color 0.4s var(--ease-soft);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
}
.feature-card:hover .feature-card__icon {
  transform: rotate(-10deg) scale(1.1);
}
.feature-card::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold-glow);
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.6s var(--ease-soft);
  z-index: -1;
}
.feature-card:hover::after {
  opacity: 0.6;
}
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-5);
  transition: transform 0.6s var(--ease-spring);
  box-shadow: 0 14px 28px var(--accent-glow);
}
.feature-card__icon svg {
  width: 26px;
  height: 26px;
}
.feature-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.feature-card__desc {
  color: var(--text-mute);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.showcase {
  position: relative;
}
.showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-12);
}
@media (max-width: 980px) {
  .showcase__row {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}
@media (min-width: 981px) {
  .showcase__row--reverse .showcase__media {
    order: -1;
  }
}
.showcase__row + .showcase__row {
  border-top: 1px solid var(--border);
}
.showcase__media {
  position: relative;
  perspective: 1600px;
}
.showcase__media .frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6), 0 0 100px var(--accent-glow);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.8s var(--ease-out-expo);
  transform-style: preserve-3d;
}
.showcase__media .frame:hover {
  transform: rotateY(0) rotateX(0);
}
.showcase__media .frame img {
  width: 100%;
  display: block;
}
.showcase__media .frame--mobile {
  max-width: 320px;
  margin: 0 auto;
  border-radius: 32px;
  padding: 8px;
  background: var(--phone-frame);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.55), 0 0 80px var(--accent-glow);
}
.showcase__media .frame--mobile img {
  border-radius: 24px;
}
.showcase__media .floating-tag {
  position: absolute;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  animation: float-y 4.5s var(--ease-soft) infinite;
  font-size: var(--fs-sm);
}
.showcase__media .floating-tag .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--gold-glow);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}
.showcase__media .floating-tag .icon svg {
  width: 16px;
  height: 16px;
}
.showcase__media .floating-tag .label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.showcase__media .floating-tag .value {
  color: var(--text);
  font-weight: 600;
  line-height: 1.2;
}
.showcase__media .floating-tag--tl {
  top: -22px;
  left: -22px;
}
.showcase__media .floating-tag--br {
  bottom: -22px;
  right: -22px;
  animation-delay: -1.5s;
}
@media (max-width: 980px) {
  .showcase__media .floating-tag {
    display: none;
  }
}
.showcase__bullets {
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-3);
}
.showcase__bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: var(--fs-sm);
}
.showcase__bullets li .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-light);
  display: grid;
  place-items: center;
}
.showcase__bullets li .icon svg {
  width: 12px;
  height: 12px;
}

.security {
  position: relative;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, var(--accent-glow), transparent 70%);
}
.security__panel {
  max-width: 980px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-12);
  border-radius: var(--r-2xl);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
@media (max-width: 720px) {
  .security__panel {
    padding: var(--sp-10) var(--sp-6);
  }
}
.security__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent);
  opacity: 0.5;
  z-index: -1;
}
.security__shield {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-6);
  display: grid;
  place-items: center;
  color: var(--accent-light);
}
.security__shield svg {
  width: 56px;
  height: 56px;
}
.security__shield::before, .security__shield::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  animation: ripple 3s var(--ease-out-expo) infinite;
}
.security__shield::after {
  animation-delay: 1.5s;
}
.security__cells {
  margin-top: var(--sp-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 720px) {
  .security__cells {
    grid-template-columns: repeat(2, 1fr);
  }
}
.security__cells .cell {
  padding: var(--sp-4);
  border-radius: var(--r-md);
  background: var(--bg-elev);
  border: 1px solid var(--border);
}
.security__cells .cell .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin: 0 auto var(--sp-2);
  background: var(--glass-strong);
  color: var(--accent-light);
  display: grid;
  place-items: center;
}
.security__cells .cell .icon svg {
  width: 16px;
  height: 16px;
}
.security__cells .cell strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-sm);
}
.security__cells .cell span {
  color: var(--text-faint);
  font-size: 11px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

.integrations {
  position: relative;
}
.integrations__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-12);
}
.integrations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) {
  .integrations__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}

.integration-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out-expo), border-color var(--d-base);
}
.integration-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
}
.integration-card:hover .integration-card__brand img {
  transform: scale(1.12) rotate(-6deg);
}
.integration-card:hover .integration-card__brand::after {
  opacity: 1;
}
.integration-card__brand {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin-bottom: var(--sp-5);
  transition: transform 0.6s var(--ease-spring);
}
.integration-card__brand::before {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glass-strong), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  transition: opacity 0.5s var(--ease-soft);
}
.integration-card__brand::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed var(--border-strong);
  animation: orbit-rotate 18s linear infinite;
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
}
.integration-card__brand img {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
  transition: transform 0.6s var(--ease-spring);
}
.integration-card__brand svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.integration-card__pill {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: var(--accent-glow);
  color: var(--accent-light);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--sp-3);
  border: 1px solid var(--border-glow);
}
.integration-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-3);
  line-height: 1.2;
}
.integration-card__desc {
  color: var(--text-mute);
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.integration-card__steps {
  display: grid;
  gap: 6px;
  padding-top: var(--sp-3);
  border-top: 1px dashed var(--border-strong);
}
.integration-card__steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mute);
  font-family: "JetBrains Mono", monospace;
}
.integration-card__steps li .arrow {
  color: var(--accent-light);
}

.pricing {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-glow), transparent 70%);
}
.pricing__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-10);
}
.pricing__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 6px;
  border-radius: var(--r-pill);
  background: var(--glass);
  border: 1px solid var(--border-strong);
  margin: 0 auto var(--sp-12);
  backdrop-filter: blur(10px);
}
.pricing__toggle button {
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-mute);
  transition: color var(--d-base), background var(--d-base);
}
.pricing__toggle button.is-active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px var(--accent-glow);
}
.pricing__toggle .save {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  padding: 2px 6px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--r-pill);
  margin-left: 4px;
}
.pricing__toggle-wrap {
  text-align: center;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  align-items: stretch;
}
@media (max-width: 1100px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
.pricing__loading, .pricing__error {
  grid-column: 1/-1;
  text-align: center;
  padding: var(--sp-10);
  color: var(--text-mute);
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-sm);
}
.pricing__loading .spinner, .pricing__error .spinner {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 3px solid var(--border-strong);
  border-top-color: var(--accent-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: var(--sp-3);
}
.pricing__note {
  text-align: center;
  margin-top: var(--sp-8);
  color: var(--text-faint);
  font-size: var(--fs-sm);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: transform 0.6s var(--ease-out-expo), border-color var(--d-base);
  isolation: isolate;
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
}
.plan-card--popular {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-glow) 35%, var(--surface-2)), var(--surface));
  border-color: var(--border-glow);
  box-shadow: 0 30px 60px -20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-12px);
}
.plan-card--popular::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, var(--accent-light), transparent 100%);
  z-index: -1;
  animation: angle-spin 6s linear infinite;
}
.plan-card--enterprise {
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold-glow) 25%, var(--surface-2)), var(--surface));
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: 0 30px 60px -20px var(--gold-glow);
}
.plan-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px var(--accent-glow);
}
.plan-card__badge--gold {
  background: var(--gold);
  color: #1a1100;
  box-shadow: 0 8px 20px var(--gold-glow);
}
.plan-card__name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--accent-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.plan-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: var(--sp-2);
  line-height: 1;
}
.plan-card__tagline {
  color: var(--text-mute);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
  min-height: 44px;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--sp-2);
  font-family: "Cormorant Garamond", serif;
}
.plan-card__price .currency {
  font-size: 18px;
  color: var(--text-mute);
  font-weight: 500;
}
.plan-card__price .value {
  font-size: 56px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
  line-height: 1;
}
.plan-card__price .period {
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  color: var(--text-faint);
  margin-left: 4px;
}
.plan-card__price .custom {
  font-style: italic;
  font-size: 32px;
  color: var(--gold-light);
}
.plan-card__price-strike {
  color: var(--text-faint);
  text-decoration: line-through;
  font-size: 14px;
  margin-bottom: var(--sp-4);
  font-family: "JetBrains Mono", monospace;
}
.plan-card__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  border-radius: var(--r-pill);
  margin-block: var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: all var(--d-base) var(--ease-soft);
  background: var(--glass-strong);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.plan-card__cta:hover {
  border-color: var(--border-glow);
  background: var(--accent-glow);
  color: var(--accent-light);
}
.plan-card--popular .plan-card__cta {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px var(--accent-glow);
}
.plan-card--popular .plan-card__cta:hover {
  background: var(--brand-purple-dark);
  transform: translateY(-1px);
}
.plan-card--enterprise .plan-card__cta {
  background: var(--gold);
  color: #1a1100;
  border-color: transparent;
}
.plan-card--enterprise .plan-card__cta:hover {
  background: var(--gold-light);
}
.plan-card__limits {
  display: grid;
  gap: 10px;
  padding: var(--sp-4) 0;
  border-top: 1px dashed var(--border-strong);
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: var(--sp-4);
}
.plan-card__limits .limit {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--fs-sm);
}
.plan-card__limits .limit .k {
  color: var(--text-mute);
}
.plan-card__limits .limit .v {
  color: var(--text);
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.plan-card__limits .limit .v.unlimited {
  color: var(--accent-light);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
}
.plan-card__features {
  display: grid;
  gap: 8px;
}
.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.plan-card__features li .ico {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent-light);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.plan-card__features li .ico svg {
  width: 10px;
  height: 10px;
}
.plan-card__features li.is-off {
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--text-faint);
  opacity: 0.6;
}
.plan-card__features li.is-off .ico {
  background: transparent;
  color: var(--text-faint);
  border: 1px dashed var(--border-strong);
}

.footer {
  position: relative;
  padding: var(--sp-20) 0 var(--sp-10);
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--accent-glow), transparent 70%);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}
.footer__brand .logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.footer__brand .logo img {
  width: 40px;
  height: 40px;
}
.footer__brand .logo .light-only {
  display: none;
}
[data-theme=light] .footer__brand .logo .dark-only {
  display: none;
}
[data-theme=light] .footer__brand .logo .light-only {
  display: inline-block;
}
.footer__brand p {
  color: var(--text-mute);
  max-width: 32ch;
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.footer__brand .socials {
  display: inline-flex;
  gap: var(--sp-2);
}
.footer__brand .socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--glass);
  display: grid;
  place-items: center;
  color: var(--text-mute);
  transition: all var(--d-base) var(--ease-soft);
}
.footer__brand .socials a:hover {
  color: var(--accent-light);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}
.footer__brand .socials a svg {
  width: 16px;
  height: 16px;
}
.footer__col h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--sp-4);
}
.footer__col ul {
  display: grid;
  gap: var(--sp-2);
}
.footer__col ul a {
  font-size: var(--fs-sm);
  color: var(--text-mute);
  transition: color var(--d-base);
}
.footer__col ul a:hover {
  color: var(--accent-light);
}
.footer__bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
}
.footer__bot p, .footer__bot a {
  font-size: var(--fs-xs);
  color: var(--text-faint);
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}
.footer__bot a:hover {
  color: var(--accent-light);
}
.footer__bot .legal-links {
  display: inline-flex;
  gap: var(--sp-5);
}

.footer__watermark {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(80px, 16vw, 220px);
  letter-spacing: -0.04em;
  text-align: center;
  background: linear-gradient(180deg, var(--text) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.06;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
  margin-top: var(--sp-12);
  margin-bottom: calc(var(--sp-20) * -0.4);
}
