﻿@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #03060a;
  --bg-soft: #0d121c;
  --surface: rgba(13, 22, 36, 0.6);
  --surface-strong: rgba(13, 22, 36, 0.85);
  --stroke: rgba(115, 146, 194, 0.12);
  --text: #eef4ff;
  --muted: #94a3b8;
  --cyan: #00f0ff;
  --magenta: #ff007f;
  --blue: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 20px;
  --container: 1200px;
  --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.4);
  --font-display: 'Sora', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --scroll-progress: 0;
  --scroll-velocity: 0;
  --scroll-y: 0;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 15% -10%, rgba(0, 240, 255, 0.08), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 0, 127, 0.08), transparent 40%),
    linear-gradient(180deg, #03060a 0%, #050a12 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  position: relative;
  overflow-x: clip;
}

.site-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(115, 146, 194, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115, 146, 194, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 20%, rgba(0, 0, 0, 0.8), transparent 78%);
  opacity: 0.16;
  z-index: -1;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(16px);
  background: rgba(3, 6, 10, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-height: 80px;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: 0.02em;
}

.brand-logo {
  height: 31px;
  width: auto;
  object-fit: contain;
  max-width: min(50vw, 230px);
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.18));
}

.nav-toggle {
  border: 1px solid rgba(115, 154, 206, 0.45);
  background: rgba(10, 18, 33, 0.75);
  color: var(--text);
  border-radius: 10px;
  padding: 0.48rem 0.72rem;
  font-size: 0.9rem;
}

.nav-panel {
  display: none;
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: min(320px, calc(100vw - 2rem));
  padding: 0.68rem;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-panel.is-open {
  display: grid;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.56rem 0.7rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  border-color: rgba(0, 240, 255, 0.36);
  background: linear-gradient(130deg, rgba(0, 240, 255, 0.15), rgba(255, 0, 127, 0.08));
}

.nav-cta {
  margin-top: 0.5rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  margin-right: 0.24rem;
}

.lang-switch .lang-link {
  display: none !important;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(111, 145, 195, 0.4);
  background: rgba(10, 17, 31, 0.72);
  color: #ffcf4d;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.theme-toggle svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 8px 18px rgba(0, 240, 255, 0.24);
}

.theme-toggle:focus-visible {
  outline: 2px solid rgba(0, 240, 255, 0.7);
  outline-offset: 2px;
}

.lang-link {
  border: 1px solid rgba(111, 145, 195, 0.36);
  background: rgba(10, 17, 31, 0.72);
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.73rem;
  padding: 0.24rem 0.42rem;
}

.lang-link.active {
  color: #e8ffff;
  border-color: rgba(0, 240, 255, 0.7);
  background: linear-gradient(120deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 127, 0.16));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0.72rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: rgba(0, 240, 255, 0.8);
  color: #dffeff;
  background: linear-gradient(130deg, rgba(0, 240, 255, 0.3), rgba(255, 0, 127, 0.22));
  box-shadow: 0 8px 22px rgba(0, 240, 255, 0.2);
}

.btn-secondary {
  border-color: rgba(103, 139, 190, 0.5);
  color: var(--text);
  background: rgba(12, 21, 37, 0.82);
}

.btn-block {
  width: 100%;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 1.3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b6ccf4;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: rgba(0, 240, 255, 0.7);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.42rem, 2.5vw, 2.35rem);
  line-height: 1.14;
}

h3 {
  font-size: clamp(1.02rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}

.hero-copy p {
  margin: 1.5rem 0 0;
  max-width: 60ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Centered Hero Styles */
.hero-centered {
  text-align: center;
  padding: 8rem 0 6rem;
}

.hero-centered h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  max-width: 20ch;
  margin: 0 auto;
}

.hero-centered p {
  margin: 1.5rem auto 0;
  max-width: 50ch;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 99px;
  /* Pill shape */
}

.hero-dashboard-preview {
  margin-top: 4rem;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 1rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.dashboard-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Zig-Zag Features */
.features-zigzag {
  padding: 4rem 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 8rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse .feature-media {
  order: -1;
}

.feature-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  align-items: center;
}

.feature-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.8rem;
}

.feature-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-lg);
  background: rgba(13, 22, 36, 0.5);
}

@media (max-width: 980px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .feature-row.reverse .feature-media {
    order: 0;
    /* Reset order on mobile */
  }

  .feature-list li {
    justify-content: center;
  }
}

/* Simplified Trust Section */
.trust-section {
  text-align: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--stroke);
}

.trust-label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.trust-logos-clean {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-logo-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.7;
}

.trust-stats-clean {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--cyan);
}

.stat-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-kpis {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.kpi-chip {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 0.75rem 0.9rem;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.kpi-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(13, 22, 36, 0.6);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kpi-value {
  color: #f2f6ff;
  font-size: 0.96rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}

.kpi-label {
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-visual {
  border: 1px solid rgba(111, 145, 198, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 0, 127, 0.14), transparent 44%),
    radial-gradient(circle at 8% 0%, rgba(0, 240, 255, 0.22), transparent 48%),
    rgba(8, 15, 27, 0.9);
  box-shadow: var(--shadow-lg);
  padding: 0.95rem;
  overflow: hidden;
}

.screen {
  border-radius: 14px;
  border: 1px solid rgba(121, 155, 208, 0.28);
  background: rgba(8, 14, 25, 0.95);
  overflow: hidden;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(124, 153, 193, 0.2);
  background: rgba(9, 17, 31, 0.88);
}

.screen-dots {
  display: flex;
  gap: 0.32rem;
}

.screen-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(140, 158, 191, 0.42);
}

.screen-dot:first-child {
  background: rgba(0, 240, 255, 0.55);
}

.screen-dot:last-child {
  background: rgba(255, 0, 127, 0.52);
}

.screen-title {
  font-size: 0.72rem;
  color: #afc5eb;
}

.screen-grid {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: 1fr;
  padding: 0.8rem;
}

.mock-card {
  border-radius: 12px;
  border: 1px solid rgba(108, 142, 196, 0.28);
  background: rgba(11, 19, 33, 0.74);
  padding: 0.65rem;
}

.chart-line {
  width: 100%;
  height: 120px;
}

.chart-line path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.chart-line .grid {
  stroke: rgba(126, 152, 189, 0.23);
  stroke-width: 1;
}

.chart-line .curve-cyan {
  stroke: rgba(0, 240, 255, 0.9);
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawline 5.8s ease-out infinite;
}

.chart-line .curve-magenta {
  stroke: rgba(255, 0, 127, 0.74);
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawline 6.3s ease-out 0.8s infinite;
}

.heatmap {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 0.22rem;
  min-height: 74px;
}

.heat-cell {
  border-radius: 4px;
  background: rgba(57, 75, 104, 0.3);
  animation: heatpulse 2.6s ease-in-out infinite;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
}

.stat {
  border-radius: 9px;
  border: 1px solid rgba(112, 146, 198, 0.24);
  background: rgba(11, 19, 34, 0.88);
  padding: 0.46rem;
}

.stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.87rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
}

section {
  padding: 5rem 0;
  scroll-margin-top: 6rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.3rem;
}

.section-head p {
  margin: 0;
  max-width: 68ch;
  font-size: 0.98rem;
  line-height: 1.62;
  color: var(--muted);
}

.trust-strip {
  border-radius: 16px;
  border: 1px solid rgba(109, 141, 191, 0.28);
  background: rgba(8, 15, 28, 0.84);
  padding: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.trust-item {
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 0.7rem 0.9rem;
  backdrop-filter: blur(8px);
}

.trust-item strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.94rem;
  color: #ebf4ff;
}

.trust-item span {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.trust-logo {
  border-radius: 9px;
  border: 1px solid rgba(109, 141, 191, 0.23);
  background: rgba(8, 14, 25, 0.8);
  color: #bfd2f3;
  font-size: 0.74rem;
  text-align: center;
  padding: 0.45rem 0.35rem;
}

.founder-note {
  border-radius: 16px;
  border: 1px solid rgba(113, 145, 195, 0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.15), transparent 54%),
    rgba(8, 15, 29, 0.9);
  padding: 0.98rem;
}

.founder-note p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-sign {
  margin-top: 0.85rem;
  color: #d9e9ff;
  font-size: 0.86rem;
}

.component-grid {
  display: grid;
  gap: 0.75rem;
}

.component-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.component-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.5);
  background: rgba(10, 20, 36, 0.9);
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  color: #e7fbff;
}

