/* ============================================================
   LETAKOF — Section styles
   ============================================================ */

/* ---------- Ambient background field ---------- */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.bg-field .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 68%);
  transition: opacity 0.6s var(--ease);
}
.bg-field .orb--1 { width: 60vw; height: 60vw; top: -22vw; right: -14vw; }
.bg-field .orb--2 { width: 44vw; height: 44vw; bottom: -16vw; left: -12vw; opacity: 0.28; }
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 0%, transparent 75%);
  opacity: 0.5;
}
.bg-noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxMjAnIGhlaWdodD0nMTIwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMycvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* ============================================================
   NAV
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 200; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(to right, var(--accent-deep), var(--accent));
  box-shadow: 0 0 12px var(--accent-glow);
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: padding 0.5s var(--ease);
  padding-block: 18px;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease),
              backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled .nav__inner {
  background: var(--glass-bg);
  border-color: var(--glass-brd);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 8px 40px -18px rgba(0,0,0,0.6);
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { width: 26px; height: 26px; fill: var(--accent); filter: drop-shadow(0 0 10px var(--accent-glow)); }
.brand__name { font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; line-height: 1; display: flex; flex-direction: column; gap: 2px; }
.brand__name small { font-weight: 400; font-size: 0.6rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-faint); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-size: 0.92rem;
  color: var(--text-dim);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__theme {
  width: 42px; height: 42px; border-radius: 100px;
  display: grid; place-items: center;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border-2);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__theme:hover { color: var(--text); border-color: var(--accent-line); transform: translateY(-1px); }
.nav__theme:active { transform: scale(0.94); }
.nav__theme svg { width: 18px; height: 18px; }
.nav__lang {
  height: 42px; min-width: 42px; padding: 0 14px; border-radius: 100px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border-2);
  color: var(--text-dim); cursor: pointer;
  font: 600 0.82rem/1 inherit; letter-spacing: 0.04em;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav__lang:hover { color: var(--text); border-color: var(--accent-line); transform: translateY(-1px); }
.nav__lang:active { transform: scale(0.94); }
.nav__theme .ico-moon { display: none; }
.nav__theme .ico-sun { display: block; }
:root[data-theme="light"] .nav__theme .ico-sun { display: none; }
:root[data-theme="light"] .nav__theme .ico-moon { display: block; }
.nav__login { font-size: 0.92rem; color: var(--text-dim); padding: 10px 14px; transition: color 0.3s; }
.nav__login:hover { color: var(--text); }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__burger span { display: block; width: 18px; height: 1.6px; background: var(--text); position: relative; }
.nav__burger span::before, .nav__burger span::after { content:""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--text); transition: transform 0.3s var(--ease); }
.nav__burger span::before { top: -6px; } .nav__burger span::after { top: 6px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--glass-bg);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  gap: 6px;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a { font-size: 1.7rem; font-weight: 600; padding: 14px 0; letter-spacing: -0.02em; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 7px 7px 14px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-bottom: 30px;
}
.hero__badge b { color: var(--text); font-weight: 600; }
.hero__badge .pill {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 100px; background: var(--accent-soft); color: var(--accent);
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 28px; max-width: 21ch; }
.hero h1 .accent-word {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.005em;
  /* serif italic optically reads smaller — nudge up */
  font-size: 1.04em;
  padding-right: 0.04em;
  /* shimmer rig: gradient stays solid-accent until the sweep band crosses on hover */
  background: linear-gradient(100deg,
    var(--accent) 0%, var(--accent) 42%, #9ff6ea 50%, var(--accent) 58%, var(--accent) 100%);
  background-size: 250% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- accent word: settle-in (fades & sharpens a beat after the headline) --- */
.hero h1[data-reveal] .accent-word {
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.8s var(--ease-out), filter 0.8s var(--ease-out);
  transition-delay: 420ms;
}
.hero h1[data-reveal].in .accent-word { opacity: 1; filter: none; }

/* --- accent word: subtle shimmer sweep on hero hover --- */
@media (hover: hover) and (pointer: fine) {
  .hero:hover h1 .accent-word { animation: accentShimmer 2.8s var(--ease) 0.15s; }
}
@keyframes accentShimmer {
  from { background-position: 130% 0; }
  to   { background-position: -30% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1[data-reveal] .accent-word { opacity: 1; filter: none; transition: none; }
  .hero:hover h1 .accent-word { animation: none; }
}
.hero__sub { max-width: 52ch; margin-bottom: 38px; }
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__note {
  margin-top: 22px; font-size: 0.86rem; color: var(--text-faint);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero__note .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* hero layout: split with visual */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* stat strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
}
.hstat { padding: 24px 26px; background: var(--bg); }
.hstat__n { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; }
.hstat__n .u { font-size: 0.5em; color: var(--text-dim); font-weight: 500; margin-left: 4px; }
.hstat__l { font-size: 0.84rem; color: var(--text-dim); margin-top: 4px; }

/* ---- hero visual: abstract glass ---- */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.04;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-3), var(--bg));
}
.hero__visual .v-aurora {
  position: absolute; inset: -25%;
  background:
    radial-gradient(38% 38% at 32% 30%, var(--accent-glow), transparent 62%),
    radial-gradient(42% 42% at 70% 68%, var(--accent-soft), transparent 64%),
    radial-gradient(30% 30% at 60% 35%, rgba(255,255,255,0.06), transparent 60%);
  filter: blur(34px);
  opacity: 0.85;
  animation: auroraDrift calc(16s / max(var(--motion), 0.35)) ease-in-out infinite;
}
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(3%, -3%) scale(1.07) rotate(4deg); }
  66% { transform: translate(-3%, 2%) scale(1.04) rotate(-3deg); }
}
.hero__visual .v-rings { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__visual .v-rings span {
  position: absolute;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  opacity: 0.35;
}
.hero__visual .v-rings span:nth-child(1) { width: 34%; height: 34%; opacity: 0.5; }
.hero__visual .v-rings span:nth-child(2) { width: 55%; height: 55%; }
.hero__visual .v-rings span:nth-child(3) { width: 76%; height: 76%; opacity: 0.22; }
.hero__visual .v-rings span:nth-child(4) { width: 97%; height: 97%; opacity: 0.12; }
.hero__visual .v-orb {
  position: absolute; top: 50%; left: 50%;
  width: 22%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #fff, var(--accent) 42%, var(--accent-deep) 100%);
  box-shadow: 0 0 60px -6px var(--accent-glow), inset 0 -6px 18px rgba(0,0,0,0.25);
  animation: floaty 7s ease-in-out infinite;
}

/* ---- hero visual: floating iPhone ---- */
.hero__visual--phone {
  border: none;
  background: transparent;
  overflow: visible;
}
.hero__visual--phone .v-aurora {
  inset: 0;
  border-radius: 50%;
  opacity: 0.95;
  background:
    radial-gradient(46% 52% at 52% 44%, var(--accent-glow), transparent 62%),
    radial-gradient(30% 32% at 52% 40%, rgba(255,255,255,0.12), transparent 66%),
    radial-gradient(60% 60% at 50% 60%, var(--accent-soft), transparent 70%);
  filter: blur(38px);
}
.phone-stage {
  position: absolute; inset: -6% -10%;
  display: grid; place-items: center;
}
.phone-img {
  width: 116%;
  max-width: none;
  height: auto;
  filter: drop-shadow(-24px 34px 50px rgba(0,0,0,0.55));
}
.float-phone { animation: phoneFloat calc(8s / max(var(--motion), 0.4)) ease-in-out infinite; }
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(calc(-16px * var(--motion))) rotate(-0.6deg); }
}
.iphone__frame {
  position: absolute; inset: 0;
  border-radius: 13% / 6.2%;
  padding: 2.6%;
  background:
    linear-gradient(145deg, #5a6066 0%, #2c3035 16%, #b8bdc2 42%, #3a3f45 60%, #23262b 82%, #6b7176 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    inset 0 0 5px rgba(0,0,0,0.5);
}
.iphone__screen {
  position: relative;
  height: 100%;
  border-radius: 11% / 5.4%;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% -8%, rgba(47,224,200,0.18), transparent 55%),
    linear-gradient(180deg, #0b0f12, #07090b);
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.85);
}
.island {
  position: absolute; top: 2.6%; left: 50%; transform: translateX(-50%);
  width: 34%; height: 3.4%;
  min-height: 18px;
  background: #000; border-radius: 100px;
  z-index: 5;
}
.app {
  position: absolute; inset: 0;
  padding: 13% 8% 7%;
  display: flex; flex-direction: column;
  color: var(--text);
}
.app__status {
  display: flex; align-items: center; justify-content: space-between;
  font-size: clamp(10px, 1.05vw, 14px); font-weight: 600;
  color: #fff; margin-bottom: 8%;
}
.app__status-r { display: flex; align-items: center; gap: 5px; color: #fff; }
.app__status-r svg { height: 0.78em; width: auto; }
.app__status-r svg:nth-child(2) { height: 0.86em; }
.app__status-r svg:nth-child(3) { height: 0.74em; }
.app__brand {
  display: flex; align-items: center; gap: 7px; justify-content: center;
  font-weight: 700; font-size: clamp(13px, 1.4vw, 18px); letter-spacing: -0.02em;
}
.app__brand svg { width: 1.1em; height: 1.1em; fill: var(--accent); filter: drop-shadow(0 0 6px var(--accent-glow)); }
.app__shield {
  position: relative;
  margin: 11% auto 0;
  width: 46%; aspect-ratio: 1;
  display: grid; place-items: center;
}
.app__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent-line);
  opacity: 0.6;
  animation: pulseRing calc(3s / max(var(--motion),0.4)) ease-out infinite;
}
.app__ring--2 { inset: -16%; opacity: 0.3; animation-delay: 1.2s; }
@keyframes pulseRing {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.18); opacity: 0; }
}
.app__core {
  width: 66%; aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent-ink);
  background: radial-gradient(circle at 38% 30%, #8ff5e7, var(--accent) 55%, var(--accent-deep));
  box-shadow: 0 0 30px -4px var(--accent-glow);
}
.app__core svg { width: 52%; height: 52%; }
.app__state {
  text-align: center; font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(17px, 2vw, 26px); margin-top: 9%;
}
.app__sub { text-align: center; color: var(--text-dim); font-size: clamp(10px, 1.05vw, 13px); margin-top: 2%; }
.app__card {
  margin-top: auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 7% 7%;
}
.app__loc { display: flex; align-items: center; gap: 8px; }
.app__flag {
  width: clamp(20px, 2.4vw, 30px); aspect-ratio: 1; border-radius: 7px; flex-shrink: 0;
  background: linear-gradient(180deg, #fff 0 33%, #1c4fd6 33% 66%, #d52b1e 66% 100%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}
.app__loc b { font-size: clamp(11px, 1.2vw, 14px); font-weight: 600; display: block; }
.app__loc i { font-size: clamp(9px, 1vw, 11px); color: var(--text-dim); font-style: normal; }
.app__chg { margin-left: auto; font-size: clamp(9px, 1vw, 11px); color: var(--accent); font-weight: 600; }
.app__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 7%; }
.app__metrics > div { background: rgba(255,255,255,0.04); border-radius: 11px; padding: 7% 8%; }
.app__metrics b { font-size: clamp(12px, 1.35vw, 16px); font-weight: 700; letter-spacing: -0.02em; }
.app__metrics span { display: block; font-size: clamp(8px, 0.95vw, 11px); color: var(--text-dim); margin-top: 1px; }
.app__btn {
  margin-top: 7%;
  width: 100%; padding: 10% 0;
  border-radius: 100px;
  background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: clamp(11px, 1.25vw, 15px);
  box-shadow: 0 8px 22px -10px var(--accent-glow);
}

/* ---- hero visual (legacy literal layers, kept off) ---- */
.hero__visual .bolt {
  position: absolute; top: 50%; left: 50%;
  width: 46%;
  fill: var(--accent);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 40px var(--accent-glow));
  z-index: 2;
}
.hero__visual .ring {
  position: absolute; top: 50%; left: 50%;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.scan {
  position: absolute; left: 0; right: 0; height: 130px;
  background: linear-gradient(to bottom, transparent, var(--accent-soft), transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000, transparent);
  animation: scan 6s linear infinite;
}
@keyframes scan { 0% { top: -130px; } 100% { top: 100%; } }

.v-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px;
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 3;
  box-shadow: 0 12px 30px -16px rgba(0,0,0,0.7);
}
.v-chip .led { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* orbiting chips around the phone */
.orbit-chip {
  position: absolute; top: 50%; left: 50%;
  z-index: 4;
  white-space: nowrap;
  will-change: transform;
  --dur: calc(30s / max(var(--motion), 0.35));
  animation: chipOrbit var(--dur) linear infinite;
}
.orbit-2 { animation-delay: calc(var(--dur) / -3); }
.orbit-3 { animation-delay: calc(var(--dur) / -3 * 2); }
@keyframes chipOrbit {
  0%    { transform: translate(calc(-50% + 205px), -50%); }
  12.5% { transform: translate(calc(-50% + 145px), calc(-50% + 202px)); }
  25%   { transform: translate(-50%, calc(-50% + 285px)); }
  37.5% { transform: translate(calc(-50% - 145px), calc(-50% + 202px)); }
  50%   { transform: translate(calc(-50% - 205px), -50%); }
  62.5% { transform: translate(calc(-50% - 145px), calc(-50% - 202px)); }
  75%   { transform: translate(-50%, calc(-50% - 285px)); }
  87.5% { transform: translate(calc(-50% + 145px), calc(-50% - 202px)); }
  100%  { transform: translate(calc(-50% + 205px), -50%); }
}
@media (prefers-reduced-motion: reduce) {
  .orbit-chip { animation: none; }
  .orbit-1 { transform: translate(calc(-50% + 200px), calc(-50% - 130px)); }
  .orbit-2 { transform: translate(calc(-50% - 205px), calc(-50% + 30px)); }
  .orbit-3 { transform: translate(calc(-50% + 40px), calc(-50% + 255px)); }
}

/* marquee logo strip under hero */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 26px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.trust__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.trust:hover .trust__track { animation-play-state: paused; }
.trust__item { display: flex; align-items: center; justify-content: center; margin-right: 56px; color: var(--text-dim); opacity: 0.6; transition: opacity 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.trust__item:hover { opacity: 1; color: var(--accent); transform: translateY(-2px); }
.trust__item svg { width: 30px; height: 30px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.benefit {
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 248px;
}
.benefit--wide { grid-column: span 6; }
.benefit--feature { grid-column: span 6; background: linear-gradient(160deg, var(--accent-soft), transparent 62%); border-color: var(--accent-line); }
.benefit--feature .benefit__ico { color: var(--accent); border-color: var(--accent-line); }
.benefit--quarter { grid-column: span 3; }
.benefit--tall { grid-column: span 6; }
.benefit--third { grid-column: span 4; }
.benefit:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.benefit:hover .benefit__ico { color: var(--accent); border-color: var(--accent-line); }
.benefit__ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  margin-bottom: auto;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.benefit__ico svg { width: 22px; height: 22px; }
.benefit__t { font-size: 1.28rem; font-weight: 600; letter-spacing: -0.02em; margin-top: 26px; }
.benefit__d { color: var(--text-dim); margin-top: 9px; font-size: 0.97rem; line-height: 1.5; }
.benefit__big {
  font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--accent); margin-bottom: 4px;
}
.benefit__big .u { font-size: 0.4em; color: var(--text-dim); font-weight: 500; letter-spacing: 0; }

/* ============================================================
   CAPABILITIES (service grid)
   ============================================================ */
.caps { background: var(--bg-2); }
.caps__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; margin-top: 60px; }
.caps__aside { position: sticky; top: 110px; }
.caps__aside .lead { margin-top: 20px; }
.caps__aside .mini {
  margin-top: 30px; padding: 22px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface);
}
.caps__aside .mini h4 { font-size: 1.02rem; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.caps__aside .mini p { color: var(--text-dim); font-size: 0.92rem; margin-top: 8px; }
.caps__aside .mini .ico { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.caps__aside .mini .ico svg { width: 17px; height: 17px; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.svc {
  position: relative;
  padding: 20px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 122px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease),
              transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.svc:hover { border-color: var(--accent-line); background: var(--surface-2); transform: translateY(-3px); }
.svc__logo { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; background: var(--bg); border: 1px solid var(--border); }
.svc__logo svg { width: 22px; height: 22px; }
.svc__name { font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; }
.svc__tag { font-size: 0.82rem; color: var(--text-dim); margin-top: -8px; }
.svc--accent { background: linear-gradient(150deg, var(--accent-soft), transparent 60%); border-color: var(--accent-line); }
.svc--accent .svc__name { color: var(--accent); }
.svc__star { color: var(--accent); font-size: 0.7em; font-weight: 700; vertical-align: super; margin-left: 1px; }
.svc-note { grid-column: 1 / -1; margin-top: 6px; font-size: 0.78rem; line-height: 1.5; color: var(--text-faint); }

/* ============================================================
   RU SERVICES ABROAD
   ============================================================ */
.ru { position: relative; overflow: hidden; }
.ru__card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 120% at 12% 0%, var(--accent-soft), transparent 46%),
    var(--bg-3);
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
}
.ru__top { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
.ru__head h2 { margin-top: 20px; max-width: 16ch; }
.ru__head .lead { margin-top: 18px; max-width: 46ch; }
.ru__flags { display: flex; align-items: center; gap: 14px; justify-self: end; }
.ru__pin {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 100px;
  border: 1px solid var(--border-2); background: var(--surface);
  font-size: 0.88rem; font-weight: 500;
}
.ru__pin .led { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.ru__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 44px; }
.ru-item {
  display: flex; align-items: center; gap: 13px;
  padding: 17px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ru-item:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.ru-item__ico { width: 36px; height: 36px; border-radius: 9px; background: var(--surface-2); display: grid; place-items: center; flex-shrink: 0; }
.ru-item__ico svg { width: 19px; height: 19px; color: var(--text); }
.ru-item__t { font-weight: 600; font-size: 0.96rem; }
.ru-item__s { font-size: 0.8rem; color: var(--text-dim); margin-top: 1px; }
.ru-item .check { margin-left: auto; color: var(--accent); width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   SPEED  (split feature)
   ============================================================ */
.feat { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.feat--rev .feat__media { order: -1; }
.feat__body .lead { margin-top: 20px; }
.feat__points { margin-top: 34px; display: flex; flex-direction: column; gap: 4px; }
.fpoint { display: flex; gap: 15px; padding: 18px 0; border-top: 1px solid var(--border); }
.fpoint:last-child { border-bottom: 1px solid var(--border); }
.fpoint__ico { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.fpoint__t { font-weight: 600; font-size: 1.02rem; }
.fpoint__d { color: var(--text-dim); font-size: 0.92rem; margin-top: 3px; }

/* speed gauge media */
.gauge {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-3), var(--bg));
  padding: 34px;
  overflow: hidden;
  min-height: 380px;
}
.gauge__label { display: flex; justify-content: space-between; align-items: center; }
.gauge__label .kicker { margin: 0; }
.gauge__live { font-family: var(--mono); font-size: 0.78rem; color: var(--accent); display: flex; align-items: center; gap: 7px; }
.gauge__live .led { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
.gauge__num { margin-top: 34px; display: flex; align-items: baseline; gap: 10px; }
.gauge__num .pre { font-size: 1.1rem; color: var(--text-dim); font-weight: 500; }
.gauge__num b { font-size: clamp(3.4rem, 7vw, 5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 0.9; }
.gauge__num .u { font-size: 1.3rem; color: var(--text-dim); font-weight: 500; }
.gauge__bars { margin-top: 30px; display: flex; align-items: flex-end; gap: 6px; height: 110px; }
.gauge__bars span { flex: 1; background: linear-gradient(to top, var(--accent-deep), var(--accent)); border-radius: 4px 4px 0 0; opacity: 0.85; transform-origin: bottom; }
.gauge__foot { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gmini b { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.gmini span { display: block; font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

/* ============================================================
   SECURITY
   ============================================================ */
.sec { background: var(--bg-2); }
.sec__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 60px; }
.sec-card { padding: 30px; display: flex; flex-direction: column; }
.sec-card--main { grid-column: span 5; background: linear-gradient(160deg, var(--accent-soft), transparent 60%); border-color: var(--accent-line); }
.sec-card--a { grid-column: span 7; }
.sec-card--b { grid-column: span 4; }
.sec-card--c { grid-column: span 4; }
.sec-card--d { grid-column: span 4; }
.sec-card:hover { transform: translateY(-3px); }
.sec-card .num { font-family: var(--mono); font-size: 0.78rem; color: var(--text-faint); letter-spacing: 0.1em; }
.sec-card__t { font-size: 1.28rem; font-weight: 600; letter-spacing: -0.02em; margin-top: 18px; }
.sec-card--main .sec-card__t { font-size: 1.7rem; }
.sec-card__d { color: var(--text-dim); margin-top: 10px; font-size: 0.96rem; line-height: 1.55; }
.sec-card__ico { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-2); display: grid; place-items: center; color: var(--accent); margin-bottom: auto; }
.sec-card__ico svg { width: 22px; height: 22px; }
.sec-card .lock-big { width: 100%; margin-top: 26px; }

/* ============================================================
   PRICING
   ============================================================ */
.price__head { text-align: center; max-width: 640px; margin-inline: auto; }
.price__head .kicker { justify-content: center; }
.price__head .lead { margin-top: 18px; }
.price__toggle { display: inline-flex; gap: 4px; padding: 4px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); margin-top: 30px; }
.price__toggle button { font-size: 0.86rem; font-weight: 500; padding: 9px 18px; border-radius: 100px; color: var(--text-dim); transition: all 0.3s var(--ease); }
.price__toggle button.on { background: var(--text); color: var(--bg); }
.price__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 50px; align-items: stretch; }
.plan {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
              background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--border-2); }
.plan--feat { background: linear-gradient(170deg, var(--accent-soft), transparent 55%); border-color: var(--accent-line); }
.plan--feat:hover { border-color: var(--accent); }
.plan__tag { position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink); background: var(--accent); padding: 5px 10px; border-radius: 100px; }
.plan__name { font-size: 1.16rem; font-weight: 600; }
.plan__sub { font-size: 0.88rem; color: var(--text-dim); margin-top: 4px; min-height: 38px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-top: 22px; }
.plan__price b { font-size: 2.9rem; font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.plan__price .per { font-size: 0.9rem; color: var(--text-dim); white-space: nowrap; }
.plan__eff { font-size: 0.82rem; color: var(--text-faint); margin-top: 8px; min-height: 20px; }
.plan__cta { margin-top: 26px; width: 100%; }
.plan__feats { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.plan__feats li { display: flex; gap: 11px; font-size: 0.92rem; color: var(--text-dim); }
.plan__feats svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.plan__feats b { color: var(--text); font-weight: 600; }
.price__addon {
  margin-top: 26px; text-align: center; font-size: 0.92rem; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 10px; justify-content: center; width: 100%;
}
.price__addon .chip { font-family: var(--mono); font-size: 0.78rem; padding: 5px 11px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); flex-shrink: 0; }
/* nav account login icon shows on mobile only */
.nav__account-ico { display: none; }
.price__trial {
  margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 20px 26px; border-radius: var(--radius); border: 1px dashed var(--border-2); background: var(--surface);
}
.price__trial .t-left { display: flex; align-items: center; gap: 16px; }
.price__trial .t-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.price__trial .t-ico svg { width: 22px; height: 22px; }
.price__trial b { font-weight: 600; }
.price__trial p { font-size: 0.9rem; color: var(--text-dim); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(34px, 5vw, 80px); align-items: start; margin-top: 20px; }
.faq__aside { position: sticky; top: 110px; }
.faq__list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; font-size: 1.1rem; font-weight: 600; letter-spacing: -0.015em; color: var(--text);
  transition: color 0.3s var(--ease);
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__ico { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-item__ico::before, .faq-item__ico::after { content:""; position: absolute; background: currentColor; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.faq-item__ico::before { top: 50%; left: 0; width: 100%; height: 1.6px; transform: translateY(-50%); }
.faq-item__ico::after { left: 50%; top: 0; height: 100%; width: 1.6px; transform: translateX(-50%); }
.faq-item.open .faq-item__ico::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.faq-item.open .faq-item__q { color: var(--accent); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-item.open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > div { overflow: hidden; }
.faq-item__a p { color: var(--text-dim); font-size: 0.98rem; line-height: 1.6; padding-bottom: 26px; max-width: 60ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta { position: relative; }
.cta__card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-line);
  background:
    radial-gradient(110% 130% at 50% -10%, var(--accent-soft), transparent 50%),
    var(--bg-3);
  padding: clamp(48px, 8vw, 110px) var(--gutter);
  text-align: center;
}
.cta__card .glow {
  position: absolute; bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 60%);
  opacity: 0.5; pointer-events: none; filter: blur(40px);
}
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; }
.cta h2 { margin-top: 22px; margin-bottom: 22px; }
.cta__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta__note { margin-top: 22px; font-size: 0.86rem; color: var(--text-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding-top: 72px; padding-bottom: 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { color: var(--text-dim); font-size: 0.94rem; max-width: 34ch; line-height: 1.6; }
.footer__col h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); font-family: var(--mono); font-weight: 500; margin-bottom: 18px; }
.footer__col a { display: block; color: var(--text-dim); font-size: 0.95rem; padding: 7px 0; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border); }
.footer__bottom p { font-size: 0.86rem; color: var(--text-faint); }
.footer__socials { display: flex; gap: 8px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); transition: all 0.3s var(--ease); }
.footer__socials a:hover { color: var(--accent); border-color: var(--accent-line); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .feat, .ru__top { grid-template-columns: 1fr; }
  .benefit--wide, .benefit--feature, .benefit--tall { grid-column: span 12; }
  .benefit--quarter { grid-column: span 6; }
  .benefit--third { grid-column: span 4; }
  .caps__layout { grid-template-columns: 1fr; }
  .caps__aside { position: static; }
  .faq__layout { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__login { display: none; }
  /* compact account button: blue circle with login glyph */
  .nav__account { width: 44px; min-width: 44px; height: 44px; padding: 0; border-radius: 100px; justify-content: center; }
  .nav__account .nav__account-txt, .nav__account .btn__arrow { display: none; }
  .nav__account-ico { display: block; }
  .nav__right { gap: 8px; }
  .benefit--wide, .benefit--tall, .benefit--third, .benefit--feature, .benefit--quarter { grid-column: span 12; }
  .sec-card--main, .sec-card--a, .sec-card--b, .sec-card--c, .sec-card--d { grid-column: span 12; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .ru__list { grid-template-columns: 1fr 1fr; }
  /* pricing becomes a swipeable carousel */
  .price__grid {
    display: flex; grid-template-columns: none;
    gap: 14px; margin-top: 40px; max-width: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-inline: calc(-1 * var(--gutter)); padding: 6px var(--gutter) 18px;
    scrollbar-width: none;
  }
  .price__grid::-webkit-scrollbar { display: none; }
  .plan { scroll-snap-align: center; flex: 0 0 82%; min-width: 250px; max-width: 360px; }
  .plan:hover { transform: none; }
  /* never leave a carousel card invisible */
  .price__grid [data-reveal] { opacity: 1; transform: none; filter: none; }
  .ru__flags { justify-self: start; }
}
@media (max-width: 560px) {
  .hero__stats { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .ru__list { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .gauge__foot { grid-template-columns: 1fr; gap: 8px; }
  .price__addon { flex-wrap: wrap; gap: 8px; padding-inline: 8px; }
}

/* ============================================================
   CARD HOVER — cursor spotlight + lift glow + icon motion
   ============================================================ */
.benefit, .svc, .sec-card, .ru-item, .plan { --mx: 50%; --my: 50%; }

/* spotlight overlay rides above content (screen-blended so text stays readable) */
.benefit::after, .svc::after, .sec-card::after, .ru-item::after, .plan::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none; z-index: 2;
  background: radial-gradient(340px circle at var(--mx) var(--my), var(--accent-glow), transparent 56%);
  opacity: 0; mix-blend-mode: screen;
  transition: opacity 0.45s var(--ease);
}

/* icons gain a transform transition for the hover nudge */
.benefit__ico, .svc__logo, .sec-card__ico, .ru-item__ico {
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.45s var(--ease), background 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .benefit:hover::after, .svc:hover::after, .sec-card:hover::after,
  .ru-item:hover::after, .plan:hover::after { opacity: 0.55; }

  .benefit:hover, .svc:hover, .sec-card:hover, .ru-item:hover {
    box-shadow: 0 20px 50px -30px var(--accent-glow);
  }
  .plan:hover { box-shadow: 0 26px 60px -32px var(--accent-glow); }
  .sec-card:hover { border-color: var(--accent-line); }

  .benefit:hover .benefit__ico,
  .sec-card:hover .sec-card__ico { transform: translateY(-2px) rotate(-4deg); }
  .svc:hover .svc__logo { transform: translateY(-2px) scale(1.06); }
  .ru-item:hover .ru-item__ico { transform: scale(1.08) rotate(-3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .benefit::after, .svc::after, .sec-card::after, .ru-item::after, .plan::after { display: none; }
  .benefit__ico, .svc__logo, .sec-card__ico, .ru-item__ico { transition: none; }
}

/* ============================================================
   PRICING — featured pulse, badge shine, feature stagger
   ============================================================ */
/* featured plan: gentle pulsing accent ring (hollow, never covers content) */
.plan--feat::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit;
  border: 1px solid var(--accent);
  opacity: 0.4; pointer-events: none; z-index: 1;
  animation: featPulse 3.6s var(--ease) infinite;
}
@keyframes featPulse {
  0%, 100% { opacity: 0.32; box-shadow: 0 0 18px -3px var(--accent-soft); }
  50%      { opacity: 0.75; box-shadow: 0 0 30px 1px var(--accent-glow); }
}

/* badge: light sweep */
.plan__tag { overflow: hidden; }
.plan__tag::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.55) 50%, transparent 82%);
  transform: translateX(-130%);
  animation: tagShine 3.4s ease-in-out 1s infinite;
}
@keyframes tagShine {
  0%      { transform: translateX(-130%); }
  55%, 100% { transform: translateX(130%); }
}

/* feature list staggers in with the card */
.plan__feats li {
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.plan[data-reveal].in .plan__feats li { opacity: 1; transform: none; }
.plan__feats li:nth-child(1) { transition-delay: 0.20s; }
.plan__feats li:nth-child(2) { transition-delay: 0.28s; }
.plan__feats li:nth-child(3) { transition-delay: 0.36s; }
.plan__feats svg { transition: transform 0.4s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .plan:hover .plan__feats svg { transform: scale(1.18); }
}

/* mobile carousel: never leave feats hidden, drop pulse weight */
@media (max-width: 900px) {
  .plan__feats li { opacity: 1; transform: none; transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .plan--feat::before { animation: none; }
  .plan__tag::after { display: none; }
  .plan__feats li { opacity: 1; transform: none; transition: none; }
}
