/* MetaVPN Landing — Apple × Stripe × Linear */

:root {
  --lp-bg: #fafafa;
  --lp-bg-elevated: #ffffff;
  --lp-bg-muted: #f5f5f7;
  --lp-text: #0a0a0b;
  --lp-text-secondary: #52525b;
  --lp-muted: #71717a;
  --lp-border: rgba(0, 0, 0, 0.08);
  --lp-border-strong: rgba(0, 0, 0, 0.12);
  --lp-accent: #0071e3;
  --lp-accent-hover: #0077ed;
  --lp-accent-soft: rgba(0, 113, 227, 0.08);
  --lp-accent-glow: rgba(0, 113, 227, 0.25);
  --lp-green: #16a34a;
  --lp-radius: 1rem;
  --lp-radius-lg: 1.25rem;
  --lp-radius-xl: 1.75rem;
  --lp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --lp-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --lp-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
  --lp-shadow-xl: 0 32px 100px rgba(0, 0, 0, 0.12);
  --lp-nav-h: 3.75rem;
  --lp-font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Helvetica Neue', sans-serif;
  --lp-mono: 'SF Mono', ui-monospace, monospace;
  --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lp-max: 76rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body.lp {
  margin: 0;
  font-family: var(--lp-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}

body.lp.lp-menu-open {
  overflow: hidden;
}

.lp main {
  overflow-x: clip;
  max-width: 100%;
}

.lp a:not(.lp-btn) { color: inherit; text-decoration: none; }

.lp-btn,
a.lp-btn,
a.lp-btn:visited,
a.lp-btn:hover {
  text-decoration: none;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-width: 0;
}

.lp-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  height: var(--lp-nav-h);
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--lp-border);
}

.lp-nav__inner {
  max-width: var(--lp-max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-container { padding: 0 2rem; }
  .lp-nav__inner { padding: 0 2rem; }
}

.lp-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
}

.lp-nav__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.lp-nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
}

.lp-nav__links a {
  transition: color 0.2s;
}

.lp-nav__links a:hover { color: var(--lp-text); }

.lp-nav__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lp-nav__burger {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.625rem;
  background: transparent;
  cursor: pointer;
  color: var(--lp-text);
}

.lp-nav__burger:hover { background: var(--lp-bg-muted); }

.lp-nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--lp-nav-h);
  left: 0;
  right: 0;
  background: var(--lp-bg-elevated);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-lg);
  padding: 0.375rem 1rem 1.25rem;
  z-index: 99;
  max-height: calc(100dvh - var(--lp-nav-h));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lp-nav__mobile.open {
  display: flex;
}

.lp-nav__mobile-links a {
  display: block;
  padding: 0.8125rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--lp-text-secondary);
  border-bottom: 1px solid var(--lp-border);
  transition: color 0.15s;
}

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

.lp-nav__mobile-links a:last-child {
  border-bottom: none;
}

.lp-nav__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem 0.5rem 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--lp-border);
}

.lp-nav__mobile-login {
  display: block;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-text-secondary);
}

.lp-nav__mobile-login:hover {
  color: var(--lp-text);
}