.component-card p {
  margin: 0.54rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  gap: 0.75rem;
}

.feature-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.3);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.54);
  background:
    radial-gradient(circle at 28% 22%, rgba(0, 240, 255, 0.42), transparent 62%),
    rgba(10, 17, 31, 0.9);
  margin-bottom: 0.75rem;
}

.feature-card p {
  margin: 0.56rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.problem-grid,
.value-grid {
  display: grid;
  gap: 0.75rem;
}

.problem-card,
.value-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.problem-card:hover,
.value-card:hover {
  border-color: rgba(115, 146, 194, 0.3);
  transform: translateY(-2px);
}

.problem-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #b8ceef;
}

.problem-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 0.42rem;
  background: rgba(255, 100, 138, 0.95);
  box-shadow: 0 0 12px rgba(255, 100, 138, 0.32);
}

.problem-card p,
.value-card p {
  margin: 0.54rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-card {
  background:
    radial-gradient(circle at 94% 2%, rgba(0, 240, 255, 0.14), transparent 48%),
    rgba(9, 16, 30, 0.84);
}

.value-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #c5f8ef;
}

.value-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-right: 0.42rem;
  background: rgba(46, 242, 177, 0.94);
  box-shadow: 0 0 12px rgba(46, 242, 177, 0.32);
}

.persona-grid {
  display: grid;
  gap: 0.75rem;
}

.persona-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background:
    radial-gradient(circle at 96% 0%, rgba(0, 240, 255, 0.08), transparent 50%),
    rgba(13, 22, 36, 0.4);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.persona-role {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #b4c9ee;
}

.persona-role::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.95), rgba(255, 0, 127, 0.75));
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.32);
}

.persona-card p {
  margin: 0.54rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-grid {
  display: grid;
  gap: 0.75rem;
}

.workflow-step {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.workflow-step::after {
  content: '';
  position: absolute;
  inset: auto -40% -60% auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.16), transparent 66%);
}

.workflow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.48);
  background: rgba(10, 20, 36, 0.88);
  color: #e1f6ff;
  font-family: 'Sora', sans-serif;
  font-size: 0.87rem;
}

.workflow-step h3 {
  margin-top: 0.62rem;
}

.workflow-step p {
  margin: 0.48rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-radius: 13px;
  border: 1px solid rgba(110, 144, 193, 0.26);
  background: rgba(9, 16, 29, 0.84);
  padding: 0.2rem 0.72rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 0.56rem 0;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  color: #e4f0ff;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: #97b1db;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-item p {
  margin: 0 0 0.66rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 74ch;
}

.compare-wrap {
  border-radius: 16px;
  border: 1px solid rgba(112, 145, 196, 0.28);
  background:
    radial-gradient(circle at 2% 0%, rgba(0, 240, 255, 0.14), transparent 50%),
    rgba(8, 15, 28, 0.9);
  overflow: hidden;
}

.compare-head {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 0.95rem 0.55rem;
}

.compare-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.compare-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.compare-wrap th,
.compare-wrap td {
  border-top: 1px solid rgba(108, 141, 193, 0.2);
  padding: 0.62rem 0.58rem;
  text-align: left;
}

.compare-wrap th {
  color: #daebff;
  background: rgba(11, 19, 35, 0.92);
}

.compare-wrap td {
  color: #b7cbe9;
  background: rgba(8, 14, 25, 0.8);
}

.promise-panel {
  border-radius: 18px;
  border: 1px solid rgba(114, 147, 199, 0.3);
  background:
    radial-gradient(circle at 4% 0%, rgba(0, 240, 255, 0.14), transparent 58%),
    radial-gradient(circle at 95% 100%, rgba(255, 0, 127, 0.13), transparent 58%),
    rgba(8, 15, 28, 0.9);
  padding: 1.05rem;
  box-shadow: var(--shadow-lg);
}

.promise-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.34rem;
}

.promise-list li {
  color: #d9e9ff;
  font-size: 0.92rem;
}

.promise-list li::before {
  content: '\2022 ';
  color: rgba(0, 240, 255, 0.95);
}

.cta-rail {
  border-radius: 16px;
  border: 1px solid rgba(114, 146, 198, 0.3);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.14), transparent 56%),
    radial-gradient(circle at 100% 100%, rgba(255, 0, 127, 0.12), transparent 58%),
    rgba(9, 16, 30, 0.9);
  padding: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.cta-rail p {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-rail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lead-box {
  border-radius: 16px;
  border: 1px solid rgba(112, 145, 196, 0.3);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 240, 255, 0.14), transparent 58%),
    rgba(8, 15, 29, 0.9);
  padding: 1rem;
}

.lead-box p {
  margin: 0.52rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-form {
  margin-top: 0.82rem;
}

.lead-grid {
  display: grid;
  gap: 0.5rem;
}

.lead-form input[type='email'],
.lead-form select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(109, 141, 191, 0.32);
  background: rgba(10, 18, 33, 0.86);
  color: #eaf3ff;
  padding: 0.62rem 0.66rem;
  font-size: 0.88rem;
}

.lead-form input::placeholder {
  color: #9ab0d3;
}

.lead-consent {
  margin-top: 0.56rem;
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
  color: #b9ceef;
  font-size: 0.78rem;
}

.lead-consent input {
  margin-top: 0.15rem;
  accent-color: rgba(0, 240, 255, 0.95);
}

.lead-status {
  min-height: 1.1rem;
  margin-top: 0.46rem;
  font-size: 0.8rem;
}

.lead-status.ok {
  color: #aaf5d8;
}

.lead-status.err {
  color: #ffb5c9;
}

.sticky-cta {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 140;
  border-radius: 12px;
  border: 1px solid rgba(112, 145, 194, 0.36);
  background: rgba(8, 14, 26, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.42);
  padding: 0.44rem;
}

.sticky-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
}

.sticky-cta .btn {
  padding: 0.58rem 0.7rem;
  font-size: 0.82rem;
}

.mockup-grid {
  display: grid;
  gap: 1rem;
}

.mockup {
  border-radius: 20px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 240, 255, 0.05), transparent 60%),
    rgba(13, 22, 36, 0.4);
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
  backdrop-filter: blur(12px);
}

.platform-shot {
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(108, 142, 194, 0.32);
  overflow: hidden;
  background: rgba(9, 16, 28, 0.86);
}

.platform-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.platform-shot-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 1rem;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.42rem;
  color: #d9ecff;
  background:
    repeating-linear-gradient(135deg,
      rgba(113, 145, 195, 0.12),
      rgba(113, 145, 195, 0.12) 10px,
      rgba(8, 14, 26, 0.9) 10px,
      rgba(8, 14, 26, 0.9) 20px);
}

.platform-shot-placeholder strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.98rem;
}

.platform-shot-placeholder span {
  font-size: 0.8rem;
  color: #b7caea;
}

.mockup-primary .platform-shot img,
.mockup-primary .platform-shot-placeholder {
  aspect-ratio: 16 / 7;
}

.mockup-copy h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #e9f3ff;
}

.mockup-copy p {
  margin: 0.35rem 0 0;
  color: #b6caea;
  font-size: 0.87rem;
  line-height: 1.55;
}

.platform-shot.is-missing img {
  display: none;
}

.platform-shot.is-missing .platform-shot-placeholder {
  display: grid;
}

.mockup-label {
  font-size: 0.76rem;
  color: #aec4ea;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.mockup-bars {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: end;
  min-height: 94px;
  gap: 0.22rem;
}

.mockup-bars span {
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.7), rgba(42, 140, 255, 0.22));
  animation: barshift 2.2s ease-in-out infinite;
}

.mockup-bars span:nth-child(3n) {
  background: linear-gradient(180deg, rgba(255, 0, 127, 0.78), rgba(255, 0, 127, 0.16));
}

.proof-grid {
  display: grid;
  gap: 0.8rem;
}

.proof-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--surface);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.trust-item,
.component-card,
.feature-card,
.problem-card,
.value-card,
.persona-card,
.workflow-step,
.mockup,
.proof-card,
.plan {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.trust-item:hover,
.component-card:hover,
.feature-card:hover,
.problem-card:hover,
.value-card:hover,
.persona-card:hover,
.workflow-step:hover,
.mockup:hover,
.proof-card:hover,
.plan:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.42);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.quote {
  margin: 0;
  font-size: 0.94rem;
  color: #d7e6ff;
}

