/* ============================================================
   Pyng — Landing page
   Palette: Forest #315343 · Leaf #6DBF67 · Sage #E6F2EA
   Beige #F6EFE6 · Off-white #FAFAF9 · Sun #F6C667 · Peach #FFB79A
   ============================================================ */

:root {
  --forest: #315343;
  --forest-deep: #26402F;
  --leaf: #6DBF67;
  --leaf-soft: #CFE7CC;
  --sage: #E6F2EA;
  --light-green: #F1F8EF;
  --beige: #F6EFE6;
  --charcoal: #2C2C2C;
  --gray: #6B6F6E;
  --soft-gray: #F2F4F3;
  --off-white: #FAFAF9;
  --cream: #F9F4EA;
  --leaf-ink: #4B9E44;
  --sun-ink: #A87B24;
  --sun: #F6C667;
  --peach: #FFB79A;
  --ocean: #5DBCB1;
  --lavender: #B9A7E5;

  --font-head: 'Heebo', sans-serif;
  --font-body: 'Heebo', sans-serif;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(49, 83, 67, .08);
  --shadow-md: 0 12px 32px rgba(49, 83, 67, .14);
  --shadow-lg: 0 24px 60px rgba(38, 64, 47, .22);

  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

html { scroll-behavior: smooth; font-size: 125%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.75;
  font-size: 1.04rem;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--leaf); color: #fff; }

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

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

h1, h2, h3 { font-family: var(--font-head); line-height: 1.25; color: var(--forest); }

h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

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

.container { width: min(1160px, 92%); margin-inline: auto; }
.container-narrow { width: min(820px, 92%); }
.center { text-align: center; }

.section { position: relative; padding: clamp(70px, 9vw, 120px) 0; }

.text-leaf { color: var(--leaf); }
.text-sun { color: var(--sun); }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  padding: 8px 18px; border-radius: 999px;
}
.eyebrow-dark { background: var(--sage); color: var(--forest); }
.eyebrow-light { background: rgba(255, 255, 255, .12); color: #EAF5EC; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--gray); margin-top: 18px; font-size: 1.08rem; }
.section-head h2 { margin-top: 18px; }
.dark .section-head p { color: #C9DACC; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.btn-leaf { background: var(--leaf); color: var(--forest-deep); box-shadow: 0 8px 24px rgba(109, 191, 103, .38); }
.btn-leaf:hover { background: #7DCB77; box-shadow: 0 12px 30px rgba(109, 191, 103, .48); }

.btn-light { background: var(--off-white); color: var(--forest); }
.btn-light:hover { background: #fff; }

.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }

.btn-sm { padding: 10px 22px; font-size: .92rem; }

/* Koi-style: sun-yellow pill with a hard offset shadow that "presses" on click */
.btn-koi {
  background: var(--sun); color: var(--forest-deep);
  border-radius: 14px; font-weight: 700; letter-spacing: .01em;
  border: 1.5px solid rgba(49, 83, 67, .35);
  box-shadow: 0 5px 0 rgba(49, 83, 67, .30);
}
.btn-koi:hover {
  background: #F8CF74; transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(49, 83, 67, .30);
}
.btn-koi:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(49, 83, 67, .30); }

/* ---------- Announcement bar (Koi-style top strip) ---------- */
.announce-bar {
  background: var(--forest); color: #DCEBDF;
  text-align: center; font-size: .82rem; font-weight: 500;
  padding: 7px 18px; line-height: 1.4;
}
.announce-bar a {
  color: var(--sun); font-weight: 700;
  text-decoration: underline; text-underline-offset: 3px;
}
.announce-bar a:hover { color: #F8CF74; }

/* ---------- Header (Koi-style: nav · centered logo · CTA) ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: rgba(249, 244, 234, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(49, 83, 67, .08);
  transition: box-shadow .35s, background .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(20, 35, 26, .10);
  background: rgba(249, 244, 234, .68);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px; height: 74px;
  width: 100%; padding-inline: clamp(20px, 4vw, 56px);
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img { height: 58px; width: auto; display: block; }

.header-cta { justify-self: end; }
.header-cta.store-badges { gap: 10px; flex-wrap: nowrap; }
.header-cta .store-badge { height: 38px; flex: none; }

/* ---------- Hamburger button + mobile menu (phones only) ---------- */
.nav-toggle {
  display: none; /* shown at <=768px */
  width: 44px; height: 44px; padding: 0;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--forest);
}
.nav-toggle:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; border-radius: 10px; }
.nav-toggle-box { position: relative; display: block; width: 24px; height: 16px; }
.nav-toggle-box .bar {
  position: absolute; left: 0; width: 100%; height: 2.5px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle-box .bar:nth-child(1) { top: 0; }
.nav-toggle-box .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-box .bar:nth-child(3) { top: 100%; transform: translateY(-100%); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.mobile-menu {
  display: none; /* becomes a drop-down at <=768px */
  flex-direction: column;
  padding: 0 clamp(20px, 5vw, 40px);
  background: rgba(249, 244, 234, .98);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(49, 83, 67, 0);
  max-height: 0; overflow: hidden; visibility: hidden; opacity: 0;
  transition: max-height .42s var(--ease), opacity .3s var(--ease),
              padding .42s var(--ease), visibility .42s var(--ease);
}
.site-header.menu-open .mobile-menu {
  max-height: 80vh; visibility: visible; opacity: 1;
  padding-top: 8px; padding-bottom: 22px;
  border-bottom-color: rgba(49, 83, 67, .10);
}
.mobile-menu a {
  padding: 14px 4px; font-family: var(--font-head); font-weight: 600;
  font-size: 1.06rem; color: var(--forest);
  border-bottom: 1px solid rgba(49, 83, 67, .08);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--leaf-ink); }
.mobile-menu .mobile-menu-cta {
  margin-top: 16px; border-bottom: none; color: var(--forest-deep);
}

.main-nav { display: flex; gap: clamp(18px, 2.2vw, 32px); justify-self: start; flex-wrap: nowrap; }
.main-nav a {
  color: var(--forest); font-size: .9rem; font-weight: 600; letter-spacing: .03em;
  transition: color .2s; position: relative; white-space: nowrap;
}
.main-nav a::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -6px; height: 2px;
  background: var(--leaf); border-radius: 2px; transform: scaleX(0); transition: transform .25s var(--ease);
}
.main-nav a:hover { color: var(--leaf-ink); }
.main-nav a:hover::after { transform: scaleX(1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--off-white);
  padding: clamp(150px, 13vw, 190px) 0 clamp(118px, 10vw, 150px);
  color: var(--charcoal);
  overflow: hidden;
}

/* floating clouds, Koi-style sky */
.hero-cloud {
  display: none;
  position: absolute; width: clamp(70px, 9vw, 128px); height: auto;
  opacity: .9; pointer-events: none;
  animation: floatY 7.5s ease-in-out infinite;
}
.hero-cloud-a { top: 132px; inset-inline-start: 5%; }
.hero-cloud-b { top: 104px; inset-inline-end: 9%; animation-delay: 1.8s; animation-duration: 9.5s; width: clamp(54px, 7vw, 98px); }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(620px 420px at 14% 24%, rgba(109, 191, 103, .10), transparent 72%),
    radial-gradient(520px 380px at 88% 42%, rgba(246, 198, 103, .09), transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(570px, 760px) minmax(430px, 600px);
  grid-template-areas: "visual copy";
  gap: clamp(36px, 4.5vw, 70px);
  align-items: center;
  width: min(1540px, 94%);
  direction: ltr;
}
.hero-copy { grid-area: copy; direction: rtl; max-width: 620px; justify-self: end; min-width: 0; }
.hero-visual { grid-area: visual; min-width: 0; }

.hero h1 {
  color: var(--charcoal); margin: 24px 0 0;
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  font-weight: 900; line-height: 1.13;
}
.hero h1 em, .hero h1 .hl { font-style: normal; color: var(--leaf-ink); }
.hero h1 .hl { white-space: nowrap; } /* keep the highlighted phrase on one line */
.time-accent {
  color: var(--sun); font-variant-numeric: tabular-nums;
  text-shadow: 0 0 34px rgba(246, 198, 103, .45);
}

.hero-sub { margin-top: 24px; font-size: 1.16rem; line-height: 1.65; max-width: 34rem; color: var(--gray); }
.hero-sub strong { color: var(--charcoal); font-weight: 600; display: block; margin-top: 10px; }

.hero .eyebrow { background: var(--sage); color: var(--forest); }

.hero-cta { margin-top: 32px; }
.hero-cta .btn { font-size: 1.05rem; padding: 16px 34px; }
.store-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: fit-content;
}
.store-badge {
  display: inline-flex;
  height: 54px;
  flex: none;
  filter: drop-shadow(0 10px 18px rgba(20, 24, 22, .13));
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.store-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 14px 24px rgba(20, 24, 22, .18));
}
.store-badge:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.store-badge img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* waitlist form */
.waitlist-form {
  margin-top: 30px; display: flex; gap: 10px; max-width: 460px;
  background: rgba(255, 255, 255, .1); padding: 7px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(6px);
}
.waitlist-form input {
  flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font-family: var(--font-body); font-size: 1rem; color: #fff; padding: 0 18px;
}
.waitlist-form input::placeholder { color: #A9C4AE; }
.waitlist-form .btn { padding: 13px 24px; font-size: .95rem; }

.form-success {
  margin-top: 26px; font-weight: 600; color: var(--leaf);
  background: rgba(255, 255, 255, .95); display: inline-block;
  padding: 14px 24px; border-radius: 16px; box-shadow: var(--shadow-md);
  animation: popIn .5s var(--ease) both;
}
.form-success[hidden] { display: none; }

.hero-perks { list-style: none; display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.hero-perks li { font-size: .9rem; color: var(--gray); display: flex; align-items: center; gap: 7px; }
.hero-perks li::before {
  content: '✓'; color: var(--forest-deep); background: var(--leaf); border-radius: 50%;
  width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 800; flex: none;
}

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 88px; inset-inline-start: 50%; translate: -50% 0;
  color: rgba(49, 83, 67, .55); animation: bounce 2.2s infinite;
  z-index: 2;
}
[dir="rtl"] .scroll-cue { translate: 50% 0; }

/* ---------- Waves ---------- */
.wave { position: absolute; bottom: -1px; inset-inline: 0; line-height: 0; pointer-events: none; }
.wave svg { width: 100%; height: clamp(48px, 8vw, 110px); }
.wave-hero svg { height: clamp(60px, 9vw, 120px); }

.stats, .features, .detect, .how, .why, .sos, .pricing, .faq { padding-bottom: clamp(130px, 16vw, 200px); }

section[id] { scroll-margin-top: 122px; }

/* ============================================================
   Home screen hero composition
   ============================================================ */
.hero-visual { display: flex; justify-content: flex-start; align-items: center; }
.hero-media {
  position: relative;
  width: min(760px, 100%);
  min-height: clamp(500px, 45vw, 640px);
}
.hero-stock-img {
  position: absolute;
  inset-block-start: -34px;
  inset-inline-start: 0;
  width: min(690px, 90%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 28px 58px -24px rgba(38, 64, 47, .28);
}
.hero-phones-img {
  position: absolute;
  inset-block-end: -34px;
  inset-inline-end: -28px;
  width: min(580px, 74%);
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 34px 42px rgba(38, 64, 47, .20));
  transform: rotate(1.5deg);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.hero-media:hover .hero-phones-img {
  transform: rotate(.6deg) translateY(-6px);
  filter: drop-shadow(0 38px 50px rgba(38, 64, 47, .24));
}
.phone-wrap { position: relative; }

.phone {
  width: 296px; border-radius: 46px; background: #101613;
  padding: 11px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.06);
  transform: rotate(-4deg);
  transition: transform .6s var(--ease);
}
.phone-wrap:hover .phone { transform: rotate(-1.5deg) translateY(-6px); }

.phone::before {
  content: ''; position: absolute; top: 22px; inset-inline-start: 50%;
  translate: -50% 0; width: 86px; height: 22px; background: #101613;
  border-radius: 999px; z-index: 3;
}
[dir="rtl"] .phone::before { translate: 50% 0; }

.phone-screen {
  border-radius: 36px; overflow: hidden; min-height: 590px;
  background: linear-gradient(180deg, var(--light-green), #fff 45%);
  display: flex; flex-direction: column;
}

.statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px 6px; font-size: .74rem; font-weight: 700; color: var(--forest);
}
.sb-icons { letter-spacing: 2px; font-size: .6rem; opacity: .75; }

.app-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 4px;
}
.app-head small { display: block; color: var(--gray); font-size: .8rem; }
.app-head strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); }
.app-logo { width: 26px; height: 26px; }

