:root {
  color-scheme: dark light;
  --max-width: min(1120px, 90vw);
  --base-radius: 24px;
  --bg: radial-gradient(circle at top left, #0f1c2f 0%, #050b17 50%, #01030a 100%);
  --card-bg: rgba(9, 19, 39, 0.68);
  --card-border: rgba(255, 255, 255, 0.06);
  --card-shadow: 0 28px 80px rgba(4, 11, 26, 0.45);
  --text-primary: #f4f8ff;
  --text-secondary: rgba(228, 235, 255, 0.68);
  --accent: #0066ff;
  --accent-soft: rgba(0, 102, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --blur: 18px;
  --nav-height: 72px;
  --font-body: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

img {
  user-select: none;
  -webkit-user-drag: none;
}

section {
  position: relative;
  padding: clamp(56px, 10vw, 112px) 0;
  scroll-margin-top: 120px;
}

#pricing {
  scroll-margin-top: var(--nav-height);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(var(--blur));
  background: rgba(2, 10, 24, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 24px;
  position: relative;
  border-radius: 16px;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-bar::after {
  content: none;
}

.nav-bar.elevated {
  background: rgba(4, 12, 26, 0.7);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.nav-bar.active {
  background: rgba(4, 12, 26, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.6rem);
  color: var(--text-primary);
}

.brand span {
  display: inline-block;
}

.nav-menu {
  display: none;
}

@media (min-width: 961px) {
  .nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-right: 16px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}

.nav-actions .primary-button {
  padding: 10px 20px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #1b8cff 0%, #0066ff 100%);
  color: #fff;
  border: 1px solid rgba(27, 140, 255, 0.8);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-actions .primary-button:hover,
.nav-actions .primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 102, 255, 0.45);
  background: linear-gradient(135deg, #2a93ff 0%, #1574ff 100%);
}

.nav-actions .secondary-button {
  padding: 10px 18px;
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4f8ff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-actions .secondary-button:hover,
.nav-actions .secondary-button:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.ghost-link {
  color: var(--text-secondary);
  font-weight: 500;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(135deg, #1a8cff 0%, #005dff 100%);
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.35);
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 25px 45px rgba(0, 102, 255, 0.45);
}

.secondary-button {
  background: rgba(1, 5, 14, 0.65);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.12);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(17, 27, 48, 0.85);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 8vw, 64px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: clamp(24px, 6vw, 64px);
  z-index: 0;
}

.hero-copy__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 32px);
}

.hero-mobile-bullets,
.hero-mobile-note {
  display: none;
}

.hero-mobile-bullet-title,
.hero-mobile-bullet-copy {
  display: block;
}

.hero[data-animate] {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40% -30% -55%;
  background: radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.35), transparent 65%),
    radial-gradient(circle at 80% 70%, rgba(108, 220, 255, 0.28), transparent 60%);
  filter: blur(22px);
  opacity: 0.55;
  z-index: -2;
  pointer-events: none;
  animation: heroBackdropDrift 18s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -40%;
  width: 180%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(0, 122, 255, 0.3), rgba(255, 255, 255, 0));
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-35%) skewX(-10deg);
  mix-blend-mode: screen;
  animation: heroSweep 14s cubic-bezier(0.55, 0.08, 0.24, 0.99) infinite;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-copy .lede {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero .hero-copy,
.hero .hero-media {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: 1.35s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .hero-copy {
  transform: translate3d(-64px, 0, 0);
}

.hero .hero-media {
  transform: translate3d(64px, 0, 0);
  transition-duration: 1.45s;
  transition-delay: 0.08s;
}

.hero.is-visible .hero-copy,
.hero.is-visible .hero-media {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  justify-content: flex-start;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-store-badge:hover,
.app-store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.app-store-badge .badge-icon {
  width: 26px;
  height: 26px;
}

.app-store-badge .badge-icon path {
  fill: currentColor;
}

.app-store-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.app-store-badge .badge-top {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-store-badge .badge-bottom {
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-highlights li::before {
  content: '•';
  margin-right: 8px;
  color: var(--accent);
}

.hero-media {
  position: relative;
  display: none;
  place-items: center;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 961px) {
  .hero-media--desktop {
    display: grid;
  }
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 35px 80px rgba(3, 10, 24, 0.4);
}

.hero-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-frame.main {
  width: clamp(220px, 60vw, 380px);
  transform: rotate(-2.5deg);
  background: rgba(8, 17, 34, 0.7);
}

.hero-frame.floating {
  width: clamp(170px, 45vw, 280px);
  position: absolute;
  bottom: -60px;
  right: -20px;
  transform: rotate(7deg);
  animation: float 7s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.5), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(122, 195, 255, 0.3), transparent 55%);
  filter: blur(60px);
  z-index: -1;
  animation: heroGlow 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(7deg);
  }
  40% {
    transform: translate3d(-6px, -12px, 0) rotate(5deg);
  }
  70% {
    transform: translate3d(4px, 10px, 0) rotate(9deg);
  }
}

@keyframes heroBackdropDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  45% {
    transform: translate3d(3%, -2%, 0) scale(1.08);
    opacity: 0.7;
  }
  75% {
    transform: translate3d(-2%, 3%, 0) scale(1.03);
    opacity: 0.6;
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-60%) skewX(-10deg);
    opacity: 0;
  }
  20% {
    opacity: 0.4;
  }
  50% {
    transform: translateX(25%) skewX(-10deg);
    opacity: 0.25;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateX(120%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  40% {
    transform: translate3d(-3%, 2%, 0) scale(1.05);
  }
  70% {
    transform: translate3d(2%, -3%, 0) scale(0.98);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: clamp(24px, 5vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(238, 244, 255, 0.6);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.indicator-line {
  width: 1px;
  height: 48px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(0, 102, 255, 0) 100%);
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.2;
    height: 24px;
  }
  50% {
    opacity: 1;
    height: 52px;
  }
  100% {
    opacity: 0.2;
    height: 24px;
  }
}

.section-heading {
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 1.7rem + 1.5vw, 3rem);
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  margin: 12px 0 0;
}

.section-summary {
  color: var(--text-secondary);
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(200, 215, 246, 0.65);
}

.panel-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
  background: var(--card-bg);
  border-radius: var(--base-radius);
  padding: 32px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.panel img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel h3 {
  font-size: 1.35rem;
  margin: 0;
}

.panel p {
  color: var(--text-secondary);
  margin: 0;
}

.motion-story {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.industries {
  background: radial-gradient(circle at 5% 0%, rgba(0, 102, 255, 0.12), transparent 60%);
}

.industries-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 48px);
}

.industries-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  margin-bottom: 12px;
}

