:root {
  --landing-ink: #07101c;
  --landing-ink-soft: #0d1726;
  --landing-ink-fade: rgba(236, 243, 252, 0.76);
  --landing-cream: #f3efe8;
  --landing-cream-strong: #fbf8f2;
  --landing-cream-muted: #e8e0d4;
  --landing-card: rgba(255, 255, 255, 0.92);
  --landing-card-strong: #ffffff;
  --landing-card-dark: rgba(13, 20, 33, 0.82);
  --landing-line: rgba(17, 28, 42, 0.1);
  --landing-line-strong: rgba(17, 28, 42, 0.18);
  --landing-text: #112034;
  --landing-text-soft: rgba(17, 32, 52, 0.68);
  --landing-text-muted: rgba(17, 32, 52, 0.5);
  --landing-text-inverse: #f7f9fc;
  --landing-accent: #132d4b;
  --landing-accent-strong: #18385a;
  --landing-accent-soft: rgba(19, 45, 75, 0.12);
  --landing-success: #1d9d73;
  --landing-shadow-hero: 0 44px 120px rgba(2, 11, 24, 0.52);
  --landing-shadow-panel: 0 26px 70px rgba(9, 18, 32, 0.18);
  --landing-shadow-card: 0 16px 40px rgba(9, 18, 32, 0.12);
  --landing-shell: 1240px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--landing-text);
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(70, 108, 162, 0.08), transparent 30%),
    linear-gradient(180deg, #faf9fb 0%, #faf9fb 26%, #f3efe8 26%, #f3efe8 100%);
}

body.landing-reduced-motion * {
  animation: none !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto;
}

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

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

.hidden {
  display: none !important;
}

.landing-page {
  position: relative;
  overflow-x: clip;
}

.landing-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.landing-ambient-grid {
  background-image:
    linear-gradient(rgba(17, 32, 52, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 52, 0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
  opacity: 0.6;
}

.landing-ambient-glow {
  background:
    radial-gradient(circle at 18% 12%, rgba(87, 135, 201, 0.09), transparent 25%),
    radial-gradient(circle at 82% 18%, rgba(56, 92, 140, 0.06), transparent 22%),
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.32), transparent 30%);
}

.landing-shell {
  width: min(var(--landing-shell), calc(100% - 40px));
  margin: 0 auto;
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(250, 249, 251, 0.88);
  border-bottom: 1px solid rgba(17, 32, 52, 0.08);
}

.landing-topbar-inner {
  width: min(var(--landing-shell), calc(100% - 32px));
  min-height: calc(76px + env(safe-area-inset-top, 0px));
  margin: 0 auto;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.landing-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.landing-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(3, 8, 18, 0.2);
}

.landing-logo-mark img,
.landing-footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.landing-logo-text {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-text);
  white-space: nowrap;
}

.landing-topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-language-picker {
  position: relative;
}

.landing-language-button,
.landing-language-option {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--landing-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(3, 8, 18, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-language-button:hover,
.landing-language-option:hover,
.landing-language-option.active {
  transform: translateY(-1px);
  border-color: rgba(17, 32, 52, 0.18);
  box-shadow: 0 16px 30px rgba(3, 8, 18, 0.18);
}

.landing-language-flag {
  font-size: 1.18rem;
  line-height: 1;
}

.landing-language-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 126px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 32, 52, 0.08);
  box-shadow: var(--landing-shadow-panel);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.landing-nav-link {
  color: rgba(17, 32, 52, 0.72);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.landing-nav-link:hover {
  color: var(--landing-text);
}

.landing-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

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

.landing-btn-primary {
  background: linear-gradient(180deg, #1a3859 0%, #132d4b 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(8, 16, 28, 0.3);
}

.landing-btn-primary:hover {
  box-shadow: 0 22px 48px rgba(8, 16, 28, 0.36);
}

.landing-btn-secondary {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 32, 52, 0.08);
  color: var(--landing-text);
  box-shadow: 0 16px 34px rgba(8, 16, 28, 0.12);
}

.landing-btn-secondary:hover {
  border-color: rgba(17, 32, 52, 0.16);
}

.landing-btn-sm {
  min-height: 46px;
  padding-inline: 18px;
}

.landing-section {
  position: relative;
  padding: 110px 0;
}

.landing-hero {
  padding: 40px 0 88px;
  background: transparent;
}

.landing-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 48px;
  align-items: center;
  min-height: auto;
}

.landing-hero-copy {
  position: relative;
  z-index: 2;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(30, 78, 140, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(30, 78, 140, 0.24);
}

.landing-section-head .landing-eyebrow,
.landing-final-card .landing-eyebrow,
.landing-audience-panel .landing-eyebrow,
.landing-problem .landing-eyebrow,
.landing-access .landing-eyebrow {
  color: rgba(17, 32, 52, 0.62);
}

.landing-section-head .landing-eyebrow::before,
.landing-final-card .landing-eyebrow::before,
.landing-audience-panel .landing-eyebrow::before,
.landing-problem .landing-eyebrow::before,
.landing-access .landing-eyebrow::before {
  background: rgba(17, 32, 52, 0.2);
}

.landing-hero-title,
.landing-section-title,
.landing-final-title,
.landing-audience-title {
  margin: 14px 0 0;
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.landing-hero-title {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--landing-text);
  text-wrap: pretty;
}

.landing-section-title,
.landing-final-title,
.landing-audience-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--landing-text);
  text-wrap: balance;
}

.landing-hero-body,
.landing-section-body,
.landing-final-body,
.landing-problem-card p,
.landing-value-card p,
.landing-segment-card p,
.landing-story-copy p,
.landing-pricing-note,
.landing-pricing-card p,
.landing-footer-tagline {
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

.landing-hero-body {
  max-width: 34rem;
  margin-top: 18px;
  color: rgba(17, 32, 52, 0.7);
}

.landing-hero-trust {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(17, 32, 52, 0.68);
  font-size: 0.92rem;
  font-weight: 600;
}

.landing-hero-trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 78, 140, 0.1);
  color: #1e4e8c;
  font-size: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(30, 78, 140, 0.12);
}

.landing-hero-comparison {
  position: relative;
  z-index: 2;
}

.landing-hero-comparison-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border-radius: 22px;
  background: rgba(245, 243, 246, 0.86);
  border: 1px solid rgba(196, 198, 206, 0.62);
  box-shadow: 0 4px 20px rgba(15, 39, 66, 0.05);
}

.landing-hero-old-way,
.landing-hero-new-way {
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
}

.landing-hero-old-way {
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(196, 198, 206, 0.5);
  opacity: 0.55;
  filter: saturate(0.82);
}