.quote-meta {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.logo-pill {
  border: 1px solid rgba(111, 145, 198, 0.23);
  border-radius: 10px;
  background: rgba(8, 14, 26, 0.72);
  color: #c1d4f6;
  font-size: 0.82rem;
  text-align: center;
  padding: 0.56rem 0.4rem;
}

.pricing-teaser {
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(circle at 4% 0%, rgba(0, 240, 255, 0.08), transparent 58%),
    radial-gradient(circle at 95% 100%, rgba(255, 0, 127, 0.08), transparent 55%),
    rgba(13, 22, 36, 0.6);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.pricing-cards {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.plan {
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.4);
  padding: 1.5rem;
}

.plan h3 {
  font-size: 1.06rem;
}

.plan .price {
  margin-top: 0.5rem;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
}

.plan .price small {
  font-size: 0.75rem;
  color: var(--muted);
}

.plan ul {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
  color: #d5e3fb;
  font-size: 0.9rem;
}

.plan ul li::before {
  content: '\2022 ';
  color: rgba(0, 240, 255, 0.92);
}

.cta-band {
  margin-top: 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(115, 151, 206, 0.33);
  background: rgba(8, 15, 29, 0.84);
  padding: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

.legal-wrap {
  padding-top: 2.2rem;
}

.legal-wrap article {
  border-radius: 16px;
  border: 1px solid rgba(110, 143, 193, 0.25);
  background: rgba(8, 15, 29, 0.86);
  padding: 1.05rem;
  box-shadow: var(--shadow-md);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-wrap ul {
  margin: 0.5rem 0 0;
  padding-left: 1rem;
}

.legal-wrap section+section {
  margin-top: 1.3rem;
}

.meta-line {
  color: #b8cdf0;
  font-size: 0.8rem;
  margin: 0.58rem 0 0;
}

.pricing-headline {
  padding-top: 2.5rem;
}

.switcher {
  margin-top: 1rem;
  display: inline-flex;
  border: 1px solid rgba(110, 144, 194, 0.36);
  background: rgba(10, 18, 33, 0.82);
  border-radius: 11px;
  padding: 0.25rem;
  gap: 0.24rem;
}

.switcher button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.84rem;
  padding: 0.48rem 0.62rem;
  cursor: pointer;
}

.switcher button.active {
  color: #eaffff;
  background: linear-gradient(120deg, rgba(0, 240, 255, 0.26), rgba(255, 0, 127, 0.2));
}

.tag-save {
  font-size: 0.72rem;
  border: 1px solid rgba(46, 242, 177, 0.5);
  color: #affad9;
  background: rgba(46, 242, 177, 0.12);
  border-radius: 999px;
  padding: 0.12rem 0.42rem;
}

.comparison {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(110, 143, 193, 0.26);
  overflow: hidden;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.89rem;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid rgba(106, 137, 184, 0.2);
  padding: 0.63rem 0.55rem;
  text-align: left;
}

.comparison th {
  color: #d7e8ff;
  background: rgba(11, 19, 35, 0.95);
}

.comparison td {
  color: var(--muted);
  background: rgba(8, 14, 25, 0.8);
}

.check {
  color: #a8fde5;
}

.cross {
  color: #ffc1d3;
}

.paddle-note {
  margin-top: 0.8rem;
  color: #b4c8eb;
  font-size: 0.84rem;
}

.site-footer {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(111, 143, 189, 0.22);
  padding: 1.1rem 0 1.4rem;
}

.site-footer-inner {
  display: grid;
  gap: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-copy {
  color: #99aed1;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform:
    translate3d(0, calc(14px + var(--parallax-y, 0px)), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg));
  transition: opacity 420ms ease, transform 420ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform:
    translate3d(0, var(--parallax-y, 0px), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg));
}

.hero-tail {
  margin-top: 1rem;
  color: #b6cbef;
  font-size: 0.84rem;
}

.ticker-band {
  margin-top: 2rem;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(13, 22, 36, 0.5);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.ticker-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.ticker-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.52rem 0.72rem;
  border-top: 1px solid rgba(102, 136, 183, 0.22);
}

.ticker-item:first-child {
  border-top: 0;
}

.ticker-label {
  color: #b7cbed;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-value {
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
}

.mini-muted {
  color: var(--muted);
  font-size: 0.84rem;
}

@media (min-width: 740px) {
  .trust-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .problem-grid,
  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mockup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mockup-primary {
    grid-column: 1 / -1;
  }

  .proof-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .persona-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lead-grid {
    grid-template-columns: 1.5fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .brand-logo {
    height: 35px;
    max-width: 258px;
  }

  .nav-toggle {
    display: none;
  }

  .topbar-inner {
    position: relative;
  }

  .nav-panel {
    display: flex;
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-row {
    flex-direction: row;
    align-items: center;
    gap: 0.36rem;
  }

  body:not(.lp-clean) .nav-row {
    border: 1px solid rgba(109, 142, 193, 0.24);
    border-radius: 999px;
    padding: 0.22rem;
    background: rgba(7, 13, 23, 0.7);
    backdrop-filter: blur(10px);
  }

  .nav-link {
    padding: 0.44rem 0.76rem;
  }

  body:not(.lp-clean) .lp-hero-wrap {
    padding: 3rem 2.7rem;
  }

  body:not(.lp-clean) .lp-title {
    max-width: 11ch;
  }

  .nav-cta {
    margin-left: 0.4rem;
    margin-top: 0;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 2.7rem;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: stretch;
  }

  .screen-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .mockup-primary {
    grid-column: span 12;
  }

  .mockup-secondary {
    grid-column: span 6;
  }

  .persona-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .component-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .site-footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .ticker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ticker-item {
    border-top: 0;
    border-left: 1px solid var(--stroke);
  }

  .ticker-item:first-child {
    border-left: 0;
  }

  .sticky-cta {
    display: none;
  }
}

@keyframes drawline {
  0% {
    stroke-dashoffset: 520;
  }

  22%,
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes heatpulse {

  0%,
  100% {
    opacity: 0.36;
  }

  50% {
    opacity: 0.95;
  }
}

@keyframes barshift {

  0%,
  100% {
    transform: scaleY(0.56);
    opacity: 0.7;
  }

  48% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* ------------------------------
   Clean Landing Redesign (2026-02)
------------------------------ */
.lp-hero {
  position: relative;
  overflow: clip;
}

.hero-vfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-vfx-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 107, 155, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 107, 155, 0.16) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 34%, rgba(0, 0, 0, 0.85), transparent 74%);
  opacity: 0.2;
}

.hero-vfx-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  opacity: 0.42;
  animation: heroGlowDrift 12s ease-in-out infinite alternate;
}

.hero-vfx-glow-a {
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  top: 6%;
  left: -6%;
  background: radial-gradient(circle at 40% 40%, rgba(34, 211, 238, 0.54), rgba(34, 211, 238, 0));
}

.hero-vfx-glow-b {
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  top: 4%;
  right: -4%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.48), rgba(244, 114, 182, 0));
  animation-delay: 1.2s;
}

.hero-vfx-glow-c {
  width: clamp(160px, 20vw, 320px);
  height: clamp(160px, 20vw, 320px);
  bottom: -14%;
  left: 34%;
  background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.4), rgba(96, 165, 250, 0));
  animation-delay: 2.2s;
}

.hero-vfx-particles {
  position: absolute;
  inset: 4% 2% 0;
  opacity: 0.75;
  mask-image: radial-gradient(circle at 50% 28%, rgba(0, 0, 0, 0.92), transparent 82%);
}

.hero-vfx-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 46%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018),
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 4px
    );
  mask-image: radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.8), transparent 78%);
}

.lp-hero {
  padding: 5.2rem 0 2.1rem;
}

.lp-hero-wrap {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(109, 142, 191, 0.22);
  border-radius: 24px;
  padding: 2rem 1.2rem;
  background:
    radial-gradient(circle at 14% -8%, rgba(0, 240, 255, 0.13), transparent 45%),
    radial-gradient(circle at 86% 0%, rgba(255, 0, 127, 0.12), transparent 42%),
    rgba(7, 13, 23, 0.84);
  box-shadow: var(--shadow-lg);
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(99, 135, 188, 0.35);
  border-radius: 999px;
  padding: 0.38rem 0.74rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d3e6ff;
  background: rgba(9, 17, 30, 0.75);
}

.lp-title {
  margin-top: 0.9rem;
  font-size: clamp(1.9rem, 5.8vw, 3.7rem);
  line-height: 1.02;
  max-width: 15ch;
}

