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

[data-theme="dark"] {
  --bg: #05030a;
  --bg2: #08060f;
  --bg3: #0a0812;
  --surface: #0e0b18;
  --surface2: #13101f;
  --border: rgba(255, 255, 255, 0.14);
  --border-hover: rgba(255, 255, 255, 0.32);
  --text: #fff;
  --text2: rgba(255, 255, 255, 0.88);
  --text3: rgba(255, 255, 255, 0.68);
  --card-hover: rgba(255, 255, 255, 0.05);
  --aura-opacity: 1;
  --accent: #8ba2ff;
  --accent2: #ff96dc;
  --nav-bg: rgba(8, 5, 16, 0.55);
  --nav-bg-scroll: rgba(5, 3, 10, 0.9);
  --overlay: rgba(5, 3, 10, 0.97);
  --frame-bg: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] {
  --bg: #f7f6f2;
  --bg2: #eeece6;
  --bg3: #e7e5de;
  --surface: #fff;
  --surface2: #f5f4ef;
  --border: rgba(0, 0, 0, 0.16);
  --border-hover: rgba(0, 0, 0, 0.32);
  --text: #0a0a0a;
  --text2: rgba(0, 0, 0, 0.78);
  --text3: rgba(0, 0, 0, 0.55);
  --card-hover: rgba(0, 0, 0, 0.05);
  --aura-opacity: 1;
  --accent: #3a4fff;
  --accent2: #ff4aa1;
  --nav-bg: rgba(247, 246, 242, 0.7);
  --nav-bg-scroll: rgba(247, 246, 242, 0.95);
  --overlay: rgba(247, 246, 242, 0.98);
  --frame-bg: rgba(0, 0, 0, 0.04);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}


body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background 0.7s ease, color 0.7s ease;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { border-radius: 2px; background: linear-gradient(var(--accent), var(--accent2)); opacity: 0.4; }

/* Gemini animated border */
@property --gemini-rotation {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes gemini-rotate {
  to { --gemini-rotation: 360deg; }
}
.gemini-border {
  position: relative;
  isolation: isolate;
}
.gemini-border::before,
.gemini-border::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--gemini-rotation) at 50% 50%,
    #6d8bff 0%,
    #ff7ad0 22%,
    #ffc46a 40%,
    #6dffb0 56%,
    #6d8bff 72%,
    #b68cff 90%,
    #6d8bff 100%
  );
  animation: gemini-rotate 6s linear infinite;
}
.gemini-border::before {
  inset: 0;
  padding: 2px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
}
.gemini-border::after {
  inset: -6px;
  filter: blur(18px);
  opacity: 0.55;
  z-index: -1;
}
.gemini-border--thin::before { padding: 1.5px; }
.gemini-border--no-glow::after { display: none; }

/* Scoped tweaks so the ring replaces (not doubles) existing borders */
.showcase-frame.gemini-border { border-color: transparent; }
.btn-primary.gemini-border,
.btn-primary.gemini-border:hover { box-shadow: none; }
.btn-primary.gemini-border::after { opacity: 0.45; inset: -5px; filter: blur(16px); }
.btn-primary.gemini-border:hover::after { opacity: 0.75; }

/* Section nav (bottom-left) */
.section-nav {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 5, 16, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px -18px rgba(0,0,0,0.5);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.5s ease;
}
[data-theme="light"] .section-nav { background: rgba(255,255,255,0.6); }
.section-nav.is-hidden { opacity: 0; transform: translateY(16px); pointer-events: none; }

.section-nav-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.section-nav-btn:hover:not(:disabled) {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(109,139,255,0.5);
}
.section-nav-btn:focus-visible {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 2px rgba(255,122,208,0.25);
}
.section-nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.section-nav-indicator {
  display: flex; align-items: center; gap: 2px;
  padding: 2px 4px;
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--text2);
}
.section-nav-indicator i { font-style: normal; opacity: 0.4; margin: 0 1px; }

@media (max-width: 640px) {
  .section-nav { bottom: 1rem; left: 1rem; padding: 0.4rem; }
  .section-nav-btn { width: 36px; height: 36px; }
  .section-nav-indicator { display: none; }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 12px var(--accent2);
  transition: width 0.08s linear;
}

/* Aura canvas */
#aura-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: var(--aura-opacity);
  transition: opacity 0.8s ease;
}

.aura-veil {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(5,3,10,0.35) 55%, rgba(5,3,10,0.72) 100%);
  transition: background 0.7s ease;
}
[data-theme="light"] .aura-veil {
  background: transparent;
}

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

/* Floating nav */
header { position: relative; z-index: 100; }

.site-nav {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: min(1200px, calc(100% - 2rem));
  padding: 0.52rem 0.72rem 0.52rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(8, 5, 16, 0.55);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 20px 60px -24px rgba(0, 0, 0, 0.65),
    0 8px 20px -10px rgba(109, 139, 255, 0.12);
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  will-change: transform, opacity;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.32, 1),
    opacity 0.35s ease,
    padding 0.35s ease,
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
[data-theme="light"] .site-nav { background: rgba(247, 246, 242, 0.7); }

.site-nav.scrolled {
  padding: 0.42rem 0.62rem 0.42rem 0.82rem;
  background: rgba(8, 5, 16, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 24px 70px -24px rgba(0, 0, 0, 0.75),
    0 10px 26px -10px rgba(109, 139, 255, 0.22);
}
[data-theme="light"] .site-nav.scrolled { background: rgba(247, 246, 242, 0.9); }

.site-nav.nav-hidden {
  transform: translateX(-50%) translateY(-150%) scale(0.96);
  opacity: 0;
  pointer-events: none;
}

.nav-logo {
  display: flex;
  align-items: center;
  width: clamp(6.1rem, 7.2vw, 6.8rem);
  flex-shrink: 0;
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.7; }
.nav-logo--footer { width: 7.75rem; }
.logo-image { display: block; width: 100%; height: auto; }
.logo-image-light { display: none; }
[data-theme="light"] .logo-image-dark { display: none; }
[data-theme="light"] .logo-image-light { display: block; }

.nav-center {
  min-width: 0;
  display: flex;
  justify-content: center;
}
.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
[data-theme="light"] .nav-links {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.22rem;
  padding: 0 0.84rem;
  border-radius: 999px;
  color: var(--text2);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s, background 0.3s, transform 0.3s;
}
.nav-links a::after { display: none; }
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a:focus-visible {
  background: rgba(0, 0, 0, 0.05);
}
.footer-col a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .nav-actions {
  border-left-color: rgba(0, 0, 0, 0.1);
}

.btn-nav, .btn-primary, .btn-ghost {
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1.4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.38rem;
  padding: 0 1.18rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  background: var(--text);
  color: var(--bg) !important;
  font-size: 0.64rem !important;
  font-weight: 600;
  white-space: nowrap;
  box-shadow:
    0 12px 28px -20px rgba(255, 255, 255, 0.1),
    0 14px 30px -22px rgba(0, 0, 0, 0.7);
}
.btn-nav:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px -20px rgba(255, 255, 255, 0.14),
    0 18px 36px -20px rgba(0, 0, 0, 0.78);
}

.theme-toggle, .menu-toggle, .mobile-close {
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--text); cursor: pointer;
}
.theme-toggle {
  width: 72px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
}
.menu-toggle {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
}
[data-theme="light"] .theme-toggle,
[data-theme="light"] .menu-toggle {
  background: rgba(255, 255, 255, 0.55);
}
.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.9);
}
.theme-switch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 9px;
}
.theme-switch-option,
.theme-switch-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switch-option {
  width: 14px;
  height: 14px;
  color: var(--text3);
  opacity: 0.72;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.theme-switch-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  box-shadow:
    0 10px 22px -14px rgba(255, 255, 255, 0.18),
    0 14px 28px -18px rgba(0, 0, 0, 0.8);
  transform: translateX(0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.32, 1),
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.theme-switch svg {
  width: 13px;
  height: 13px;
  display: block;
}
.theme-toggle[aria-checked="true"] .theme-switch-thumb {
  transform: translateX(34px);
}
.theme-toggle[aria-checked="false"] .theme-switch-option--dark,
.theme-toggle[aria-checked="true"] .theme-switch-option--light {
  opacity: 0.2;
}
.mobile-close { border: none; }
.menu-toggle { display: none; }

.nav-links a:focus-visible,
.btn-nav:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: none;
  border-color: var(--accent2);
  box-shadow: 0 0 0 2px rgba(255, 122, 208, 0.22);
}