.landing-hero-compare-label,
.landing-hero-new-header {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.landing-hero-compare-label {
  color: rgba(17, 32, 52, 0.44);
  margin-bottom: 14px;
}

.landing-hero-old-bubble {
  max-width: 82%;
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(196, 198, 206, 0.46);
  color: rgba(17, 32, 52, 0.52);
  font-size: 0.84rem;
  line-height: 1.45;
  box-shadow: 0 2px 10px rgba(15, 39, 66, 0.03);
}

.landing-hero-old-bubble-self {
  margin-left: auto;
  background: rgba(234, 239, 247, 0.92);
}

.landing-hero-new-way {
  background: #ffffff;
  border: 1px solid rgba(17, 32, 52, 0.12);
  box-shadow: 0 10px 28px rgba(15, 39, 66, 0.08);
}

.landing-hero-new-header {
  padding: 8px 12px;
  background: #0f2742;
  color: #ffffff;
}

.landing-hero-phone-frame {
  margin: 0;
  padding: 0;
  background: #ffffff;
}

.landing-hero-phone-frame .landing-screen-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: top center;
}

.landing-section-body,
.landing-final-body,
.landing-problem-card p,
.landing-value-card p,
.landing-segment-card p,
.landing-story-copy p,
.landing-pricing-note,
.landing-pricing-card p,
.landing-footer-tagline {
  color: var(--landing-text-soft);
}

.landing-hero-cta,
.landing-final-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.landing-proof-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-proof-chip {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 249, 252, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(8, 16, 28, 0.18);
}

.landing-proof-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #47c6a0;
  box-shadow: 0 0 0 6px rgba(71, 198, 160, 0.12);
}

.landing-hero-showcase-shell,
.landing-story-card,
.landing-problem-card,
.landing-value-card,
.landing-segment-card,
.landing-pricing-card,
.landing-audience-panel,
.landing-final-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--landing-shadow-panel);
}

.landing-hero-showcase {
  position: relative;
  z-index: 2;
}

.landing-hero-showcase-shell {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(11, 19, 32, 0.72) 100%),
    rgba(8, 16, 28, 0.82);
  backdrop-filter: blur(18px);
}

.landing-hero-showcase-shell::before,
.landing-hero-showcase-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.landing-hero-showcase-shell::before {
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(110, 154, 218, 0.28) 0%, rgba(110, 154, 218, 0) 72%);
  opacity: 0.9;
}

.landing-hero-showcase-shell::after {
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.landing-hero-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-hero-tab {
  position: relative;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(236, 243, 252, 0.74);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.landing-hero-tab::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 188, 255, 1), rgba(71, 198, 160, 1));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms ease;
}

.landing-hero-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--landing-text-inverse);
}

.landing-hero-tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(143, 188, 255, 0.28);
  color: var(--landing-text-inverse);
  box-shadow: 0 16px 34px rgba(6, 12, 22, 0.24);
}

.landing-hero-tab.is-active::after {
  transform: scaleX(1);
}

.landing-hero-tab-index {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(236, 243, 252, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.landing-hero-tab.is-active .landing-hero-tab-index {
  background: rgba(143, 188, 255, 0.16);
  color: var(--landing-text-inverse);
}

.landing-hero-panels {
  position: relative;
  min-height: 510px;
  margin-top: 18px;
}

.landing-hero-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 340ms ease,
    transform 520ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.landing-hero-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.landing-hero-panel-grid {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: center;
}

.landing-hero-info-stack {
  display: grid;
  gap: 16px;
  align-content: center;
}

.landing-hero-device-card,
.landing-hero-copy-card {
  position: relative;
  z-index: 2;
}

.landing-hero-device-card {
  margin: 0;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(2, 11, 24, 0.32);
}

.landing-hero-device-primary {
  width: min(100%, 430px);
  margin-left: auto;
  margin-right: auto;
}

.landing-hero-device-primary .landing-screen-image {
  height: clamp(340px, 38vw, 520px);
  border-radius: 28px;
  object-fit: cover;
  object-position: top center;
}

.landing-hero-device-primary-profile .landing-screen-image {
  height: clamp(300px, 28vw, 420px);
}

.landing-hero-device-secondary {
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 32, 52, 0.08);
  box-shadow: 0 22px 48px rgba(2, 11, 24, 0.16);
}

.landing-hero-device-secondary .landing-screen-image {
  height: 182px;
  border-radius: 22px;
  object-fit: cover;
  object-position: top center;
}

.landing-hero-copy-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(8, 16, 28, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--landing-text-inverse);
  box-shadow: 0 24px 50px rgba(2, 11, 24, 0.26);
}

.landing-hero-copy-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-screen-label {
  margin-bottom: 10px;
  color: rgba(237, 244, 252, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.landing-screen-label-soft {
  color: rgba(17, 32, 52, 0.42);
}

.landing-screen-image {
  width: 100%;
  height: auto;
  border-radius: 26px;
  object-fit: cover;
  object-position: top center;
}

.landing-stage-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(82, 125, 181, 0.14);
  border: 1px solid rgba(131, 168, 218, 0.16);
  color: #e9f0fb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-hero-panel-title,
.landing-story-copy-note-title {
  margin: 14px 0 0;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.landing-hero-panel-title {
  color: var(--landing-text-inverse);
}

.landing-hero-panel-meta {
  margin: 12px 0 0;
  color: rgba(236, 243, 252, 0.7);
  font-size: 0.98rem;
  line-height: 1.56;
}

.landing-hero-plan-row {
  margin-top: 16px;
  color: rgba(236, 243, 252, 0.82);
  font-size: 0.96rem;
  font-weight: 600;
}

.landing-floating-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(28, 157, 115, 0.16);
  color: #8fe3be;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-problem {
  margin-top: -52px;
  padding-top: 140px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(243, 239, 232, 1) 18%),
    linear-gradient(180deg, #f5f1ea 0%, #f0ebe3 100%);
  border-top-left-radius: 64px;
  border-top-right-radius: 64px;
}

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

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

@keyframes landingHeroGlow {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }

  50% {
    opacity: 0.92;
    transform: scale(1.06);
  }
}

body:not(.landing-reduced-motion) .landing-hero-panel.is-active .landing-hero-device-primary {
  animation: landingHeroFloat 8s ease-in-out infinite;
}

body:not(.landing-reduced-motion) .landing-hero-showcase-shell::before {
  animation: landingHeroGlow 9s ease-in-out infinite;
}

.landing-split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}

.landing-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.landing-problem-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 32, 52, 0.08);
  box-shadow: var(--landing-shadow-card);
}

