/* ==========================================================================
   SOSPoint - main.css  (v2)
   Refined minimalism · cinematic atmosphere · safety-grade tone
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Geist+Mono:wght@300..700&display=swap');

/* ----- Reset & root ----------------------------------------------------- */

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

html {
  scroll-padding-top: 80px; /* sticky header offset for anchor links */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-0);
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:root {
  --bg-0: #0b1220;
  --bg-1: #111a2e;
  --bg-2: #18233b;
  --bg-3: #1f2c47;

  --accent: #FF3B30;
  --accent-2: #FF5544;
  --accent-glow: rgba(255, 59, 48, 0.55);
  --accent-soft: rgba(255, 59, 48, 0.10);

  --text: #FAFAFA;
  --text-2: #A0A0A8;
  --text-3: #5E5E66;
  --text-4: #38383E;

  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.12);
  --line-accent: rgba(255, 59, 48, 0.22);

  --font: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --t-display: clamp(3rem, 7vw, 5.75rem);
  --t-h1: clamp(2rem, 4vw, 3.25rem);
  --t-h2: clamp(1.35rem, 2.4vw, 1.85rem);
  --t-h3: 1.15rem;
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;
  --t-micro: 0.7rem;
  --t-mega: clamp(4rem, 8vw, 7rem);

  --max-w: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-py: clamp(4rem, 10vh, 7rem);

  --radius: 14px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- Utilities -------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.muted { color: var(--text-2); }

/* ----- Buttons (Cadence-style: outlined, subtle, glowing on primary) ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 46px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
}

.btn__icon svg { width: 10px; height: 10px; }

.btn--primary {
  background: rgba(255, 59, 48, 0.06);
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.05), 0 8px 32px -12px var(--accent-glow);
}

.btn--primary::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
  z-index: -1;
  animation: pulse-ring 2.6s ease-out infinite;
}

.btn--primary:hover {
  background: rgba(255, 59, 48, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.08), 0 14px 40px -12px var(--accent-glow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-2);
  border: 1px solid var(--line-2);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn--header {
  height: 36px;
  padding: 0 0.95rem;
  font-size: 0.85rem;
}

.btn--header.btn--primary::after { display: none; }
.btn--header.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 16px -8px var(--accent-glow);
}
.btn--header.btn--primary:hover { background: var(--accent-2); }

@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.5; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* CTA - rotating gradient on border ring (real perimeter glow) */

@property --cta-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn--primary.btn--glow {
  position: relative;
  isolation: isolate;
  /* Two-layer background: opaque interior + conic border ring.
     The transparent border lets the conic show through only in the border zone. */
  background:
    /* Inner: opaque red-tinted color matching the button "fill" look */
    linear-gradient(#1a1422, #1a1422) padding-box,
    /* Border: rotating conic gradient (bright spot orbits perimeter) */
    conic-gradient(
      from var(--cta-angle),
      transparent 0deg,
      var(--accent) 50deg,
      rgba(255, 200, 180, 0.95) 80deg,
      transparent 130deg,
      transparent 360deg
    ) border-box;
  border: 2px solid transparent;
  animation: cta-spin 3.2s linear infinite;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease);
}
@keyframes cta-spin {
  to { --cta-angle: 360deg; }
}

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

/* Soft ambient halo underneath (gentle pulse) */
.btn--primary.btn--glow::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.42), transparent 65%);
  filter: blur(14px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  animation: cta-halo 3s ease-in-out infinite;
}
@keyframes cta-halo {
  0%, 100% { opacity: 0.40; transform: scale(0.96); }
  50%      { opacity: 0.70; transform: scale(1.05); }
}

/* Disable old comet (the "линия" that Olga saw) */
.btn--primary.btn--glow::before { display: none; content: none; }

/* Fallback for browsers without @property - solid red border */
@supports not (background: paint(houdini-test)) {
  /* Modern browsers fall back from @property only if it actually fails to register.
     Browsers without @property won't animate --cta-angle, so the conic stays static.
     The static gradient still gives a nice red-edge ring. */
}

/* Header "Скачать" - slightly more prominent light pulse */
.header-cta {
  animation: header-cta-pulse 2.8s ease-in-out infinite;
  position: relative;
}
@keyframes header-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.0), 0 0 16px -4px rgba(255, 59, 48, 0.2); }
  50%      { box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.22), 0 0 24px -2px rgba(255, 59, 48, 0.6); }
}

/* ----- Floating particles ---------------------------------------------- */

.particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #FF8866;
  box-shadow: 0 0 14px var(--accent-glow);
  opacity: 0.7;
  pointer-events: none;
}

.particle--1 { top: 22%; left: 18%; animation: drift1 24s ease-in-out infinite alternate; }
.particle--2 { top: 65%; left: 78%; animation: drift2 28s ease-in-out infinite alternate; }
.particle--3 { top: 38%; left: 70%; animation: drift3 22s ease-in-out infinite alternate; }
.particle--4 { top: 80%; left: 28%; animation: drift1 30s ease-in-out infinite alternate; }
.particle--5 { top: 18%; left: 76%; animation: drift2 26s ease-in-out infinite alternate; }
.particle--6 { top: 70%; left: 12%; animation: drift3 32s ease-in-out infinite alternate; }

@keyframes drift1 {
  from { transform: translate(0, 0); opacity: 0.7; }
  to   { transform: translate(50px, -40px); opacity: 0.35; }
}
@keyframes drift2 {
  from { transform: translate(0, 0); opacity: 0.6; }
  to   { transform: translate(-40px, 50px); opacity: 0.3; }
}
@keyframes drift3 {
  from { transform: translate(0, 0); opacity: 0.5; }
  to   { transform: translate(60px, 30px); opacity: 0.25; }
}

/* ----- Corner scan brackets -------------------------------------------- */