.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.2rem;
  background: var(--overlay);
  backdrop-filter: blur(30px);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text); font-size: 1.05rem; font-weight: 400;
  letter-spacing: 2px; text-decoration: none; text-transform: uppercase;
}
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; }

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem 2rem 8rem;
  text-align: center;
}
.hero-inner { max-width: 900px; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.hero-logo {
  width: clamp(160px, 22vw, 260px);
  margin-bottom: 2.4rem;
  animation: fadeUp 1s ease both;
  filter: drop-shadow(0 0 50px rgba(109, 139, 255, 0.4)) drop-shadow(0 0 90px rgba(255, 122, 208, 0.22));
}
.hero-logo .logo-image { width: 100%; height: auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 2.4rem;
  color: var(--text2);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 3.5px; text-transform: uppercase;
  animation: fadeUp 1s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 12px var(--accent2);
  animation: pulseDot 2s ease infinite;
}

.hero-title {
  margin-bottom: 1.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 5.2vw, 4.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.hero-line { display: inline; opacity: 0; animation: fadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-line:nth-child(1) { animation-delay: 0.15s; }
.hero-line:nth-child(2) { animation-delay: 0.3s; margin-left: 0.35em; }
.hero-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 520px;
  margin: 0 auto 3rem;
  color: var(--text2);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.3px;
  animation: fadeUp 1s ease 0.45s both;
}

.hero-buttons, .cta-buttons {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}
.hero-buttons { animation: fadeUp 1s ease 0.6s both; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 1rem 2.2rem;
  font-size: 0.72rem;
  border-radius: 999px;
}
.btn-primary {
  border: none;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 10px 40px -10px rgba(109,139,255,0.4);
}
.btn-primary svg { transition: transform 0.4s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 14px 50px -8px rgba(255,122,208,0.55); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-ghost {
  border: 1px solid var(--border-hover);
  background: transparent;
  color: var(--text);
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--text); background: var(--card-hover); }

.hero-trust {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 2rem; margin-top: 3.5rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  animation: fadeUp 1s ease 0.8s both;
}
[data-theme="light"] .hero-trust { background: rgba(0,0,0,0.02); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.trust-item strong { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-weight: 500; letter-spacing: -0.3px; }
.trust-item span { color: var(--text3); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }

.scroll-hint {
  position: absolute; bottom: 3rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  animation: fadeUp 1s ease 1s both;
  pointer-events: none;
}
.scroll-hint span { color: var(--text3); font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; }
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text3), transparent);
  animation: scrollPulse 2.5s ease infinite;
}

/* Content wrapper */
.content-sections {
  position: relative;
  z-index: 3;
  background: transparent;
}

section { padding: 8rem 4rem; position: relative; }


.section-label {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  background: rgba(109, 139, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 8px 28px -10px rgba(109,139,255,0.35);
}
[data-theme="light"] .section-label { background: rgba(58, 79, 255, 0.08); }
.label-dash {
  width: 14px; height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
}

.section-title {
  margin-bottom: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  max-width: 480px;
  color: var(--text2);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* Marquee */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  padding: 3.5rem 0;
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item {
  flex-shrink: 0; padding: 0 3rem;
  color: var(--text3);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
}
.marquee-item .dot {
  display: inline-block; width: 6px; height: 6px; margin: 0 1rem;
  border-radius: 50%;
  background: var(--accent2);
  opacity: 0.5;
  vertical-align: middle;
}

/* About */
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
}
.about-content {
  max-width: 44rem;
}
.about-title {
  max-width: 14ch;
  margin-bottom: 1.55rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -1.2px;
  text-wrap: balance;
}
.about-title em {
  font-style: normal;
  background: none;
  -webkit-text-fill-color: currentColor;
}
.about-title-line {
  display: block;
  white-space: nowrap;
}
.about-title-line + .about-title-line {
  margin-top: 0.16em;
}
.about-desc {
  max-width: 32rem;
  margin: 0;
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.78;
}

.about-visual {
  position: relative;
}
.about-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 26px 80px -42px rgba(0, 0, 0, 0.72),
    0 16px 44px -28px rgba(139, 162, 255, 0.2);
}
[data-theme="light"] .about-photo-frame {
  background: rgba(255, 255, 255, 0.52);
}
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 10, 0.04), rgba(5, 3, 10, 0.18)),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}
[data-theme="light"] .about-photo-frame::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.12)),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0) 34%);
}
.about-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.5rem;
  align-items: stretch;
}
.about-feature {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 1.15rem;
  row-gap: 0.55rem;
  align-items: start;
  height: 100%;
  padding: 1.45rem 1.35rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 12, 26, 0.82), rgba(10, 8, 19, 0.76));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.about-feature:not(:first-child)::before {
  content: "";
  position: absolute;
  left: calc(-0.625rem - 1px);
  top: 50%;
  width: 2px;
  height: 56%;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(109, 139, 255, 0) 0%,
    rgba(109, 139, 255, 0.95) 26%,
    rgba(255, 122, 208, 0.95) 74%,
    rgba(255, 122, 208, 0) 100%
  );
  box-shadow:
    0 0 12px rgba(109, 139, 255, 0.55),
    0 0 24px rgba(255, 122, 208, 0.35);
  pointer-events: none;
}
[data-theme="light"] .about-feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66));
}
.about-feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  background: linear-gradient(180deg, rgba(22, 17, 38, 0.9), rgba(12, 10, 22, 0.82));
}
[data-theme="light"] .about-feature:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 244, 239, 0.82));
}
.about-feature-icon {
  grid-row: 1 / span 2;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: 0 14px 34px -22px rgba(0, 0, 0, 0.65);
}
.about-feature-icon i[class*="fa-"] {
  font-size: 1.7rem;
  line-height: 1;
}
.about-feature-meta {
  align-self: end;
  padding-top: 0.2rem;
  color: var(--text3);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 2px;
}
.about-feature-copy {
  grid-column: 2;
}
.about-feature-copy h3 {
  max-width: 14ch;
  margin-bottom: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.45px;
  text-wrap: balance;
}
.about-feature-copy p {
  max-width: 24ch;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.56;
}