.landing-card-index {
  color: rgba(17, 32, 52, 0.38);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.landing-problem-card h3,
.landing-value-card h3,
.landing-segment-card h3,
.landing-pricing-card h3,
.landing-story-copy h3 {
  margin: 18px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.landing-story {
  background: linear-gradient(180deg, #f0ebe3 0%, #f7f4ee 100%);
}

.landing-section-head-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.landing-section-head-centered .landing-eyebrow {
  justify-content: center;
}

.landing-story-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.landing-story-card {
  padding: 26px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(17, 32, 52, 0.08);
  box-shadow: var(--landing-shadow-card);
}

.landing-story-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.landing-story-copy {
  min-width: 0;
}

.landing-story-number {
  color: rgba(17, 32, 52, 0.34);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.landing-story-copy-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 32, 52, 0.08);
}

.landing-story-copy-note .landing-stage-chip {
  background: rgba(19, 45, 75, 0.08);
  border-color: rgba(19, 45, 75, 0.1);
  color: var(--landing-accent);
}

.landing-story-copy-note-title {
  color: var(--landing-text);
}

.landing-story-copy-note-body {
  margin-top: 10px;
}

.landing-story-media,
.landing-story-media-stack {
  min-width: 0;
}

.landing-story-media {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(15, 22, 34, 0.04);
  border: 1px solid rgba(17, 32, 52, 0.08);
  box-shadow: 0 18px 40px rgba(9, 18, 32, 0.1);
}

.landing-story-media-offers {
  max-width: 530px;
  margin-left: auto;
  transform: rotate(-3deg);
}

.landing-story-media-requests {
  max-width: 360px;
  margin: 18px auto 0;
}

.landing-story-media-stack {
  display: grid;
  gap: 18px;
  align-content: start;
}

.landing-story-media-filter {
  max-width: 340px;
}

.landing-story-media-profile {
  max-width: 300px;
  margin-left: auto;
}

.landing-feature-tag-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-feature-tag {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(19, 45, 75, 0.08);
  border: 1px solid rgba(19, 45, 75, 0.12);
  color: var(--landing-accent);
  font-size: 0.86rem;
  font-weight: 700;
}

.landing-story-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.landing-story-stat {
  padding: 14px;
  border-radius: 18px;
  background: rgba(19, 45, 75, 0.05);
  border: 1px solid rgba(19, 45, 75, 0.08);
}

.landing-story-stat span {
  display: block;
  color: var(--landing-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-story-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  color: var(--landing-text);
}

.landing-outcomes {
  background:
    radial-gradient(circle at 16% 8%, rgba(57, 106, 168, 0.2), transparent 22%),
    linear-gradient(180deg, #0a1422 0%, #0d1727 100%);
}

.landing-outcomes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.landing-outcomes-main .landing-section-title,
.landing-outcomes-main .landing-eyebrow,
.landing-outcomes-main .landing-value-card h3,
.landing-outcomes-main .landing-value-card p,
.landing-audience-panel .landing-audience-title,
.landing-audience-panel .landing-segment-card h3,
.landing-audience-panel .landing-segment-card p {
  color: var(--landing-text-inverse);
}

.landing-outcomes-main .landing-eyebrow {
  color: rgba(229, 237, 249, 0.72);
}

.landing-outcomes-main .landing-eyebrow::before {
  background: rgba(229, 237, 249, 0.26);
}

.landing-value-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.landing-value-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(3, 8, 18, 0.2);
}

.landing-value-card p {
  color: rgba(236, 243, 252, 0.72);
}

.landing-audience-panel {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 48px rgba(3, 8, 18, 0.22);
}

.landing-audience-title {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.landing-audience-list {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.landing-segment-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.landing-segment-card h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

.landing-segment-card p {
  margin-top: 10px;
  font-size: 0.98rem;
  color: rgba(236, 243, 252, 0.72);
}

.landing-access {
  background: linear-gradient(180deg, #f8f4ee 0%, #f2ede6 100%);
}

.landing-access-head {
  max-width: 42rem;
  margin-inline: auto;
}

.landing-pricing-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 64rem;
  margin-inline: auto;
}

.landing-pricing-card {
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 32, 52, 0.08);
  box-shadow: var(--landing-shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}

.landing-pricing-card-primary {
  background: rgba(255, 255, 255, 0.95);
}

.landing-pricing-card-accent {
  background: linear-gradient(180deg, #1a3859 0%, #132d4b 100%);
  border-color: rgba(19, 45, 75, 0.22);
  box-shadow: 0 18px 42px rgba(12, 26, 43, 0.18);
  transform: translateY(-14px);
}

.landing-pricing-card-accent h3,
.landing-pricing-card-accent .landing-pricing-price,
.landing-pricing-card-accent .landing-pricing-price-suffix,
.landing-pricing-card-accent .landing-pricing-approx,
.landing-pricing-card-accent .landing-pricing-feature-list li {
  color: #ffffff;
}

.landing-pricing-label {
  color: rgba(17, 32, 52, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-pricing-price {
  margin-top: 12px;
  color: var(--landing-text);
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.landing-pricing-price-suffix {
  margin-left: 4px;
  color: rgba(17, 32, 52, 0.52);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.landing-pricing-approx {
  margin-top: 10px;
  color: rgba(17, 32, 52, 0.56);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.landing-pricing-feature-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
}

.landing-pricing-feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(17, 32, 52, 0.8);
  font-size: 0.95rem;
  line-height: 1.42;
}

.landing-pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(30, 78, 140, 0.9);
  transform: translateY(-50%);
}

.landing-pricing-card-accent .landing-pricing-feature-list li::before {
  background: rgba(255, 255, 255, 0.92);
}

.landing-pricing-btn {
  width: 100%;
  min-height: 50px;
}

.landing-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ede4d7;
  color: #173759;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(12, 26, 43, 0.12);
}

.landing-trust-strip {
  margin-top: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-pricing-note {
  margin: 0;
  max-width: 34rem;
}

.landing-pricing-payments {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-pricing-payments-label {
  color: rgba(17, 32, 52, 0.56);
  font-size: 0.84rem;
  font-weight: 600;
}

.landing-pricing-payments-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.landing-pricing-payments-chip {
  min-height: 58px;
  min-width: 96px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 32, 52, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(12, 26, 43, 0.06);
}

.landing-pricing-payments-chip img {
  display: block;
  width: auto;
  height: 31px;
  max-width: 140px;
}

.landing-pricing-payments-chip-usdt img {
  height: 34px;
}

.landing-partner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-partner-chip {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(19, 45, 75, 0.06);
  border: 1px solid rgba(19, 45, 75, 0.08);
  color: var(--landing-accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.landing-partner-chip img {
  width: 18px;
  height: 18px;
}

.landing-final {
  background: linear-gradient(180deg, #f2ede6 0%, #0a1422 30%, #08101c 100%);
  padding-bottom: 96px;
}

.landing-final-card {
  padding: 44px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(72, 117, 173, 0.26), transparent 28%),
    linear-gradient(180deg, rgba(13, 24, 40, 0.98), rgba(8, 16, 28, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--landing-shadow-hero);
  text-align: center;
}

.landing-final-card .landing-eyebrow,
.landing-final-card .landing-final-title,
.landing-final-card .landing-final-body {
  color: var(--landing-text-inverse);
}

.landing-final-card .landing-eyebrow::before {
  background: rgba(229, 237, 249, 0.26);
}

.landing-final-card .landing-eyebrow {
  justify-content: center;
  color: rgba(229, 237, 249, 0.72);
}

.landing-final-body {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(236, 243, 252, 0.74);
}

.landing-final-actions {
  justify-content: center;
}

.landing-footer {
  padding: 0 0 calc(28px + env(safe-area-inset-bottom, 0px));
  background: #08101c;
}

.landing-footer-inner {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.landing-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--landing-text-inverse);
  font-size: 0.96rem;
  font-weight: 700;
}

.landing-footer-tagline {
  margin: 0;
  color: rgba(236, 243, 252, 0.68);
  font-size: 0.92rem;
}

.landing-footer-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(236, 243, 252, 0.48);
  font-size: 0.85rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
  transition:
    opacity 360ms cubic-bezier(0.2, 0.9, 0.22, 1),
    transform 360ms cubic-bezier(0.2, 0.9, 0.22, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

.landing-rtl .landing-logo,
.landing-rtl .landing-topbar-actions,
.landing-rtl .landing-proof-row,
.landing-rtl .landing-hero-cta,
.landing-rtl .landing-final-actions,
.landing-rtl .landing-partner-row {
  flex-direction: row-reverse;
}

.landing-rtl .landing-language-popup {
  left: 0;
  right: auto;
}

@media (max-width: 1200px) {
  .landing-hero-layout,
  .landing-split-head,
  .landing-outcomes-layout {
    grid-template-columns: 1fr;
  }

  .landing-hero-layout {
    gap: 42px;
  }

  .landing-hero-visual {
    min-height: 780px;
  }

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

@media (max-width: 1024px) {
  .landing-section {
    padding: 92px 0;
  }

  .landing-hero {
    padding-bottom: 140px;
  }

  .landing-problem {
    margin-top: -64px;
    padding-top: 140px;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
  }

  .landing-story-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .landing-story-grid,
  .landing-pricing-grid,
  .landing-problem-grid,
  .landing-value-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-visual {
    min-height: 720px;
  }

  .landing-hero-frame-offers {
    width: 60%;
  }

  .landing-hero-frame-requests {
    width: 45%;
  }

  .landing-floating-card-request {
    width: 250px;
  }

  .landing-floating-card-control {
    width: 290px;
  }
}

@media (max-width: 920px) {
  .landing-shell {
    width: min(var(--landing-shell), calc(100% - 28px));
  }

  .landing-topbar-inner {
    width: min(var(--landing-shell), calc(100% - 24px));
  }

  .landing-hero-layout {
    gap: 28px;
  }

  .landing-hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .landing-hero-body,
  .landing-section-body,
  .landing-final-body,
  .landing-problem-card p,
  .landing-value-card p,
  .landing-segment-card p,
  .landing-story-copy p,
  .landing-pricing-note,
  .landing-pricing-card p {
    font-size: 1rem;
    line-height: 1.66;
  }

  .landing-hero-visual {
    min-height: 860px;
  }

  .landing-hero-frame-offers {
    left: 0;
    top: 64px;
    width: 72%;
  }

  .landing-hero-frame-requests {
    right: 0;
    top: 262px;
    width: 54%;
  }

  .landing-floating-card-request {
    top: 0;
    right: 0;
    width: min(240px, calc(100% - 80px));
  }

  .landing-floating-card-filter {
    left: 0;
    bottom: 176px;
    width: min(210px, calc(100% - 140px));
  }

  .landing-floating-card-control {
    right: 0;
    bottom: 0;
    width: min(260px, calc(100% - 72px));
  }

  .landing-outcomes-layout {
    gap: 20px;
  }

  .landing-final-card {
    padding: 34px 24px;
    border-radius: 30px;
  }

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

@media (max-width: 680px) {
  .landing-topbar-inner {
    align-items: flex-start;
  }

  .landing-topbar-actions {
    gap: 10px;
  }

  .landing-nav-link {
    display: none;
  }

  .landing-hero {
    padding-top: 64px;
    padding-bottom: 120px;
  }

  .landing-hero-cta,
  .landing-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-btn,
  .landing-btn-sm {
    width: 100%;
  }

  .landing-proof-row {
    gap: 10px;
  }

  .landing-proof-chip {
    width: 100%;
    justify-content: center;
  }

  .landing-hero-visual {
    min-height: 760px;
  }

  .landing-hero-frame-offers {
    width: 82%;
    top: 88px;
  }

  .landing-hero-frame-requests {
    width: 58%;
    top: 282px;
  }

  .landing-floating-card-request {
    width: min(220px, calc(100% - 90px));
    padding: 18px;
  }

  .landing-floating-card-filter {
    width: min(180px, calc(100% - 180px));
    bottom: 186px;
    padding: 12px;
  }

  .landing-floating-card-control {
    width: min(240px, calc(100% - 70px));
    padding: 16px;
  }

  .landing-story-card,
  .landing-audience-panel,
  .landing-pricing-card,
  .landing-problem-card {
    border-radius: 24px;
    padding: 22px;
  }

  .landing-story-stats {
    grid-template-columns: 1fr;
  }

  .landing-trust-strip {
    padding: 20px;
    border-radius: 22px;
  }

  .landing-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .landing-shell {
    width: min(var(--landing-shell), calc(100% - 20px));
  }

  .landing-topbar-inner {
    width: min(var(--landing-shell), calc(100% - 20px));
    gap: 12px;
  }

  .landing-logo-text {
    font-size: 0.96rem;
  }

  .landing-language-button,
  .landing-language-option {
    width: 42px;
    height: 42px;
  }

  .landing-hero-visual {
    min-height: 690px;
  }

  .landing-hero-frame-offers {
    width: 84%;
    transform: rotate(-5deg);
  }

  .landing-hero-frame-requests {
    width: 60%;
    top: 270px;
    transform: rotate(7deg);
  }

  .landing-floating-card-request {
    width: calc(100% - 104px);
  }

  .landing-floating-card-filter {
    width: 168px;
    bottom: 176px;
  }

  .landing-floating-card-control {
    width: calc(100% - 116px);
  }

  .landing-screen-note,
  .landing-floating-card-request,
  .landing-floating-card-control {
    border-radius: 22px;
  }

  .landing-screen-note-title,
  .landing-floating-title,
  .landing-story-copy-note-title {
    font-size: 1.06rem;
  }

  .landing-stage-chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .landing-pricing-price {
    font-size: 1.55rem;
  }
}

@media (max-width: 1200px) {
  .landing-hero {
    padding-bottom: 84px;
  }

  .landing-hero-layout {
    min-height: auto;
    gap: 32px;
  }

  .landing-hero-title {
    max-width: 10.4ch;
  }

  .landing-hero-showcase-shell {
    max-width: 860px;
    margin: 0 auto;
  }

  .landing-hero-panels {
    min-height: 470px;
  }

  .landing-hero-panel-grid {
    min-height: 470px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  }
}

@media (max-width: 920px) {
  .landing-hero {
    padding: 28px 0 84px;
  }

  .landing-hero-layout {
    min-height: auto;
    gap: 22px;
  }

  .landing-hero-title {
    max-width: 8.6ch;
    font-size: clamp(2.9rem, 11.2vw, 4.15rem);
  }

  .landing-hero-body {
    max-width: 100%;
  }

  .landing-hero-showcase-shell {
    padding: 16px;
    border-radius: 30px;
  }

  .landing-hero-tabs {
    gap: 8px;
  }

  .landing-hero-tab {
    padding: 12px;
    border-radius: 16px;
    gap: 10px;
    font-size: 0.88rem;
  }

  .landing-hero-tab::after {
    left: 12px;
    right: 12px;
    bottom: 8px;
  }

  .landing-hero-tab-index {
    width: 28px;
    height: 28px;
    font-size: 0.72rem;
  }

  .landing-hero-panels {
    min-height: auto;
    margin-top: 14px;
  }

  .landing-hero-panel {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transform: none;
  }

  .landing-hero-panel.is-active {
    display: block;
  }

  .landing-hero-panel-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing-hero-info-stack {
    order: 1;
  }

  .landing-hero-device-primary,
  .landing-hero-device-secondary {
    order: 2;
  }

  .landing-hero-device-card {
    padding: 12px;
    border-radius: 24px;
  }

  .landing-hero-device-primary {
    width: min(100%, 340px);
  }

  .landing-hero-device-primary .landing-screen-image {
    height: 300px;
    border-radius: 22px;
  }

  .landing-hero-device-primary-profile .landing-screen-image {
    height: 260px;
  }

  .landing-hero-device-secondary .landing-screen-image {
    height: 150px;
    border-radius: 18px;
  }

  .landing-hero-copy-card {
    padding: 20px;
    border-radius: 22px;
  }

  .landing-proof-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -8px;
  }

  .landing-proof-row::-webkit-scrollbar {
    display: none;
  }

  .landing-proof-chip {
    flex: 0 0 auto;
  }

  .landing-problem {
    margin-top: -34px;
    padding-top: 110px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}

@media (max-width: 680px) {
  .landing-hero-title {
    max-width: 10ch;
    font-size: clamp(2.3rem, 10vw, 3rem);
  }

  .landing-hero-body {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .landing-hero-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .landing-hero-cta .landing-btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
  }

  .landing-proof-row {
    display: none;
  }

  .landing-hero-showcase-shell {
    padding: 12px;
  }

  .landing-hero-info-stack {
    display: none;
  }

  .landing-hero-panels {
    margin-top: 10px;
  }

  .landing-hero-panel-grid {
    gap: 0;
  }

  .landing-hero-device-card {
    padding: 10px;
  }

  .landing-hero-device-primary .landing-screen-image {
    height: 228px;
  }

  .landing-hero-device-primary-profile .landing-screen-image {
    height: 220px;
  }
}

@media (max-width: 520px) {
  .landing-hero {
    padding-top: 18px;
    padding-bottom: 52px;
  }

  .landing-hero-title {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }

  .landing-hero-cta {
    gap: 10px;
  }

  .landing-hero-cta .landing-btn {
    min-height: 48px;
  }

  .landing-hero-body {
    display: none;
  }

  .landing-hero-showcase-shell {
    padding: 10px;
    border-radius: 26px;
  }

  .landing-hero-tab {
    padding: 8px 9px;
    gap: 7px;
    font-size: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
  }

  .landing-hero-tab-index {
    width: 24px;
    height: 24px;
  }

  .landing-hero-device-primary {
    width: 100%;
  }

  .landing-hero-panels {
    margin-top: 6px;
  }

  .landing-hero-device-primary .landing-screen-image {
    height: 136px;
  }

  .landing-hero-device-primary-profile .landing-screen-image {
    height: 136px;
  }

  .landing-hero-panel-title,
  .landing-story-copy-note-title {
    font-size: 1.05rem;
  }

  .landing-hero-copy-card-header {
    align-items: flex-start;
  }
}

/* Hero block reset aligned to stitch_high_conversion_app_landing_page */
.landing-ambient-grid {
  opacity: 0.18;
}

.landing-ambient-glow {
  opacity: 0.62;
}

.landing-topbar {
  background: rgba(250, 249, 251, 0.94);
  border-bottom-color: rgba(17, 32, 52, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.landing-topbar-inner {
  min-height: calc(64px + env(safe-area-inset-top, 0px));
  padding: calc(10px + env(safe-area-inset-top, 0px)) 0 10px;
}

.landing-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(3, 8, 18, 0.12);
}

.landing-logo-mark img {
  width: 24px;
  height: 24px;
}

.landing-hero {
  padding: 52px 0 88px;
}

.landing-hero-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.landing-hero-copy {
  max-width: 520px;
}

.landing-hero .landing-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.landing-hero .landing-eyebrow::before {
  width: 0;
  display: none;
}

.landing-hero-title {
  max-width: 8.4ch;
  margin-top: 18px;
  font-size: clamp(3.25rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.landing-hero-body {
  max-width: 34rem;
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.68;
}

.landing-hero-cta {
  margin-top: 28px;
  align-items: center;
  gap: 16px;
}

.landing-hero-cta .landing-btn {
  min-height: 48px;
  padding-inline: 22px;
}

.landing-hero-trust {
  margin-top: 18px;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.landing-hero-comparison {
  width: 100%;
  justify-self: end;
}

.landing-hero-comparison-shell {
  width: min(100%, 620px);
  margin-left: auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 16px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 32, 52, 0.08);
  box-shadow: 0 16px 38px rgba(15, 39, 66, 0.06);
}

.landing-hero-old-way {
  min-height: 438px;
  padding: 14px 16px;
  background: rgba(242, 240, 244, 0.82);
  border-color: rgba(17, 32, 52, 0.06);
  opacity: 0.58;
  filter: saturate(0.74);
}

.landing-hero-compare-label,
.landing-hero-new-header {
  font-size: 0.7rem;
  letter-spacing: 0;
}

.landing-hero-compare-label {
  margin-bottom: 18px;
}

.landing-hero-old-bubble {
  max-width: 84%;
  margin-top: 12px;
  padding: 12px 13px;
  border-radius: 13px;
  font-size: 0.82rem;
  line-height: 1.45;
}

.landing-hero-new-way {
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(15, 39, 66, 0.12);
  transform: translateY(-4px);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.landing-hero-new-way:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(15, 39, 66, 0.16);
}

.landing-hero-new-header {
  padding: 8px 12px;
}

.landing-hero-phone-frame {
  height: clamp(420px, 45vw, 610px);
  overflow: hidden;
}

.landing-hero-phone-frame .landing-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: translateZ(0);
}

@media (max-width: 1200px) {
  .landing-hero {
    padding: 44px 0 82px;
  }

  .landing-hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .landing-hero-copy {
    max-width: 100%;
  }

  .landing-hero-title {
    max-width: 9ch;
  }

  .landing-hero-comparison {
    justify-self: stretch;
  }

  .landing-hero-comparison-shell {
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .landing-topbar-inner {
    align-items: center;
  }

  .landing-hero {
    padding: 30px 0 74px;
  }

  .landing-hero-layout {
    gap: 24px;
  }

  .landing-hero-title {
    max-width: 9.5ch;
    font-size: clamp(2.7rem, 8vw, 4rem);
  }

  .landing-hero-body {
    max-width: 100%;
  }

  .landing-hero-comparison-shell {
    width: min(100%, 560px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .landing-hero-old-way {
    order: 2;
    min-height: auto;
  }

  .landing-hero-new-way {
    order: 1;
    transform: none;
  }

  .landing-hero-new-way:hover {
    transform: none;
  }

  .landing-hero-phone-frame {
    height: clamp(400px, 74vw, 560px);
  }
}

@media (max-width: 680px) {
  .landing-topbar-inner {
    align-items: center;
    min-height: calc(54px + env(safe-area-inset-top, 0px));
    padding: calc(6px + env(safe-area-inset-top, 0px)) 0 6px;
  }

  .landing-topbar-actions {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .landing-topbar-actions .landing-btn-sm {
    width: auto;
    min-height: 34px;
    padding-inline: 12px;
    border-radius: 16px;
    font-size: 0.76rem;
    box-shadow: 0 8px 18px rgba(8, 16, 28, 0.1);
  }

  .landing-language-button {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .landing-hero {
    padding: 12px 0 26px;
  }

  .landing-hero-layout {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    gap: 10px;
    align-items: stretch;
    min-height: 354px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.44);
    border: 1px solid rgba(17, 32, 52, 0.08);
    box-shadow: 0 18px 40px rgba(15, 39, 66, 0.07);
    backdrop-filter: blur(14px);
  }

  .landing-hero-copy {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }

  .landing-hero .landing-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .landing-hero-title {
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    font-size: var(--landing-hero-mobile-title-size, clamp(1.18rem, 5.5vw, 1.52rem));
    line-height: 0.92;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .landing-hero-body {
    display: block;
    margin-top: 6px;
    font-size: 0.6rem;
    line-height: 1.2;
  }

  .landing-hero-cta {
    margin-top: auto;
    padding-top: 8px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .landing-hero-cta .landing-btn {
    min-height: 31px;
    width: 100%;
    padding-inline: 8px;
    border-radius: 12px;
    font-size: 0.58rem;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .landing-hero-trust {
    display: none;
  }

  .landing-hero-comparison {
    height: 100%;
  }

  .landing-hero-comparison-shell {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    min-height: 100%;
    padding: 6px;
    gap: 5px;
    border-radius: 16px;
  }

  .landing-hero-old-way {
    order: 1;
    min-height: 100%;
    padding: 7px;
    display: flex;
    flex-direction: column;
  }

  .landing-hero-old-bubble:last-child {
    display: none;
  }

  .landing-hero-old-bubble {
    max-width: 92%;
    margin-top: 5px;
    padding: 6px 7px;
    font-size: 0.5rem;
    line-height: 1.2;
  }

  .landing-hero-compare-label {
    margin-bottom: 4px;
    font-size: 0.46rem;
  }

  .landing-hero-new-way {
    order: 2;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }

  .landing-hero-new-header {
    padding: 4px 6px;
    font-size: 0.46rem;
  }

  .landing-hero-phone-frame {
    flex: 1 1 auto;
    height: 312px;
  }

  .landing-hero-phone-frame .landing-screen-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
  }
}

@media (max-width: 520px) {
  .landing-shell {
    width: min(var(--landing-shell), calc(100% - 16px));
  }

  .landing-topbar-inner {
    width: min(var(--landing-shell), calc(100% - 16px));
    gap: 8px;
  }

  .landing-logo-mark {
    width: 30px;
    height: 30px;
  }

  .landing-logo-mark img {
    width: 18px;
    height: 18px;
  }

  .landing-logo {
    gap: 8px;
  }

  .landing-logo-text {
    font-size: 0.78rem;
  }

  .landing-topbar-actions .landing-btn-sm {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .landing-hero {
    padding: 10px 0 22px;
  }

  .landing-hero-layout {
    grid-template-columns: minmax(0, 0.66fr) minmax(0, 1.34fr);
    gap: 8px;
    min-height: 332px;
    padding: 10px;
    border-radius: 18px;
  }

  .landing-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: var(--landing-hero-mobile-title-size, clamp(1.08rem, 5.2vw, 1.34rem));
    line-height: 0.92;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .landing-hero-body {
    font-size: 0.54rem;
    line-height: 1.16;
  }

  .landing-hero-cta {
    padding-top: 7px;
  }

  .landing-hero-cta .landing-btn {
    min-height: 28px;
    padding-inline: 7px;
    border-radius: 11px;
    font-size: 0.54rem;
  }

  .landing-hero-comparison-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px;
    gap: 4px;
    border-radius: 10px;
  }

  .landing-hero-compare-label,
  .landing-hero-new-header {
    font-size: 0.42rem;
  }

  .landing-hero-old-way {
    min-height: 100%;
    padding: 6px;
  }

  .landing-hero-old-bubble {
    max-width: 92%;
    margin-top: 4px;
    padding: 5px 6px;
    font-size: 0.46rem;
  }

  .landing-hero-phone-frame {
    height: 286px;
  }
}

.landing-feature-band {
  padding: 68px 0 62px;
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(17, 32, 52, 0.06);
  border-bottom: 1px solid rgba(17, 32, 52, 0.06);
}

.landing-feature-band-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.landing-feature-band-title {
  margin: 0;
  color: var(--landing-text);
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  font-size: clamp(1.82rem, 2.5vw, 2.36rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.landing-feature-band-body {
  max-width: 34rem;
  margin: 12px auto 0;
  color: var(--landing-text-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.landing-feature-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.landing-feature-band-card {
  min-width: 0;
  padding: 20px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 32, 52, 0.08);
  box-shadow: 0 12px 28px rgba(15, 39, 66, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.landing-feature-band-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 45, 75, 0.14);
  box-shadow: 0 16px 34px rgba(15, 39, 66, 0.1);
}

.landing-feature-band-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(19, 45, 75, 0.08);
}

.landing-feature-band-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #1e4e8c;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-feature-band-card h3 {
  margin: 0;
  color: var(--landing-text);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.landing-feature-band-card p {
  margin: 8px 0 0;
  color: var(--landing-text-soft);
  font-size: 0.84rem;
  line-height: 1.46;
}

.landing-filter-showcase {
  padding: 68px 0 72px;
  background: #ffffff;
}

.landing-filter-showcase-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 30px;
  background: #ffffff;
}

.landing-filter-showcase-media {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.landing-filter-showcase-screen {
  width: fit-content;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 32, 52, 0.12);
  box-shadow: 0 18px 46px rgba(15, 39, 66, 0.12);
  display: flex;
  flex-direction: column;
}

.landing-filter-showcase-screen-header {
  padding: 10px 14px;
  background: linear-gradient(180deg, #1a3859 0%, #132d4b 100%);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 0;
}

.landing-filter-showcase-screen-body {
  min-height: 0;
  padding: 0;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.landing-filter-showcase-screen .landing-screen-image {
  width: auto;
  max-width: 100%;
  height: 520px;
  max-height: 520px;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: top center;
}

.landing-filter-showcase-copy {
  max-width: 35rem;
  order: 2;
}

.landing-filter-showcase-media {
  order: 1;
}

.landing-filter-showcase-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.landing-filter-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--landing-text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.landing-filter-showcase-check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 1px;
}

.landing-filter-showcase-check svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #1e4e8c;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-reference-resolution {
  padding: 68px 0 72px;
  background: #ffffff;
}

.landing-reference-resolution-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
  padding: 30px 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fa 100%);
  border: 1px solid rgba(17, 32, 52, 0.06);
}

.landing-reference-resolution-copy {
  max-width: 35rem;
}

.landing-reference-resolution-copy .landing-feature-band-body {
  max-width: 32rem;
}

.landing-reference-resolution-cta {
  margin-top: 22px;
  align-self: flex-start;
}

.landing-reference-resolution-media,
.landing-volume-control-card-media {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.landing-reference-resolution-media {
  justify-content: center;
}

.landing-reference-resolution-screen,
.landing-volume-control-screen {
  width: fit-content;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(17, 32, 52, 0.12);
  box-shadow: 0 18px 46px rgba(15, 39, 66, 0.12);
  display: flex;
  flex-direction: column;
}

.landing-reference-resolution-screen-header,
.landing-volume-control-screen-header {
  padding: 10px 14px;
  background: linear-gradient(180deg, #1a3859 0%, #132d4b 100%);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.landing-reference-resolution-screen-body,
.landing-volume-control-screen-body {
  min-height: 0;
  padding: 0;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.landing-reference-resolution-screen .landing-screen-image {
  width: auto;
  max-width: 100%;
  height: 520px;
  max-height: 520px;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: top center;
}

.landing-volume-control {
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #132d4b 0%, #0f2238 100%);
  overflow: hidden;
}

.landing-volume-control-head {
  max-width: 54rem;
  margin: 0 auto 28px;
}

.landing-volume-control-head .landing-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.landing-volume-control-head .landing-eyebrow::before {
  background: rgba(255, 255, 255, 0.22);
}

.landing-volume-control-head .landing-section-title {
  color: #ffffff;
}

.landing-volume-control-head .landing-section-body {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.landing-volume-control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.landing-volume-control-card {
  height: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.landing-volume-control-card-head {
  margin-bottom: 18px;
  padding-inline: 2px;
}

.landing-volume-control-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-volume-control-card h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 27rem;
}

.landing-volume-control-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.52;
  max-width: 30rem;
}

.landing-volume-control-card-media {
  margin-top: auto;
  justify-content: center;
  align-items: flex-end;
}

.landing-volume-control-screen {
  width: auto;
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.landing-volume-control-screen .landing-screen-image {
  width: auto;
  max-width: 100%;
  height: 760px;
  max-height: 760px;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: top center;
}

.landing-volume-control-screen-header {
  display: none;
}

.landing-volume-control-screen-body {
  background: transparent;
  overflow: visible;
}

@media (max-width: 1200px) {
  .landing-feature-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-filter-showcase-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .landing-filter-showcase-copy {
    order: 1;
  }

  .landing-filter-showcase-media {
    order: 2;
  }

  .landing-filter-showcase-copy {
    max-width: 100%;
  }

  .landing-filter-showcase-screen {
    width: fit-content;
    max-width: 100%;
  }

  .landing-reference-resolution-layout {
    gap: 26px;
    padding: 26px 28px;
  }

  .landing-reference-resolution-screen .landing-screen-image {
    height: 470px;
    max-height: 470px;
  }

  .landing-volume-control-grid {
    gap: 14px;
  }

  .landing-volume-control-card {
    padding: 0;
  }

  .landing-volume-control-card h3 {
    font-size: 1.04rem;
  }

  .landing-volume-control-screen .landing-screen-image {
    height: 620px;
    max-height: 620px;
  }

  .landing-pricing-card-accent {
    transform: none;
  }
}

@media (max-width: 680px) {
  .landing-feature-band {
    padding: 42px 0 40px;
  }

  .landing-feature-band-head {
    margin-bottom: 18px;
  }

  .landing-feature-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-feature-band-card {
    padding: 14px 12px 12px;
    border-radius: 16px;
  }

  .landing-feature-band-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .landing-feature-band-icon svg {
    width: 16px;
    height: 16px;
  }

  .landing-feature-band-body {
    max-width: 22rem;
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .landing-filter-showcase {
    padding: 36px 0 40px;
  }

  .landing-filter-showcase-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    min-height: 308px;
    padding: 12px;
    border-radius: 20px;
  }

  .landing-filter-showcase-copy {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .landing-filter-showcase-media {
    align-items: flex-start;
  }

  .landing-filter-showcase-screen {
    width: 100%;
    min-height: 0;
    border-radius: 16px;
    box-shadow: 0 18px 46px rgba(15, 39, 66, 0.12);
  }

  .landing-filter-showcase-screen-header {
    padding: 4px 6px;
    font-size: 0.46rem;
    border-radius: 0;
  }

  .landing-filter-showcase-screen-body {
    flex: 1 1 auto;
  }

  .landing-filter-showcase-screen .landing-screen-image {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0 !important;
    object-fit: contain;
    object-position: top center;
  }

  .landing-filter-showcase-list {
    margin-top: 8px;
    gap: 7px;
  }

  .landing-filter-showcase-list li {
    gap: 7px;
    font-size: 0.62rem;
    line-height: 1.24;
  }

  .landing-filter-showcase-check {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .landing-reference-resolution {
    padding: 36px 0 40px;
  }

  .landing-reference-resolution-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    min-height: 308px;
    padding: 12px;
    border-radius: 20px;
  }

  .landing-reference-resolution-copy {
    order: 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .landing-reference-resolution-media {
    order: 1;
    justify-content: flex-start;
  }

  .landing-reference-resolution-cta {
    margin-top: 10px;
    min-height: 34px;
    padding-inline: 12px;
    font-size: 0.62rem;
  }

  .landing-reference-resolution-screen {
    width: 100%;
    border-radius: 16px;
  }

  .landing-reference-resolution-screen-header,
  .landing-volume-control-screen-header {
    padding: 4px 6px;
    font-size: 0.46rem;
  }

  .landing-reference-resolution-screen .landing-screen-image,
  .landing-volume-control-screen .landing-screen-image {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 0 !important;
    object-fit: contain;
    object-position: top center;
  }

  .landing-volume-control {
    padding: 40px 0 44px;
  }

  .landing-volume-control-head {
    margin-bottom: 18px;
  }

  .landing-volume-control-grid {
    gap: 10px;
  }

  .landing-volume-control-card {
    padding: 10px 10px 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 38px rgba(5, 11, 20, 0.2);
  }

  .landing-volume-control-chip {
    min-height: 24px;
    padding-inline: 8px;
    font-size: 0.54rem;
    background: rgba(19, 45, 75, 0.08);
    border: 0;
    color: #173759;
  }

  .landing-volume-control-card h3 {
    margin-top: 8px;
    font-size: 0.74rem;
    line-height: 1.12;
    color: var(--landing-text);
  }

  .landing-volume-control-card p {
    display: none;
  }

  .landing-volume-control-card-head {
    margin-bottom: 10px;
    padding-inline: 0;
  }

  .landing-volume-control-card-media {
    justify-content: flex-start;
  }

  .landing-volume-control-screen {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 32, 52, 0.12);
    box-shadow: 0 18px 46px rgba(15, 39, 66, 0.12);
  }

  .landing-volume-control-screen-header {
    display: block;
  }

  .landing-volume-control-screen-body {
    background: #ffffff;
    overflow: hidden;
  }

  .landing-feature-band-card h3 {
    font-size: 0.8rem;
    line-height: 1.06;
  }

  .landing-access-head .landing-section-body {
    max-width: 18rem;
    margin-inline: auto;
  }

  .landing-pricing-grid {
    margin-top: 18px;
    gap: 12px;
  }

  .landing-pricing-card {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .landing-pricing-price {
    font-size: 1.64rem;
  }

  .landing-pricing-price-suffix {
    font-size: 0.82rem;
  }

  .landing-pricing-approx {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  .landing-pricing-feature-list {
    margin: 14px 0 16px;
    gap: 8px;
  }

  .landing-pricing-feature-list li {
    padding-left: 14px;
    font-size: 0.78rem;
    line-height: 1.34;
  }

  .landing-pricing-feature-list li::before {
    width: 6px;
    height: 6px;
  }

  .landing-pricing-btn {
    min-height: 42px;
    font-size: 0.78rem;
  }

  .landing-pricing-badge {
    top: -10px;
    min-height: 24px;
    padding-inline: 10px;
    font-size: 0.56rem;
  }

  .landing-pricing-payments {
    gap: 8px;
  }

  .landing-pricing-payments-label {
    width: 100%;
    text-align: center;
    font-size: 0.72rem;
  }

  .landing-pricing-payments-row {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .landing-pricing-payments-chip {
    min-height: 46px;
    min-width: 70px;
    padding-inline: 12px;
    border-radius: 13px;
  }

  .landing-pricing-payments-chip img {
    height: 22px;
    max-width: 96px;
  }

  .landing-pricing-payments-chip-usdt img {
    height: 24px;
  }

  .landing-feature-band-card p {
    font-size: 0.7rem;
    line-height: 1.28;
  }
}

@media (max-width: 520px) {
  .landing-feature-band-title {
    font-size: clamp(1.24rem, 5.7vw, 1.42rem);
  }

  .landing-feature-band-body {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .landing-feature-band-card h3 {
    font-size: 0.72rem;
  }

  .landing-feature-band-card p,
  .landing-filter-showcase-list li {
    font-size: 0.62rem;
    line-height: 1.22;
  }

  .landing-feature-band-card {
    padding: 12px 10px 10px;
  }

  .landing-filter-showcase-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 290px;
    padding: 10px;
    border-radius: 18px;
  }

  .landing-reference-resolution-layout {
    padding: 10px;
    min-height: 290px;
    border-radius: 18px;
  }

  .landing-filter-showcase-screen-header,
  .landing-reference-resolution-screen-header,
  .landing-volume-control-screen-header {
    font-size: 0.42rem;
  }

  .landing-filter-showcase-check {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }

  .landing-reference-resolution-cta {
    min-height: 32px;
    padding-inline: 11px;
    font-size: 0.58rem;
  }

  .landing-volume-control-grid {
    gap: 8px;
  }

  .landing-volume-control-card {
    padding: 9px 9px 10px;
    border-radius: 16px;
  }

  .landing-volume-control-card h3 {
    font-size: 0.68rem;
  }

  .landing-pricing-card {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .landing-pricing-price {
    font-size: 1.46rem;
  }

  .landing-pricing-feature-list li {
    font-size: 0.72rem;
  }

  .landing-pricing-btn {
    min-height: 38px;
    font-size: 0.72rem;
  }
}

.landing-logo-mark {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  box-shadow: none;
}

.landing-logo-mark img {
  width: 31px;
  height: 31px;
}

.landing-logo-text {
  font-size: 1.53rem;
}

.landing-hero .landing-hero-title,
.landing-volume-control-head .landing-section-title {
  font-size: clamp(1.82rem, 2.5vw, 2.36rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.landing-hero .landing-hero-title {
  font-size: clamp(3.64rem, 5vw, 4.72rem);
  max-width: 8.2ch;
}

.landing-hero .landing-hero-body,
.landing-volume-control-head .landing-section-body {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.52;
}

.landing-hero .landing-hero-body {
  max-width: 29rem;
}

.landing-footer {
  padding: 24px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #f2ede6 0%, #0d1726 30px, #08101c 100%);
}

.landing-footer-inner {
  padding-top: 14px;
}

@media (max-width: 680px) {
  .landing-logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    box-shadow: none;
  }

  .landing-logo-mark img {
    width: 23px;
    height: 23px;
  }

  .landing-logo-text {
    font-size: 1.08rem;
  }

  .landing-topbar-inner {
    flex-wrap: nowrap;
  }

  .landing-topbar-actions {
    gap: 5px;
  }

  .landing-topbar-actions .landing-nav-link {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 16px;
    border: 1px solid rgba(17, 32, 52, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(8, 16, 28, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .landing-hero .landing-hero-title,
  .landing-volume-control-head .landing-section-title {
    font-size: clamp(1.34rem, 6.5vw, 1.82rem);
    line-height: 0.98;
  }

  .landing-hero .landing-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: var(--landing-hero-mobile-title-size, clamp(1.34rem, 6.5vw, 1.82rem));
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .landing-hero .landing-hero-body,
  .landing-feature-band-body,
  .landing-filter-showcase-copy .landing-feature-band-body,
  .landing-reference-resolution-copy .landing-feature-band-body,
  .landing-volume-control-head .landing-section-body {
    font-size: 0.76rem;
    line-height: 1.28;
  }

  .landing-volume-control-head .landing-section-body {
    max-width: 20rem;
  }
}

@media (max-width: 520px) {
  .landing-logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
    box-shadow: none;
  }

  .landing-logo-mark img {
    width: 23px;
    height: 23px;
  }

  .landing-logo-text {
    font-size: 1.08rem;
  }

  .landing-topbar-actions .landing-nav-link {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .landing-topbar-actions .landing-btn-sm {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.66rem;
  }

  .landing-hero .landing-hero-title,
  .landing-volume-control-head .landing-section-title {
    font-size: clamp(1.16rem, 6vw, 1.52rem);
  }

  .landing-hero .landing-hero-title {
    width: 100%;
    max-width: 100%;
    font-size: var(--landing-hero-mobile-title-size, clamp(1.16rem, 6vw, 1.52rem));
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
  }

  .landing-hero .landing-hero-body,
  .landing-feature-band-body,
  .landing-filter-showcase-copy .landing-feature-band-body,
  .landing-reference-resolution-copy .landing-feature-band-body,
  .landing-volume-control-head .landing-section-body {
    font-size: 0.72rem;
    line-height: 1.22;
  }
}