.industries-copy p {
  color: var(--text-secondary);
  margin: 0;
  max-width: 720px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(20px, 5vw, 28px);
}

.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--base-radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 12px;
}

.industry-card h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.industry-card p {
  margin: 0;
  color: var(--text-secondary);
}

.story-copy h2 {
  font-size: clamp(2rem, 1.4rem + 2vw, 3.2rem);
  margin: 16px 0;
}

.story-copy p {
  color: var(--text-secondary);
}

.story-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
}

.story-copy li::before {
  content: '—';
  margin-right: 12px;
  color: var(--accent);
}

.story-stack {
  position: relative;
  display: grid;
  place-items: center;
  gap: 24px;
}

.story-stack img {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(2, 10, 24, 0.45);
  transform: none;
}

.metrics {
  background: radial-gradient(circle at 12% -10%, rgba(0, 102, 255, 0.12), transparent 65%),
    radial-gradient(circle at 88% 110%, rgba(102, 209, 255, 0.08), transparent 55%);
}

.metrics-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.metrics-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(3, 10, 24, 0.4);
}

.metrics-copy h2 {
  margin: 12px 0 0;
}

.metrics-summary {
  margin: 18px 0 0;
  color: var(--text-secondary);
  max-width: 520px;
  font-size: 1rem;
}