/* Solutions */
.solutions-header {
  margin-bottom: 4.2rem;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.solutions-header .section-label {
  margin-bottom: 1.4rem;
}
.solutions-header .section-title {
  max-width: none;
  width: max-content;
  margin: 0 auto 1.35rem;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -1.4px;
}
.solutions-title-line {
  display: block;
  white-space: nowrap;
}
.solutions-title-line + .solutions-title-line {
  margin-top: 0.06em;
}
.solutions-header .section-desc {
  max-width: 41rem;
  margin: 0 auto;
  font-size: 1.04rem;
  line-height: 1.78;
}

.solutions-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.solution-card {
  position: relative;
  display: flex;
  min-height: 24rem;
  flex-direction: column;
  padding: 1.6rem 1.55rem 1.45rem;
  border: 1px solid rgba(138, 120, 255, 0.26);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(4, 4, 12, 0.9), rgba(5, 4, 12, 0.82));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 30px 70px -44px rgba(0, 0, 0, 0.9);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
  overflow: hidden;
}
[data-theme="light"] .solution-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 248, 244, 0.74));
  border-color: rgba(58, 79, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 26px 60px -42px rgba(0, 0, 0, 0.2);
}
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(109, 139, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  opacity: 0.72;
  pointer-events: none;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 147, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 36px 80px -42px rgba(0, 0, 0, 0.95),
    0 18px 40px -26px rgba(109, 139, 255, 0.2);
}
[data-theme="light"] .solution-card:hover {
  border-color: rgba(58, 79, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 30px 66px -40px rgba(0, 0, 0, 0.22);
}
.solution-card--featured {
  border-color: rgba(170, 134, 255, 0.54);
  background: linear-gradient(180deg, rgba(48, 39, 96, 0.55), rgba(11, 8, 24, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(162, 130, 255, 0.14),
    0 34px 76px -44px rgba(78, 46, 190, 0.45),
    0 0 42px -24px rgba(142, 102, 255, 0.34);
}
.solution-card--featured::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(199, 170, 255, 0.9) 42%, rgba(199, 170, 255, 0) 78%);
  box-shadow:
    0 0 14px rgba(191, 159, 255, 0.85),
    0 0 28px rgba(191, 159, 255, 0.35);
}
[data-theme="light"] .solution-card--featured {
  background: linear-gradient(180deg, rgba(238, 233, 255, 0.95), rgba(250, 248, 255, 0.82));
  border-color: rgba(137, 101, 255, 0.32);
}
.solution-card--featured .card-top {
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.solution-card--featured .card-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  border-color: rgba(185, 154, 255, 0.42);
  background:
    radial-gradient(circle at 50% 35%, rgba(208, 182, 255, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(101, 74, 214, 0.22), rgba(54, 40, 116, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 28px -14px rgba(151, 113, 255, 0.72),
    0 18px 34px -24px rgba(109,139,255,0.52);
}
.solution-card--featured .card-icon svg {
  width: 28px;
  height: 28px;
}
.solution-card--featured .card-num {
  min-width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.62rem;
  border: 1px solid rgba(176, 143, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.3px;
}
[data-theme="light"] .solution-card--featured .card-num {
  background: rgba(90, 76, 255, 0.06);
  color: rgba(0, 0, 0, 0.5);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.9rem;
}
.card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(141, 126, 255, 0.28);
  border-radius: 16px;
  color: #9f8cff;
  background: rgba(72, 58, 138, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: all 0.4s;
}
[data-theme="light"] .card-icon {
  background: rgba(58, 79, 255, 0.06);
  color: #5a4cff;
  border-color: rgba(58, 79, 255, 0.14);
}
.solution-card:hover .card-icon {
  border-color: rgba(174, 155, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 12px 30px -16px rgba(109,139,255,0.45);
}

.card-num, .step-num {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 2px;
}
[data-theme="light"] .card-num,
[data-theme="light"] .step-num {
  color: rgba(0, 0, 0, 0.55);
}

.solution-card h3 {
  margin-bottom: 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.4px;
}
.solution-card p {
  max-width: 30ch;
  color: var(--text2);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.72;
}
.solution-card--featured {
  padding: 1.38rem 1.72rem 1.9rem;
}
.solution-card--featured h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.7rem;
}
.solution-card--featured h3::before {
  content: "";
  position: absolute;
  left: -0.25rem;
  top: -0.25rem;
  width: 10.5rem;
  height: 4.25rem;
  z-index: -1;
  background: radial-gradient(circle, rgba(145, 113, 255, 0.18), transparent 68%);
  filter: blur(12px);
}
.solution-card--featured .featured-lead {
  max-width: none;
  margin-bottom: 0.48rem;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 1.65vw, 1.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.22px;
}
.solution-card--featured .featured-desc {
  max-width: none;
  margin-bottom: 0;
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.72;
}
.card-features {
  list-style: none;
  margin: 1.35rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}
.card-features li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text2);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.55;
}
.card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9f7dff;
  box-shadow: 0 0 10px rgba(159, 125, 255, 0.45);
}
.card-features--featured {
  margin-top: 1.65rem;
  gap: 0.72rem;
}
.card-features--featured li {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  padding-left: 0;
  font-size: 0.95rem;
}
.card-features--featured li::before {
  display: none;
}
.feature-mark {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.08rem;
  border: 1px solid rgba(176, 143, 255, 0.3);
  border-radius: 999px;
  color: #d2b5ff;
  background: rgba(109, 79, 230, 0.12);
  box-shadow:
    0 0 18px -12px rgba(144, 113, 255, 0.7),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
[data-theme="light"] .feature-mark {
  color: #634df1;
  background: rgba(90, 76, 255, 0.08);
  border-color: rgba(90, 76, 255, 0.18);
}
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  align-self: flex-start;
  padding: 0.58rem 0.95rem;
  border: 1px solid rgba(152, 121, 255, 0.45);
  border-radius: 999px;
  color: #c2acff;
  background: rgba(89, 64, 175, 0.12);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
[data-theme="light"] .card-tag {
  color: #5c47cc;
  background: rgba(90, 76, 255, 0.06);
  border-color: rgba(90, 76, 255, 0.24);
}
.solution-card--featured .card-tag {
  color: #fff;
  background: linear-gradient(90deg, rgba(98, 71, 255, 0.92), rgba(137, 84, 255, 0.92));
  border-color: rgba(191, 171, 255, 0.42);
  box-shadow: 0 12px 28px -18px rgba(118, 78, 255, 0.6);
}
.card-tag--demand {
  position: relative;
  padding: 0.7rem 1.18rem;
  border-width: 1px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3.2px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 34px -16px rgba(130, 86, 255, 0.78),
    0 14px 30px -20px rgba(88, 53, 215, 0.82);
}
.card-tag--demand::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.78);
}
.solution-card--featured .card-tag--demand {
  align-self: center;
  min-width: 13.5rem;
  min-height: 3.15rem;
  margin-top: 1.95rem;
  padding: 0.82rem 1.5rem;
  justify-content: center;
  font-size: 0.72rem;
}

/* Showcase */
.showcase { background: transparent; }
.showcase-header { margin-bottom: 4rem; text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.showcase-header .section-desc { margin: 0 auto; }
.showcase-grid {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  gap: 1.5rem;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
}
.showcase-main { grid-row: span 2; display: flex; flex-direction: column; gap: 1rem; }
.showcase-side { display: flex; flex-direction: column; gap: 1rem; }
.showcase-grid figcaption {
  color: var(--text3);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 90%;
}

.showcase-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--frame-bg);
  backdrop-filter: blur(10px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.showcase-frame:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.showcase-frame--tall { aspect-ratio: 9 / 13; flex: 1; }

.showcase-chrome {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
[data-theme="light"] .showcase-chrome { background: rgba(0,0,0,0.02); }
.showcase-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-hover);
}
.showcase-chrome em {
  font-style: normal;
  margin-left: auto;
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  color: var(--text3);
  letter-spacing: 0.5px;
}

.showcase-placeholder {
  position: absolute;
  top: 41px; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 2rem;
  color: var(--text3);
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(109,139,255,0.1), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,122,208,0.08), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.02), transparent);
}
[data-theme="light"] .showcase-placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(58,79,255,0.06), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255,74,161,0.05), transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.02), transparent);
}
.showcase-frame--tall .showcase-placeholder { top: 0; }

/* Stats */
.stats-section {
  padding: 0 4rem 1.2rem;
  background: transparent;
  scroll-margin-top: 5.6rem;
}
.stats-shell {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(11, 8, 21, 0.93), rgba(7, 5, 15, 0.9));
  box-shadow:
    0 28px 80px -36px rgba(0, 0, 0, 0.72),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(28px) saturate(118%);
  -webkit-backdrop-filter: blur(28px) saturate(118%);
  isolation: isolate;
  overflow: hidden;
}
.stats-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 10, 0.2), rgba(4, 3, 10, 0.08)),
    radial-gradient(circle at 14% 24%, rgba(109, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 122, 208, 0.06), transparent 24%);
}
[data-theme="light"] .stats-shell::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 14% 24%, rgba(109, 139, 255, 0.06), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 122, 208, 0.04), transparent 24%);
}
[data-theme="light"] .stats-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 242, 0.82));
  box-shadow:
    0 24px 70px -34px rgba(31, 26, 55, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}
.stat {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 132px;
  padding: 1.5rem 1.45rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: background 0.35s ease, transform 0.35s ease;
}
[data-theme="light"] .stat {
  border-right-color: rgba(0, 0, 0, 0.08);
}
.stat:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 12% 50%, rgba(109, 139, 255, 0.14), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(255, 122, 208, 0.1), transparent 36%);
}
.stat:last-child { border-right: none; }
.stat-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(144, 113, 255, 0.48);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.16), rgba(119, 87, 255, 0.05));
  color: #b68cff;
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.05) inset,
    0 0 28px -14px rgba(139, 102, 255, 0.6),
    0 18px 34px -24px rgba(109, 139, 255, 0.5);
}
[data-theme="light"] .stat-icon {
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.1), rgba(119, 87, 255, 0.03));
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.08) inset,
    0 0 24px -16px rgba(139, 102, 255, 0.24),
    0 18px 34px -24px rgba(109, 139, 255, 0.18);
}
.stat-icon svg {
  display: block;
  width: 30px;
  height: 30px;
}
.stat-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
}
.stat-number {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.45rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -1.05px;
}
.footer-col h4 {
  color: var(--text3);
  font-weight: 600;
  text-transform: uppercase;
}
.stat-label {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 2.6px;
  white-space: nowrap;
}
[data-theme="light"] .stat-label {
  color: rgba(0, 0, 0, 0.58);
}