/* guard ring */
.guard-ring { position: relative; display: flex; justify-content: center; padding: 22px 0 10px; }
.ring-pulse {
  position: absolute; top: 50%; inset-inline-start: 50%; translate: -50% -50%;
  width: 158px; height: 158px; border-radius: 50%;
  border: 2px solid var(--leaf); opacity: 0;
  animation: ringPulse 2.6s ease-out infinite;
}
[dir="rtl"] .ring-pulse { translate: 50% -50%; }
.ring-core {
  width: 148px; height: 148px; border-radius: 50%;
  background: #fff; border: 3px solid var(--leaf);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  box-shadow: 0 10px 26px rgba(109, 191, 103, .28);
  position: relative; z-index: 1;
}
.ring-core span { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--forest); }
.ring-core small { font-size: .68rem; color: var(--gray); }

.feed-label {
  padding: 14px 22px 6px; font-size: .72rem; font-weight: 700;
  color: var(--gray); letter-spacing: .04em;
}

/* alerts feed */
.alert-feed { list-style: none; padding: 0 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.alert-item {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 15px; padding: 11px 13px;
  box-shadow: var(--shadow-sm); border: 1px solid #EDF2EE;
  opacity: 0; transform: translateY(14px) scale(.97);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.alert-item.in { opacity: 1; transform: none; }
.alert-ico {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.tone-warn .alert-ico { background: #FDEEDC; color: #B97E2E; }
.tone-info .alert-ico { background: var(--sage); color: var(--forest); }
.tone-alert .alert-ico { background: #FFE9E4; color: #D0503C; }
.tone-calm .alert-ico { background: #EFEAF9; color: #6A55A4; }
.alert-body { display: flex; flex-direction: column; min-width: 0; }
.alert-body strong { font-size: .8rem; color: var(--charcoal); line-height: 1.35; }
.alert-body small { font-size: .68rem; color: var(--gray); }

/* app bottom nav */
.app-nav {
  display: flex; justify-content: space-around; padding: 12px 8px 18px;
  background: #fff; border-top: 1px solid #EFF3F0; margin-top: 12px;
}
.app-nav span {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: .62rem; color: #9AA69D; font-weight: 500;
}
.app-nav span.active { color: var(--forest); font-weight: 700; }

/* floating push cards */
.float-card {
  position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .97); border-radius: 16px; padding: 11px 15px;
  box-shadow: var(--shadow-md); max-width: 235px;
  animation: floatY 5s ease-in-out infinite;
}
.float-card strong { display: block; font-size: .78rem; color: var(--charcoal); }
.float-card small { font-size: .7rem; color: var(--gray); line-height: 1.35; display: block; }
.float-card-a { top: 68px; inset-inline-end: -74px; animation-delay: .4s; }
.float-card-b { bottom: 96px; inset-inline-start: -66px; animation-delay: 2.2s; }

.fc-ico {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.fc-warn { background: #FDEEDC; color: #B97E2E; }
.fc-sos {
  background: #FFE9E4; color: #D0503C; font-size: .6rem; font-weight: 800;
  font-family: var(--font-head); letter-spacing: .02em;
}

/* ============================================================
   Chapter 2: The silent storm (dark stats)
   ============================================================ */
.storm {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #2A4738 0%, var(--forest) 45%, var(--forest-deep) 100%);
  color: #E7F1E9;
  padding: clamp(120px, 15vw, 190px) 0 clamp(130px, 16vw, 200px);
}
.storm .section-head h2 { color: #fff; }
.storm .section-head p { color: #C9DACC; }

.wave-top { position: absolute; top: -1px; inset-inline: 0; line-height: 0; pointer-events: none; }
.wave-top svg { width: 100%; height: clamp(48px, 8vw, 110px); }

.storm-inner { position: relative; z-index: 1; }

/* danger intro: copy + lock animation side by side */
.storm-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 60px); align-items: center;
  max-width: 1060px; margin: 0 auto clamp(44px, 6vw, 72px);
}
.storm-grid .section-head { margin: 0; max-width: none; text-align: start; }
.storm-visual { display: flex; justify-content: center; }
.storm-lottie {
  width: min(500px, 100%); aspect-ratio: 750 / 500;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .3));
}
.storm-lottie svg { width: 100% !important; height: 100% !important; display: block; }

.storm-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 980px; margin: 0 auto;
}
.stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px; padding: 28px 24px;
}
.stat-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 3.8vw, 3rem); color: #fff;
  display: block; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.stat-label { color: #C9DACC; font-size: .95rem; display: block; margin-top: 10px; }
.stat-source { color: rgba(201, 218, 204, .72); font-size: .78rem; display: block; margin-top: 8px; }

.storm-sub {
  text-align: center; color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  max-width: 640px; margin: clamp(56px, 8vw, 90px) auto 36px;
}
.storm-threats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  max-width: 980px; margin: 0 auto;
}
.threat { border-inline-start: 2px solid rgba(246, 198, 103, .55); padding-inline-start: 18px; }
.threat strong {
  color: var(--sun); font-family: var(--font-head);
  font-size: 1.05rem; display: block; margin-bottom: 8px;
}
.threat p { color: #C9DACC; font-size: .95rem; }

/* ============================================================
   Chapter 3: Three bad options
   ============================================================ */
.options {
  background-color: #FFFFFF;
  padding-bottom: clamp(130px, 16vw, 200px);
}
.options .section-head { max-width: 900px; margin-bottom: clamp(56px, 7vw, 86px); }
.options-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1180px; margin: 0 auto;
}
.option-card {
  background: #F4F3B7;
  border: 1px solid rgba(49, 83, 67, .06);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.6vw, 30px) clamp(26px, 3.2vw, 38px);
  box-shadow: none;
  text-align: center;
  transition: transform .25s var(--ease);
}
.option-card:nth-child(2) { background: #ECE2FF; }
.option-card:nth-child(3) { background: #F4EEEC; }
.option-card:first-child p { color: rgba(38, 45, 42, .78); }
.option-card:first-child h3 { color: #21312A; }
.option-card:hover {
  transform: translateY(-4px);
}
.option-art {
  display: flex; justify-content: center;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.option-art img {
  width: clamp(150px, 15vw, 220px); height: clamp(150px, 15vw, 220px);
  object-fit: contain;
}
.option-card h3 {
  color: var(--charcoal); margin-bottom: 8px;
  font-size: clamp(1.22rem, 1.75vw, 1.55rem);
}
.option-card p {
  color: rgba(38, 45, 42, .72); font-size: clamp(.9rem, .95vw, .98rem);
  line-height: 1.45; max-width: 300px; margin-inline: auto;
}
.options-question {
  text-align: center; margin: clamp(58px, 7vw, 86px) auto 0;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem); color: var(--forest);
  max-width: 760px;
}

/* ============================================================
   Chapter 4: Introducing Pyng
   ============================================================ */
.introduce {
  background-color: var(--cream);
  background-image: radial-gradient(rgba(49, 83, 67, .12) 1.1px, transparent 1.5px);
  background-size: 26px 26px;
  padding-bottom: clamp(130px, 16vw, 200px);
  text-align: center;
}
.intro-kicker {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: .88rem; letter-spacing: .24em; color: var(--gray); margin-bottom: 4px;
}
.intro-logo {
  display: block; margin: 0 auto;
  width: clamp(220px, 28vw, 360px); height: auto;
}
.intro-script {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  color: var(--leaf-ink); font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.45;
  margin: 30px auto 16px;
}
.intro-script-inner { display: inline-block; transform: rotate(-6deg); }
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-top: clamp(46px, 6vw, 68px); text-align: start;
}
.pillar {
  background: #fff; border: 1px solid rgba(49, 83, 67, .10);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.pillar h3 { color: var(--leaf-ink); font-size: 1.12rem; margin-bottom: 10px; }
.pillar p { color: var(--gray); font-size: .95rem; line-height: 1.8; margin-bottom: 18px; }
.pillar-animation { height: 160px; aspect-ratio: 1 / 1; margin: auto; }
.pillar-animation-wide { aspect-ratio: 16 / 9; }
.pillar-animation-tall { aspect-ratio: 682 / 902; }
.pillar-animation svg { width: 100% !important; height: 100% !important; display: block; }

/* ============================================================
   Ribbon quote (Koi-style banner)
   ============================================================ */
.ribbon { position: relative; display: inline-block; margin-bottom: 34px; transform: rotate(-2deg); }
.ribbon-inner {
  display: inline-block; position: relative; z-index: 1;
  background: var(--leaf); color: var(--forest-deep);
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(.95rem, 2vw, 1.2rem);
  padding: 13px 28px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, .16);
}
.ribbon::before, .ribbon::after {
  content: ''; position: absolute; top: 9px; z-index: 0;
  border: 15px solid #4F9E49;
}
.ribbon::before { right: -22px; border-right-color: transparent; }
.ribbon::after { left: -22px; border-left-color: transparent; }

/* ============================================================
   Features
   ============================================================ */
.features { background: var(--beige); }
.feature-sections { display: flex; flex-direction: column; gap: 28px; }
.feature-panel {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 5vw, 70px);
  background: rgba(255, 255, 255, .72); border: 1px solid rgba(49, 83, 67, .07);
  border-radius: var(--radius); padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-sm);
}
.feature-copy { flex: 1 1 46%; max-width: 500px; }
.feature-kicker {
  display: inline-flex; margin-bottom: 12px;
  font-family: var(--font-head); font-size: .86rem; font-weight: 700; color: var(--leaf);
}
.feature-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  margin-bottom: 14px;
}
.feature-copy p { color: var(--gray); font-size: 1.08rem; line-height: 1.9; }
.feature-animation {
  flex: 0 1 430px;
  width: min(430px, 42vw);
  aspect-ratio: 1377 / 1235;
  overflow: visible;
}
.feature-animation-qr { aspect-ratio: 1 / 1; width: min(390px, 38vw); }
.feature-animation-map {
  aspect-ratio: 3000 / 2000;
  flex-basis: 560px;
  width: min(560px, 48vw);
  transform: scale(1.65);
  transform-origin: center;
}
.feature-animation svg { width: 100% !important; height: 100% !important; display: block; }
.feature-apps-image {
  flex: 0 1 620px;
  width: min(620px, 54vw);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(38, 64, 47, .12));
}