.metrics-list {
  margin: clamp(28px, 5vw, 36px) 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 18px;
}

.metrics-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-list li:last-child {
  border-bottom: none;
}

.metrics-list .metric-value {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.metrics-list .metric-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.rewards {
  background: radial-gradient(circle at 8% 0%, rgba(0, 102, 255, 0.14), transparent 60%),
    radial-gradient(circle at 90% 120%, rgba(113, 191, 255, 0.12), transparent 55%);
}

.rewards-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.rewards-copy {
  display: grid;
  gap: 18px;
}

.rewards-summary {
  margin: 0;
  color: var(--text-secondary);
  max-width: 620px;
}

.rewards-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.rewards-highlights li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(8, 18, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(2, 8, 20, 0.32);
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.55;
}

.rewards-highlights li::before {
  content: '★';
  color: var(--accent);
  font-size: 0.95rem;
  opacity: 0.9;
  grid-row: 1 / span 2;
  align-self: center;
}

.reward-note {
  margin: 0;
  color: rgba(228, 235, 255, 0.75);
  font-size: 0.95rem;
}

.rewards-media {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.rewards-media__frame {
  width: min(420px, 100%);
  border-radius: 26px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 102, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(2, 8, 20, 0.48);
}

.rewards-media__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(3, 10, 24, 0.55);
}

.rewards-caption {
  margin: 0;
  color: rgba(228, 235, 255, 0.72);
  font-size: 0.9rem;
}

.showcase {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(28px, 6vw, 64px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.showcase-media img {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(3, 10, 24, 0.45);
}

.showcase-copy p {
  color: var(--text-secondary);
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.bullet-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 12px;
}

.bullet-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 102, 255, 0.16);
  font-size: 1.4rem;
}

.pricing {
  background: linear-gradient(160deg, rgba(0, 102, 255, 0.16) 0%, rgba(0, 0, 0, 0) 62%);
}

.pricing-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 768px) {
  .price-card {
    --price-card-button-min-height: 52px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.15)), rgba(1, 7, 18, 0.72);
    border-radius: var(--base-radius);
    padding: 36px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 90px rgba(1, 6, 18, 0.6);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    height: 100%;
  }

  .price-card.highlight {
    background: linear-gradient(180deg, rgba(0, 110, 255, 0.38), rgba(1, 5, 15, 0.9));
    border-color: rgba(0, 132, 255, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 34px 110px rgba(0, 30, 80, 0.55);
  }

  .price {
    font-size: clamp(2rem, 1.6rem + 1vw, 2.6rem);
    font-family: var(--font-display);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }

  .price.small-note,
  .price.headline.small-note {
    display: inline-block;
    margin-top: -10px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(235, 244, 255, 0.78);
    opacity: 0.9;
    width: 100%;
    text-align: center;
  }

  .price span {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-left: 6px;
  }

  .price.headline {
    letter-spacing: -0.01em;
    color: var(--text-primary);
  }

  .price.comparison {
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .processing-rate {
    margin: -4px 0 12px;
    font-size: 0.98rem;
    color: rgba(225, 235, 255, 0.88);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }

  .processing-rate__value {
    display: block;
    font-size: clamp(1.6rem, 1.3rem + 0.8vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
  }

  .processing-rate__label {
    display: block;
    margin-top: 4px;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: rgba(225, 235, 255, 0.82);
  }

  .pricing-note {
    max-width: var(--max-width);
    margin: clamp(32px, 6vw, 48px) auto 0;
    font-size: 0.85rem;
    color: rgba(210, 222, 255, 0.6);
    text-align: center;
  }

  .price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: var(--text-secondary);
    flex: 1;
  }

  .price-card ul li::before {
    content: '';
    display: inline-flex;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b8cff, #0d6bfd);
    box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.12);
    vertical-align: middle;
  }

  .price-card ul li.negative::before {
    background: linear-gradient(135deg, #ff7b7b, #ff4b4b);
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.16);
  }

  .price-card .primary-button,
  .price-card .secondary-button {
    padding: 0 24px;
    font-size: 0.95rem;
    border-radius: 999px;
    min-height: var(--price-card-button-min-height);
    height: var(--price-card-button-min-height);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    margin-top: auto;
    width: 100%;
  }

  .price-card .primary-button {
    background: linear-gradient(135deg, #1b8cff 0%, #0066ff 100%);
    color: #fff;
    border: 1px solid rgba(27, 140, 255, 0.8);
    box-shadow: 0 10px 24px rgba(0, 102, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .price-card .primary-button:hover,
  .price-card .primary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.45);
    background: linear-gradient(135deg, #2a93ff 0%, #1574ff 100%);
  }

  .price-card .secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .price-card .secondary-button:hover,
  .price-card .secondary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.35);
    background: rgba(255, 255, 255, 0.15);
  }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(40px, 8vw, 60px) 0;
  background: rgba(3, 9, 22, 0.86);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 6vw, 40px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(228, 235, 255, 0.85);
}