.scan-bracket {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  opacity: 0.4;
  pointer-events: none;
}

.scan-bracket--tl { top: 12%;  left: 8%;   border-top-width: 1px; border-left-width: 1px; }
.scan-bracket--tr { top: 12%;  right: 8%;  border-top-width: 1px; border-right-width: 1px; }
.scan-bracket--bl { bottom:18%; left: 8%;  border-bottom-width: 1px; border-left-width: 1px; }
.scan-bracket--br { bottom:18%; right: 8%; border-bottom-width: 1px; border-right-width: 1px; }

/* ----- Header ----------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0.875rem 0;
  background: linear-gradient(to bottom, rgba(11, 18, 32, 0.85), rgba(11, 18, 32, 0.0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

.logo__pin {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo__text {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.2s var(--ease);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.lang-switcher {
  position: relative;
  font-family: var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.lang-switcher__current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px 7px 14px;
  height: 36px;
  font-size: 0.85rem;
  color: var(--text);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: border-color 0.2s var(--ease);
}
.lang-switcher__current:hover {
  border-color: var(--line-accent);
}
.lang-switcher__current svg {
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.lang-switcher__current[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 5px;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
  min-width: 86px;
  z-index: 100;
}
.lang-switcher__menu[hidden] { display: none; }
.lang-switcher__menu li { margin: 0; }
.lang-switcher__menu button {
  display: block;
  width: 100%;
  padding: 8px 14px;
  font-family: var(--font);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text-2);
  border-radius: 6px;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
  font-weight: 500;
}
.lang-switcher__menu button:hover {
  background: var(--bg-2);
  color: var(--text);
}
.lang-switcher__menu button.is-active {
  color: var(--accent);
  background: rgba(255, 59, 48, 0.06);
}

@media (max-width: 920px) {
  .nav { display: none; }
}

/* ----- Hero ------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
  isolation: isolate;
}

/* Hero atmospheric background - Cadence-style (orbs + streaks + sparkles) */

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Faint concentric rings centered on hero */
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(700px, 60vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 59, 48, 0.10);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 59, 48, 0.05);
  border-radius: 50%;
}

/* 3 drifting soft-glow orbs */
.hero-orb {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.13), transparent 70%);
  filter: blur(100px);
  border-radius: 50%;
  will-change: transform;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  margin: -300px 0 0 -300px;
  animation: hero-orb-drift 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: 30%; left: 25%;
  margin: -250px 0 0 -250px;
  animation: hero-orb-drift 15s -4s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(255, 90, 70, 0.10), transparent 70%);
}
.hero-orb-3 {
  width: 350px; height: 350px;
  top: 70%; left: 75%;
  margin: -175px 0 0 -175px;
  animation: hero-orb-drift 18s -8s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(255, 70, 50, 0.11), transparent 70%);
}

@keyframes hero-orb-drift {
  0%   { transform: translate(0, 0)        scale(1);    }
  33%  { transform: translate(40px, -30px) scale(1.07); }
  66%  { transform: translate(-30px, 25px) scale(0.95); }
  100% { transform: translate(20px, -15px) scale(1.03); }
}

/* USA map outline + GPS pulse dots - atmospheric background layer */
.hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

.hero-map__states path {
  vector-effect: non-scaling-stroke;
}

.hero-map .gps-dot circle:last-of-type {
  filter: drop-shadow(0 0 4px rgba(255, 59, 48, 0.85));
}

/* Twinkling sparkle dots */
.hero-sparkle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(255, 200, 180, 0.95);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 150, 130, 0.6);
  animation: twinkle 4s ease-in-out infinite;
  will-change: transform, opacity;
}
.hero-sparkle:nth-child(8n+1) { animation-duration: 3.2s; animation-delay: 0s;   }
.hero-sparkle:nth-child(8n+2) { animation-duration: 4.8s; animation-delay: 0.6s; }
.hero-sparkle:nth-child(8n+3) { animation-duration: 5.4s; animation-delay: 1.2s; }
.hero-sparkle:nth-child(8n+4) { animation-duration: 3.6s; animation-delay: 1.9s; }
.hero-sparkle:nth-child(8n+5) { animation-duration: 4.2s; animation-delay: 2.5s; }
.hero-sparkle:nth-child(8n+6) { animation-duration: 5.0s; animation-delay: 0.3s; }
.hero-sparkle:nth-child(8n+7) { animation-duration: 3.4s; animation-delay: 1.5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.7); }
  50%      { opacity: 1;    transform: scale(1.4); }
}

.hero__inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.05rem;
  border: 1px solid var(--line-accent);
  border-radius: 999px;
  background: rgba(255, 59, 48, 0.10);
  color: #FF6B62;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: rise 0.9s var(--ease) both;
}

.hero__pill svg { width: 13px; height: 13px; }

.hero h1 {
  font-size: var(--t-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  animation: rise 1s var(--ease) 0.1s both;
}

.hero h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 60px var(--accent-glow);
  font-weight: 700;
}

.hero h1 .line { display: block; }

.hero__sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2rem;
  animation: rise 1s var(--ease) 0.2s both;
  line-height: 1.55;
}
.hero__sub span { display: block; }

.hero__cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 3rem;
  animation: rise 1s var(--ease) 0.3s both;
}

.hero__stats {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
  animation: rise 1.2s var(--ease) 0.5s both;
  margin-top: 0.5rem;
}

.hero__stats > * {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}

.hero__stat strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__stat span {
  color: var(--text-3);
  font-size: 0.82rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.hero__stats-sep {
  width: 1px;
  height: 18px;
  background: var(--line-2);
  flex-shrink: 0;
  align-self: center;
}

/* Legacy .sep kept for back-compat */
.hero__stats .sep {
  width: 1px;
  height: 14px;
  background: var(--line-2);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Marquee --------------------------------------------------------- */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
  padding: 1.1rem 0;
  --marquee-duration: 50s;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before { left: 0;  background: linear-gradient(to right, var(--bg-0), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg-0), transparent); }

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}