.lp-subtitle {
  margin: 0.95rem 0 0;
  color: #b5c9e8;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  max-width: 58ch;
}

.lp-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.lp-actions-center {
  justify-content: center;
}

.lp-proof {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lp-proof span {
  border: 1px solid rgba(100, 134, 186, 0.26);
  border-radius: 999px;
  padding: 0.28rem 0.66rem;
  font-size: 0.76rem;
  color: #c8daf6;
  background: rgba(8, 15, 27, 0.78);
}

.lp-metrics {
  padding: 0.2rem 0 1rem;
}

.lp-metrics-grid {
  display: grid;
  gap: 0.66rem;
}

.lp-metric-card {
  border: 1px solid rgba(106, 141, 197, 0.24);
  border-radius: 14px;
  background: rgba(8, 15, 27, 0.72);
  padding: 0.8rem 0.9rem;
}

.lp-metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #e7f2ff;
}

.lp-metric-card span {
  color: #adc3e3;
  font-size: 0.83rem;
}

.lp-showcase,
.lp-features,
.lp-steps,
.lp-pricing-teaser,
.lp-faq,
.lp-final-cta {
  padding: 2.2rem 0;
}

body:not(.lp-clean) .lp-showcase,
body:not(.lp-clean) .lp-features,
body:not(.lp-clean) .lp-steps,
body:not(.lp-clean) .lp-pricing-teaser,
body:not(.lp-clean) .lp-faq,
body:not(.lp-clean) .lp-final-cta {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 9svh, 7rem) 0;
}

body:not(.lp-clean) .lp-hero {
  padding-top: 6.4rem;
}

body:not(.lp-clean) .lp-hero-wrap {
  border-radius: 34px;
  padding: 2.2rem 1.3rem;
}

body:not(.lp-clean) .lp-title {
  margin-top: 1.12rem;
  max-width: 12ch;
  font-size: clamp(2.45rem, 8vw, 6.6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

body:not(.lp-clean) .lp-subtitle {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.3rem);
}

body:not(.lp-clean) .lp-proof span {
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
}

body:not(.lp-clean) .lp-metrics {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: clamp(2.8rem, 6svh, 4.6rem) 0;
}

body:not(.lp-clean) .lp-showcase,
body:not(.lp-clean) .lp-features,
body:not(.lp-clean) .lp-steps,
body:not(.lp-clean) .lp-pricing-teaser,
body:not(.lp-clean) .lp-faq,
body:not(.lp-clean) .lp-final-cta,
body:not(.lp-clean) .lp-metrics {
  position: relative;
  overflow: clip;
}

body:not(.lp-clean) .lp-showcase + .lp-features,
body:not(.lp-clean) .lp-features + .lp-steps,
body:not(.lp-clean) .lp-steps + .lp-pricing-teaser,
body:not(.lp-clean) .lp-pricing-teaser + .lp-faq,
body:not(.lp-clean) .lp-faq + .lp-final-cta {
  border-top: 1px solid rgba(109, 142, 193, 0.18);
}

body:not(.lp-clean) .nav-link {
  border-radius: 999px;
}

body:not(.lp-clean) .lp-metric-card,
body:not(.lp-clean) .lp-shot,
body:not(.lp-clean) .lp-feature-card,
body:not(.lp-clean) .lp-step,
body:not(.lp-clean) .lp-plan,
body:not(.lp-clean) .lp-faq-item,
body:not(.lp-clean) .lp-final-cta-wrap {
  border-radius: 24px;
}

.lp-section-head {
  margin-bottom: 0.95rem;
}

.lp-section-head-split {
  display: grid;
  gap: 0.85rem;
}

.lp-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.lp-section-head p {
  margin: 0.45rem 0 0;
  color: #a9c0e1;
}

.lp-section-note {
  border: 1px solid rgba(108, 141, 194, 0.24);
  border-radius: 14px;
  padding: 0.78rem 0.86rem;
  background: rgba(8, 15, 27, 0.68);
}

.lp-section-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: #dfedff;
}

.lp-section-note p {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: #a9c1e3;
}

.lp-showcase-grid {
  display: grid;
  gap: 0.9rem;
}

.lp-shot {
  border: 1px solid rgba(108, 141, 194, 0.26);
  border-radius: 16px;
  padding: 0.92rem;
  background:
    radial-gradient(circle at 84% 0%, rgba(0, 240, 255, 0.11), transparent 40%),
    rgba(8, 15, 27, 0.79);
}

.lp-shot-copy h3 {
  margin: 0.72rem 0 0;
  font-size: 1rem;
}

.lp-shot-copy p {
  margin: 0.34rem 0 0;
  color: #abc2e2;
  font-size: 0.85rem;
}

.lp-feature-grid,
.lp-steps-grid,
.lp-pricing-grid,
.lp-faq-list {
  display: grid;
  gap: 0.75rem;
}

.lp-features.features-cinema {
  --feature-section-p: 0;
  --feature-pointer-x: 0;
  --feature-pointer-y: 0;
}

.lp-features.features-cinema .lp-feature-grid {
  position: relative;
  perspective: 1300px;
}

.lp-features.features-cinema .lp-feature-grid::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  height: 1px;
  pointer-events: none;
  z-index: 0;
  opacity: calc(0.12 + (var(--feature-section-p) * 0.28));
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.44), rgba(255, 0, 127, 0.38), transparent);
  transform: translate3d(
    calc((var(--feature-pointer-x) * 24px) + ((var(--feature-section-p) - 0.5) * 56px)),
    calc((var(--feature-pointer-y) * 8px) + ((var(--feature-section-p) - 0.5) * 12px)),
    0
  );
}

.lp-feature-card,
.lp-step,
.lp-plan,
.lp-faq-item,
.lp-final-cta-wrap {
  border: 1px solid rgba(109, 142, 193, 0.24);
  border-radius: 14px;
  background: rgba(9, 16, 28, 0.76);
  padding: 0.9rem;
}

.lp-features.features-cinema .lp-feature-card {
  --feature-focus: 0;
  --feature-flow-x: 0px;
  --feature-flow-y: 0px;
  --feature-tilt-x: 0deg;
  --feature-tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, border-color, filter;
  border-color: rgba(112, 146, 199, calc(0.2 + (var(--feature-focus) * 0.32)));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(104, 137, 186, calc(var(--feature-focus) * 0.2)) inset;
}

.lp-features.features-cinema .lp-feature-card::before {
  content: '';
  position: absolute;
  inset: -42% -26%;
  pointer-events: none;
  z-index: 0;
  opacity: calc(0.04 + (var(--feature-focus) * 0.24));
  background:
    radial-gradient(circle at 28% 26%, rgba(0, 240, 255, 0.28), transparent 46%),
    radial-gradient(circle at 78% 76%, rgba(255, 0, 127, 0.24), transparent 42%);
  transform: translate3d(calc(var(--feature-pointer-x) * 16px), calc(var(--feature-pointer-y) * 10px), 0);
}

.lp-features.features-cinema .lp-feature-card > * {
  position: relative;
  z-index: 1;
}

.lp-features.features-cinema .lp-feature-card.is-feature-hot {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow:
    0 20px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(0, 240, 255, 0.26) inset,
    0 0 24px rgba(0, 240, 255, 0.16);
}

.lp-feature-card h3,
.lp-step h3,
.lp-plan h3 {
  font-size: 1rem;
}

.lp-feature-card p,
.lp-step p,
.lp-faq-item p {
  margin: 0.36rem 0 0;
  color: #abc1e2;
  font-size: 0.84rem;
}

.lp-mini-list {
  margin: 0.58rem 0 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.32rem;
  color: #b8ceed;
  font-size: 0.8rem;
}

.lp-mini-list li::marker {
  color: #8bc2ff;
}

.lp-card-tags {
  margin-top: 0.62rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.44rem;
}

.lp-card-tags span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(108, 141, 194, 0.3);
  border-radius: 999px;
  background: rgba(11, 19, 33, 0.7);
  color: #d4e5ff;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.56rem;
}

.lp-strip {
  margin-top: 0.94rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.lp-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(108, 141, 194, 0.28);
  border-radius: 999px;
  background: rgba(9, 17, 31, 0.72);
  color: #d6e7ff;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  padding: 0.24rem 0.62rem;
}

.lp-features-foot {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.74rem;
}

.lp-features-foot article {
  border: 1px solid rgba(109, 142, 193, 0.22);
  border-radius: 14px;
  background: rgba(8, 15, 27, 0.7);
  padding: 0.76rem 0.86rem;
}