.lp-nav__mobile-actions .lp-btn {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.lp-nav__backdrop {
  display: none;
  position: fixed;
  inset: var(--lp-nav-h) 0 0;
  background: rgba(10, 10, 11, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 98;
}

.lp-nav__backdrop.open {
  display: block;
}

@media (min-width: 900px) {
  .lp-nav__links { display: flex; }
  .lp-nav__actions { display: flex; }
  .lp-nav__burger { display: none; }
}

/* ── Buttons ── */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.5rem;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s var(--lp-ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.lp-btn:active { transform: scale(0.98); }

.lp-btn--primary,
a.lp-btn--primary,
a.lp-btn--primary:visited,
a.lp-btn--primary:hover {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 4px 14px var(--lp-accent-glow);
}

.lp-btn--primary:hover,
a.lp-btn--primary:hover {
  background: var(--lp-accent-hover);
  box-shadow: 0 8px 24px var(--lp-accent-glow);
}

.lp-btn--ghost,
a.lp-btn--ghost,
a.lp-btn--ghost:visited {
  background: var(--lp-bg-elevated);
  color: var(--lp-text);
  border: 1px solid var(--lp-border-strong);
  box-shadow: var(--lp-shadow-sm);
}

.lp-btn--ghost:hover,
a.lp-btn--ghost:hover { background: var(--lp-bg-muted); }

.lp-btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.lp-btn--block { width: 100%; }

/* ── Hero ── */
.lp-hero {
  position: relative;
  padding: calc(var(--lp-nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .lp-hero {
    overflow: visible;
  }
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 113, 227, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(90, 200, 250, 0.08), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--lp-bg) 100%);
}

.lp-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.lp-hero__content,
.lp-hero__visual {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 1023px) {
  .lp-hero__visual {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lp-hero {
    padding: calc(var(--lp-nav-h) + 4rem) 0 5rem;
  }
  .lp-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4rem;
  }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  border-radius: 9999px;
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lp-text-secondary);
  box-shadow: var(--lp-shadow-sm);
  margin-bottom: 1.25rem;
}

.lp-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  animation: lp-pulse 2s ease infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.lp-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.lp-hero__title span {
  background: linear-gradient(135deg, var(--lp-accent) 0%, #5ac8fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero__desc {
  margin: 1.25rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

.lp-hero__points {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
  max-width: 100%;
}

.lp-hero__points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-hero__point-text {
  flex: 1 1 0;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lp-hero__points li i {
  color: var(--lp-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.lp-check {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--lp-accent);
}

.lp-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lp-hero__cta .lp-btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .lp-hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .lp-hero__cta .lp-btn {
    width: auto;
  }
}

.lp-hero__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .lp-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.lp-stat {
  min-width: 0;
  padding: 1rem 1.125rem;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(8px);
}

.lp-stat__value {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-stat__label {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

/* ── Hero scene illustration ── */
.lp-hero__visual {
  position: relative;
  min-height: 22rem;
}

@media (min-width: 1024px) {
  .lp-hero__visual { min-height: 32rem; }
}

.lp-hero-scene {
  position: relative;
  width: 100%;
  max-width: min(36rem, 100%);
  margin: 0 auto;
  min-height: 22rem;
  overflow: visible;
}

.lp-hero-scene__ambient {
  position: absolute;
  inset: 10% 0 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0, 113, 227, 0.14), transparent 70%);
  pointer-events: none;
}

.lp-hero-scene__dash {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--lp-shadow-xl);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.7s var(--lp-ease);
}

.lp-hero-scene:hover .lp-hero-scene__dash {
  transform: perspective(1400px) rotateY(-2deg) rotateX(0deg);
}

.lp-hero-scene__dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.7rem 0.875rem;
  background: linear-gradient(180deg, #f5f5f7, #ececef);
  border-bottom: 1px solid var(--lp-border);
}

.lp-hero-scene__dot {
  width: 0.5625rem;
  height: 0.5625rem;
  border-radius: 50%;
}

.lp-hero-scene__dot--r { background: #ff5f57; }
.lp-hero-scene__dot--y { background: #febc2e; }
.lp-hero-scene__dot--g { background: #28c840; }

.lp-hero-scene__dash-url {
  flex: 1;
  margin-left: 0.375rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 0.625rem;
  color: var(--lp-muted);
  font-family: var(--lp-mono);
  border: 1px solid var(--lp-border);
}

.lp-hero-scene__dash-body {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  min-height: 17rem;
}

.lp-hero-scene__dash-nav {
  padding: 0.75rem 0.375rem;
  background: rgba(245, 245, 247, 0.9);
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.lp-hero-scene__nav-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
  margin-bottom: 0.25rem;
}

.lp-hero-scene__nav-item {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
}

.lp-hero-scene__nav-item--on {
  background: var(--lp-accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.18);
}

.lp-hero-scene__dash-main {
  padding: 0.875rem;
}

.lp-hero-scene__dash-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.lp-hero-scene__dash-eyebrow {
  margin: 0;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-hero-scene__dash-title {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
}

.lp-hero-scene__pill {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 600;
  white-space: nowrap;
}

.lp-hero-scene__pill--green {
  background: rgba(22, 163, 74, 0.1);
  color: var(--lp-green);
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.lp-hero-scene__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4375rem;
}

.lp-hero-scene__metric {
  padding: 0.5rem 0.5625rem;
  border-radius: 0.625rem;
  background: rgba(245, 245, 247, 0.85);
  border: 1px solid var(--lp-border);
}

.lp-hero-scene__metric-label {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-hero-scene__metric strong {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-hero-scene__metric-sub {
  display: block;
  margin-top: 0.0625rem;
  font-size: 0.5rem;
  color: var(--lp-muted);
}

.lp-hero-scene__chart-card {
  margin-top: 0.625rem;
  padding: 0.5rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 113, 227, 0.1);
}

.lp-hero-scene__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.lp-hero-scene__chart-val {
  font-family: var(--lp-mono);
  font-size: 0.5rem;
  color: var(--lp-accent);
}

.lp-hero-scene__chart {
  display: block;
  width: 100%;
  height: 3.5rem;
}

.lp-hero-scene__phone {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 10.5rem;
  animation: lp-phone-float 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.18));
}

@media (min-width: 1024px) {
  .lp-hero__visual {
    overflow: visible;
  }

  .lp-hero-scene {
    max-width: 100%;
    min-height: 24rem;
    padding-bottom: 1.25rem;
  }

  .lp-hero-scene__phone {
    right: 0.5rem;
    bottom: 0.25rem;
    width: 11.5rem;
  }
}

@keyframes lp-phone-float {
  0%, 100% { transform: translateY(0) rotate(7deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
}

.lp-hero-scene__phone-frame {
  padding: 0.45rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, #3a3a3c, #1d1d1f 40%, #2c2c2e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.25);
  transform: rotate(7deg);
}

.lp-hero-scene__phone-island {
  width: 3.25rem;
  height: 0.875rem;
  margin: 0.375rem auto 0.5rem;
  border-radius: 999px;
  background: #0a0a0b;
}

.lp-hero-scene__phone-screen {
  border-radius: 1.55rem;
  background: #fff;
  overflow: hidden;
  min-height: 15rem;
}

.lp-hero-scene__happ-head {
  padding: 0.5rem 0.75rem 0.625rem;
  text-align: center;
  background: linear-gradient(180deg, #f5f5f7, #fff);
}

.lp-hero-scene__happ-title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
}

.lp-hero-scene__happ-sub {
  margin: 0.125rem 0 0;
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.lp-hero-scene__happ-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0.625rem 0.5rem;
  padding: 0.4375rem 0.5rem;
  border-radius: 0.625rem;
  background: var(--lp-accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.12);
}

.lp-hero-scene__happ-card-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}

.lp-hero-scene__happ-card p {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
}

.lp-hero-scene__happ-card span {
  font-size: 0.5rem;
  color: var(--lp-muted);
}

.lp-hero-scene__happ-list {
  list-style: none;
  margin: 0;
  padding: 0 0.5rem 0.75rem;
}

.lp-hero-scene__happ-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.4375rem 0.5rem;
  border-radius: 0.5625rem;
  margin-bottom: 0.25rem;
}

.lp-hero-scene__happ-row--on {
  background: rgba(22, 163, 74, 0.08);
}

.lp-hero-scene__happ-flag {
  font-size: 0.875rem;
  line-height: 1;
}

.lp-hero-scene__happ-row strong {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
}

.lp-hero-scene__happ-row span {
  font-size: 0.5rem;
  color: var(--lp-muted);
}

.lp-hero-scene__happ-toggle {
  width: 1.75rem;
  height: 1rem;
  border-radius: 999px;
  background: #e4e4e7;
  position: relative;
}

.lp-hero-scene__happ-toggle span {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.lp-hero-scene__happ-toggle--on {
  background: var(--lp-green);
}

.lp-hero-scene__happ-toggle--on span {
  transform: translateX(0.75rem);
}

/* Legacy mock (showcase) */
.lp-mock-stack {
  position: relative;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto;
}

.lp-mock-dash {
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-xl);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s var(--lp-ease);
}

.lp-mock-stack:hover .lp-mock-dash {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
}

.lp-mock-dash__bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  background: var(--lp-bg-muted);
  border-bottom: 1px solid var(--lp-border);
}

.lp-mock-dash__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #d4d4d8;
}

.lp-mock-dash__dot:nth-child(1) { background: #fca5a5; }
.lp-mock-dash__dot:nth-child(2) { background: #fde047; }
.lp-mock-dash__dot:nth-child(3) { background: #86efac; }

.lp-mock-dash__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  font-family: var(--lp-mono);
}

.lp-mock-dash__body {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  min-height: 16rem;
}

.lp-mock-dash__sidebar {
  padding: 1rem 0.5rem;
  background: #fafafa;
  border-right: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.lp-mock-dash__nav-item {
  height: 2rem;
  margin: 0 0.375rem;
  border-radius: 0.5rem;
  background: #eee;
}

.lp-mock-dash__nav-item--active {
  background: var(--lp-accent-soft);
  border: 1px solid rgba(0, 113, 227, 0.15);
}

.lp-mock-dash__main {
  padding: 1rem;
}

.lp-mock-dash__greeting {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.lp-mock-dash__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.lp-mock-dash__card {
  padding: 0.625rem;
  border-radius: 0.625rem;
  background: var(--lp-bg-muted);
  border: 1px solid var(--lp-border);
}

.lp-mock-dash__card-label {
  font-size: 0.5625rem;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-mock-dash__card-value {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.125rem;
}

.lp-mock-dash__chart {
  margin-top: 0.75rem;
  height: 4rem;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, var(--lp-accent-soft), transparent);
  border: 1px solid rgba(0, 113, 227, 0.1);
  position: relative;
  overflow: hidden;
}

.lp-mock-dash__chart::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 60%;
  background: linear-gradient(90deg, transparent, var(--lp-accent) 30%, #5ac8fa 70%, transparent);
  opacity: 0.35;
  clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 55%, 75% 25%, 90% 45%, 100% 20%, 100% 100%, 0 100%);
}

.lp-mock-phone {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  width: 9.5rem;
  padding: 0.5rem;
  border-radius: 1.75rem;
  background: #1d1d1f;
  box-shadow: var(--lp-shadow-lg);
  transform: rotate(6deg);
  transition: transform 0.6s var(--lp-ease);
}

@media (min-width: 640px) {
  .lp-mock-phone {
    width: 11rem;
    right: -1rem;
    bottom: -1.5rem;
  }
}

.lp-mock-stack:hover .lp-mock-phone {
  transform: rotate(3deg) translateY(-4px);
}

.lp-mock-phone__screen {
  border-radius: 1.35rem;
  background: #fff;
  overflow: hidden;
  min-height: 14rem;
}

.lp-mock-phone__header {
  padding: 1.25rem 0.75rem 0.625rem;
  background: linear-gradient(180deg, #f5f5f7, #fff);
  text-align: center;
}

.lp-mock-phone__header h4 {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
}

.lp-mock-phone__header p {
  margin: 0.125rem 0 0;
  font-size: 0.5625rem;
  color: var(--lp-muted);
}

.lp-mock-phone__servers {
  padding: 0.5rem 0.625rem 0.75rem;
}

.lp-mock-phone__server {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.5rem;
  border-radius: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.5625rem;
  font-weight: 500;
}

.lp-mock-phone__server--on {
  background: rgba(22, 163, 74, 0.08);
  color: var(--lp-green);
}

.lp-mock-phone__flag {
  font-size: 0.75rem;
}

/* ── Sections ── */
.lp-section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .lp-section { padding: 6.5rem 0; }
}

.lp-section--muted {
  background: var(--lp-bg-muted);
  border-block: 1px solid var(--lp-border);
}

.lp-section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.lp-section__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-accent);
}

.lp-section__title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lp-section__desc {
  margin: 0.875rem 0 0;
  font-size: 1.0625rem;
  color: var(--lp-text-secondary);
}

/* ── Showcase ── */
.lp-showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .lp-showcase { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.lp-showcase__copy h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-showcase__copy p {
  margin: 1rem 0 0;
  color: var(--lp-text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

.lp-showcase__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-showcase__list li {
  display: flex;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
}

.lp-showcase__list i {
  color: var(--lp-green);
  margin-top: 0.2rem;
}

.lp-showcase__frame {
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  background: var(--lp-bg-elevated);
}

/* ── Pricing ── */
.lp-pricing {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .lp-pricing { grid-template-columns: repeat(3, 1fr); }
}

.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

.lp-plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-plan--featured {
  border: 2px solid var(--lp-accent);
  box-shadow: 0 12px 48px var(--lp-accent-glow);
}

.lp-plan__badge {
  position: absolute;
  top: -0.6875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  background: var(--lp-accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-plan__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.lp-plan__tagline {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-plan__price-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.lp-plan__price {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-plan__currency {
  font-size: 1.25rem;
  font-weight: 600;
}

.lp-plan__period {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
}

.lp-plan__per-month {
  margin: 0.375rem 0 0;
  font-size: 0.8125rem;
  color: var(--lp-green);
  font-weight: 500;
}

.lp-plan__price-old {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--lp-muted);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.lp-plan__discount {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
}

.lp-pricing-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--lp-muted);
  padding: 2rem 0;
}

.lp-plan__features {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.lp-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.4375rem 0;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
}

.lp-plan__features i {
  color: var(--lp-accent);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}

/* ── FAQ ── */
.lp-faq {
  max-width: 48rem;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid var(--lp-border);
}

.lp-faq__item:first-child {
  border-top: 1px solid var(--lp-border);
}

.lp-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--lp-text);
  cursor: pointer;
}

.lp-faq__q i {
  flex-shrink: 0;
  color: var(--lp-muted);
  transition: transform 0.3s var(--lp-ease);
}

.lp-faq__item.open .lp-faq__q i {
  transform: rotate(180deg);
}

.lp-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--lp-ease);
}

.lp-faq__item.open .lp-faq__a {
  max-height: 20rem;
}

.lp-faq__a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
  line-height: 1.65;
}

/* ── CTA band ── */
.lp-cta-band {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a2e 100%);
  color: #fff;
  text-align: center;
}

.lp-cta-band h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.lp-cta-band p {
  margin: 0.875rem auto 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.0625rem;
}

.lp-cta-band .lp-btn {
  margin-top: 1.75rem;
}

.lp-cta-band .lp-btn--primary {
  background: #fff;
  color: var(--lp-text);
  box-shadow: none;
}

.lp-cta-band .lp-btn--primary:hover {
  background: #f5f5f7;
}

/* ── Footer ── */
.lp-footer {
  padding: 4rem 0 2rem;
  background: var(--lp-bg-elevated);
  border-top: 1px solid var(--lp-border);
}

.lp-footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .lp-footer__grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
  }
}

.lp-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  max-width: 18rem;
  line-height: 1.6;
}

.lp-footer__col h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-muted);
}