.marquee__item::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.marquee__item strong {
  color: var(--accent);
  font-weight: 500;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee__track { animation-play-state: paused; }

/* ----- Section base ----------------------------------------------------- */

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--bordered { border-top: 1px solid var(--line); }

.section-head {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 0.875rem; }

.section-head h2 {
  font-size: var(--t-h1);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 0.875rem;
}

.section-head h2 .accent { color: var(--accent); }

.section-head p {
  color: var(--text-2);
  font-size: 1.0625rem;
  margin: 0;
}

/* ----- Compact moments (3-column "Больше, чем приложение") ------------ */

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.moment-card {
  position: relative;
  padding: 0;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.moment-card:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
}

/* Image at top of card - atmospheric photo with gradient fade to card body */
.moment-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.moment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.85) saturate(1.1);
}

.moment-card:hover .moment-card__img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.2);
}

/* Vertical gradient overlay - fades photo into card bg at bottom for clean numeral overlap */
.moment-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 18, 32, 0.20) 0%,
    rgba(11, 18, 32, 0.50) 60%,
    var(--bg-1) 100%);
  pointer-events: none;
}

.moment-card__body {
  padding: 0 1.5rem 1.75rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.moment-card__num {
  font-family: var(--font-mono);
  font-size: var(--t-mega);
  font-weight: 200;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--accent);
  letter-spacing: -0.03em;
  /* Pull numeral up to overlap image area (gradient fade behind) */
  margin-top: -90px;
  margin-bottom: 0.875rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 60px rgba(255, 59, 48, 0.30);
}

.moment-card__step {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.625rem;
}

.moment-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 0.75rem;
}

.moment-card__desc {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

@media (max-width: 880px) {
  .moments-grid { grid-template-columns: 1fr; }
  .moment-card__num { font-size: 5rem; margin-top: -70px; }
  .moment-card__media { height: 180px; }
}

/* ----- Tech cards (3-column) ------------------------------------------- */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tech-card {
  position: relative;
  padding: 1.625rem;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0) 80%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.tech-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, var(--accent-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.tech-card:hover {
  border-color: var(--line-accent);
  transform: translateY(-2px);
}

.tech-card:hover::before { opacity: 1; }

.tech-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.875rem;
  gap: 0.6rem;
  position: relative;
  text-align: center;
}

.tech-card__title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-align: center;
}

.tech-card__title::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.tech-card__pill {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--line-accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.tech-card__desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 auto;
  text-align: center;
}

.tech-card__viz {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  min-height: 100px;
  display: grid;
  place-items: center;
  position: relative;
}

.tech-card__viz svg { width: 100%; max-width: 240px; }

/* GNSS rotating orbits */
.gnss-orbit { transform-origin: 120px 60px; transform-box: fill-box; }
.gnss-orbit--1 { animation: orbit-spin 18s linear infinite; transform-origin: center; }
.gnss-orbit--2 { animation: orbit-spin 26s linear infinite reverse; transform-origin: center; }
.gnss-orbit--3 { animation: orbit-spin 32s linear infinite; transform-origin: center; }

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (max-width: 880px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ----- "Близким не нужно приложение" ----------------------------------- */

.no-app {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
}

.no-app__visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.no-app__visual::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(50px);
}

.no-app__visual svg { position: relative; max-width: 460px; width: 100%; }

.no-app__text .eyebrow { margin-bottom: 1rem; }

.no-app__text h2 {
  font-size: var(--t-h1);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
}

.no-app__text h2 .accent { color: var(--accent); }

.no-app__text p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.55;
  max-width: 480px;
}

.no-app__quote {
  margin-top: 1.75rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--accent);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--text);
}

@media (max-width: 880px) {
  .no-app { grid-template-columns: 1fr; gap: 2.5rem; }
}




/* ----- Comparison table ------------------------------------------------- */

.comparison {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-1);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child { border-bottom: 0; }

.comparison-row--head { background: rgba(255,255,255,0.02); }

.comparison-row--head > * {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}

.comparison-row--head .col-sospoint { 
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0.02em;
}

.col-feature { font-weight: 400; color: var(--text); font-size: 0.95rem; }
.col-others { color: var(--text-2); font-size: 0.95rem; }
.col-sospoint { color: var(--accent); font-weight: 500; font-size: 0.95rem; }

/* Icons next to comparison cells (data rows only - head row stays clean) */
.comparison-row:not(.comparison-row--head) .col-others,
.comparison-row:not(.comparison-row--head) .col-sospoint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.comparison-row:not(.comparison-row--head) .col-others::before,
.comparison-row:not(.comparison-row--head) .col-sospoint::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ✗ - brand red for clear negative signal in comparison */
.comparison-row:not(.comparison-row--head) .col-others::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF3B30' stroke-width='2.4' stroke-linecap='round'><circle cx='12' cy='12' r='9.5'/><line x1='8' y1='8' x2='16' y2='16'/><line x1='8' y1='16' x2='16' y2='8'/></svg>");
}

/* ✓ - emerald green for clear "yes / has it" signal */
.comparison-row:not(.comparison-row--head) .col-sospoint::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334D399' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9.5'/><polyline points='7.5 12.5 10.5 15.5 16.5 8.5'/></svg>");
}

@media (max-width: 720px) {
  .comparison-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem 1.25rem; }
  .comparison-row--head { display: none; }
  .col-feature { font-weight: 500; }
}

/* ----- Final CTA -------------------------------------------------------- */

.final-cta {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) 0;
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, var(--accent-soft), transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.final-cta .eyebrow { margin-bottom: 1rem; justify-content: center; display: inline-flex; }

