/* ── Reset & Variables ───────────────────────────────────────── */
:root {
  --bg: #060608;
  --bg2: rgba(255,255,255,0.03);
  --bg3: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.14);
  --accent: #ff4500;
  --accent2: #ff8c00;
  --grad: linear-gradient(135deg, #ff4500 0%, #ff6a00 50%, #ff8c00 100%);
  --grad-radial: radial-gradient(ellipse, #ff4500, #ff8c00);
  --text: #f5f5f7;
  --muted: #8e8e93;
  --radius: 24px;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Grid texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,69,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,69,0,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

/* Content above texture */
body > * { position: relative; z-index: 1; }

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

/* ── Typography ──────────────────────────────────────────────── */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Glass ───────────────────────────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ── Orb ─────────────────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.3s ease;
  border: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover  { transform: scale(1.04); }
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 0 32px rgba(255,69,0,0.4), 0 4px 20px rgba(0,0,0,0.4);
  position: relative;
}

/* Pulse ring on primary button */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: transparent;
  border: 2px solid rgba(255,69,0,0.5);
  animation: btn-pulse 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
}

@keyframes btn-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  60%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

.btn-primary:hover { box-shadow: 0 0 60px rgba(255,69,0,0.6), 0 8px 30px rgba(0,0,0,0.5); }

.btn-outline {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(6,6,8,0.75);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-cta { padding: 11px 22px; font-size: 14px; }

/* ── Sections ────────────────────────────────────────────────── */
section {
  padding: 100px 20px;
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero-wrap {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 120px 20px 60px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,69,0,0.1);
  border: 1px solid rgba(255,69,0,0.3);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(52px, 11vw, 88px);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-desc {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.hero-trust-dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

/* ── Phone mockup ────────────────────────────────────────────── */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero orb behind phone */
.hero-orb-1 {
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.22), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.hero-orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,140,0,0.18), transparent 70%);
  top: 20%; right: -20px;
  filter: blur(50px);
}

.phone {
  position: relative;
  width: 260px;
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}

.phone-frame {
  background: linear-gradient(145deg, #242424, #141414);
  border-radius: 44px;
  border: 1.5px solid rgba(255,255,255,0.14);
  padding: 12px 8px 16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px rgba(0,0,0,0.9),
    0 0 80px rgba(255,69,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
  width: 80px; height: 24px;
  background: #141414;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  line-height: 0;
}

.phone-screen img { width: 100%; border-radius: 28px; }

.phone::before {
  content: '';
  position: absolute;
  inset: -50px;
  background: radial-gradient(ellipse at center, rgba(255,69,0,0.12), transparent 65%);
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

/* Second phone */
.phone-2 {
  position: absolute;
  top: 36px; right: -90px;
  width: 200px;
  opacity: 0.45;
  transform: rotate(7deg);
  animation: float2 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes float  { 0%,100%{ transform:translateY(0) rotate(-1.5deg) } 50%{ transform:translateY(-14px) rotate(-1.5deg) } }
@keyframes float2 { 0%,100%{ transform:translateY(0) rotate(7deg) }    50%{ transform:translateY(-10px) rotate(7deg) } }
@keyframes glow-pulse { 0%,100%{ opacity:.6 } 50%{ opacity:1 } }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-wrap {
  padding: 0 20px 80px;
  max-width: 1160px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 40px 28px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ── Features ────────────────────────────────────────────────── */
.features-header { text-align: center; margin-bottom: 70px; }

.features-header h2 {
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.features-header p { font-size: 17px; color: var(--muted); max-width: 480px; margin: 0 auto; }

.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
  position: relative;
}

.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { flex-direction: row-reverse; }

.feature-content { flex: 1; }

.feature-tag {
  display: inline-block;
  background: rgba(255,69,0,0.12);
  color: var(--accent);
  border: 1px solid rgba(255,69,0,0.25);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.feature-content h3 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 14px;
}

.feature-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.feature-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.feature-points li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--grad);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
}

.feature-visual { flex-shrink: 0; }

.feature-phone {
  width: 230px;
  background: linear-gradient(145deg, #222, #131313);
  border-radius: 38px;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 10px 7px 13px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.7),
    0 0 40px rgba(255,69,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.feature-phone img { width: 100%; border-radius: 26px; }

/* ── AI Trainer ──────────────────────────────────────────────── */
.ai-section {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-orb {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.1), transparent 70%);
  top: -100px; left: -100px;
}

.ai-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.ai-content { flex: 1; }

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,69,0,0.1);
  border: 1px solid rgba(255,69,0,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 20px;
}

.ai-content h2 {
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 18px;
}

.ai-content p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }

.ai-visual { flex-shrink: 0; max-width: 380px; width: 100%; }

/* Glass chat bubble */
.chat-bubble {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 36px; height: 36px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 14px rgba(255,69,0,0.4);
}

.chat-name { font-size: 14px; font-weight: 700; }
.chat-role { font-size: 11px; color: var(--muted); }

.chat-text { font-size: 13.5px; line-height: 1.72; color: var(--text); }

.chat-text strong {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chat-section { margin-top: 12px; }

.chat-cursor {
  display: inline-block;
  width: 2px; height: 13px;
  background: var(--accent);
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ── How it works ────────────────────────────────────────────── */
.steps-header { text-align: center; margin-bottom: 60px; }

.steps-header h2 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255,69,0,0.06), transparent 60%);
  pointer-events: none;
}

.step-card:hover { border-color: rgba(255,69,0,0.3); transform: translateY(-4px); }

.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}