.lp-footer__col a {
  display: block;
  padding: 0.3125rem 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  transition: color 0.2s;
}

.lp-footer__col a:hover { color: var(--lp-accent); }

.lp-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lp-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

@media (min-width: 640px) {
  .lp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── Locations map ── */
.lp-map-wrap {
  margin-bottom: 2rem;
  border-radius: var(--lp-radius-xl);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  background: var(--lp-bg-elevated);
}

.lp-map {
  display: block;
  width: 100%;
  height: auto;
}

.lp-map__land {
  fill: #d8dee8;
  stroke: #c4cdd8;
  stroke-width: 0.75;
  stroke-linejoin: round;
}

.lp-map__continents .lp-map__land:nth-child(odd) {
  fill: #dce2eb;
}

.lp-map__link {
  animation: lp-map-dash 12s linear infinite;
}

@keyframes lp-map-dash {
  to { stroke-dashoffset: -48; }
}

.lp-map__ring {
  transform-origin: center;
  animation: lp-map-ring 2.8s ease-out infinite;
  opacity: 0;
}

.lp-map__ring--2 {
  animation-delay: 1.4s;
}

@keyframes lp-map-ring {
  0% { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Locations cards ── */
.lp-locations {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lp-locations { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.lp-location {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
  overflow: hidden;
}

.lp-location:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-location__art svg {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.875rem;
}

.lp-location__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-location__role {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lp-accent);
}

.lp-location__text {
  margin: 0.625rem 0 0;
  font-size: 0.875rem;
  color: var(--lp-text-secondary);
  line-height: 1.6;
}

/* ── Network diagram ── */
.lp-network {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1rem 1rem;
}

.lp-network__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lp-network__path--flow {
  animation: lp-net-flow 2s linear infinite;
}

@keyframes lp-net-flow {
  to { stroke-dashoffset: -40; }
}

.lp-network__nodes {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.lp-network__node {
  width: min(100%, 14rem);
  padding: 1.125rem 1.25rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--lp-ease), box-shadow 0.3s;
}

.lp-network__node:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-network__node--hub {
  border-color: rgba(0, 113, 227, 0.25);
  box-shadow: 0 8px 32px var(--lp-accent-glow);
}

.lp-network__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.625rem;
  border-radius: 0.875rem;
  background: var(--lp-accent-soft);
  color: var(--lp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.lp-network__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.lp-network__icon img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  object-fit: contain;
  display: block;
}

.lp-network__icon--hub {
  background: transparent;
}

.lp-network__node h3 {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
}

.lp-network__node p {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-network__servers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}

@media (max-width: 639px) {
  .lp-network__servers { grid-template-columns: 1fr; max-width: 14rem; }
}

.lp-network__node--ru .lp-network__icon { background: rgba(0, 113, 227, 0.1); }
.lp-network__node--de .lp-network__icon { background: rgba(234, 179, 8, 0.12); }
.lp-network__node--nl .lp-network__icon { background: rgba(249, 115, 22, 0.12); }

/* ── Apps ── */
.lp-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-apps { grid-template-columns: repeat(4, 1fr); }
}

.lp-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--lp-border);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--lp-ease), border-color 0.35s, box-shadow 0.35s;
}