/* ============================================================
   How Pyng sees it (detection + chat animation)
   ============================================================ */
.detect { background: linear-gradient(180deg, var(--off-white) 0%, var(--light-green) 100%); overflow-x: clip; }
.detect-grid {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: center;
}

.detect-visual { display: flex; justify-content: center; }
.detect-stage { position: relative; width: min(560px, 48vw); }
.detect-mobile-head { display: none; }

.detect-glow {
  position: absolute; inset: -14% -10% -6%; z-index: 0; pointer-events: none;
  background: radial-gradient(58% 52% at 50% 34%, rgba(109, 191, 103, .32), transparent 72%);
  filter: blur(4px);
}

.lottie-frame {
  position: relative; z-index: 1;
  aspect-ratio: 939 / 1200;
  overflow: visible;
  background: transparent;
}
.lottie-frame svg { width: 100% !important; height: 100% !important; display: block; }

.detect-copy .eyebrow { margin-bottom: 18px; }
.detect-copy h2 { margin-bottom: 16px; }
.detect-lead { color: var(--gray); font-size: 1.08rem; max-width: 34rem; }

.detect-flow { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 6px; }
.detect-flow li { display: flex; gap: 16px; position: relative; padding-bottom: 22px; }
.detect-flow li:last-child { padding-bottom: 0; }
.detect-flow li::before {
  content: ''; position: absolute; z-index: 0;
  top: 40px; bottom: 8px; inset-inline-start: 19px; width: 2px;
  background: linear-gradient(var(--leaf-soft), rgba(207, 231, 204, 0));
}
.detect-flow li:last-child::before { display: none; }
.detect-flow .n {
  position: relative; z-index: 1; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); color: var(--forest);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
}
.detect-flow li strong {
  display: block; color: var(--forest);
  font-family: var(--font-head); font-size: 1.1rem; line-height: 1.4;
}
.detect-flow li p { color: var(--gray); font-size: .97rem; margin-top: 3px; }