/* Process */
.how {
  background: transparent;
  padding: 0.75rem 4rem 3.4rem;
  scroll-margin-top: 5.7rem;
}
.how-inner {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  gap: 1.45rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.how-left,
.how-right {
  min-width: 0;
}
.how-left { position: static; }
.how-card,
.how-steps-card {
  position: relative;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(12, 9, 22, 0.93), rgba(9, 6, 17, 0.9));
  box-shadow:
    0 26px 80px -40px rgba(0, 0, 0, 0.7),
    0 0 32px -22px rgba(144, 113, 255, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(30px) saturate(118%);
  -webkit-backdrop-filter: blur(30px) saturate(118%);
  isolation: isolate;
  overflow: hidden;
}
[data-theme="light"] .how-card,
[data-theme="light"] .how-steps-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 242, 0.84));
  box-shadow:
    0 24px 70px -36px rgba(31, 26, 55, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
.how-card::before,
.how-steps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 10, 0.18), rgba(4, 3, 10, 0.08)),
    radial-gradient(circle at 12% 14%, rgba(109, 139, 255, 0.1), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(255, 122, 208, 0.07), transparent 26%);
}
[data-theme="light"] .how-card::before,
[data-theme="light"] .how-steps-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 12% 14%, rgba(109, 139, 255, 0.08), transparent 32%),
    radial-gradient(circle at 88% 6%, rgba(255, 122, 208, 0.05), transparent 26%);
}
.how-card {
  padding: 1.75rem 1.75rem 1.6rem;
}
.how-copy {
  position: relative;
  z-index: 1;
}
.how-copy .section-label {
  margin-bottom: 0.8rem;
  padding: 0.36rem 0.78rem;
  border-color: rgba(144, 113, 255, 0.34);
  background: rgba(119, 87, 255, 0.05);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 3.4px;
  box-shadow: none;
}
[data-theme="light"] .how-copy .section-label {
  background: rgba(119, 87, 255, 0.06);
}
.how-copy .section-title {
  max-width: none;
  margin-bottom: 1.15rem;
  font-size: clamp(2.3rem, 3.55vw, 3.55rem);
  line-height: 0.95;
  letter-spacing: -1px;
}
.how-title-line {
  display: block;
  white-space: nowrap;
}
.how-title-line + .how-title-line {
  margin-top: 0.04em;
}
.how-copy .section-desc {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
}
[data-theme="light"] .how-copy .section-desc {
  color: rgba(0, 0, 0, 0.76);
}
.how-media {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 1.25rem;
  margin-left: 0;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(176, 143, 255, 0.48);
  border-radius: 24px;
  overflow: hidden;
  background: var(--frame-bg);
  box-shadow:
    0 0 0 1px rgba(176, 143, 255, 0.14) inset,
    0 0 30px -14px rgba(144, 113, 255, 0.68),
    0 28px 64px -36px rgba(0, 0, 0, 0.82);
}
[data-theme="light"] .how-media {
  box-shadow:
    0 0 0 1px rgba(176, 143, 255, 0.14) inset,
    0 0 26px -18px rgba(144, 113, 255, 0.26),
    0 28px 64px -40px rgba(35, 28, 62, 0.2);
}
.how-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) brightness(0.98) contrast(1);
}
[data-theme="light"] .how-media img {
  filter: saturate(0.96) brightness(1.02) contrast(1);
}
.how-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 3, 8, 0.01) 0%, rgba(4, 3, 8, 0.08) 42%, rgba(4, 3, 8, 0.18) 100%),
    radial-gradient(circle at 0% 50%, rgba(119, 87, 255, 0.22), transparent 22%);
  pointer-events: none;
}
.how-media-caption {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  left: 1.15rem;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(7, 5, 13, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
[data-theme="light"] .how-media-caption {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}
.how-media-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.how-media-chip svg {
  flex-shrink: 0;
}
.how-media-meta {
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.how-steps-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.8rem 1.35rem;
}

.steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 0.95rem;
  padding: 1.3rem 0.2rem 1.24rem 0.68rem;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(176, 143, 255, 0.18), rgba(255, 255, 255, 0.02));
}
[data-theme="light"] .step:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(119, 87, 255, 0.16), rgba(0, 0, 0, 0.02));
}
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(109, 139, 255, 0) 0%,
    rgba(109, 139, 255, 0.95) 30%,
    rgba(255, 122, 208, 0.95) 70%,
    rgba(255, 122, 208, 0) 100%
  );
  box-shadow:
    0 0 12px rgba(109, 139, 255, 0.55),
    0 0 22px rgba(255, 122, 208, 0.3);
  opacity: 0;
  transform: scaleY(0.62);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.step:hover {
  transform: translateX(6px);
  background: linear-gradient(90deg, rgba(109, 139, 255, 0.08), rgba(255, 122, 208, 0.03) 52%, transparent);
  box-shadow: inset 0 0 0 1px rgba(144, 113, 255, 0.1);
}
.step:hover::before {
  opacity: 1;
  transform: scaleY(1);
}
.step-num {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144, 113, 255, 0.42);
  border-radius: 16px;
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.35px;
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.14), rgba(119, 87, 255, 0.04));
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.05) inset,
    0 18px 34px -24px rgba(109, 139, 255, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
[data-theme="light"] .step-num {
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.08) inset,
    0 18px 34px -24px rgba(109, 139, 255, 0.18);
}
.step:hover .step-num {
  transform: scale(1.05);
  border-color: rgba(176, 143, 255, 0.8);
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.1) inset,
    0 0 30px -12px rgba(144, 113, 255, 0.82),
    0 18px 34px -20px rgba(109, 139, 255, 0.5);
}
.step-copy {
  min-width: 0;
  padding-top: 0.12rem;
}
.step h4 {
  margin-bottom: 0.38rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.32rem, 1.75vw, 1.58rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.3px;
  white-space: nowrap;
}
.step p {
  max-width: 35ch;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
}
[data-theme="light"] .step p {
  color: rgba(0, 0, 0, 0.76);
}

/* Cases */
.cases { background: transparent; }
.cases-header { margin-bottom: 4rem; text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.cases-header .section-desc { margin: 0 auto; }
.cases-grid {
  display: grid;
  max-width: 1200px; margin: 0 auto;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
.case-card {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="light"] .case-card { background: rgba(255,255,255,0.5); }
.case-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--card-hover);
}
.case-card--highlight {
  background: linear-gradient(145deg, rgba(109,139,255,0.08), rgba(255,122,208,0.04));
  border-color: var(--border-hover);
}
.case-quote svg { color: var(--accent); opacity: 0.6; margin-bottom: 1rem; }
.case-quote p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 300; line-height: 1.45;
  letter-spacing: 0.2px;
  color: var(--text);
}
.case-meta { display: flex; align-items: center; gap: 0.9rem; }
.case-avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem; letter-spacing: 1px;
  flex-shrink: 0;
}
.case-avatar::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--border); border-radius: 50%;
}
.case-meta strong { display: block; font-size: 0.85rem; font-weight: 500; }
.case-meta span { display: block; color: var(--text3); font-size: 0.7rem; letter-spacing: 0.3px; margin-top: 2px; }

.logos-row {
  display: flex; align-items: center; gap: 2rem;
  max-width: 1200px; margin: 5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.logos-label {
  color: var(--text3);
  font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
  flex-shrink: 0;
}
.logos-track {
  display: flex; gap: 1rem; flex-wrap: wrap; flex: 1;
  justify-content: flex-end;
}
.logo-pill {
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text2);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem; font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.4s;
}
.logo-pill:hover { border-color: var(--border-hover); color: var(--text); transform: translateY(-2px); }