.step-icon { font-size: 28px; margin-bottom: 12px; }

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section { text-align: center; }

.pricing-header h2 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.pricing-header p { font-size: 17px; color: var(--muted); margin-bottom: 50px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.3s;
}

.price-card:hover { transform: translateY(-4px); }

/* Gradient border on featured card */
.price-card.featured {
  position: relative;
  background: rgba(255,69,0,0.05);
  border-color: transparent;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.price-badge {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.price-name { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }

.price-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period { font-size: 12px; color: var(--muted); margin-bottom: 24px; }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text);
}

.price-features li .check { color: var(--accent); font-size: 15px; flex-shrink: 0; }
.price-features li .x     { color: var(--muted);  font-size: 15px; flex-shrink: 0; }

.price-btn { width: 100%; justify-content: center; }

/* ── Final CTA ───────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.cta-orb-1 {
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.14), transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.cta-section h2 {
  font-size: clamp(38px, 8vw, 76px);
  font-weight: 900;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-section .btn { position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo img { width: 26px; height: 26px; border-radius: 6px; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 12px; color: var(--muted); }

/* ── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}

.reveal.from-left  { transform: translateX(-36px); }
.reveal.from-right { transform: translateX(36px); }
.reveal.visible    { opacity: 1; transform: translate(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ── Mobile first ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-wrap {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-top: 110px;
  }

  .hero-content { max-width: 100%; }
  .hero-desc    { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .hero-trust   { justify-content: center; }
  .phone-2      { display: none; }

  .feature-block,
  .feature-block.reverse { flex-direction: column; gap: 36px; }
  .feature-content { text-align: center; }
  .feature-points li { justify-content: center; }
  .feature-visual { display: flex; justify-content: center; }

  .ai-inner     { flex-direction: column; }
  .steps-grid   { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .stats-grid   { grid-template-columns: 1fr; gap: 2px; }
}

@media (max-width: 480px) {
  .nav { padding: 12px 16px; }

  .hero h1 { font-size: clamp(48px, 14vw, 72px); }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; padding: 16px 24px; font-size: 15px; }

  .phone { width: 220px; }
  .feature-phone { width: 200px; }

  section { padding: 70px 16px; }
  .stats-wrap { padding: 0 16px 60px; }
  .ai-inner { padding: 70px 16px; }
  .cta-section { padding: 90px 16px; }

  footer { padding: 28px 16px; flex-direction: column; align-items: flex-start; }
}

/* Prevent overscroll glow on iOS */
@supports (-webkit-touch-callout: none) {
  html { overscroll-behavior: none; }
}