.lp-features-foot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #e8f3ff;
}

.lp-features-foot p {
  margin: 0.34rem 0 0;
  color: #acc2e2;
  font-size: 0.82rem;
}

.lp-outcomes {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.lp-outcomes span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(109, 142, 193, 0.24);
  border-radius: 12px;
  background: rgba(10, 18, 31, 0.72);
  color: #d7e8ff;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.46rem 0.52rem;
}

.lp-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 240, 255, 0.48);
  color: #d7fbff;
  background: rgba(0, 240, 255, 0.12);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.lp-plan {
  text-align: center;
}

.lp-plan-highlight {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 240, 255, 0.16) inset;
}

.lp-price {
  margin-top: 0.34rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.lp-price small {
  font-size: 0.76rem;
  color: #9fb6d7;
}

.lp-faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.lp-final-cta-wrap {
  text-align: center;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 14% 6%, rgba(0, 240, 255, 0.12), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(255, 0, 127, 0.1), transparent 38%),
    rgba(9, 16, 28, 0.82);
}

.feature-fly.reveal {
  transform:
    translate3d(
      calc(52px + var(--parallax-x, 0px) + var(--feature-flow-x, 0px)),
      calc(14px + var(--parallax-y, 0px) + var(--feature-flow-y, 0px)),
      0
    )
    rotateX(calc(var(--card-rot-x, 0deg) + var(--feature-tilt-x, 0deg)))
    rotateY(calc(var(--card-rot-y, 0deg) + var(--feature-tilt-y, 0deg)));
  filter: saturate(calc(0.96 + (var(--feature-focus, 0) * 0.2)));
}

.feature-fly.reveal.is-visible {
  transform:
    translate3d(
      calc(var(--parallax-x, 0px) + var(--feature-flow-x, 0px)),
      calc(var(--parallax-y, 0px) + var(--feature-flow-y, 0px)),
      0
    )
    rotateX(calc(var(--card-rot-x, 0deg) + var(--feature-tilt-x, 0deg)))
    rotateY(calc(var(--card-rot-y, 0deg) + var(--feature-tilt-y, 0deg)));
  filter: saturate(calc(1 + (var(--feature-focus, 0) * 0.22)));
}

.step-fly.reveal {
  transform:
    translate3d(calc(38px + var(--parallax-x, 0px)), calc(14px + var(--parallax-y, 0px)), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg));
}

.step-fly.reveal.is-visible {
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg));
}

@media (min-width: 740px) {
  .lp-section-head-split {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: end;
  }

  .lp-hero-wrap {
    padding: 2.4rem 2rem;
  }

  .lp-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-shot-primary {
    grid-column: 1 / -1;
  }

  .lp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-features-foot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-outcomes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-steps-grid,
  .lp-pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .lp-hero {
    padding-top: 6rem;
  }

  .lp-metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-showcase-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lp-shot-primary {
    grid-column: span 12;
  }

  .lp-shot {
    grid-column: span 6;
  }

  .lp-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-feature-card,
  .lp-step {
    min-height: 214px;
    display: flex;
    flex-direction: column;
  }

  .lp-mini-list {
    margin-top: 0.68rem;
  }
}

/* ------------------------------
   Coinbase-Clean Mode Overrides
------------------------------ */
body.lp-clean {
  color: #0f172a;
  background:
    radial-gradient(60rem 24rem at 50% -24%, rgba(37, 99, 235, 0.14), transparent 64%),
    linear-gradient(180deg, #f8fbff 0%, #f2f6fc 60%, #eef3fa 100%);
}

body.lp-clean .site-shell::before {
  opacity: 0.05;
  background-size: 64px 64px;
  mask-image: none;
}

body.lp-clean .topbar {
  border-bottom: 1px solid rgba(148, 163, 184, 0.36);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

body.lp-clean .topbar::after {
  display: none;
}

body.lp-clean .brand-logo {
  filter: none;
}

body.lp-clean .nav-link {
  color: #334155;
}

body.lp-clean .nav-link:hover,
body.lp-clean .nav-link.active {
  color: #0f172a;
  border-color: rgba(37, 99, 235, 0.26);
  background: rgba(37, 99, 235, 0.08);
}

body.lp-clean .lang-link {
  border-color: rgba(148, 163, 184, 0.5);
  background: #ffffff;
  color: #334155;
}

body.lp-clean .lang-link.active {
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.9);
  background: #2563eb;
}

body.lp-clean .theme-toggle {
  border-color: rgba(148, 163, 184, 0.52);
  background: #ffffff;
  color: #f59e0b;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

body.lp-clean .theme-toggle:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.16);
}

body.lp-clean .theme-toggle:focus-visible {
  outline-color: rgba(37, 99, 235, 0.55);
}

body.lp-clean .btn {
  border-radius: 12px;
}

body.lp-clean .btn-primary {
  border-color: #2563eb;
  color: #ffffff;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

body.lp-clean .btn-secondary {
  border-color: rgba(148, 163, 184, 0.54);
  color: #0f172a;
  background: #ffffff;
}

body.lp-clean .lp-hero-wrap,
body.lp-clean .lp-metric-card,
body.lp-clean .lp-shot,
body.lp-clean .lp-feature-card,
body.lp-clean .lp-step,
body.lp-clean .lp-plan,
body.lp-clean .lp-faq-item,
body.lp-clean .lp-final-cta-wrap {
  border-color: rgba(148, 163, 184, 0.4);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

body.lp-clean .lp-hero {
  padding-top: 5.7rem;
}

body.lp-clean .lp-hero-wrap {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.1), transparent 42%),
    radial-gradient(circle at 90% 0%, rgba(14, 165, 233, 0.1), transparent 38%),
    #ffffff;
}

body.lp-clean .hero-vfx-grid {
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  opacity: 0.18;
}

body.lp-clean .hero-vfx-glow {
  opacity: 0.35;
}

body.lp-clean .hero-vfx-particles {
  opacity: 0.58;
}

body.lp-clean .hero-vfx-noise {
  opacity: 0.08;
}

body.lp-clean .lp-badge {
  border-color: rgba(37, 99, 235, 0.24);
  color: #1d4ed8;
  background: #eff6ff;
}

body.lp-clean .lp-title,
body.lp-clean .lp-section-head h2,
body.lp-clean .lp-shot-copy h3,
body.lp-clean .lp-feature-card h3,
body.lp-clean .lp-step h3,
body.lp-clean .lp-plan h3,
body.lp-clean .lp-faq-item summary,
body.lp-clean .lp-price,
body.lp-clean .footer-copy,
body.lp-clean .footer-links a {
  color: #0f172a;
}

body.lp-clean .lp-subtitle,
body.lp-clean .lp-section-head p,
body.lp-clean .lp-shot-copy p,
body.lp-clean .lp-feature-card p,
body.lp-clean .lp-step p,
body.lp-clean .lp-faq-item p,
body.lp-clean .lp-metric-card span {
  color: #475569;
}

body.lp-clean .lp-metric-card strong {
  color: #0f172a;
}

body.lp-clean .lp-proof span {
  border-color: rgba(148, 163, 184, 0.46);
  background: #f8fafc;
  color: #334155;
}

body.lp-clean .lp-step span {
  border-color: rgba(37, 99, 235, 0.4);
  color: #1d4ed8;
  background: #eff6ff;
}

body.lp-clean .lp-plan-highlight {
  border-color: rgba(37, 99, 235, 0.56);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.14) inset, 0 18px 40px rgba(15, 23, 42, 0.1);
}

body.lp-clean .platform-shot {
  border-color: rgba(148, 163, 184, 0.45);
  background: #e2e8f0;
}

body.lp-clean .platform-shot-placeholder {
  color: #1f2937;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(148, 163, 184, 0.15),
      rgba(148, 163, 184, 0.15) 10px,
      rgba(248, 250, 252, 0.95) 10px,
      rgba(248, 250, 252, 0.95) 20px
    );
}

body.lp-clean .platform-shot-placeholder span {
  color: #64748b;
}

body.lp-clean .site-footer {
  border-top-color: rgba(148, 163, 184, 0.34);
  background: rgba(255, 255, 255, 0.72);
}

body.lp-clean .footer-links a:hover {
  color: #1d4ed8;
}

@media (min-width: 980px) {
  body.lp-clean .lp-hero-wrap {
    padding: 2.9rem 2.7rem;
  }
}

/* Coinbase-clean: Pricing + Legal pages */
body.lp-clean .nav-panel {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.38);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.09);
}