/* FAQ */
.faq { background: transparent; }
.faq-inner {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  gap: 2.4rem;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: stretch;
}
.faq-left,
.faq-right {
  min-width: 0;
}
.faq-right {
  padding-top: 1.35rem;
}
.faq-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.05rem;
}
.faq-copy {
  position: relative;
}
.faq-label {
  margin-bottom: 1rem;
  padding: 0.42rem 0.88rem;
  border-color: rgba(144, 113, 255, 0.34);
  background: rgba(119, 87, 255, 0.05);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 3.8px;
  box-shadow: none;
}
[data-theme="light"] .faq-label {
  background: rgba(119, 87, 255, 0.06);
}
.faq-title {
  max-width: 12.4ch;
  margin-bottom: 1.55rem;
  font-size: clamp(2.45rem, 4.15vw, 3.95rem);
  line-height: 0.95;
  letter-spacing: -1.05px;
}
.faq-title-line {
  display: block;
}
.faq-title-line + .faq-title-line {
  margin-top: 0.05em;
}
.faq-desc {
  max-width: 29rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.82;
}
[data-theme="light"] .faq-desc {
  color: rgba(0, 0, 0, 0.76);
}
.faq-visual {
  position: relative;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 9, 22, 0.93), rgba(9, 6, 17, 0.9));
  box-shadow:
    0 26px 80px -40px rgba(0, 0, 0, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(28px) saturate(118%);
  -webkit-backdrop-filter: blur(28px) saturate(118%);
  isolation: isolate;
  overflow: hidden;
}
[data-theme="light"] .faq-visual {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 242, 0.84));
  box-shadow:
    0 24px 70px -36px rgba(31, 26, 55, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
.faq-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 10, 0.16), rgba(4, 3, 10, 0.06)),
    radial-gradient(circle at 16% 12%, rgba(109, 139, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 5%, rgba(255, 122, 208, 0.08), transparent 26%);
}
[data-theme="light"] .faq-visual::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 16% 12%, rgba(109, 139, 255, 0.08), transparent 30%),
    radial-gradient(circle at 88% 5%, rgba(255, 122, 208, 0.05), transparent 26%);
}
.faq-dashboard {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border: 1px solid rgba(144, 113, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(8, 7, 18, 0.88), rgba(7, 6, 16, 0.8));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 50px -32px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}
[data-theme="light"] .faq-dashboard {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 242, 0.78));
}
.faq-dashboard-brand {
  width: 6rem;
  margin-bottom: 0.8rem;
}
.faq-dashboard-body {
  position: relative;
  min-height: 16.4rem;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.75rem;
}
.faq-dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.65rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] .faq-dashboard-nav {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.03);
}
.faq-dashboard-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.6rem;
  border-radius: 12px;
  color: var(--text3);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.faq-dashboard-link.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(98, 71, 255, 0.92), rgba(137, 84, 255, 0.92));
  box-shadow: 0 12px 28px -18px rgba(118, 78, 255, 0.6);
}
.faq-dashboard-main {
  display: grid;
  gap: 0.72rem;
}
.faq-dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}
.faq-metric {
  padding: 0.62rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] .faq-metric {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.03);
}
.faq-metric span {
  display: block;
  color: var(--text3);
  font-size: 0.54rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}
.faq-metric strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  font-weight: 500;
}
.faq-dashboard-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0.75rem;
}
.faq-chart-card,
.faq-activity-card {
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
[data-theme="light"] .faq-chart-card,
[data-theme="light"] .faq-activity-card {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.03);
}
.faq-panel-label {
  display: block;
  margin-bottom: 0.72rem;
  color: var(--text2);
  font-size: 0.62rem;
  font-weight: 500;
}
.faq-donut {
  width: 82px;
  height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(7, 6, 16, 0.98) 0 54%, transparent 56%),
    conic-gradient(from 210deg, #a473ff 0 34%, #6d8bff 34% 76%, rgba(255, 255, 255, 0.09) 76% 100%);
  box-shadow: 0 0 24px -16px rgba(144, 113, 255, 0.65);
}
[data-theme="light"] .faq-donut {
  background:
    radial-gradient(circle at center, rgba(247, 246, 242, 0.98) 0 54%, transparent 56%),
    conic-gradient(from 210deg, #a473ff 0 34%, #6d8bff 34% 76%, rgba(0, 0, 0, 0.08) 76% 100%);
}
.faq-donut strong {
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  line-height: 1;
}
.faq-donut span {
  color: var(--text3);
  font-size: 0.5rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.faq-legend {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
}
.faq-legend li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.42rem;
  color: var(--text2);
  font-size: 0.64rem;
}
.faq-legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a473ff;
  box-shadow: 0 0 10px rgba(164, 115, 255, 0.55);
}
.faq-legend li:nth-child(2) i {
  background: #6d8bff;
  box-shadow: 0 0 10px rgba(109, 139, 255, 0.55);
}
.faq-legend li:nth-child(3) i {
  background: #ff8cd8;
  box-shadow: 0 0 10px rgba(255, 140, 216, 0.5);
}
.faq-legend b {
  font-weight: 500;
}
.faq-activity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.faq-activity-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}
.faq-activity-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #9f7dff;
  box-shadow: 0 0 10px rgba(159, 125, 255, 0.45);
}
.faq-activity-list strong {
  display: block;
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 500;
}
.faq-activity-list span {
  display: block;
  margin-top: 0.14rem;
  color: var(--text3);
  font-size: 0.56rem;
}
.faq-dashboard-shot {
  position: absolute;
  right: 0;
  bottom: -0.1rem;
  width: min(37%, 192px);
  aspect-ratio: 1 / 0.92;
  border: 1px solid rgba(176, 143, 255, 0.42);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(176, 143, 255, 0.14) inset,
    0 0 28px -16px rgba(144, 113, 255, 0.62),
    0 24px 54px -34px rgba(0, 0, 0, 0.8);
}
.faq-dashboard-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) brightness(0.9) contrast(0.98);
}
.faq-support-card {
  display: grid;
  max-width: 34rem;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 1.05rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 9, 22, 0.9), rgba(9, 6, 17, 0.84));
  box-shadow:
    0 20px 48px -34px rgba(0, 0, 0, 0.72),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
[data-theme="light"] .faq-support-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 242, 0.78));
}
.faq-support-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(144, 113, 255, 0.42);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.16), rgba(119, 87, 255, 0.05));
  color: #b68cff;
  box-shadow:
    0 0 0 1px rgba(109, 139, 255, 0.05) inset,
    0 0 28px -14px rgba(139, 102, 255, 0.56);
}
.faq-support-copy h3 {
  margin-bottom: 0.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 2.2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
}
.faq-support-copy p {
  max-width: 34ch;
  color: var(--text2);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.92rem;
}
.faq-card,
.faq-cta-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(13, 10, 24, 0.96), rgba(9, 7, 18, 0.94));
  box-shadow:
    0 24px 60px -40px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(170, 132, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(26px) saturate(118%);
  -webkit-backdrop-filter: blur(26px) saturate(118%);
  overflow: hidden;
}
[data-theme="light"] .faq-card,
[data-theme="light"] .faq-cta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 242, 0.84));
  box-shadow:
    0 24px 70px -36px rgba(31, 26, 55, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
.faq-card::before,
.faq-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 10, 0.18), rgba(4, 3, 10, 0.05)),
    radial-gradient(circle at 15% 10%, rgba(109, 139, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(255, 122, 208, 0.08), transparent 24%);
}
[data-theme="light"] .faq-card::before,
[data-theme="light"] .faq-cta-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 15% 10%, rgba(109, 139, 255, 0.08), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(255, 122, 208, 0.05), transparent 24%);
}
.faq-card {
  min-height: 0;
  padding: 1.15rem 1.2rem 1.22rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 130, 255, 0.46);
  box-shadow:
    0 0 0 1px rgba(162, 130, 255, 0.14),
    0 28px 80px -38px rgba(0, 0, 0, 0.75),
    0 0 28px -16px rgba(144, 113, 255, 0.38);
}
.faq-card-trigger,
.faq-card-body,
.faq-cta-card {
  position: relative;
  z-index: 1;
}
.faq-card-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-card-trigger:focus-visible {
  outline: 2px solid rgba(176, 143, 255, 0.92);
  outline-offset: 8px;
}
.faq-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.72rem;
}
.faq-card-index {
  color: #c593ff;
  font-family: "Space Mono", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.faq-card-toggle {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid rgba(168, 130, 255, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 18px -10px rgba(144, 113, 255, 0.6);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.faq-card-toggle::before,
.faq-card-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  color: #d8beff;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.22s ease;
}
.faq-card-toggle::after {
  width: 1.5px;
  height: 12px;
}
.faq-card-title {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 16ch;
  min-height: 2.45em;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.05vw, 1.95rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.45px;
}
.faq-card-body {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.28s ease, opacity 0.22s ease;
}
.faq-card-body-inner {
  overflow: hidden;
}
.faq-card.is-open {
  border-color: rgba(168, 130, 255, 0.46);
  box-shadow:
    0 0 0 1px rgba(162, 130, 255, 0.14),
    0 28px 80px -38px rgba(0, 0, 0, 0.75),
    0 0 28px -16px rgba(144, 113, 255, 0.38);
}
.faq-card.is-open .faq-card-toggle {
  background: rgba(123, 88, 255, 0.14);
  border-color: rgba(182, 149, 255, 0.78);
  box-shadow:
    0 0 0 1px rgba(166, 129, 255, 0.18),
    0 0 24px -10px rgba(144, 113, 255, 0.72);
}
.faq-card.is-open .faq-card-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-card.is-open .faq-card-body {
  margin-top: 0.65rem;
  opacity: 1;
}
.faq-card-body p {
  position: relative;
  z-index: 1;
  max-width: 33ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.62;
}
[data-theme="light"] .faq-card-body p {
  color: rgba(0, 0, 0, 0.74);
}
.faq-cta-card {
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.35rem;
  padding: 1.45rem 1.6rem;
}
.faq-cta-icon {
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 130, 255, 0.62);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.2), rgba(119, 87, 255, 0.06));
  color: #d8beff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 28px -12px rgba(144, 113, 255, 0.75);
}
.faq-cta-icon svg {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(144, 113, 255, 0.2));
}
.faq-cta-copy h3 {
  margin-bottom: 0.45rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3vw, 2.85rem);
  font-weight: 400;
  line-height: 1;
}
.faq-cta-copy p {
  max-width: 34ch;
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.74;
}
.faq-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 290px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 3.7rem;
  padding: 0 1.45rem;
  border: 1px solid rgba(168, 130, 255, 0.34);
  border-radius: 18px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}