.footer-brand .brand {
  font-size: 1.35rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(228, 235, 255, 0.75);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links {
  flex: 1 1 420px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.footer-heading {
  font-weight: 600;
  color: rgba(230, 240, 255, 0.8);
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-block;
  color: var(--text-secondary);
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding-bottom: 16px;
}

.footer-legal[data-animate] {
  opacity: 1;
  transform: none;
}

.legal-links {
  display: flex;
  gap: 16px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 102, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #ffffff;
}

.social-links a svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-animate] {
  opacity: 1;
  transform: none;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .metrics-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .metrics-media {
    order: -1;
    display: grid;
    justify-items: center;
  }

  .metrics-media img {
    max-width: 360px;
  }

  .metrics-list {
    gap: 16px;
    justify-items: start;
    max-width: 520px;
    margin: 0 auto;
  }

  .metrics-list .metric-value {
    font-size: 1.2rem;
  }

  .metrics-list .metric-label {
    font-size: 0.95rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industries-copy h2 {
    text-align: center;
  }

  .industries-copy p {
    max-width: 100%;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    text-align: center;
  }

  .price-card ul li::before {
    margin-right: 6px;
  }

  .price-card.highlight {
    transform: none;
  }
}

@media (max-width: 640px) {
  section {
    padding: clamp(48px, 14vw, 96px) 0;
  }

  .metric,
  .price-card {
    padding: 24px;
  }

  .download-badges {
    justify-content: center;
  }

  .story-stack img:last-child {
    display: none;
  }

}

@media (max-width: 540px) {
  :root {
    --max-width: calc(100vw - 40px);
    --base-radius: 20px;
    --nav-height: 64px;
  }

  body {
    font-size: 0.98rem;
  }

  section {
    padding: clamp(36px, 12vw, 64px) 0;
  }

  .metrics-layout,
  .pricing-grid {
    gap: 24px;
  }

  .metrics-media img,
  .story-stack img {
    max-width: 320px;
  }

  .industry-grid {
    gap: 20px;
  }

  .section-heading {
    margin-bottom: clamp(28px, 10vw, 44px);
    text-align: left;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 5vw + 1.2rem, 2.5rem);
  }

  .section-summary {
    font-size: 0.98rem;
    text-align: left;
  }

  .motion-story,
  .metrics-layout,
  .showcase {
    text-align: left;
  }

  .story-copy ul {
    gap: 10px;
  }

  .story-copy li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  .story-copy li::before {
    flex-shrink: 0;
    margin-top: 4px;
  }

  .metrics-summary {
    font-size: 0.98rem;
  }

  .metrics-list {
    gap: 12px;
  }

  .metrics-list li {
    padding: 14px 0;
  }

  .bullet-list {
    gap: 16px;
  }

  .bullet-list div {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.2rem;
  }

  .price-card {
    text-align: left;
  }

  .pricing-note {
    font-size: 0.82rem;
    padding: 0 4px;
  }

  .footer-inner {
    padding: 0 18px;
  }

  .footer-top {
    gap: 22px;
  }

  .footer-brand {
    max-width: 100%;
  }

}