.lp-app:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: var(--lp-shadow-lg);
}

.lp-app__logo {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  transition: transform 0.35s var(--lp-ease);
}

.lp-app:hover .lp-app__logo {
  transform: scale(1.08);
}

.lp-app__logo svg,
.lp-app__logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.lp-app__name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}

.lp-app__platform {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

/* ── Benefits bento ── */
.lp-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lp-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-benefits {
    grid-template-columns: repeat(6, 1fr);
  }
  .lp-benefit--wide {
    grid-column: span 2;
  }
  .lp-benefit:not(.lp-benefit--wide) {
    grid-column: span 2;
  }
}

.lp-benefit {
  padding: 1.75rem;
  border-radius: var(--lp-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-sm);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--lp-ease), box-shadow 0.35s;
}

.lp-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-lg);
}

.lp-benefit__visual {
  height: 5rem;
  margin-bottom: 1rem;
  border-radius: 0.875rem;
  background: linear-gradient(180deg, rgba(0, 113, 227, 0.04), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-benefit__visual svg {
  width: 100%;
  max-width: 12rem;
  height: auto;
}

.lp-benefit__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-benefit__text {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: var(--lp-text-secondary);
  line-height: 1.6;
}

/* ── Reveal ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--lp-ease), transform 0.7s var(--lp-ease);
}

.lp-reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive: mobile / tablet / desktop ── */

/* Tablet: 640–1023px */
@media (min-width: 640px) and (max-width: 1023px) {
  .lp-hero {
    padding: calc(var(--lp-nav-h) + 2.5rem) 0 3.5rem;
  }

  .lp-hero__inner {
    gap: 2.5rem;
  }

  .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene:hover .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene__phone {
    right: 0;
    bottom: -0.75rem;
    width: 11.5rem;
  }

  .lp-section {
    padding: 4.5rem 0;
  }

  .lp-section__head {
    margin-bottom: 2.5rem;
  }

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

  .lp-pricing .lp-plan--featured {
    grid-column: 1 / -1;
    max-width: 26rem;
    margin-inline: auto;
    width: 100%;
  }

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

  .lp-locations .lp-location:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.625rem);
    margin-inline: auto;
    width: 100%;
  }

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

  .lp-footer__brand {
    grid-column: 1 / -1;
  }

  .lp-showcase {
    gap: 2.5rem;
  }

  .lp-network {
    padding: 1.5rem 0.5rem 0.5rem;
  }

  .lp-cta-band {
    padding: 3.5rem 0;
  }
}