.faq-cta-btn svg {
  flex-shrink: 0;
}
.faq-cta-btn:hover {
  transform: translateY(-2px);
}
.faq-cta-btn--primary {
  color: #fff;
  background: linear-gradient(90deg, rgba(98, 71, 255, 0.96), rgba(171, 82, 255, 0.92));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 34px -20px rgba(118, 78, 255, 0.72);
}
.faq-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.02);
}
[data-theme="light"] .faq-cta-btn--secondary {
  background: rgba(0, 0, 0, 0.03);
}

/* CTA */
.cta-section {
  background: transparent;
  padding: 6.75rem 4rem 7.5rem;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5.8rem;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(80% 60% at 50% 50%, rgba(109, 139, 255, 0.08), transparent 70%);
}
.cta-shell {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}
.cta-panel {
  position: relative;
  min-height: 42rem;
  padding: 2.1rem 2.35rem 1.5rem;
  border: 1px solid rgba(176, 143, 255, 0.24);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(12, 9, 22, 0.94), rgba(9, 6, 17, 0.92));
  box-shadow:
    0 34px 90px -46px rgba(0, 0, 0, 0.82),
    0 0 42px -26px rgba(144, 113, 255, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(30px) saturate(118%);
  -webkit-backdrop-filter: blur(30px) saturate(118%);
  isolation: isolate;
  overflow: visible;
}
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 3, 10, 0.14), rgba(4, 3, 10, 0.04)),
    radial-gradient(circle at 20% 18%, rgba(128, 102, 255, 0.22), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(255, 122, 208, 0.12), transparent 24%),
    radial-gradient(circle at 42% 62%, rgba(109, 139, 255, 0.08), transparent 30%);
}
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(34px - 1px);
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 32% 44%, rgba(134, 119, 255, 0.16), transparent 18%),
    radial-gradient(circle at 56% 20%, rgba(255, 164, 232, 0.08), transparent 18%);
  opacity: 0.85;
}
[data-theme="light"] .cta-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 242, 0.86));
  box-shadow:
    0 30px 80px -44px rgba(31, 26, 55, 0.18),
    0 0 34px -24px rgba(144, 113, 255, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.58) inset;
}
[data-theme="light"] .cta-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 18%, rgba(128, 102, 255, 0.12), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(255, 122, 208, 0.08), transparent 24%),
    radial-gradient(circle at 42% 62%, rgba(109, 139, 255, 0.06), transparent 30%);
}
.cta-copy,
.cta-divider,
.cta-highlights {
  position: relative;
  z-index: 2;
}
.cta-copy {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 0.3rem;
  text-align: center;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid rgba(176, 143, 255, 0.38);
  border-radius: 999px;
  background: rgba(119, 87, 255, 0.08);
  color: var(--text);
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
[data-theme="light"] .cta-pill {
  background: rgba(119, 87, 255, 0.06);
}
.cta-title {
  max-width: 13.2ch;
  margin: 0 auto 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.1vw, 4.85rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -1.25px;
  text-wrap: balance;
}
.cta-title em {
  display: block;
  margin-top: 0.08em;
  font-style: italic;
  background: linear-gradient(120deg, #8c7cff 0%, #b481ff 48%, #ff8cd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-desc {
  max-width: 34rem;
  margin: 0 auto 2.15rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  font-weight: 300;
  line-height: 1.82;
}
[data-theme="light"] .cta-desc {
  color: rgba(0, 0, 0, 0.72);
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.82rem;
  min-height: 4.1rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.9px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.cta-action:hover {
  transform: translateY(-2px);
}
.cta-action--primary {
  min-width: 24rem;
  color: #fff;
  border: 1px solid rgba(214, 166, 255, 0.42);
  background: linear-gradient(90deg, rgba(208, 112, 232, 0.96), rgba(105, 76, 255, 0.96));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09) inset,
    0 20px 40px -22px rgba(123, 85, 255, 0.72);
}
.cta-action--secondary {
  min-width: 20rem;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="light"] .cta-action--secondary {
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}
.cta-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  letter-spacing: 0.4px;
  text-decoration: none;
}
[data-theme="light"] .cta-email {
  color: rgba(0, 0, 0, 0.7);
}
.cta-divider {
  margin-top: 2.2rem;
  margin-bottom: 1rem;
}
.cta-divider::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(176, 143, 255, 0.16), rgba(255, 255, 255, 0.03));
}
[data-theme="light"] .cta-divider::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(119, 87, 255, 0.14), rgba(0, 0, 0, 0.02));
}
.cta-divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 143, 255, 0.95), rgba(184, 143, 255, 0.08) 62%, transparent 68%);
  box-shadow: 0 0 26px rgba(162, 130, 255, 0.72);
}
.cta-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}
.cta-highlight {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 5.25rem;
  padding: 1.1rem 0.95rem 0.2rem;
}
.cta-highlight:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .cta-highlight:not(:last-child) {
  border-right-color: rgba(0, 0, 0, 0.08);
}
.cta-highlight-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(176, 143, 255, 0.42);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(119, 87, 255, 0.16), rgba(119, 87, 255, 0.05));
  color: #c89aff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 26px -16px rgba(144, 113, 255, 0.74);
}
.cta-highlight-copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}
.cta-highlight-copy strong,
.cta-highlight-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
[data-theme="light"] .cta-highlight-copy strong,
[data-theme="light"] .cta-highlight-copy span {
  color: rgba(0, 0, 0, 0.68);
}
.cta-asides {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.cta-form-mockup {
  position: absolute;
  top: 42%;
  right: -10.5rem;
  width: min(18vw, 16rem);
  transform: translateY(-50%) rotate(8deg);
}
.cta-form-card {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(176, 143, 255, 0.24);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(17, 14, 30, 0.95), rgba(12, 10, 22, 0.92));
  box-shadow:
    0 28px 60px -36px rgba(0, 0, 0, 0.86),
    0 0 26px -20px rgba(144, 113, 255, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
[data-theme="light"] .cta-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 246, 242, 0.86));
}
.cta-form-app {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
}
.cta-form-app-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 143, 255, 0.34);
  border-radius: 11px;
  color: #c89aff;
  background: rgba(119, 87, 255, 0.08);
}
.cta-form-steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.2rem;
}
.cta-form-steps::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .cta-form-steps::before {
  background: rgba(0, 0, 0, 0.08);
}
.cta-form-steps span {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(176, 143, 255, 0.22);
  border-radius: 50%;
  background: rgba(14, 11, 24, 0.94);
  color: var(--text3);
  font-size: 0.64rem;
  font-weight: 700;
}
[data-theme="light"] .cta-form-steps span {
  background: rgba(255, 255, 255, 0.92);
}
.cta-form-steps .is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(208, 112, 232, 0.96), rgba(105, 76, 255, 0.96));
  box-shadow: 0 0 16px -8px rgba(123, 85, 255, 0.72);
}
.cta-form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.cta-field span {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--text3);
  font-size: 0.68rem;
  letter-spacing: 0.35px;
}
.cta-field i {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
[data-theme="light"] .cta-field i {
  background: rgba(0, 0, 0, 0.12);
}
.cta-field--lg i {
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .cta-field--lg i {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.08);
}
.cta-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  margin-top: 1.1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(128, 86, 255, 0.96), rgba(96, 68, 255, 0.96));
  box-shadow: 0 16px 30px -20px rgba(98, 71, 255, 0.72);
}
.cta-phone-mockup {
  position: absolute;
  right: -4rem;
  bottom: -8rem;
  width: min(15vw, 13.6rem);
  transform: rotate(-7deg);
}
.cta-phone-card {
  padding: 0.72rem;
  border: 1px solid rgba(176, 143, 255, 0.28);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(16, 13, 28, 0.97), rgba(11, 9, 21, 0.96));
  box-shadow:
    0 34px 70px -40px rgba(0, 0, 0, 0.9),
    0 0 30px -18px rgba(144, 113, 255, 0.44),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}