.final-cta h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

.final-cta h2 .accent { color: var(--accent); }

.final-cta__lede,
.final-cta p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 auto 1.25rem;
  max-width: 560px;
  text-align: center;
}
.final-cta__lede span { display: inline; }
.final-cta__lede br { display: block; line-height: 0.4; }
.final-cta__quote span { display: block; }

.final-cta__hint {
  font-style: italic;
  color: var(--text-3);
  margin: 0 auto 2.5rem !important;
  font-size: 1rem;
  max-width: 560px;
}

.store-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  height: 56px;
  padding: 0 1.25rem;
  border-radius: 12px;
  background: #000;
  border: 1px solid var(--line-2);
  transition: all 0.25s var(--ease);
  text-align: left;
}

.store-btn:hover {
  border-color: var(--accent);
  background: #0A0A0E;
  transform: translateY(-1px);
  box-shadow: 0 10px 32px -16px var(--accent-glow);
}

.store-btn svg { width: 26px; height: 26px; flex-shrink: 0; }

.store-btn__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.15;
}

.store-btn__small {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--text-2);
  text-transform: uppercase;
  line-height: 1;
}

.store-btn__big {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.1;
}

/* ----- Footer ----------------------------------------------------------- */

.site-footer {
  padding: 4.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg-1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo { margin-bottom: 1rem; }

.footer-tag {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1.25rem 0 0.5rem;
}

.footer-tag .accent { color: var(--accent); }

.footer-tag-en {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 1.1rem;
}

.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}

.footer-col a {
  color: var(--text-2);
  font-size: 0.9375rem;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.825rem;
  color: var(--text-3);
}

.footer-bottom__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-3);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}

.footer-social__link:hover {
  color: var(--accent);
  border-color: rgba(255, 59, 48, 0.4);
  background: rgba(255, 59, 48, 0.05);
  transform: translateY(-1px);
}

@media (max-width: 540px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .footer-social { align-self: flex-start; }
  .footer-social__link { width: 32px; height: 32px; }
  .footer-social__link svg { width: 16px; height: 16px; }
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ----- Reveal on scroll ------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }

/* ----- Reduced motion respect ------------------------------------------ */

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

/* ----- Patches: classes used in HTML but missing in original CSS -------- */

/* Section lead - large intro text after section head */
.section-lead {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-2);
}
.section-lead span { display: block; }

/* Softer secondary lead under the main one - bright enough to read clearly */
.section-lead-soft {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  opacity: 0.78;
}

/* Marquee reverse direction */
.marquee--reverse .marquee__track {
  animation-direction: reverse;
}

/* Final CTA - lede paragraph (now consolidated above with .final-cta p) */

/* Final CTA - italic quote box with red accent */
.final-cta__quote {
  position: relative;
  max-width: 540px;
  margin: 0.5rem auto 2.5rem;
  padding: 1.25rem 2rem;
  border-left: 2px solid var(--accent);
  background: rgba(255, 59, 48, 0.045);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-2);
  text-align: center;
}

/* Store badges wrapper - center as a block */
.store-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0.5rem 0 0;
}


/* ----- Waitlist block (replaces old store buttons) --------------------- */

/* Critical: hidden attribute must always hide, even when display is overridden */
.waitlist [hidden] { display: none !important; }

.waitlist {
  max-width: 540px;
  margin: 1rem auto 0;
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 59, 48, 0.04), rgba(255, 59, 48, 0.01));
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.waitlist__head {
  margin-bottom: 1.25rem;
}

.waitlist__eyebrow {
  margin-bottom: 0.875rem;
}

.waitlist__title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
}

.waitlist__perk {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.45;
}
.waitlist__perk strong {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 4px;
  background: rgba(255, 59, 48, 0.12);
  color: var(--accent);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85em;
  letter-spacing: 0.04em;
}

.waitlist__form {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 0.875rem;
}

.waitlist__input {
  flex: 1;
  padding: 0 1rem;
  height: 46px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.waitlist__input::placeholder { color: var(--text-3); }
.waitlist__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}
.waitlist__input:disabled { opacity: 0.5; cursor: not-allowed; }

.waitlist__submit {
  height: 46px;
  padding: 0 1.4rem;
  font-size: 0.95rem;
  white-space: nowrap;
  position: relative;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.waitlist__submit:hover {
  background: #FF5246;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(255, 59, 48, 0.6);
}
.waitlist__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.waitlist__btn-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  margin-left: 0.5rem;
  animation: waitlist-spin 0.7s linear infinite;
  vertical-align: middle;
}
.waitlist--loading .waitlist__btn-spinner { display: inline-block; }
.waitlist--loading .waitlist__btn-label { opacity: 0.85; }

@keyframes waitlist-spin {
  to { transform: rotate(360deg); }
}

.waitlist__success {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: rgba(52, 211, 153, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 10px;
  text-align: left;
  margin: 0 0 0.875rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
  animation: waitlist-success-in 0.4s var(--ease) both;
}
.waitlist__check {
  width: 22px; height: 22px;
  color: #34D399;
  flex-shrink: 0;
  margin-top: 1px;
}
.waitlist__success strong { color: #34D399; margin-right: 0.25rem; }

.waitlist__success-spam {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 400;
  line-height: 1.4;
}

@keyframes waitlist-success-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.waitlist__error {
  padding: 0.6rem 0.875rem;
  background: rgba(255, 59, 48, 0.10);
  border: 1px solid rgba(255, 59, 48, 0.35);
  border-radius: 10px;
  text-align: left;
  margin: 0 0 0.875rem;
  color: var(--accent);
  font-size: 0.9rem;
}

.waitlist__note {
  margin: 0 0 1.25rem;
  color: var(--text-3);
  font-size: 0.78rem;
  letter-spacing: 0.005em;
}

/* Visual store badges (non-clickable, "coming soon" reminder) */
.waitlist__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-3);
}