@keyframes tagPulse {
  0% { box-shadow: 0 0 0 0 rgba(109, 191, 103, .55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(109, 191, 103, 0); }
}

/* ============================================================
   Capabilities showcase
   ============================================================ */
.showcase { background: var(--off-white); }
.showcase-grid {
  display: block;
}

.showcase-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}
.sc-item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px 14px 22px;
  background: #fff;
  border: 1px solid rgba(49, 83, 67, .10);
  border-radius: 8px;
  box-shadow: 0 18px 44px -34px rgba(38, 64, 47, .34);
  overflow: hidden;
  opacity: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.sc-item:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 191, 103, .28);
  box-shadow: 0 26px 54px -34px rgba(38, 64, 47, .42);
}
.sc-item::before {
  content: none;
}
.sc-item h3 {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  color: var(--forest);
  margin: 18px 0 8px;
}
.sc-item p {
  color: var(--gray);
  font-size: .98rem;
  line-height: 1.65;
}
.sc-item-ico {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sage);
}
.sc-item-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .showcase {
    padding-top: clamp(58px, 10vw, 82px);
    padding-bottom: clamp(70px, 12vw, 96px);
  }
  .showcase > .container {
    width: min(1160px, 92%);
  }
  .showcase-grid { display: block; }
  .showcase-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .showcase .section-head {
    margin-bottom: 32px;
  }
  .showcase .section-head h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.22;
  }
  .showcase-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sc-item {
    padding: 12px 12px 20px;
  }
  .sc-item h3 {
    font-size: 1.22rem;
  }
}

/* ============================================================
   How it works
   ============================================================ */
.how { background: var(--off-white); }
.step {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px;
  align-items: center; max-width: 860px; margin-inline: auto;
}
.step-flip { grid-template-columns: 1fr 320px; }
.step-flip .step-art { order: 2; }
.step-flip .step-text { order: 1; }