/* Mobile: up to 639px */
@media (max-width: 639px) {
  :root {
    --lp-nav-h: 3.5rem;
  }

  .lp-container {
    padding: 0 1rem;
  }

  .lp-nav__inner {
    padding: 0 1rem;
  }

  .lp-nav__brand {
    font-size: 1rem;
  }

  .lp-nav__mobile {
    padding: 0.375rem 1rem 1.25rem;
  }

  .lp-nav__mobile-links a {
    padding-inline: 0.25rem;
  }

  .lp-nav__mobile-actions {
    padding-inline: 0.25rem;
  }

  .lp-hero {
    padding: calc(var(--lp-nav-h) + 1.75rem) 0 2.5rem;
  }

  .lp-hero__inner {
    gap: 2rem;
  }

  .lp-hero__content {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .lp-hero__title {
    overflow-wrap: anywhere;
  }

  .lp-hero__desc {
    overflow-wrap: anywhere;
  }

  .lp-hero__badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .lp-hero__title {
    font-size: clamp(2rem, 9vw, 2.625rem);
  }

  .lp-hero__desc {
    font-size: 1rem;
    max-width: none;
  }

  .lp-hero__points li {
    font-size: 0.875rem;
  }

  .lp-hero__cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .lp-hero__cta .lp-btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

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

  .lp-stats {
    gap: 0.625rem;
    margin-top: 2rem;
  }

  .lp-stat {
    padding: 0.875rem;
  }

  .lp-stat__value {
    font-size: 1.25rem;
  }

  .lp-hero__visual {
    min-height: auto;
    overflow: hidden;
    margin-top: 0.5rem;
  }

  .lp-hero-scene {
    min-height: auto;
    max-width: 100%;
  }

  .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene:hover .lp-hero-scene__dash {
    transform: none;
  }

  .lp-hero-scene__dash-body {
    grid-template-columns: 2.75rem 1fr;
    min-height: 15rem;
  }

  .lp-hero-scene__dash-url {
    font-size: 0.5625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lp-hero-scene__phone {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 1.25rem auto 0;
    width: min(72%, 11rem);
    animation: none;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.14));
  }

  .lp-hero-scene__phone-frame {
    transform: none;
  }

  .lp-section {
    padding: 3.25rem 0;
  }

  .lp-section__head {
    margin-bottom: 2rem;
    text-align: left;
  }

  .lp-section__title {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }

  .lp-section__desc {
    font-size: 0.9375rem;
  }

  .lp-location,
  .lp-app,
  .lp-plan,
  .lp-benefit {
    padding: 1.375rem 1.25rem;
  }

  .lp-plan--featured {
    margin-top: 0.75rem;
  }

  .lp-plan__price {
    font-size: 2.25rem;
  }

  .lp-plan__price-row {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }

  .lp-plan__period {
    width: 100%;
    margin-left: 0;
  }

  .lp-app {
    padding: 1.25rem 0.875rem;
  }

  .lp-app__logo {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
  }

  .lp-app__name {
    font-size: 0.875rem;
  }

  .lp-app__platform {
    font-size: 0.6875rem;
  }

  .lp-showcase__copy h3 {
    font-size: 1.375rem;
  }

  .lp-showcase__frame {
    border-radius: var(--lp-radius-lg);
  }

  .lp-mock-dash__body {
    grid-template-columns: 3.25rem 1fr;
    min-height: 13rem;
  }

  .lp-faq__q {
    font-size: 0.9375rem;
    padding: 1rem 0;
  }

  .lp-cta-band {
    padding: 3rem 0;
    text-align: left;
  }

  .lp-cta-band h2 {
    font-size: clamp(1.5rem, 7vw, 1.875rem);
  }

  .lp-cta-band p {
    font-size: 0.9375rem;
    margin-left: 0;
    margin-right: 0;
  }

  .lp-cta-band .lp-btn {
    width: 100%;
    white-space: normal;
  }

  .lp-footer {
    padding: 3rem 0 1.5rem;
  }

  .lp-footer__grid {
    gap: 2rem;
  }

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

  .lp-btn {
    white-space: normal;
  }

  .lp-btn--lg {
    padding: 0.9375rem 1.25rem;
    font-size: 0.9375rem;
  }

  .lp-network__svg {
    opacity: 0.35;
  }

  .lp-network__node {
    width: 100%;
    max-width: 16rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .lp-hero__title {
    font-size: 1.875rem;
  }

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

  .lp-apps {
    grid-template-columns: 1fr;
    max-width: 16rem;
    margin-inline: auto;
  }
}

/* Safe areas (notched devices) */
@supports (padding: max(0px)) {
  .lp-nav__inner {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lp-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lp-footer__bottom {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* ── Reveal enhanced ── */
.lp-reveal[data-reveal-delay] {
  --reveal-delay: attr(data-reveal-delay number, 0);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-reveal { opacity: 1; transform: none; transition: none; }
  .lp-location:hover, .lp-plan:hover, .lp-benefit:hover, .lp-app:hover { transform: none; }
  .lp-hero__badge-dot { animation: none; }
  .lp-hero-scene__phone { animation: none; }
  .lp-map__ring { animation: none; }
  .lp-network__path--flow { animation: none; }
}