.waitlist__stores-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.waitlist__store {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
}
.waitlist__store svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 540px) {
  .waitlist { padding: 1.5rem 1.25rem 1.25rem; }
  .waitlist__form { flex-direction: column; }
  .waitlist__submit { width: 100%; }
  .waitlist__title { font-size: 1.2rem; }
}

/* Compact final-cta block on mobile so it fits viewport when centered-scrolled to from /pricing.php */
@media (max-width: 720px) {
  .final-cta {
    padding: 2.5rem 0 2.5rem;
  }
  .final-cta__inner {
    padding: 0 1rem;
  }
  .final-cta .eyebrow {
    margin-bottom: 0.65rem;
  }
  .final-cta h2 {
    font-size: 1.85rem !important;
    line-height: 1.05;
    margin: 0 0 0.75rem;
  }
  .final-cta__lede,
  .final-cta p {
    font-size: 0.92rem !important;
    line-height: 1.45;
    margin: 0 auto 0.85rem;
    max-width: 320px;
  }
  .final-cta__quote {
    padding: 0.65rem 0.85rem !important;
    margin: 0 auto 1.25rem !important;
  }
  .final-cta__quote p,
  .final-cta__quote span {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }
  .final-cta__hint {
    font-size: 0.85rem !important;
    margin: 0 auto 1.25rem !important;
  }
  .waitlist {
    padding: 1.25rem 1rem 1.1rem !important;
    margin-top: 0.5rem;
  }
  .waitlist__head {
    margin-bottom: 0.85rem;
  }
  .waitlist__title {
    font-size: 1.05rem !important;
    line-height: 1.3;
  }
  .waitlist__perk {
    font-size: 0.78rem;
    line-height: 1.35;
  }
  .waitlist__form {
    gap: 0.5rem;
  }
  .waitlist__input,
  .waitlist__submit {
    padding: 0.75rem 1rem !important;
    font-size: 0.92rem !important;
  }
  .waitlist__small,
  .waitlist__legal {
    font-size: 0.72rem;
    line-height: 1.4;
  }
  .waitlist__stores-row {
    margin-top: 0.85rem;
    gap: 0.6rem;
  }
  .waitlist__stores-label {
    font-size: 0.62rem;
  }
  .waitlist__store {
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
  }
}

/* ----- Hamburger button (mobile only) ---------------------------------- */

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--accent); }

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}

/* Active state: lines morph into X */
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ----- Mobile menu drawer --------------------------------------------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86%, 380px);
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  border-left: 1px solid var(--line);
  padding: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -16px 0 60px -20px rgba(0, 0, 0, 0.6);
}
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

/* Subtle red accent line on the left edge of the panel for brand identity */
.mobile-menu__panel::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  opacity: 0.6;
}

/* Drawer header (logo + close button) */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.mobile-menu__brand-pin {
  width: 30px;
  height: 34px;
  object-fit: contain;
}
.mobile-menu__brand-text {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.mobile-menu__close:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}
.mobile-menu__close svg { width: 16px; height: 16px; }

/* Tagline below header */
.mobile-menu__tagline {
  margin: 1.25rem 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
}
.mobile-menu__tagline span { display: block; }
.mobile-menu__tagline .accent { color: var(--accent); }

/* Nav links - large, with chevrons + red accent line on hover */
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}
.mobile-menu__nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0.5rem 0.95rem 0.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.18s var(--ease), padding 0.2s var(--ease);
}
.mobile-menu__nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.2s var(--ease);
}
.mobile-menu__nav a:hover::before,
.mobile-menu__nav a:focus::before { transform: translateY(-50%) scaleY(1); }
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus { color: var(--accent); padding-left: 1.1rem; }
.mobile-menu__nav a:last-child { border-bottom: 0; }
.mobile-menu__nav a svg {
  width: 14px;
  height: 14px;
  color: var(--text-3);
  transition: color 0.18s var(--ease), transform 0.2s var(--ease);
}
.mobile-menu__nav a:hover svg,
.mobile-menu__nav a:focus svg {
  color: var(--accent);
  transform: translateX(3px);
}

/* Lang switcher - refined inline buttons */
.mobile-menu__lang {
  margin: 1.5rem 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mobile-menu__lang-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.85rem;
}
.mobile-menu__lang-row {
  display: flex;
  gap: 0.4rem;
}
.mobile-menu__lang-row button {
  flex: 1;
  padding: 0.55rem 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}
.mobile-menu__lang-row button:hover {
  border-color: var(--line-2);
  color: var(--text);
}
.mobile-menu__lang-row button.is-active {
  background: rgba(255, 59, 48, 0.08);
  border-color: var(--line-accent);
  color: var(--accent);
}

/* Footer of drawer - solid red CTA + small note */
.mobile-menu__footer {
  margin-top: auto;
  padding: 1.5rem 1.5rem 0;
}
.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 48px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 28px -10px rgba(255, 59, 48, 0.55);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.mobile-menu__cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.mobile-menu__cta::after { display: none; } /* Disable any inherited pulse ring */
.mobile-menu__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.mobile-menu__cta-note {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* Lock body scroll when menu is open */
body.menu-open { overflow: hidden; }

/* ----- Mobile-only header reorganization ------------------------------ */

@media (max-width: 920px) {
  .header-actions { gap: 0.4rem; }

  /* Compact lang-switcher visible on mobile (between logo and Download) */
  .lang-switcher__current {
    padding: 0.4rem 0.55rem;
    font-size: 0.78rem;
    gap: 0.25rem;
  }
  .lang-switcher__current svg { width: 8px; height: 8px; }
  .lang-switcher__menu {
    min-width: 84px;
    padding: 0.3rem;
  }
  .lang-switcher__menu button {
    font-size: 0.78rem;
    padding: 0.45rem 0.6rem;
  }

  .header-cta {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }
  .nav-toggle { display: inline-flex; }
}

/* Tighter further on very narrow screens */
@media (max-width: 380px) {
  .header-actions { gap: 0.3rem; }
  .header-cta { padding: 0.42rem 0.75rem; font-size: 0.78rem; }
  .lang-switcher__current { padding: 0.38rem 0.5rem; font-size: 0.74rem; }
}

/* ----- Hero stats - let labels wrap naturally on narrow screens ------- */

@media (max-width: 540px) {
  .hero__stat span { white-space: normal; }
  .hero__stats { gap: 0.4rem 0.875rem; font-size: 0.75rem; }
  .hero__stats-sep { display: none; }
  .hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
    flex: 1 0 30%;
    min-width: 90px;
  }
}