[data-theme="light"] .cta-phone-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 246, 242, 0.88));
}
.cta-phone-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.cta-phone-back,
.cta-phone-search {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
}
.cta-phone-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.cta-phone-brand-mark {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(119, 87, 255, 0.1);
  color: #d4b0ff;
  border: 1px solid rgba(176, 143, 255, 0.28);
}
.cta-phone-brand strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.4px;
}
.cta-phone-brand span {
  display: block;
  color: #80d3a6;
  font-size: 0.54rem;
  letter-spacing: 0.4px;
}
.cta-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cta-bubble {
  max-width: 82%;
  padding: 0.68rem 0.76rem;
  border-radius: 16px;
  font-size: 0.67rem;
  line-height: 1.55;
  box-shadow: 0 10px 26px -20px rgba(0, 0, 0, 0.55);
}
.cta-bubble--out {
  align-self: flex-end;
  color: #effbf4;
  background: linear-gradient(180deg, rgba(71, 116, 93, 0.94), rgba(52, 95, 74, 0.94));
}
.cta-bubble--in {
  align-self: flex-start;
  color: var(--text2);
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="light"] .cta-bubble--in {
  background: rgba(0, 0, 0, 0.06);
}

/* Footer */
footer {
  position: relative; z-index: 3;
  padding: 3.35rem 4rem 1.45rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(5,3,10,0.4), var(--bg));
  backdrop-filter: blur(14px);
  transition: background 0.7s ease;
}
[data-theme="light"] footer { background: linear-gradient(180deg, rgba(247,246,242,0.6), var(--bg)); }
.footer-inner {
  display: grid;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
  column-gap: 2.6rem;
  row-gap: 1.4rem;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.82fr));
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}
.footer-brand p {
  max-width: 22rem;
  color: var(--text2);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.15rem;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text2);
  transition: all 0.3s;
}
.footer-socials a:hover {
  color: var(--text); border-color: var(--border-hover);
  transform: translateY(-2px);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col h4 {
  margin-bottom: 0.7rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 3.2px;
}
.footer-col a {
  display: block;
  margin-bottom: 0;
  color: var(--text2);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1240px;
  margin: 2rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  color: var(--text3);
  font-size: 0.68rem;
  letter-spacing: 0.35px;
}

/* Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 0.15; transform: scaleY(0.5); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* Responsive */
@media (min-width: 1025px) and (max-height: 860px) {
  .stats-section {
    padding-bottom: 0.85rem;
  }
  .stats-shell {
    padding: 0.65rem;
  }
  .stat {
    min-height: 112px;
    gap: 0.95rem;
    padding: 1.15rem 1.05rem;
  }
  .stat-icon {
    width: 56px;
    height: 56px;
  }
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  .stat-number {
    font-size: clamp(1.95rem, 2.25vw, 2.75rem);
  }
  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 2.7px;
  }
  .how {
    padding-top: 0.8rem;
    padding-bottom: 2.8rem;
  }
  .how-inner {
    gap: 1.2rem;
  }
  .how-card {
    padding: 1.45rem 1.45rem 1.35rem;
  }
  .how-copy .section-label {
    margin-bottom: 0.7rem;
    font-size: 0.5rem;
    letter-spacing: 3.1px;
  }
  .how-copy .section-title {
    margin-bottom: 0.82rem;
    font-size: clamp(1.95rem, 2.7vw, 2.95rem);
  }
  .how-copy .section-desc {
    max-width: 27rem;
    font-size: 0.91rem;
    line-height: 1.52;
  }
  .how-media {
    margin-top: 1.2rem;
    aspect-ratio: 16 / 8.1;
  }
  .how-steps-card {
    padding: 0.5rem 1.2rem;
  }
  .step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.02rem 0.2rem 1rem 0.55rem;
  }
  .step-num {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.08rem;
  }
  .step h4 {
    margin-bottom: 0.28rem;
    font-size: clamp(1.28rem, 1.65vw, 1.65rem);
  }
  .step p {
    font-size: 0.88rem;
    line-height: 1.42;
  }
}

@media (max-width: 1100px) {
  .nav-links a {
    padding: 0 0.78rem;
    font-size: 0.66rem;
    letter-spacing: 1.2px;
  }
  .btn-nav {
    padding: 0 1.2rem;
  }
}