body.lp-clean .pricing-headline,
body.lp-clean .legal-wrap {
  padding-top: 0.6rem;
}

body.lp-clean .pricing-headline .section-head p,
body.lp-clean .legal-wrap p,
body.lp-clean .legal-wrap li,
body.lp-clean .meta-line {
  color: #475569;
}

body.lp-clean .switcher {
  border-color: rgba(148, 163, 184, 0.42);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

body.lp-clean .switcher button {
  color: #334155;
}

body.lp-clean .switcher button.active {
  color: #ffffff;
  background: #2563eb;
}

body.lp-clean .tag-save {
  background: #e8f3ff;
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.28);
}

body.lp-clean .plan,
body.lp-clean .comparison,
body.lp-clean .cta-band,
body.lp-clean .legal-wrap article {
  border-color: rgba(148, 163, 184, 0.4);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

body.lp-clean .comparison table {
  background: #ffffff;
}

body.lp-clean .comparison th,
body.lp-clean .comparison td {
  border-color: rgba(148, 163, 184, 0.28);
  color: #0f172a;
}

body.lp-clean .comparison th {
  background: #f1f5f9;
  color: #0f172a;
}

body.lp-clean .check {
  color: #047857;
}

body.lp-clean .cross {
  color: #b91c1c;
}

body.lp-clean .paddle-note,
body.lp-clean .mini-muted {
  color: #64748b;
}

body.lp-clean .legal-wrap h1,
body.lp-clean .legal-wrap h2,
body.lp-clean .legal-wrap h3,
body.lp-clean .pricing-headline h1,
body.lp-clean .pricing-headline h2,
body.lp-clean .pricing-headline h3 {
  color: #0f172a;
}

body.lp-clean .legal-wrap a,
body.lp-clean .pricing-headline a {
  color: #1d4ed8;
}

@media (max-width: 739px) {
  .hero-vfx-grid {
    opacity: 0.15;
  }

  .hero-vfx-particles {
    opacity: 0.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-vfx-particles {
    display: none;
  }

  .hero-vfx-glow {
    animation: none;
  }
}

@keyframes heroGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.05);
  }

  100% {
    transform: translate3d(0, 8px, 0) scale(0.98);
  }
}

.cinema-section {
  --cinema-p: 0;
  --cinema-focus: 0;
  --cinema-lift: 0px;
  position: relative;
  isolation: isolate;
}

.cinema-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: calc(0.04 + (var(--cinema-p) * 0.12));
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.12), transparent 36%),
    radial-gradient(circle at 84% 18%, rgba(244, 114, 182, 0.1), transparent 34%);
  transform: translate3d(0, calc(var(--cinema-focus) * -12px), 0);
}

.cinema-section > .container {
  position: relative;
  z-index: 1;
  transform: translate3d(0, var(--cinema-lift), 0);
}

.story-progress {
  position: fixed;
  right: clamp(0.55rem, 1.2vw, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 170;
  display: grid;
  gap: 0.52rem;
  pointer-events: none;
}

.story-progress-item {
  --item-progress: 0;
  position: relative;
  width: 4px;
  height: 42px;
  border-radius: 999px;
  background: rgba(120, 153, 203, 0.22);
  overflow: hidden;
}

.story-progress-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(var(--item-progress) * 100%);
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.9), rgba(244, 114, 182, 0.9));
}

.story-progress-item.is-active {
  box-shadow: 0 0 0 1px rgba(148, 204, 255, 0.36);
}

.motion-belt {
  margin: 1.4rem 0 2.2rem;
  overflow: hidden;
  border-block: 1px solid rgba(109, 142, 193, 0.2);
  background: rgba(8, 14, 26, 0.66);
}

.motion-belt-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 1.15rem;
  padding: 0.88rem 0;
  animation: motionBelt 30s linear infinite;
}

.motion-belt-track.is-reverse {
  animation-direction: reverse;
  animation-duration: 36s;
}

.motion-belt-track span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(107, 141, 190, 0.35);
  border-radius: 999px;
  color: #d8e8ff;
  padding: 0.42rem 1.04rem;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  background: rgba(12, 20, 35, 0.84);
  white-space: nowrap;
}

@media (min-width: 1120px) and (min-height: 700px) {
  .has-pinned-chapters .story-chapter {
    --chapter-progress: 0;
    min-height: 122svh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .has-pinned-chapters .lp-hero.story-chapter {
    min-height: 132svh;
  }

  .has-pinned-chapters .lp-showcase.story-chapter {
    min-height: 136svh;
  }

  .has-pinned-chapters .story-stage {
    position: sticky;
    top: clamp(78px, 9svh, 128px);
    transform:
      translate3d(
        0,
        calc((1 - var(--chapter-progress)) * 22px + var(--cinema-lift)),
        0
      )
      scale(calc(0.96 + (var(--chapter-progress) * 0.04)));
    opacity: calc(0.25 + (var(--chapter-progress) * 0.86));
    will-change: transform, opacity;
    transition: transform 120ms linear, opacity 120ms linear;
  }

  .has-pinned-chapters .story-chapter.is-active .story-stage {
    opacity: 1;
  }
}

/* ------------------------------
   Ctrl-inspired Redesign Layer
------------------------------ */
body.ctrl-modern {
  --ctrl-ink: #0f0f0f;
  --ctrl-muted: #5a585a;
  --ctrl-panel: #ffffff;
  --ctrl-sky: #9dc4f5;
  --ctrl-pink: #ffcadc;
  --ctrl-lemon: #fbe74e;
  --ctrl-green: #05c92f;
  color: var(--ctrl-ink);
  font-family: 'Space Grotesk', var(--font-body);
  background:
    radial-gradient(76rem 36rem at 102% -8%, rgba(157, 196, 245, 0.5), transparent 55%),
    radial-gradient(56rem 24rem at -8% 5%, rgba(255, 202, 220, 0.46), transparent 62%),
    linear-gradient(180deg, #f9faf9 0%, #f3f6f4 100%);
}

body.ctrl-modern .site-shell::before {
  opacity: 0.06;
  background-size: 68px 68px;
  mask-image: none;
}

body.ctrl-modern .topbar {
  border-bottom: 1px solid rgba(15, 15, 15, 0.14);
  background: rgba(249, 250, 249, 0.78);
  box-shadow: none;
  backdrop-filter: blur(calc(8px + (var(--scroll-velocity) * 16px)));
  transition: backdrop-filter 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body.ctrl-modern .topbar.is-floating {
  background: rgba(249, 250, 249, 0.92);
  border-bottom-color: rgba(15, 15, 15, 0.2);
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.08);
}

body.ctrl-modern .topbar::after {
  display: none;
}

body.ctrl-modern .brand-logo {
  filter: none;
}

body.ctrl-modern .nav-link {
  color: #414443;
  border-radius: 999px;
}

body.ctrl-modern .nav-link:hover,
body.ctrl-modern .nav-link.active {
  color: var(--ctrl-ink);
  border-color: rgba(15, 15, 15, 0.12);
  background: rgba(15, 15, 15, 0.06);
}

body.ctrl-modern .lang-link {
  border-color: rgba(15, 15, 15, 0.22);
  background: #ffffff;
  color: #3f4341;
}

body.ctrl-modern .lang-link.active {
  color: #ffffff;
  border-color: #111111;
  background: #111111;
}

body.ctrl-modern .theme-toggle {
  border-color: rgba(15, 15, 15, 0.22);
  background: #ffffff;
  color: #f59e0b;
  box-shadow: none;
}

body.ctrl-modern .theme-toggle:hover {
  border-color: rgba(15, 15, 15, 0.38);
  box-shadow: none;
}

body.ctrl-modern .btn {
  border-radius: 999px;
  border-width: 1.5px;
  border-color: #111111;
  font-weight: 600;
}

body.ctrl-modern .btn-primary {
  border-color: #111111;
  color: #ffffff;
  background: #111111;
  box-shadow: 4px 4px 0 rgba(157, 196, 245, 0.95);
}

body.ctrl-modern .btn-primary:hover {
  box-shadow: 6px 6px 0 rgba(255, 202, 220, 0.95);
}

body.ctrl-modern .btn-secondary {
  border-color: #111111;
  color: #111111;
  background: #ffffff;
}

body.ctrl-modern .lp-hero {
  padding-top: 6.4rem;
}

body.ctrl-modern .lp-hero-wrap {
  --ctrl-tilt-x: 0deg;
  --ctrl-tilt-y: 0deg;
  position: relative;
  z-index: 2;
  border: 1.5px solid rgba(15, 15, 15, 0.12);
  border-radius: 34px;
  padding: 2.2rem 1.3rem;
  background:
    radial-gradient(circle at 3% 0%, rgba(157, 196, 245, 0.46), transparent 38%),
    radial-gradient(circle at 98% 4%, rgba(255, 202, 220, 0.4), transparent 34%),
    var(--ctrl-panel);
  box-shadow: 0 26px 60px rgba(15, 15, 15, 0.1);
  transform: perspective(1200px) rotateX(var(--ctrl-tilt-y)) rotateY(var(--ctrl-tilt-x));
  transition: transform 180ms ease;
}

body.ctrl-modern .ctrl-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

body.ctrl-modern .ctrl-orb {
  position: absolute;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 15, 15, 0.09);
  animation: ctrlFloat 9s ease-in-out infinite;
}

body.ctrl-modern .ctrl-orb-a {
  width: 104px;
  height: 104px;
  right: 5%;
  top: 8%;
  background: var(--ctrl-lemon);
}

body.ctrl-modern .ctrl-orb-b {
  width: 74px;
  height: 74px;
  right: 14%;
  bottom: 16%;
  background: var(--ctrl-pink);
  animation-delay: 1.1s;
}

body.ctrl-modern .ctrl-orb-c {
  width: 58px;
  height: 58px;
  left: 8%;
  bottom: 14%;
  background: var(--ctrl-sky);
  animation-delay: 2.1s;
}

body.ctrl-modern .hero-vfx-particles {
  display: none;
}

body.ctrl-modern .hero-vfx-grid {
  opacity: 0.08;
}

body.ctrl-modern .hero-vfx-glow {
  opacity: 0.22;
  filter: blur(68px);
}

body.ctrl-modern .lp-badge {
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 15, 0.2);
  color: #202422;
  background: rgba(157, 196, 245, 0.24);
}