/* ----- Hide nav-toggle if menu open on desktop (defensive) ------------ */

@media (min-width: 921px) {
  .nav-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}

/* ============================================================================
   MOBILE OVERHAUL - premium compaction (replaces / extends earlier rules)
   ============================================================================ */

@media (max-width: 720px) {

  /* ---------- 3. Moments - tighter, less padding, smaller numerals ---- */
  .moments-grid { gap: 1.25rem !important; }
  .moment-card__media { height: 160px !important; }
  .moment-card__num {
    font-size: 4rem !important;
    margin-top: -56px !important;
    margin-left: 1.25rem !important;
  }
  .moment-card__body { padding: 0 1.25rem 1.25rem !important; }
  .moment-card__title { font-size: 1.05rem; line-height: 1.25; }
  .moment-card__desc { font-size: 0.875rem; line-height: 1.55; }
  .moment-card__step { font-size: 0.65rem; }

  /* ---------- 4. Tech cards - tighter, smaller viz ------------------- */
  .tech-card { padding: 1.5rem 1.25rem !important; gap: 0.8rem !important; }
  .tech-card__title { font-size: 1.05rem !important; }
  .tech-card__desc { font-size: 0.875rem !important; line-height: 1.5 !important; }
  .tech-card__viz { height: 80px; padding: 0.5rem 0; }
  .tech-card__viz svg { max-height: 80px; }

  /* ---------- 5. No-app - image LEFT + text RIGHT (compact horizontal) */
  .no-app {
    grid-template-columns: 110px 1fr !important;
    gap: 1.25rem !important;
    align-items: center;
  }
  .no-app__visual svg { max-width: 110px !important; width: 100% !important; }
  .no-app__visual::before { inset: 18%; filter: blur(28px) !important; }
  .no-app__text .eyebrow { font-size: 0.62rem; margin-bottom: 0.65rem !important; }
  .no-app__text h2 { font-size: 1.2rem !important; line-height: 1.2 !important; margin-bottom: 0.65rem !important; }
  .no-app__text p { font-size: 0.875rem !important; line-height: 1.5; margin-bottom: 0.65rem !important; }
  .no-app__quote { font-size: 0.85rem !important; padding: 0.65rem 0.85rem !important; }

  /* ---------- 6. Comparison - keep 3-column on mobile, tighter ------- */
  .comparison-row {
    grid-template-columns: 1.3fr 1fr 1fr !important;
    gap: 0.5rem !important;
    padding: 0.85rem 0.875rem !important;
    align-items: flex-start !important;
  }
  .comparison-row--head { display: grid !important; }
  .comparison-row--head > * {
    font-size: 0.55rem !important;
    letter-spacing: 0.1em !important;
  }
  .col-feature { font-size: 0.75rem !important; font-weight: 500 !important; line-height: 1.3 !important; }
  .col-others, .col-sospoint { font-size: 0.75rem !important; line-height: 1.3 !important; }
  .comparison-row:not(.comparison-row--head) .col-others,
  .comparison-row:not(.comparison-row--head) .col-sospoint {
    gap: 0.35rem !important;
    align-items: flex-start;
  }
  .comparison-row:not(.comparison-row--head) .col-others::before,
  .comparison-row:not(.comparison-row--head) .col-sospoint::before {
    width: 14px !important;
    height: 14px !important;
    margin-top: 0.05rem !important;
  }

  /* ---------- 8. Footer - tight, laconic ----------------------------- */
  .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .footer-brand { margin-bottom: 0 !important; }
  .footer-tag { font-size: 0.95rem !important; line-height: 1.3 !important; margin-top: 0.85rem !important; }
  .footer-col h4 { font-size: 0.6rem !important; letter-spacing: 0.16em !important; margin-bottom: 0.5rem !important; }
  .footer-col ul { gap: 0 !important; }
  .footer-col li { padding: 0 !important; }
  .footer-col a { font-size: 0.875rem !important; padding: 0.35rem 0 !important; display: inline-block; }
  .site-footer { padding: 2.5rem 0 1.5rem !important; }
  .footer-bottom { padding-top: 1.25rem !important; font-size: 0.78rem !important; }
}

/* ---------- 7. Waitlist - input width on mobile ---------------------- */
@media (max-width: 540px) {
  .waitlist__input { width: 100% !important; flex: none !important; }
  .waitlist__submit { width: 100% !important; }
}

/* ============================================================================
   1. MOBILE MENU - radical simplification, premium minimalism
   (overrides the earlier mobile menu styles)
   ============================================================================ */