.step-art {
  background: var(--blob); border-radius: 42% 58% 55% 45% / 48% 44% 56% 52%;
  padding: 26px; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1; max-width: 320px;
}
.step-art svg { width: 100%; height: auto; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.step-text h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step-text p { color: var(--gray); }

.step-arrow { display: flex; justify-content: center; padding: 26px 0; }

.scanline { animation: scan 2.4s ease-in-out infinite; }

/* ============================================================
   Why / compare (dark)
   ============================================================ */
.dark { background: var(--forest); color: #E7F1E9; }
.dark h2 { color: #fff; }

/* soft ambient glow behind the comparison */
.why::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 28% 22%, rgba(109, 191, 103, .18), transparent 70%),
    radial-gradient(40% 40% at 82% 78%, rgba(93, 188, 177, .10), transparent 72%);
}
.why .container { position: relative; z-index: 1; }
.why .section-head { max-width: min(1280px, 96vw); }
.why-title-line { display: inline-block; white-space: nowrap; }

.table-scroll {
  overflow-x: auto; overflow-y: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 26px 70px -42px rgba(8, 20, 14, .9);
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%; border-collapse: collapse; border-spacing: 0;
  table-layout: fixed;
  min-width: 860px; font-size: .97rem;
}
.compare th, .compare td { padding: 24px 26px; text-align: center; vertical-align: middle; }
.compare thead th {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding-top: 14px; padding-bottom: 14px;
  background: rgba(255, 255, 255, .055);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.compare th:nth-child(1), .compare td:nth-child(1) { width: 30%; }
.compare th:nth-child(2), .compare td:nth-child(2) { width: 34%; }
.compare th:nth-child(3), .compare td:nth-child(3) { width: 36%; }
.compare th + th, .compare td + td { border-inline-start: 1px solid rgba(255, 255, 255, .11); }

/* category column */
.compare thead .param-col {
  color: rgba(255, 255, 255, .5); font-weight: 700;
  letter-spacing: .02em; text-transform: none;
}
.compare tbody td:first-child {
  font-weight: 700; color: #fff; font-family: var(--font-head);
  font-size: 1.01rem; line-height: 1.4;
}

/* without-Pyng column */
.compare thead .spy-col { color: rgba(255, 255, 255, .5); font-weight: 600; }
.compare tbody .spy-col { color: #9DB2A5; }
.compare tbody td { border-top: 1px solid rgba(255, 255, 255, .10); }
.compare tbody tr:first-child td { border-top: none; }
.compare tbody tr { transition: background .25s var(--ease); }
.compare tbody tr:hover td:first-child,
.compare tbody tr:hover .spy-col { background: rgba(255, 255, 255, .035); }

/* cell layout */
.compare .cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
}
.compare .cell > span:last-child { flex: 0 1 auto; }

/* Pyng column — highlighted, but part of the same table */
.compare .pyng-col {
  background: rgba(255, 255, 255, .94); color: var(--forest);
}
.compare tbody .pyng-col {
  color: var(--forest); font-weight: 600;
  border-top-color: #E4F0E7;
  transition: background .25s var(--ease);
}
.compare tbody tr:first-child .pyng-col { border-top: none; }
.compare tbody tr:hover .pyng-col { background: #F6FBF6; }

.compare thead .pyng-col {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-ink) 100%);
  text-align: center; padding-top: 26px; padding-bottom: 10px;
  vertical-align: bottom;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
}

.why-logo {
  display: inline-block; vertical-align: -.28em;
  height: 1.18em; width: auto;
  filter: brightness(0) invert(1);
}

.pyng-th {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  transform: translateY(8px);
}
.pyng-th-logo {
  height: 56px; width: auto; display: block;
  margin-inline: auto;
  filter: brightness(0) invert(1); /* green logo → white on the leaf header */
}
.pyng-th-tag {
  display: block; margin-top: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: .72rem;
  letter-spacing: .04em; color: rgba(255, 255, 255, .9);
}

.mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: .78rem; font-weight: 900; line-height: 1;
  flex: none; margin-top: 2px;
}
.mark::before { display: block; }
.mark.good::before { content: '✓'; }
.mark.bad::before  { content: '✕'; font-size: .68rem; }

/* green check on every Pyng row */
.pyng-col .mark.good {
  background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-ink) 100%);
  color: #fff;
  box-shadow: 0 5px 12px -3px rgba(75, 158, 68, .55);
}
/* muted cross on the without-Pyng side */
.spy-col .mark.bad {
  background: rgba(255, 255, 255, .06); color: #8AA093;
  border: 1px solid rgba(255, 255, 255, .12);
}

.why { padding-bottom: clamp(140px, 17vw, 210px); }

/* ============================================================
   SOS
   ============================================================ */
.sos { background: var(--beige); }
.sos-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center;
}
.sos-visual { display: flex; justify-content: center; }

.phone-sm { width: 264px; transform: rotate(3.5deg); }
.phone-sm:hover { transform: rotate(1deg) translateY(-6px); }
.phone-sm .phone-screen { min-height: 500px; background: linear-gradient(180deg, #FFF7F2, #fff 50%); }

.sos-head { text-align: center; padding: 26px 22px 8px; }
.sos-head strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--forest); display: block; }
.sos-head small { color: var(--gray); font-size: .8rem; }

.sos-btn-wrap { position: relative; display: flex; justify-content: center; padding: 40px 0 26px; }
.sos-halo {
  position: absolute; top: 50%; inset-inline-start: 50%; translate: -50% -50%;
  width: 150px; height: 150px; border-radius: 50%;
  border: 3px solid var(--peach); opacity: 0;
  animation: ringPulse 2.2s ease-out infinite;
  margin-top: 7px;
}
[dir="rtl"] .sos-halo { translate: 50% -50%; }
.sos-button {
  width: 140px; height: 140px; border-radius: 50%; border: none; cursor: pointer;
  background: radial-gradient(circle at 35% 30%, #FF9F81, #E86A4E 70%);
  color: #fff; font-family: var(--font-head); font-weight: 900; font-size: 1.7rem;
  letter-spacing: .05em;
  box-shadow: 0 16px 36px rgba(232, 106, 78, .45), inset 0 -6px 14px rgba(0,0,0,.12);
  animation: sosBreath 2.8s ease-in-out infinite;
}
.sos-note { text-align: center; color: var(--gray); font-size: .82rem; padding: 0 24px; }

.sos-copy h2 { margin-top: 16px; }
.sos-copy p { color: var(--gray); margin-top: 16px; font-size: 1.06rem; }

.check-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--charcoal); font-weight: 500; }
.check-list li::before {
  content: '✓'; flex: none; margin-top: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--leaf); color: var(--forest-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800;
}

/* ============================================================
   Pricing
   ============================================================ */
/* ============================================================
   Testimonials — horizontal marquee rows, alternating direction
   ============================================================ */
.testi { position: relative; background: var(--off-white); overflow: hidden; padding-bottom: clamp(90px, 10vw, 140px); }

.testi-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 75% 60% at 50% 100%, rgba(109, 191, 103, .18), transparent 65%);
}

.testi-head { position: relative; z-index: 1; max-width: 640px; margin: 0 auto 56px; text-align: center; }
.testi-head p { color: var(--gray); margin-top: 18px; font-size: 1.08rem; }
.testi-head h2 { margin-top: 18px; }

.testi-fade { opacity: 0; animation: testiFadeUp .7s ease-out forwards; animation-delay: var(--fd, 0s); }
@keyframes testiFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testi-rows {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 26px;
}