body.ctrl-modern .lp-title {
  margin-top: 1.12rem;
  max-width: 12ch;
  font-family: 'Space Grotesk', var(--font-display);
  font-size: clamp(2.45rem, 8vw, 6.6rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #0b0c0c;
}

body.ctrl-modern .lp-subtitle {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #4d5452;
}

body.ctrl-modern .lp-proof span {
  border: 1px solid rgba(15, 15, 15, 0.14);
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  color: #1f2623;
}

body.ctrl-modern .lp-metric-card strong {
  color: #0f1211;
}

body.ctrl-modern .lp-metric-card span {
  color: #3f4a46;
}

body.ctrl-modern .cinema-section::before {
  opacity: calc(0.03 + (var(--cinema-p) * 0.09));
  background:
    radial-gradient(circle at 7% 0%, rgba(157, 196, 245, 0.34), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(255, 202, 220, 0.32), transparent 32%);
}

body.ctrl-modern .cinema-section > .container {
  transform: translate3d(0, var(--cinema-lift), 0);
}

body.ctrl-modern .story-progress-item {
  background: rgba(15, 15, 15, 0.16);
}

body.ctrl-modern .story-progress-item::after {
  background: linear-gradient(180deg, #9dc4f5, #ffcadc 62%, #fbe74e);
}

body.ctrl-modern .story-progress-item.is-active {
  box-shadow: 0 0 0 1px rgba(15, 15, 15, 0.2);
}

body.ctrl-modern .motion-belt {
  border-block-color: rgba(15, 15, 15, 0.16);
  background: rgba(249, 250, 249, 0.66);
}

body.ctrl-modern .motion-belt-track span {
  border-color: rgba(15, 15, 15, 0.16);
  color: #0f1312;
  background: #ffffff;
}

body.ctrl-modern .lp-metric-card,
body.ctrl-modern .lp-shot,
body.ctrl-modern .lp-feature-card,
body.ctrl-modern .lp-step,
body.ctrl-modern .lp-plan,
body.ctrl-modern .lp-faq-item,
body.ctrl-modern .lp-final-cta-wrap,
body.ctrl-modern .plan,
body.ctrl-modern .comparison,
body.ctrl-modern .cta-band,
body.ctrl-modern .legal-wrap article {
  border: 1.5px solid rgba(15, 15, 15, 0.11);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 15, 15, 0.08);
}

body.ctrl-modern .lp-metric-card:nth-child(4n + 1),
body.ctrl-modern .lp-feature-card:nth-child(4n + 1),
body.ctrl-modern .plan:nth-child(4n + 1) {
  background: linear-gradient(180deg, rgba(157, 196, 245, 0.2), #ffffff);
}

body.ctrl-modern .lp-metric-card:nth-child(4n + 2),
body.ctrl-modern .lp-feature-card:nth-child(4n + 2),
body.ctrl-modern .plan:nth-child(4n + 2) {
  background: linear-gradient(180deg, rgba(255, 202, 220, 0.2), #ffffff);
}

body.ctrl-modern .lp-metric-card:nth-child(4n + 3),
body.ctrl-modern .lp-feature-card:nth-child(4n + 3),
body.ctrl-modern .plan:nth-child(4n + 3) {
  background: linear-gradient(180deg, rgba(251, 231, 78, 0.2), #ffffff);
}

body.ctrl-modern .lp-section-head h2,
body.ctrl-modern .lp-shot-copy h3,
body.ctrl-modern .lp-feature-card h3,
body.ctrl-modern .lp-step h3,
body.ctrl-modern .lp-plan h3,
body.ctrl-modern .lp-faq-item summary,
body.ctrl-modern .lp-price,
body.ctrl-modern .pricing-headline h1,
body.ctrl-modern .pricing-headline h2,
body.ctrl-modern .pricing-headline h3,
body.ctrl-modern .legal-wrap h1,
body.ctrl-modern .legal-wrap h2,
body.ctrl-modern .legal-wrap h3,
body.ctrl-modern .footer-copy,
body.ctrl-modern .footer-links a {
  color: #111111;
}

body.ctrl-modern .lp-section-head p,
body.ctrl-modern .lp-shot-copy p,
body.ctrl-modern .lp-feature-card p,
body.ctrl-modern .lp-step p,
body.ctrl-modern .lp-faq-item p,
body.ctrl-modern .lp-metric-card span,
body.ctrl-modern .mini-muted,
body.ctrl-modern .paddle-note,
body.ctrl-modern .legal-wrap p,
body.ctrl-modern .legal-wrap li,
body.ctrl-modern .meta-line {
  color: #565a58;
}

body.ctrl-modern .lp-section-note,
body.ctrl-modern .lp-features-foot article,
body.ctrl-modern .lp-card-tags span,
body.ctrl-modern .lp-strip span,
body.ctrl-modern .lp-outcomes span {
  border-color: rgba(15, 15, 15, 0.15);
  background: #ffffff;
  color: #202423;
  box-shadow: 0 10px 24px rgba(15, 15, 15, 0.06);
}

body.ctrl-modern .lp-features.features-cinema .lp-feature-grid::before {
  opacity: calc(0.08 + (var(--feature-section-p) * 0.24));
  background: linear-gradient(90deg, transparent, rgba(157, 196, 245, 0.66), rgba(255, 202, 220, 0.66), transparent);
}

body.ctrl-modern .lp-section-note strong,
body.ctrl-modern .lp-features-foot strong {
  color: #111111;
}

body.ctrl-modern .lp-section-note p,
body.ctrl-modern .lp-features-foot p,
body.ctrl-modern .lp-mini-list {
  color: #525957;
}

body.ctrl-modern .lp-mini-list li::marker {
  color: #111111;
}

body.ctrl-modern .lp-step span {
  border-color: rgba(15, 15, 15, 0.2);
  color: #111111;
  background: rgba(157, 196, 245, 0.34);
}

body.ctrl-modern .lp-features.features-cinema .lp-feature-card {
  border-color: rgba(15, 15, 15, calc(0.1 + (var(--feature-focus) * 0.24)));
  box-shadow:
    0 14px 28px rgba(15, 15, 15, 0.08),
    0 0 0 1px rgba(15, 15, 15, calc(var(--feature-focus) * 0.12)) inset;
}

body.ctrl-modern .lp-features.features-cinema .lp-feature-card::before {
  opacity: calc(0.04 + (var(--feature-focus) * 0.14));
  background:
    radial-gradient(circle at 26% 24%, rgba(157, 196, 245, 0.32), transparent 46%),
    radial-gradient(circle at 78% 74%, rgba(255, 202, 220, 0.32), transparent 42%);
}

body.ctrl-modern .lp-features.features-cinema .lp-feature-card.is-feature-hot {
  border-color: rgba(15, 15, 15, 0.32);
  box-shadow:
    0 22px 34px rgba(15, 15, 15, 0.14),
    0 0 0 1px rgba(15, 15, 15, 0.2) inset;
}

body.ctrl-modern .platform-shot {
  border: 1.5px solid rgba(15, 15, 15, 0.12);
  border-radius: 18px;
  background: #eef2ef;
}

body.ctrl-modern .platform-shot img {
  transform: scale(calc(1 + (var(--cinema-p) * 0.05)));
  transition: transform 220ms linear;
}

body.ctrl-modern .platform-shot-placeholder {
  color: #212523;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(157, 196, 245, 0.28),
      rgba(157, 196, 245, 0.28) 12px,
      rgba(255, 202, 220, 0.26) 12px,
      rgba(255, 202, 220, 0.26) 24px
    );
}

body.ctrl-modern .platform-shot-placeholder span {
  color: #505856;
}

body.ctrl-modern .switcher {
  border: 1.5px solid rgba(15, 15, 15, 0.14);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

body.ctrl-modern .switcher button {
  border-radius: 999px;
  color: #444a47;
}

body.ctrl-modern .switcher button.active {
  color: #ffffff;
  background: #111111;
}

body.ctrl-modern .lp-showcase,
body.ctrl-modern .lp-features,
body.ctrl-modern .lp-steps,
body.ctrl-modern .lp-pricing-teaser,
body.ctrl-modern .lp-faq,
body.ctrl-modern .lp-final-cta {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 9svh, 7rem) 0;
}

body.ctrl-modern .lp-metrics {
  min-height: 78svh;
  display: flex;
  align-items: center;
  padding: clamp(2.8rem, 6svh, 4.6rem) 0;
}

body.ctrl-modern .lp-showcase,
body.ctrl-modern .lp-features,
body.ctrl-modern .lp-steps,
body.ctrl-modern .lp-pricing-teaser,
body.ctrl-modern .lp-faq,
body.ctrl-modern .lp-final-cta,
body.ctrl-modern .lp-metrics {
  position: relative;
  overflow: clip;
}

body.ctrl-modern .lp-showcase + .lp-features,
body.ctrl-modern .lp-features + .lp-steps,
body.ctrl-modern .lp-steps + .lp-pricing-teaser,
body.ctrl-modern .lp-pricing-teaser + .lp-faq,
body.ctrl-modern .lp-faq + .lp-final-cta {
  border-top: 1px solid rgba(15, 15, 15, 0.08);
}

body.ctrl-modern .tag-save {
  border-color: rgba(15, 15, 15, 0.2);
  color: #0f4419;
  background: rgba(5, 201, 47, 0.18);
}

body.ctrl-modern .comparison th {
  border-color: rgba(15, 15, 15, 0.11);
  background: #111111;
  color: #ffffff;
}

body.ctrl-modern .comparison td {
  border-color: rgba(15, 15, 15, 0.09);
  background: #ffffff;
  color: #111111;
}

body.ctrl-modern .check {
  color: #0f7729;
}

body.ctrl-modern .cross {
  color: #a23658;
}

body.ctrl-modern .site-footer {
  border-top: 1px solid rgba(15, 15, 15, 0.14);
  background: transparent;
}

body.ctrl-modern .footer-links a:hover {
  color: #111111;
}

body.ctrl-modern .reveal {
  transform:
    translate3d(0, calc(20px + var(--parallax-y, 0px)), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg))
    scale(0.985);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.ctrl-modern .reveal.is-visible {
  transform:
    translate3d(0, var(--parallax-y, 0px), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg))
    scale(1);
}

body.ctrl-modern .feature-fly.reveal {
  transform:
    translate3d(
      calc(52px + var(--parallax-x, 0px) + var(--feature-flow-x, 0px)),
      calc(20px + var(--parallax-y, 0px) + var(--feature-flow-y, 0px)),
      0
    )
    rotateX(calc(var(--card-rot-x, 0deg) + var(--feature-tilt-x, 0deg)))
    rotateY(calc(var(--card-rot-y, 0deg) + var(--feature-tilt-y, 0deg)))
    scale(0.985);
  filter: saturate(calc(0.94 + (var(--feature-focus, 0) * 0.14)));
}

body.ctrl-modern .feature-fly.reveal.is-visible {
  transform:
    translate3d(
      calc(var(--parallax-x, 0px) + var(--feature-flow-x, 0px)),
      calc(var(--parallax-y, 0px) + var(--feature-flow-y, 0px)),
      0
    )
    rotateX(calc(var(--card-rot-x, 0deg) + var(--feature-tilt-x, 0deg)))
    rotateY(calc(var(--card-rot-y, 0deg) + var(--feature-tilt-y, 0deg)))
    scale(1);
  filter: saturate(calc(1 + (var(--feature-focus, 0) * 0.16)));
}

body.ctrl-modern .step-fly.reveal {
  transform:
    translate3d(calc(38px + var(--parallax-x, 0px)), calc(20px + var(--parallax-y, 0px)), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg))
    scale(0.985);
}

body.ctrl-modern .step-fly.reveal.is-visible {
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg))
    scale(1);
}