@media (max-width: 920px) {

  /* Strip the gradient and accent line - pure flat dark */
  .mobile-menu__panel {
    background: var(--bg-0) !important;
    width: 100% !important;
    border-left: 0 !important;
    box-shadow: none !important;
    padding: 1rem 0 1.25rem !important;
  }
  .mobile-menu__panel::before { display: none !important; }

  /* Header - minimal: small SOSPoint wordmark left, small X right */
  .mobile-menu__header {
    padding: 0.5rem 1.5rem 0.75rem !important;
    border-bottom: 0 !important;
  }
  .mobile-menu__brand-pin { width: 24px !important; height: 28px !important; }
  .mobile-menu__brand-text { font-size: 0.95rem !important; font-weight: 500 !important; }
  .mobile-menu__close {
    width: 32px !important; height: 32px !important;
    border: 0 !important;
    color: var(--text-2) !important;
  }
  .mobile-menu__close:hover {
    border: 0 !important;
    color: var(--text) !important;
    transform: none !important;
  }
  .mobile-menu__close svg { width: 18px !important; height: 18px !important; stroke-width: 1.5 !important; }

  /* Tagline - hide on mobile (too cluttering, drawer is already minimal) */
  .mobile-menu__tagline { display: none !important; }

  /* Nav - large generous typography, no chevrons, no dividers, no accent line */
  .mobile-menu__nav { padding: 1.5rem 1.5rem 0 !important; margin-top: 0 !important; }
  .mobile-menu__nav a {
    padding: 1.1rem 0 !important;
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.015em !important;
    border-bottom: 0 !important;
    color: var(--text) !important;
    justify-content: flex-start !important;
  }
  .mobile-menu__nav a::before { display: none !important; }
  .mobile-menu__nav a svg { display: none !important; }
  .mobile-menu__nav a:hover, .mobile-menu__nav a:focus {
    color: var(--accent) !important;
    padding-left: 0 !important;
  }

  /* Lang - minimal inline row, dot separators feel */
  .mobile-menu__lang {
    margin: 1.5rem 1.5rem 0 !important;
    padding: 1.25rem 0 0 !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 0 !important;
  }
  .mobile-menu__lang-label {
    font-size: 0.65rem !important;
    margin-bottom: 0.65rem !important;
    color: var(--text-3) !important;
  }
  .mobile-menu__lang-row {
    gap: 0.25rem !important;
  }
  .mobile-menu__lang-row button {
    flex: 0 0 auto !important;
    padding: 0.4rem 0.85rem !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--text-3) !important;
    font-size: 0.78rem !important;
  }
  .mobile-menu__lang-row button:hover { color: var(--text) !important; background: transparent !important; }
  .mobile-menu__lang-row button.is-active {
    color: var(--accent) !important;
    background: transparent !important;
    border: 0 !important;
  }

  /* Footer of drawer - solid red CTA, tight spacing */
  .mobile-menu__footer {
    margin-top: auto !important;
    padding: 1.5rem 1.5rem 0 !important;
  }
  .mobile-menu__cta {
    height: 50px !important;
    font-size: 0.95rem !important;
    box-shadow: none !important;
  }
  .mobile-menu__cta svg { width: 12px !important; height: 12px !important; }
  .mobile-menu__cta-note {
    font-size: 0.65rem !important;
    letter-spacing: 0.1em !important;
    margin-top: 0.65rem !important;
  }
}

/* ============================================================================
   MOBILE OVERHAUL v2 - addressing 8-issue feedback
   ============================================================================ */

/* === MENU: Full-screen Editorial style (Linear/Vercel-inspired) ============ */

@media (max-width: 920px) {
  .mobile-menu__panel {
    width: 100% !important;
    background: #0b1220 !important;
    background-image:
      radial-gradient(circle at 20% 0%, rgba(255, 59, 48, 0.06), transparent 50%),
      radial-gradient(circle at 100% 100%, rgba(255, 59, 48, 0.04), transparent 50%) !important;
    padding: 1.25rem 1.5rem 1.5rem !important;
  }

  .mobile-menu__header {
    padding: 0 0 1.25rem !important;
    border-bottom: 0 !important;
  }
  .mobile-menu__brand-pin { width: 22px !important; height: 25px !important; }
  .mobile-menu__brand-text { font-size: 0.95rem !important; font-weight: 500 !important; letter-spacing: -0.005em !important; }
  .mobile-menu__close {
    width: 30px !important; height: 30px !important;
    border: 0 !important; background: rgba(255,255,255,0.04) !important;
    color: var(--text-2) !important;
  }
  .mobile-menu__close:hover { background: rgba(255,255,255,0.08) !important; transform: none !important; color: var(--text) !important; }
  .mobile-menu__close svg { width: 14px !important; height: 14px !important; stroke-width: 1.5 !important; }

  .mobile-menu__tagline { display: none !important; }

  /* Editorial-scale typography for nav */
  .mobile-menu__nav {
    margin: 2.5rem 0 0 !important;
    padding: 0 !important;
    gap: 0 !important;
  }
  .mobile-menu__nav a {
    padding: 0.65rem 0 !important;
    font-size: 2.25rem !important;
    font-weight: 500 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.15 !important;
    border-bottom: 0 !important;
    color: var(--text) !important;
    justify-content: flex-start !important;
    transition: color 0.18s var(--ease), letter-spacing 0.2s var(--ease) !important;
    opacity: 0;
    transform: translateY(8px);
    animation: nav-stagger 0.5s var(--ease) forwards;
  }
  .mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { animation-delay: 0.12s; }
  .mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { animation-delay: 0.18s; }
  .mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { animation-delay: 0.24s; }
  .mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { animation-delay: 0.30s; }
  .mobile-menu__nav a::before { display: none !important; }
  .mobile-menu__nav a svg { display: none !important; }
  .mobile-menu__nav a:hover, .mobile-menu__nav a:focus {
    color: var(--accent) !important;
    padding-left: 0 !important;
    letter-spacing: -0.02em !important;
  }

  @keyframes nav-stagger {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Lang - minimal inline dot-separated */
  .mobile-menu__lang {
    margin: auto 0 1rem !important;
    padding: 1.5rem 0 0 !important;
    border-top: 1px solid var(--line) !important;
    border-bottom: 0 !important;
  }
  .mobile-menu__lang-label { display: none !important; }
  .mobile-menu__lang-row {
    gap: 0 !important;
    justify-content: flex-start !important;
  }
  .mobile-menu__lang-row button {
    flex: 0 0 auto !important;
    padding: 0.4rem 0.75rem 0.4rem 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--text-3) !important;
    font-family: var(--font-mono) !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.08em !important;
    position: relative !important;
  }
  .mobile-menu__lang-row button + button::before {
    content: '·';
    position: absolute;
    left: -0.5rem;
    color: var(--text-4);
  }
  .mobile-menu__lang-row button:hover { color: var(--text) !important; background: transparent !important; }
  .mobile-menu__lang-row button.is-active {
    color: var(--accent) !important; background: transparent !important; border: 0 !important;
  }

  .mobile-menu__footer { margin-top: 0 !important; padding: 0 !important; }
  .mobile-menu__cta {
    height: 52px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    box-shadow: 0 8px 24px -10px rgba(255, 59, 48, 0.5) !important;
  }
  .mobile-menu__cta-note {
    font-size: 0.65rem !important;
    letter-spacing: 0.12em !important;
    margin-top: 0.85rem !important;
  }
}