.testi-scroller {
  width: 100%; overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testi-track {
  display: flex; width: max-content;
  animation: testiScrollLeft var(--dur, 36s) linear infinite;
  will-change: transform;
}
.testi-scroller[data-dir="right"] .testi-track { animation-name: testiScrollRight; }
.testi-scroller:hover .testi-track { animation-play-state: paused; }

/* RTL page: the flex track is anchored to the right and grows leftward,
   so the strip must shift in the POSITIVE direction to stay covered. */
@keyframes testiScrollLeft  { from { transform: translateX(0); }                 to { transform: translateX(var(--shift, 50%)); } }
@keyframes testiScrollRight { from { transform: translateX(var(--shift, 50%)); } to { transform: translateX(0); } }

.testi-track-set { display: flex; gap: 24px; padding-inline-end: 24px; flex: none; }

.testi-card {
  width: min(340px, 84vw); flex: none;
  background: #fff;
  border: 1px solid rgba(49, 83, 67, .09);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(49, 83, 67, .09);
  padding: 30px 28px 26px;
}
.testi-card blockquote { font-size: .98rem; line-height: 1.75; color: var(--charcoal); }
.testi-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; }

.testi-avatar {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
}
.av-1 { background: var(--sage); color: var(--forest); }
.av-2 { background: #FDEEDC; color: var(--sun-ink); }
.av-3 { background: #E3F3F1; color: #2E7A70; }
.av-4 { background: #EFEAF9; color: #6B54A8; }
.av-5 { background: #FDE9DF; color: #A85B3A; }
.av-6 { background: var(--leaf-soft); color: var(--forest); }

.testi-who { display: flex; flex-direction: column; line-height: 1.35; }
.testi-who strong { font-family: var(--font-head); color: var(--forest); font-size: .98rem; }
.testi-who small { color: var(--gray); font-size: .82rem; }

@media (max-width: 700px) {
  .testi-card { width: min(280px, 78vw); padding: 24px 22px 20px; }
  .testi-rows { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .testi-fade { opacity: 1; animation: none; transform: none; }
  .testi-track { animation: none; }
  .testi-scroller { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

.pricing {
  background: #F0F0F0;
  color: #0A0A0A;
  padding-bottom: clamp(56px, 6vw, 84px);
}
.pricing .section-head {
  max-width: 1100px;
  margin-bottom: 44px;
}
.pricing .eyebrow-light {
  background: transparent;
  color: #78716C;
  padding: 0;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.pricing .section-head h2 {
  color: #0A0A0A;
  font-size: clamp(2.45rem, 5.4vw, 4.6rem);
  line-height: 1.08;
  font-weight: 900;
}
.pricing .section-head p {
  color: #78716C;
  max-width: 34rem;
  margin-inline: auto;
  line-height: 1.5;
}
.pricing .text-leaf { color: #439775; }

/* ---------- Pricing calculator (controls + summary panels) ---------- */
.price-calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

/* --- controls panel --- */
.calc-controls {
  position: relative;
  min-height: 0;
  padding: 0 clamp(12px, 2vw, 22px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.calc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.calc-label {
  display: block;
  margin: 0;
  color: #262626;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.3;
}
.kids-count-wrap { margin: 0; }
.kids-count {
  display: block;
  color: #0A0A0A;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}
#kidsRange {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 12px; border-radius: 999px;
  margin: 0;
  background: linear-gradient(to left, var(--leaf) 0 var(--fill, 0%), #E5E7EB var(--fill, 0%), #E5E7EB 100%);
  outline: none; cursor: pointer;
}
#kidsRange::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  border: 2px solid #E5E7EB;
  box-shadow: 0 1px 5px rgba(192, 192, 192, .5);
  cursor: grab;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
#kidsRange::-webkit-slider-thumb:hover {
  transform: scale(1.06);
  border-color: #D4D4D4;
  box-shadow: 0 3px 12px rgba(115, 115, 115, .22);
}
#kidsRange::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 2px solid #E5E7EB;
  box-shadow: 0 1px 5px rgba(192, 192, 192, .5); cursor: grab;
}
#kidsRange:focus-visible { outline: 3px solid rgba(109, 191, 103, .32); outline-offset: 5px; }
.range-marks {
  display: flex; justify-content: space-between;
  margin-top: 28px;
  color: #78716C;
  font-size: .9rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.calc-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
  color: #78716C;
  font-size: .95rem;
}
.calc-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0A0A0A;
  font-weight: 900;
  white-space: nowrap;
}

/* --- summary panel --- */
.calc-summary {
  min-height: 0;
  padding: clamp(28px, 3.8vw, 42px);
  background: #FAFAFA;
  color: #0A0A0A;
  text-align: right;
  border: 1.5px solid rgba(109, 191, 103, .5);
  border-radius: 14px;
  box-shadow:
    0 0 0 4px rgba(109, 191, 103, .08),
    0 18px 50px rgba(15, 23, 42, .04);
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.plan-overview,
.plan-actions {
  min-width: 0;
}
.plan-overview {
  display: grid;
  align-content: start;
}
.plan-actions {
  display: grid;
  gap: 18px;
  align-content: start;
}
.sum-kicker {
  display: block;
  margin-bottom: 12px;
  color: #262626;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
}
.price-stack { margin-bottom: 24px; }
.sum-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
  line-height: 1.05;
}
[dir="rtl"] .sum-price { justify-content: flex-start; }
.sum-amount {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.15rem, 4.2vw, 3rem); color: #0A0A0A;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.sum-price.pop .sum-amount { animation: pricePop .35s var(--ease); }
@keyframes pricePop {
  0% { transform: scale(1); }
  40% { transform: scale(1.09); }
  100% { transform: scale(1); }
}
.sum-cur { font-family: var(--font-head); font-weight: 900; font-size: 1.45rem; color: #0A0A0A; }
.sum-per {
  display: inline-flex;
  color: #78716C;
  font-weight: 800;
  margin: 0;
  font-size: .92rem;
  line-height: 1;
  white-space: nowrap;
}

.sum-lines {
  display: flex;
  margin: 18px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid #E5E7EB;
  flex-direction: column; gap: 10px;
}
.sum-line {
  display: flex; justify-content: space-between; align-items: center;
  gap: 18px;
  font-size: .84rem; color: #78716C;
}
.sum-line strong { font-family: var(--font-head); font-weight: 800; color: #0A0A0A; font-variant-numeric: tabular-nums; }
.sum-discount span, .sum-discount strong { color: #439775; }
.sum-save {
  border-top: 1px dashed #E5E7EB;
  padding-top: 10px;
}
.sum-save span, .sum-save strong { color: #A16207; }
.plan-copy {
  margin-top: 0;
  color: #78716C;
  font-size: .84rem;
  line-height: 1.65;
}

.purchase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 0;
}
.billing-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin: 0;
  background: #EFEFEF;
  border-radius: 10px;
  padding: 4px;
}
.bt-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  inset-inline-start: 4px;
  width: calc(50% - 4px);
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(115, 115, 115, .18);
  transition: inset-inline-start .28s var(--ease);
}
.billing-toggle.yearly .bt-pill { inset-inline-start: calc(50%); }
.bt-opt {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #78716C;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  padding: 11px 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: color .2s;
}
.bt-opt em {
  font-style: normal;
  color: #78716C;
  font-size: .62rem;
  font-weight: 800;
}
.bt-opt.active,
.bt-opt.active em { color: #0A0A0A; }
.bt-opt:focus-visible { outline: 3px solid rgba(249, 115, 22, .32); outline-offset: 2px; }
.calc-summary .btn {
  width: 100%;
  min-height: 0;
  padding: 13px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--leaf);
  color: #FFFFFF;
  box-shadow: 0 12px 24px rgba(109, 191, 103, .24);
  font-size: .82rem;
  font-weight: 800;
}
.calc-summary .btn:hover {
  background: #7DCB77;
  box-shadow: 0 14px 28px rgba(109, 191, 103, .3);
}
.calc-summary .btn:active { transform: translateY(1px); box-shadow: 0 8px 18px rgba(109, 191, 103, .22); }
.calc-trial { margin-top: 0; font-size: .82rem; color: #78716C; text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.pricing .wave svg { height: clamp(36px, 5vw, 68px); }

.faq {
  background: var(--beige);
  padding-top: clamp(48px, 5.5vw, 76px);
}
.faq-list { border-top: 1px solid #E4DCCE; }
.faq-item { border-bottom: 1px solid #E4DCCE; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: none; cursor: pointer; text-align: right;
  font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--forest);
  padding: 22px 4px;
  transition: color .2s;
}
.faq-q:hover { color: var(--leaf); }
.faq-q:focus-visible { outline: 3px solid var(--sun); outline-offset: -3px; border-radius: 8px; }

.chev {
  flex: none; width: 12px; height: 12px;
  border-inline-end: 2.5px solid currentColor; border-block-end: 2.5px solid currentColor;
  transform: rotate(45deg); margin-top: -5px;
  transition: transform .3s var(--ease);
}
.faq-item.open .chev { transform: rotate(225deg); margin-top: 5px; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-a p { color: var(--gray); padding: 0 4px 24px; max-width: 46rem; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta { overflow: hidden; }
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(560px 380px at 78% 18%, rgba(109, 191, 103, .2), transparent 70%),
    radial-gradient(480px 360px at 15% 85%, rgba(246, 198, 103, .12), transparent 70%);
}
.final-cta .container { position: relative; }
.final-cta p { color: #C9DACC; margin-top: 18px; }
.waitlist-final {
  width: min(760px, 100%);
  max-width: none;
  margin-inline: auto;
  margin-top: 34px;
}
.waitlist-final input { min-width: 280px; }
.waitlist-final .btn { flex: none; padding-inline: 32px; }
.cta-fine { font-size: .88rem; color: #A9C4AE !important; margin-top: 22px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--forest-deep);
  color: #B9CFBE;
  padding: clamp(52px, 7vw, 86px) 0 28px;
  overflow: hidden;
}

.footer-wordmark-row {
  padding-bottom: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}
.footer-wordmark { display: block; width: 100%; line-height: 0; }
.footer-wordmark img {
  width: min(100%, 1480px); height: auto; margin: 0 auto;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.footer-wordmark:hover img { opacity: .88; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(140px, .7fr));
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding: clamp(34px, 4.5vw, 56px) 0 42px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.footer-col h3 {
  color: rgba(255, 255, 255, .56);
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-col a,
.footer-statement p {
  color: #B9CFBE;
  font-size: .94rem;
  line-height: 1.65;
}
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-statement p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bottom small { font-size: .8rem; color: #8AA791; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes ringPulse {
  0% { transform: scale(.92); opacity: .75; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes sosBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes scan {
  0%, 100% { transform: translateY(-26px); opacity: .35; }
  50% { transform: translateY(28px); opacity: .95; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.9) translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

/* entrance: hero items on load */
.fade-item { animation: fadeUp .9s var(--ease) both; animation-delay: var(--d, 0s); }

/* scroll reveal — richer, springier entrance with a soft focus-in */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(8px);
  transition:
    opacity .9s var(--ease),
    transform 1s var(--ease),
    filter .9s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; filter: blur(0); }

/* directional variants — assigned to two-column halves for a premium slide-in */
.reveal-left  { transform: translateX(-52px); }
.reveal-right { transform: translateX(52px); }
.reveal-scale { transform: scale(.9) translateY(30px); }

/* stagger: children of a [data-stagger] group animate one after another */
[data-stagger] > .reveal { transition-delay: calc(var(--i, 0) * 90ms); }

/* parallax layers get promoted to their own compositor layer */
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  [data-parallax] { transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    text-align: center;
    direction: rtl;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; justify-self: center; }
  .hero-sub { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .waitlist-form { width: 100%; }
  .hero-visual { margin-top: 26px; }
  .hero-media { width: min(760px, 96vw); min-height: clamp(430px, 74vw, 610px); margin-inline: auto; }
  .hero-stock-img { inset-block-start: -28px; inset-inline-start: 0; width: min(650px, 88%); }
  .hero-phones-img { inset-block-end: -28px; inset-inline-end: -14px; width: min(520px, 68%); transform: rotate(1deg); }
  .hero-media:hover .hero-phones-img { transform: rotate(.4deg) translateY(-6px); }
  .float-card-a { inset-inline-end: -40px; }
  .float-card-b { inset-inline-start: -40px; }
  .sos-grid { grid-template-columns: 1fr; gap: 44px; }
  .storm-grid { grid-template-columns: 1fr; max-width: 560px; }
  .storm-grid .section-head { text-align: center; }
  .storm-lottie { width: min(420px, 90%); margin-inline: auto; }
  .storm-stats { grid-template-columns: 1fr; max-width: 520px; }
  .storm-threats { grid-template-columns: 1fr; max-width: 520px; gap: 24px; }
  .options-grid, .pillars { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .hero-cloud { display: none; }
  .detect-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .detect-stage { width: min(520px, 88vw); }
  .detect-copy .eyebrow { margin-inline: auto; }
  .detect-lead { margin-inline: auto; }
  .detect-visual { order: -1; }
  .detect-flow { text-align: right; max-width: 460px; margin-inline: auto; }
  .feature-panel { gap: 30px; }
  .feature-animation { width: min(370px, 42vw); }
  .price-calc {
    max-width: 900px;
    grid-template-columns: 1fr;
  }
  .calc-summary {
    text-align: right;
  }
  .purchase-row {
    grid-template-columns: 1fr;
  }
  .step, .step-flip { grid-template-columns: 1fr; text-align: center; gap: 28px; }
  .step-art { margin-inline: auto; }
  .step-flip .step-art { order: 0; }
  .step-flip .step-text { order: 1; }
  .step-num { margin-inline: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 44px; }
  /* stacked layout: drop the horizontal slide-in so it can't push content past the edge */
  .reveal-left, .reveal-right { transform: translateY(38px); }
}

@media (max-width: 860px) {
  .waitlist-final { max-width: 560px; }
  .waitlist-final input { min-width: 0; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  /* phones: logo on the left, hamburger on the right (store badges don't fit) */
  .header-inner {
    display: flex; align-items: center; justify-content: space-between;
    direction: ltr; height: 62px;
  }
  .header-cta.store-badges { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
  .logo-img { height: 46px; }
  .hero { padding-top: 178px; padding-bottom: 122px; }
  /* large hero headline, wraps naturally (scales with width) */
  .hero h1 { font-size: clamp(1.9rem, 11vw, 3.3rem); }
  .announce-bar { font-size: .74rem; padding: 6px 14px; }
  .scroll-cue { display: none; }
  .feature-panel { flex-direction: column; text-align: center; }
  .feature-copy { max-width: 620px; }
  .feature-animation { order: -1; width: min(330px, 84vw); }
  .feature-apps-image {
    flex-basis: auto;
    width: min(520px, 96vw);
  }
  .feature-animation-map {
    flex: 0 0 clamp(270px, 62vw, 390px);
    width: min(720px, 124vw);
    height: clamp(270px, 62vw, 390px);
    aspect-ratio: auto;
    transform: none;
    overflow: visible;
    margin-block: -34px -24px;
  }
  .feature-animation-map svg {
    transform: scale(4.65);
    transform-origin: center;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; background: none; border: none; padding: 0; gap: 12px; backdrop-filter: none; }
  .waitlist-form input {
    background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px; padding: 15px 22px;
  }
  .waitlist-form .btn { width: 100%; }
  .store-badge { height: 50px; }
  .detect-mobile-head {
    display: block;
    order: -2;
    width: min(100%, 92vw);
    max-width: 520px;
    margin: 0 auto 8px;
    text-align: center;
  }
  .detect-mobile-head .eyebrow {
    margin: 0 auto 20px;
  }
  .detect-mobile-head h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.55rem);
    line-height: 1.22;
    overflow-wrap: normal;
  }
  .detect-copy > .eyebrow,
  .detect-copy > h2 {
    display: none;
  }
  .option-art img {
    width: clamp(190px, 46vw, 240px);
    height: clamp(190px, 46vw, 240px);
  }
  .hero-media { min-height: clamp(440px, 98vw, 590px); }
  .hero-stock-img { inset-block-start: -20px; inset-inline-start: 0; width: min(540px, 88%); border-radius: 12px; }
  .hero-phones-img {
    inset-block-end: -72px;
    inset-inline-end: -26px;
    width: min(520px, 84%);
  }
  .detect-visual {
    width: 100%;
    overflow: visible;
  }
  .detect-stage {
    width: min(470px, 94vw);
    transform: scale(1.08);
    transform-origin: center top;
  }
  .detect-copy {
    width: min(100%, 92vw);
    margin-inline: auto;
  }
  .detect-lead,
  .detect-flow {
    width: 100%;
  }
  .float-card { max-width: 200px; }
  .float-card-a { inset-inline-end: -14px; top: 40px; }
  .float-card-b { inset-inline-start: -14px; bottom: 60px; }
  .why-title-line { white-space: normal; }
  .table-scroll {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 44px -34px rgba(8, 20, 14, .9);
  }
  .compare {
    display: table;
    min-width: 0;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: .7rem;
  }
  .compare thead { display: table-header-group; }
  .compare tbody {
    display: table-row-group;
  }
  .compare tr {
    display: table-row;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }
  .compare th,
  .compare td {
    display: table-cell;
    padding: 12px 7px;
    text-align: center;
    vertical-align: middle;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .compare th + th,
  .compare td + td {
    border-inline-start: 1px solid rgba(255, 255, 255, .10);
  }
  .compare th:nth-child(1),
  .compare td:nth-child(1) {
    width: 27% !important;
  }
  .compare th:nth-child(2),
  .compare td:nth-child(2) {
    width: 34% !important;
  }
  .compare th:nth-child(3),
  .compare td:nth-child(3) {
    width: 39% !important;
  }
  .compare thead th {
    padding: 9px 6px;
    font-size: .68rem;
    line-height: 1.2;
  }
  .compare tbody td:first-child {
    background: transparent;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.35;
    border-top: 1px solid rgba(255, 255, 255, .10);
    padding-inline: 8px;
  }
  .compare tbody .spy-col,
  .compare tbody .pyng-col {
    position: static;
    border-top: 1px solid rgba(255, 255, 255, .10);
  }
  .compare tbody .spy-col {
    color: #9DB2A5;
    background: transparent;
    font-size: .66rem;
  }
  .compare tbody .pyng-col {
    background: rgba(255, 255, 255, .94);
    color: var(--forest);
    font-size: .68rem;
    border-top-color: #E4F0E7;
  }
  .compare tbody .spy-col::before,
  .compare tbody .pyng-col::before { content: none; }
  .compare .cell {
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    gap: 5px;
    line-height: 1.35;
  }
  .compare .cell > span:last-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .compare tbody .spy-col .cell {
    opacity: 1;
  }
  .mark {
    width: 16px;
    height: 16px;
    font-size: .56rem;
    margin-top: 1px;
  }
  .mark.bad::before {
    font-size: .5rem;
  }
  .pyng-th {
    transform: none;
  }
  .pyng-th-logo {
    height: 30px;
  }
  .pyng-th-tag {
    display: none;
  }
  .calc-controls, .calc-summary { padding: 26px 20px; }
  .calc-controls { min-height: auto; }
  .calc-top {
    align-items: center;
    gap: 8px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .calc-contact {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
  }
  .calc-summary {
    grid-template-columns: 1fr;
  }
  .plan-actions { gap: 16px; }
  .sum-lines { padding-top: 14px; }
}

@media (max-width: 420px) {
  .store-badges { gap: 10px; }
  .store-badge { height: 46px; }
  .hero-media { min-height: 430px; }
  .hero-stock-img { inset-block-start: -14px; inset-inline-start: 0; width: 88%; }
  .hero-phones-img {
    inset-block-end: -76px;
    inset-inline-end: -28px;
    width: 86%;
  }
  .detect-stage {
    width: min(410px, 95vw);
    transform: scale(1.1);
  }
  .feature-animation-map {
    flex-basis: 280px;
    width: 128vw;
    height: 280px;
  }
  .feature-animation-map svg { transform: scale(5.25); }
  .phone { width: 262px; }
  .phone-screen { min-height: 540px; }
  .sum-amount { font-size: clamp(2rem, 14vw, 2.8rem); }
  .sum-line { font-size: .82rem; }
  .bt-opt { font-size: .84rem; gap: 5px; }
  .bt-opt em { font-size: .58rem; padding-inline: 6px; }
}