body.ctrl-modern.motion-reduced .lp-hero-wrap {
  transform: none;
}

body.ctrl-modern.motion-reduced .ctrl-orb {
  animation: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 220;
  pointer-events: none;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.95), rgba(244, 114, 182, 0.9));
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

body.ctrl-modern .scroll-progress {
  height: 4px;
  background: linear-gradient(90deg, #9dc4f5 0%, #ffcadc 48%, #fbe74e 100%);
  box-shadow: none;
}

.btn.is-magnetic {
  --mag-x: 0px;
  --mag-y: 0px;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
}

.btn.is-magnetic:hover {
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 1px), 0);
}

body.ctrl-modern .btn {
  position: relative;
  overflow: hidden;
}

body.ctrl-modern .btn-primary::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -30%;
  width: 42%;
  height: 340%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translateX(-180%) rotate(14deg);
  animation: btnSweep 3.8s ease-in-out infinite;
}

.motion-card {
  --parallax-y: 0px;
  --card-rot-x: 0deg;
  --card-rot-y: 0deg;
  transform-style: preserve-3d;
  will-change: transform;
}

.motion-card:not(.reveal) {
  transform:
    translate3d(0, var(--parallax-y), 0)
    rotateX(var(--card-rot-x))
    rotateY(var(--card-rot-y));
}

.hero-vfx-wave {
  position: absolute;
  inset: 10% 2% 2%;
  width: 96%;
  height: 88%;
  pointer-events: none;
  opacity: 0.62;
  mix-blend-mode: screen;
}

body.ctrl-modern .hero-vfx-wave {
  opacity: 0.3;
  mix-blend-mode: multiply;
}

body.motion-reduced .hero-vfx-wave {
  display: none;
}

body.motion-reduced .motion-card {
  --parallax-y: 0px;
  --card-rot-x: 0deg;
  --card-rot-y: 0deg;
}

body.motion-reduced .lp-features.features-cinema .lp-feature-grid::before,
body.motion-reduced .lp-features.features-cinema .lp-feature-card::before {
  display: none;
}

body.motion-reduced .lp-features.features-cinema .feature-fly.reveal,
body.motion-reduced .lp-features.features-cinema .feature-fly.reveal.is-visible {
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    rotateX(var(--card-rot-x, 0deg))
    rotateY(var(--card-rot-y, 0deg));
  filter: none;
}

body.motion-reduced .cinema-section > .container {
  transform: none;
}

body.motion-reduced .motion-belt-track {
  animation: none;
}

body.motion-reduced .story-progress {
  display: none;
}

@media (max-width: 1119px), (max-height: 699px) {
  .story-progress {
    display: none;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

@media (min-width: 980px) {
  body.ctrl-modern .lp-hero-wrap {
    padding: 3rem 2.7rem;
  }

  body.ctrl-modern .lp-title {
    max-width: 11ch;
  }

  body.ctrl-modern .pricing-headline,
  body.ctrl-modern .legal-wrap {
    padding-top: 1.2rem;
  }
}

@keyframes ctrlFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes motionBelt {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes btnSweep {
  0% {
    transform: translateX(-180%) rotate(14deg);
  }

  38%,
  100% {
    transform: translateX(480%) rotate(14deg);
  }
}