/* === ЗАЧЕМ block - radically more compact on mobile ======================== */

@media (max-width: 720px) {
  /* Lead paragraph + italic tagline reduced */
  .why-section .section-lead-soft,
  .section-lead,
  .reveal > p {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
  }
  .why-section h2,
  .section-header h2 {
    font-size: 1.7rem !important;
    line-height: 1.15 !important;
    margin-bottom: 0.85rem !important;
  }
  .section-header,
  .section-header.reveal {
    margin-bottom: 1.5rem !important;
  }

  /* Moments - even tighter */
  .moments-grid { gap: 1rem !important; margin-top: 1.5rem !important; }
  .moment-card__media { height: 150px !important; }
  .moment-card__num {
    font-size: 3.25rem !important;
    margin-top: -48px !important;
    margin-left: 1rem !important;
  }
  .moment-card__body { padding: 0 1rem 1rem !important; }
  .moment-card__step {
    font-size: 0.6rem !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.25rem !important;
  }
  .moment-card__title { font-size: 1rem !important; line-height: 1.25 !important; margin-bottom: 0.5rem !important; }
  .moment-card__desc { font-size: 0.85rem !important; line-height: 1.5 !important; }
}

/* === Tech block - way more compact ========================================= */

@media (max-width: 720px) {
  .tech-grid { gap: 1rem !important; margin-top: 1.5rem !important; }
  .tech-card { padding: 1.25rem 1.1rem !important; gap: 0.65rem !important; }
  .tech-card__title { font-size: 1rem !important; }
  .tech-card__pill {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.55rem !important;
    letter-spacing: 0.1em !important;
  }
  .tech-card__desc { font-size: 0.85rem !important; line-height: 1.5 !important; }
  .tech-card__viz {
    height: 65px !important;
    padding: 0.4rem 0 0 !important;
    margin-top: 0.4rem !important;
  }
  .tech-card__viz svg { max-height: 65px !important; }
}

/* === Comparison - fix alignment, tighter, less ragged ====================== */

@media (max-width: 720px) {
  .comparison-row {
    grid-template-columns: 1.1fr 1fr 1fr !important;
    gap: 0.4rem !important;
    padding: 0.75rem 0.7rem !important;
    align-items: flex-start !important;
    word-break: break-word;
  }
  .comparison-row > * { min-width: 0; }
  .comparison-row--head { display: grid !important; }
  .comparison-row--head > * {
    font-size: 0.5rem !important;
    letter-spacing: 0.08em !important;
  }
  .col-feature { font-size: 0.72rem !important; font-weight: 500 !important; line-height: 1.35 !important; }
  .col-others, .col-sospoint { font-size: 0.72rem !important; line-height: 1.35 !important; }
  .comparison-row:not(.comparison-row--head) .col-others,
  .comparison-row:not(.comparison-row--head) .col-sospoint {
    gap: 0.3rem !important;
  }
  .comparison-row:not(.comparison-row--head) .col-others::before,
  .comparison-row:not(.comparison-row--head) .col-sospoint::before {
    width: 12px !important;
    height: 12px !important;
    margin-top: 0.15rem !important;
  }
}

/* === No-app - bigger, cleaner phone (sharper edges, simplified content) === */

@media (max-width: 720px) {
  .no-app {
    grid-template-columns: 130px 1fr !important;
    gap: 1rem !important;
    align-items: center !important;
  }
  .no-app__visual svg { max-width: 130px !important; width: 100% !important; }
  /* Remove the radial halo on mobile (cleaner) */
  .no-app__visual::before { display: none !important; }
}

/* === Footer - 3 horizontal columns, brand on top =========================== */

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 1rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    margin-bottom: 0.5rem !important;
    padding-bottom: 1.25rem !important;
    border-bottom: 1px solid var(--line) !important;
    /* horizontal: logo left, tagline right */
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
  }
  .footer-brand .logo { flex-shrink: 0 !important; }
  .footer-tag {
    margin-top: 0 !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    text-align: right !important;
  }
  .footer-col h4 {
    font-size: 0.55rem !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 0.5rem !important;
  }
  .footer-col ul { gap: 0 !important; }
  .footer-col li { padding: 0 !important; }
  .footer-col a { font-size: 0.78rem !important; padding: 0.3rem 0 !important; display: inline-block; line-height: 1.2 !important; }
  .site-footer { padding: 2.5rem 0 1.5rem !important; }
  .footer-bottom { padding-top: 1.25rem !important; font-size: 0.72rem !important; }
}