@media (max-width: 1024px) {
  .site-nav { padding: 0.5rem 0.64rem 0.5rem 0.82rem; }
  .site-nav.scrolled { padding: 0.4rem 0.55rem 0.4rem 0.72rem; }
  .nav-actions {
    gap: 0.4rem;
    padding-left: 0.58rem;
  }
  section { padding: 6rem 2rem; }
  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .solutions-header .section-title {
    font-size: clamp(2.7rem, 6.2vw, 4.2rem);
  }
  .solution-card {
    min-height: 22.5rem;
    padding: 1.45rem;
  }
  .solution-card--featured {
    grid-column: span 2;
  }
  .stats-section {
    padding: 0 2rem 1.5rem;
  }
  .stats-shell {
    padding: 0.9rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stat {
    min-height: 132px;
    padding: 1.55rem 1.45rem;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:nth-child(even) {
    border-right: none;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  [data-theme="light"] .stat:nth-child(odd) {
    border-right-color: rgba(0, 0, 0, 0.08);
  }
  [data-theme="light"] .stat:nth-child(-n + 2) {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
  .about-grid, .how-inner, .faq-inner { gap: 3rem; grid-template-columns: 1fr; }
  .faq-right {
    padding-top: 0;
  }
  .about-content {
    max-width: none;
  }
  .about-title,
  .about-feature-copy h3,
  .about-feature-copy p,
  .about-desc {
    max-width: none;
  }
  .about-title {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
  }
  .about-visual,
  .about-photo-frame,
  .about-photo {
    min-height: 0;
  }
  .about-photo-frame {
    aspect-ratio: 16 / 10;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-feature:not(:first-child)::before {
    left: 50%;
    top: calc(-0.625rem - 1px);
    width: min(68%, 320px);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      rgba(109, 139, 255, 0) 0%,
      rgba(109, 139, 255, 0.95) 28%,
      rgba(255, 122, 208, 0.95) 72%,
      rgba(255, 122, 208, 0) 100%
    );
    box-shadow:
      0 0 12px rgba(109, 139, 255, 0.55),
      0 0 24px rgba(255, 122, 208, 0.35);
  }
  .how-left, .faq-left { position: static; }
  .faq-left {
    justify-content: flex-start;
    gap: 1.35rem;
  }
  .faq-copy,
  .faq-desc {
    max-width: none;
  }
  .faq-visual {
    max-width: none;
  }
  .faq-dashboard-body {
    min-height: 20rem;
  }
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-cta-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
  .how-copy .section-title,
  .step p {
    max-width: none;
  }
  .how-card,
  .how-steps-card {
    border-radius: 28px;
  }
  .how-card {
    padding: 1.9rem;
  }
  .how-steps-card {
    padding: 1.3rem 1.6rem;
  }
  .how-media {
    width: 100%;
    margin-left: 0;
    margin-top: 2.2rem;
  }
  .cta-section {
    padding: 5.75rem 2rem 5.5rem;
  }
  .cta-panel {
    min-height: auto;
    padding: 1.8rem 1.7rem 1.35rem;
    border-radius: 30px;
  }
  .cta-copy {
    max-width: 700px;
  }
  .cta-title {
    max-width: 13ch;
    font-size: clamp(2.7rem, 6vw, 4rem);
  }
  .cta-desc {
    max-width: 31rem;
    font-size: 1rem;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-action,
  .cta-action--primary,
  .cta-action--secondary {
    width: 100%;
    min-width: 0;
  }
  .cta-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.25rem;
  }
  .cta-highlight {
    min-height: auto;
    padding: 0.9rem 0.3rem 0;
  }
  .cta-highlight:not(:last-child) {
    border-right: none;
  }
  .cta-asides {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
  }
  .cta-form-mockup,
  .cta-phone-mockup {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-main { grid-row: auto; }
  .showcase-frame--tall { aspect-ratio: 16/10; }
  .media-badge { right: 1rem; bottom: 1rem; }
  footer { padding: 3rem 2rem 1.35rem; }
  .footer-inner {
    column-gap: 1.8rem;
    row-gap: 1.2rem;
    grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(120px, 0.88fr));
  }
  .footer-brand p {
    max-width: 19rem;
  }
  .footer-bottom {
    margin-top: 1.75rem;
    padding-top: 1rem;
  }
}

@media (max-width: 768px) {
  .site-nav {
    top: 0.6rem;
    grid-template-columns: auto auto;
    width: calc(100% - 1.2rem);
    padding: 0.38rem 0.42rem 0.38rem 0.78rem;
    gap: 0.6rem;
  }
  .nav-logo { width: 6rem; }
  .nav-logo--footer { width: 7rem; }
  .nav-center { display: none; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-actions {
    gap: 0.45rem;
    padding-left: 0;
    border-left: none;
  }
  .theme-toggle,
  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }
  .theme-toggle {
    width: 68px;
    border-radius: 999px;
  }
  .theme-switch {
    padding: 0 8px;
  }
  .theme-switch-thumb {
    top: 4px;
    left: 4px;
    width: 26px;
    height: 26px;
  }
  .theme-toggle[aria-checked="true"] .theme-switch-thumb {
    transform: translateX(30px);
  }
  section { padding: 5rem 1.5rem; }
  .stats-section {
    padding: 0 1.5rem 1.25rem;
  }
  .stats-shell {
    padding: 0.5rem;
    border-radius: 24px;
  }
  .stats-grid {
    gap: 0;
  }
  .stat {
    min-height: auto;
    gap: 0.9rem;
    padding: 1.2rem 1rem;
    align-items: flex-start;
  }
  .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  .stat-number {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .stat-label {
    font-size: 0.62rem;
    letter-spacing: 2.4px;
    white-space: normal;
  }
  .solutions-header {
    margin-bottom: 3rem;
  }
  .solutions-header .section-title {
    width: auto;
    max-width: none;
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    line-height: 1;
  }
  .solutions-title-line {
    white-space: normal;
  }
  .solutions-header .section-desc {
    font-size: 0.96rem;
    line-height: 1.7;
  }
  .solutions-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .solution-card,
  .solution-card--featured {
    min-height: auto;
    grid-column: auto;
    padding: 1.35rem;
  }
  .card-top {
    margin-bottom: 1.35rem;
  }
  .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }
  .solution-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.1rem);
  }
  .solution-card p,
  .card-features li {
    max-width: none;
    font-size: 0.9rem;
  }
  .about-grid {
    gap: 2.25rem;
  }
  .about-title {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
    letter-spacing: -1.4px;
  }
  .about-title-line {
    white-space: normal;
  }
  .about-visual,
  .about-photo-frame,
  .about-photo {
    min-height: 0;
    border-radius: 16px;
  }
  .about-photo-frame {
    aspect-ratio: 16 / 11;
  }
  .about-feature {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    padding: 1.3rem;
  }
  .about-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }
  .about-feature-meta {
    grid-column: 2;
    padding-top: 0.15rem;
  }
  .cta-section { padding: 5rem 1.5rem 4.8rem; }
  .faq-title {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }
  .faq-desc {
    font-size: 0.96rem;
  }
  .faq-visual {
    padding: 0.8rem;
    border-radius: 28px;
  }
  .faq-dashboard {
    padding: 1rem;
    border-radius: 22px;
  }
  .faq-dashboard-body {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .faq-dashboard-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .faq-dashboard-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faq-dashboard-panels {
    grid-template-columns: 1fr;
  }
  .faq-dashboard-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 240px;
    margin-left: auto;
    margin-top: 0.9rem;
  }
  .faq-support-card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 0.95rem 1rem;
  }
  .faq-support-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-card {
    min-height: auto;
    padding: 1.15rem 1.2rem 1.3rem;
  }
  .faq-card-title {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }
  .faq-card-body p {
    max-width: none;
    font-size: 0.95rem;
  }
  .faq-cta-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .faq-cta-icon {
    width: 78px;
    height: 78px;
  }
  .faq-cta-actions {
    min-width: 0;
    width: 100%;
  }
  .faq-cta-btn {
    width: 100%;
  }
  .how { padding-top: 0.9rem; }
  .how-card,
  .how-steps-card {
    padding: 1.35rem;
    border-radius: 26px;
  }
  .how-copy .section-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1;
  }
  .how-title-line,
  .step h4 {
    white-space: normal;
  }
  .how-copy .section-desc {
    font-size: 0.96rem;
  }
  .how-media {
    width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
    aspect-ratio: 16 / 11.5;
    border-radius: 22px;
  }
  .how-media-caption {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 0.85rem 0.95rem;
  }
  .how-media-chip {
    white-space: normal;
    letter-spacing: 1.8px;
  }
  .how-media-meta {
    font-size: 0.82rem;
  }
  .how-steps-card {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }
  .step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 1rem;
    padding: 1.35rem 0;
  }
  .step-num {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.2rem;
  }
  .step h4 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }
  .step p {
    font-size: 0.94rem;
    line-height: 1.65;
  }
  .cta-panel {
    padding: 1.45rem 1.2rem 1.15rem;
    border-radius: 24px;
  }
  .cta-pill {
    margin-bottom: 1.1rem;
    font-size: 0.64rem;
    letter-spacing: 2px;
  }
  .cta-title {
    max-width: none;
    font-size: clamp(2.2rem, 10vw, 3.05rem);
    line-height: 1;
  }
  .cta-desc {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .cta-email {
    font-size: 0.92rem;
  }
  .cta-divider {
    margin-top: 1.65rem;
  }
  .cta-highlights {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
  .cta-highlight {
    padding: 0.45rem 0;
  }
  .cta-asides {
    grid-template-columns: 1fr;
  }
  .cta-form-card,
  .cta-phone-card {
    border-radius: 24px;
  }
  .cases-grid { grid-template-columns: 1fr; }
  .logos-row { flex-direction: column; align-items: flex-start; }
  .logos-track { justify-content: flex-start; }
  .footer-inner {
    gap: 1.8rem 1.4rem;
    grid-template-columns: 1.1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    gap: 0.8rem;
  }
  .footer-brand p {
    max-width: 30rem;
  }
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 0.95rem;
  }
  .cta-buttons, .hero-buttons { flex-direction: column; }
  .cta-buttons a, .hero-buttons a { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { gap: 1rem; padding: 0.8rem 1rem; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .media-badge { position: static; margin-top: 1rem; display: inline-flex; }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 0 1rem 1rem;
  }
  .stats-shell {
    padding: 0.35rem;
    border-radius: 22px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  [data-theme="light"] .stat,
  [data-theme="light"] .stat:nth-child(-n + 2) {
    border-bottom-color: rgba(0, 0, 0, 0.08);
  }
  .cta-section {
    padding: 4.5rem 1rem 4.2rem;
  }
  .cta-panel {
    padding: 1.2rem 0.95rem 1rem;
    border-radius: 22px;
  }
  .cta-action {
    min-height: 3.55rem;
    padding: 0 1.05rem;
    font-size: 0.74rem;
    letter-spacing: 1.5px;
  }
  .cta-email {
    font-size: 0.84rem;
  }
  .cta-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
  .cta-highlight-copy strong,
  .cta-highlight-copy span {
    font-size: 0.74rem;
    letter-spacing: 1.7px;
  }
  .footer-inner {
    gap: 1.4rem;
    grid-template-columns: 1fr;
  }
  .faq-title {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }
  .faq-dashboard-nav {
    grid-template-columns: 1fr 1fr;
  }
  .faq-dashboard-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .faq-card-head {
    margin-bottom: 0.85rem;
  }
  .faq-card-toggle {
    width: 30px;
    height: 30px;
  }
  .faq-card-title {
    font-size: 1.65rem;
  }
  .faq-support-card {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
  }
  .about-title {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }
  .about-title-line + .about-title-line {
    margin-top: 0.12em;
  }
  .about-visual,
  .about-photo-frame,
  .about-photo {
    min-height: 0;
    border-radius: 14px;
  }
  .about-photo-frame {
    aspect-ratio: 16 / 12;
  }
  .about-feature {
    grid-template-columns: 1fr;
  }
  .about-feature:not(:first-child)::before {
    width: min(74%, 260px);
  }
  .about-feature-meta,
  .about-feature-copy {
    grid-column: auto;
  }
  .about-feature-icon {
    width: 58px;
    height: 58px;
    grid-row: auto;
  }
  .solutions-header .section-title {
    font-size: clamp(2.1rem, 12vw, 2.9rem);
  }
  .card-tag {
    letter-spacing: 2.2px;
  }
  .about-feature-copy h3 {
    max-width: none;
    font-size: 1.2rem;
  }
  .about-feature-copy p {
    max-width: none;
    font-size: 0.9rem;
  }
  .how-card,
  .how-steps-card {
    padding: 1.05rem;
    border-radius: 22px;
  }
  .how-copy .section-title {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
    line-height: 1.02;
  }
  .how-media {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 1 / 1.02;
    border-radius: 20px;
  }
  .step {
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .step-num {
    width: 52px;
    min-width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .step h4 {
    font-size: 1.4rem;
  }
  .hero-title { font-size: clamp(1.3rem, 7vw, 2.4rem); letter-spacing: -0.4px; }
  .case-card { padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
