:root{
  --p1:#2a86ff;
  --p2:#53e0ff;
  --w0:#ffffff;
  --w1:#f7fbff;
  --ink:#07162c;
  --muted:rgba(7,22,44,.62);
  --success:#11c47a;
  --shadow: 0 30px 90px rgba(7,22,44,.16);
  --shadowSoft: 0 18px 46px rgba(7,22,44,.10);
  --radius: 22px;
  --noise: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIj4KPGZpbHRlciBpZD0ibiI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9Ii45IiBudW1PY3RhdmVzPSIyIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjEgMCAwIDAgMCAgMCAxIDAgMCAwICAwIDAgMSAwIDAgIDAgMCAwIC4xOCAwIi8+PC9maWx0ZXI+CjxyZWN0IHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiBmaWx0ZXI9InVybCgjbikiIG9wYWNpdHk9Ii4yMiIvPgo8L3N2Zz4=");
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Manrope, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 18% -10%, rgba(83,224,255,.18), transparent 60%),
    radial-gradient(900px 460px at 92% 0%, rgba(42,134,255,.12), transparent 55%),
    linear-gradient(180deg, var(--w0), var(--w1));
}
body::before{
  content:"";
  position: fixed; inset:0;
  background-image: var(--noise);
  pointer-events:none;
  opacity:.28;
  mix-blend-mode: soft-light;
}
.container{ width:min(1240px, calc(100% - 56px)); margin-inline:auto; }
.wrap{ width:min(1240px, calc(100% - 56px)); margin-inline:auto; }

/* header */
.header{
  position: sticky; top:0; z-index:80;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,22,44,.08);
}
.nav{ height: 92px; display:flex; align-items:center; gap: 18px;  flex-wrap:nowrap; }
.brand{text-decoration:none; display:flex; align-items:center;}
.logo{height:44px; width:auto; display:block}
.logo *{ vector-effect: non-scaling-stroke; }

.logo__cap{ fill: rgba(255,255,255,.68); stroke: rgba(7,22,44,.10); stroke-width: 1; }
.logo__m{ fill:none; stroke: url(#lg); stroke-width: 3.7; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 260; stroke-dashoffset: 260; animation: draw 1.05s cubic-bezier(.2,.9,.2,1) forwards; }
.logo__mp{ fill:none; stroke: rgba(83,224,255,.90); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 180; stroke-dashoffset: 180; animation: draw .95s .18s cubic-bezier(.2,.9,.2,1) forwards, pulse 1.8s 1.6s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(83,224,255,.16)); }
.logo__word{ font-family: Inter, system-ui; font-weight: 900; font-size: 38px; letter-spacing: -0.038em; }
.logo__fill{ fill: rgba(7,22,44,.92); }
.logo__stroke{ fill: transparent; stroke: rgba(83,224,255,.42); stroke-width: 1.05; stroke-linejoin: round;
  stroke-dasharray: 1100; stroke-dashoffset: 1100; animation: draw 1.25s .08s cubic-bezier(.2,.9,.2,1) forwards; }
.logo__shine{ opacity:0; animation: shineOnce 1.55s .65s ease forwards; }
.brand:hover .logo__shine{ opacity:0; animation: shineOnce 1.15s ease forwards; }
.brand:hover .logo__cap{ stroke: rgba(83,224,255,.26); }
@keyframes draw{ to{ stroke-dashoffset: 0; } }
@keyframes shineOnce{ 0%{ transform: translateX(-260px); opacity:0; } 18%{ opacity:.55; } 100%{ transform: translateX(900px); opacity:0; } }
@keyframes pulse{ 0%,100%{ opacity:.55; } 50%{ opacity:1; } }

/* menu */
.menu{ display:flex; gap: 14px; align-items:center; flex:1; flex-wrap:nowrap; white-space:nowrap; }
.menu__link{ position:relative; text-decoration:none; color: rgba(7,22,44,.78); font-weight: 750; font-size: 12px; letter-spacing: .01em; padding: 9px 10px; border-radius: 14px; transition: transform .18s ease, color .18s ease, background .18s ease; }
.menu__link::after{ content:""; position:absolute; left:12px; right:12px; bottom:6px; height:2px; border-radius:999px;
  background: linear-gradient(90deg, rgba(42,134,255,0), rgba(83,224,255,.9), rgba(42,134,255,0));
  transform: scaleX(0); transition: transform .22s ease; opacity:.9; }
.menu__link:hover{ background: rgba(83,224,255,.10); transform: translateY(-1px); color: rgba(7,22,44,.92); }
.menu__link:hover::after{ transform: scaleX(1); }

.nav__right{ display:flex; align-items:center; gap: 12px;  flex-wrap:nowrap; }
.lang{ border: 1px solid rgba(7,22,44,.10); background: rgba(255,255,255,.68); border-radius: 999px; padding: 8px 10px; cursor:pointer;
  box-shadow: 0 12px 26px rgba(7,22,44,.06); transition: transform .15s ease, box-shadow .18s ease, background .18s ease; }
.lang:hover{ transform: translateY(-1px); box-shadow: 0 18px 42px rgba(7,22,44,.10); background:#fff; }
.lang__pill{ display:inline-flex; align-items:center; justify-content:center; min-width:44px; height:28px; padding:0 10px; border-radius:999px;
  font-weight:900; font-size:12px; letter-spacing:.12em; color: rgba(7,22,44,.92);
  background: radial-gradient(circle at 30% 30%, rgba(83,224,255,.30), rgba(42,134,255,.10)); }

.cta{ position:relative; display:inline-flex; align-items:center; text-decoration:none; border-radius:999px; padding: 13px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.62));
  border: 1px solid rgba(7,22,44,.10); box-shadow: 0 22px 62px rgba(7,22,44,.14); overflow:hidden; transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;  white-space:nowrap; min-width:max-content; flex:0 0 auto; }
.cta::before{ content:""; position:absolute; inset:0; padding:1px; border-radius:999px;
  background: linear-gradient(90deg, rgba(42,134,255,.55), rgba(83,224,255,.85), rgba(42,134,255,.55));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events:none; opacity:.9; }
.cta__txt{ position:relative; font-weight: 900; font-size: 13px; letter-spacing: .01em; color: rgba(7,22,44,.92);  white-space:nowrap; }
.cta__glow{ position:absolute; inset:-40% -30%; background: radial-gradient(circle at 30% 30%, rgba(83,224,255,.35), rgba(42,134,255,.08), transparent 60%);
  opacity:.7; filter: blur(14px); pointer-events:none; }
.cta::after{ content:""; position:absolute; top:-40%; left:-60%; width:55%; height:180%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.65), rgba(255,255,255,0));
  transform: rotate(16deg); opacity:0; }
.cta:hover{ transform: translateY(-1px); box-shadow: 0 28px 80px rgba(7,22,44,.18); }
.cta:hover::after{ opacity:.85; animation: sheen .75s ease; }
@keyframes sheen{ from{ transform: translateX(0) rotate(16deg); } to{ transform: translateX(420%) rotate(16deg); } }

.burger{ display:none; margin-left:auto; border:1px solid rgba(7,22,44,.10); background: rgba(255,255,255,.72); border-radius:16px;
  width:46px; height:46px; padding:10px; cursor:pointer; }
.burger span{ display:block; height:2px; background: rgba(7,22,44,.70); border-radius:99px; margin:5px 0; }

/* hero */
.hero{ padding: 18px 0 132px; position:relative; }
.trust{ display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; color: var(--muted); font-size:13px; padding: 18px 0 10px; }
.trust__strong{ color: rgba(7,22,44,.94); font-weight: 900; }
.trust__link{ color: rgba(7,22,44,.92); font-weight:800; text-decoration:none; border-bottom:1px solid rgba(7,22,44,.18); }
.trust__tp{ color: rgba(7,22,44,.56); font-weight:800; }

.trust__stars{ display:inline-flex; gap:4px; transform: translateY(-1px); }
.star{ width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border-radius:4px; background: var(--success); color:#fff; font-size:14px;
  box-shadow: 0 10px 20px rgba(17,196,122,.22); }
.star--split{ background: linear-gradient(90deg, var(--success) 0 50%, rgba(17,196,122,.22) 50% 100%); border: 1px solid rgba(17,196,122,.28); }

.headline{ display:grid; place-items:center; padding: 10px 0 16px; }
.h1{ margin: 6px 0 0; text-align:center; font-family: Inter, system-ui; font-size: clamp(40px, 5.1vw, 70px); line-height:1.02; letter-spacing:-0.052em; }
.h1__top{ font-weight:900; color: rgba(7,22,44,.86); }
.h1__accent{ font-weight:950; background: linear-gradient(90deg, rgba(42,134,255,1), rgba(83,224,255,.98));
  -webkit-background-clip:text; background-clip:text; color: transparent; text-shadow: 0 22px 70px rgba(83,224,255,.12); }

.bullets{ list-style:none; padding:0; margin: 22px auto 0; width: min(980px, 100%); display:grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px; color: rgba(7,22,44,.76); font-weight:650; }
.bullets__item{ display:flex; gap:12px; align-items:flex-start; padding: 12px 14px; border:1px solid rgba(7,22,44,.08); border-radius:16px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.64)); box-shadow: 0 14px 40px rgba(7,22,44,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.bullets__item:hover{ transform: translateY(-1px); border-color: rgba(83,224,255,.25); box-shadow: 0 22px 60px rgba(7,22,44,.10); }
.icon{ width:22px; height:22px; margin-top:1px; display:grid; place-items:center; flex:0 0 auto; }
.icon__svg{ width:22px; height:22px; display:block; }
.icon__r{ fill: rgba(255,255,255,0); stroke: rgba(83,224,255,.55); stroke-width: 1.6; }
.icon__p{ fill:none; stroke: rgba(7,22,44,.92); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:26; stroke-dashoffset:26;
  animation: tick 1.35s ease infinite; }
@keyframes tick{ 0%{ stroke-dashoffset:26; opacity:0; } 18%{ opacity:1; } 55%{ stroke-dashoffset:0; opacity:1; } 100%{ stroke-dashoffset:0; opacity:0; } }

/* triple */
.triple{ margin-top: 30px; display:grid; grid-template-columns: 0.92fr minmax(420px, 620px) 0.92fr; gap:18px; align-items:stretch; }
.ach{ display:flex; flex-direction:column; gap:12px; margin-top:0; height:100%; justify-content:space-between; }
.ach__row{ flex:1; display:flex; align-items:center; justify-content:center; gap:10px; padding:9px 9px; border-radius:18px; border:1px solid rgba(7,22,44,.08);
  background: rgba(255,255,255,.74); box-shadow: var(--shadowSoft); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.ach__row:hover{ transform: translateY(-1px); border-color: rgba(83,224,255,.22); box-shadow: 0 24px 70px rgba(7,22,44,.12); }
.ach__img{ width:32px; height:auto; opacity:.9; filter: drop-shadow(0 12px 24px rgba(7,22,44,.10)); }
.ach__txt{ text-align:center; font-weight:900; font-size:10.5px; letter-spacing:.10em; text-transform: uppercase; color: rgba(7,22,44,.72); line-height:1.15; max-width:220px; }

.video{ position:relative; border-radius: var(--radius); animation: videoBreathe 4.2s ease-in-out infinite; transform-origin: center; border:1px solid rgba(7,22,44,.10); box-shadow: var(--shadow); overflow:hidden; display:flex; background: linear-gradient(180deg, #ffffff, #eef6ff); }
.video::after{content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(800px 260px at 50% 90%, rgba(83,224,255,.18), transparent 60%); opacity:.9; }

.video__frame{ position:relative; width:100%; height:100%; min-height: 360px; display:grid; place-items:center; background: radial-gradient(circle at 20% 18%, rgba(83,224,255,.26), transparent 44%), radial-gradient(circle at 88% 76%, rgba(42,134,255,.16), transparent 48%), linear-gradient(180deg, #fbfdff, #eef6ff); }
.video__mesh{ position:absolute; inset:0; background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 22px, rgba(255,255,255,.085) 22px 23px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0) 0 22px, rgba(255,255,255,.085) 22px 23px);
  mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,.72), transparent 62%); opacity:.55; pointer-events:none; }
.video__top{ position:absolute; top:14px; left:14px; right:14px; display:flex; justify-content:space-between; gap:10px; }
.chip{ font-weight:950; font-size:10.5px; letter-spacing:.14em; padding:8px 10px; border-radius:999px; color: rgba(7,22,44,.90);
  background: rgba(255,255,255,.80); border: 1px solid rgba(7,22,44,.10); }
.chip--ghost{ font-weight:850; letter-spacing:.06em; color: rgba(7,22,44,.62); background: rgba(255,255,255,.68); }

.play{ width:92px; height:92px; border-radius:999px; border: 1px solid rgba(255,255,255,.40);
  background: linear-gradient(180deg, rgba(7,22,44,.92), rgba(7,22,44,.76));
  display:grid; place-items:center; cursor:pointer; box-shadow: 0 28px 84px rgba(7,22,44,.26);
  transition: transform .15s ease, filter .15s ease; position:relative; }
.play__ring{ position:absolute; inset:-6px; border-radius:999px; border: 1px solid rgba(83,224,255,.35);
  box-shadow: 0 0 0 0 rgba(83,224,255,0); animation: ripple 2.2s ease-in-out infinite; }
@keyframes ripple{ 0%{ box-shadow: 0 0 0 0 rgba(83,224,255,0); opacity:.8; } 50%{ box-shadow: 0 0 0 14px rgba(83,224,255,.08); opacity:1; }
  100%{ box-shadow: 0 0 0 24px rgba(83,224,255,0); opacity:.55; } }
.play svg path{ fill:#fff; }
.play:hover{ transform: translateY(-2px); filter: brightness(1.05); }
.video__hint{ position:absolute; bottom: 18px; color: rgba(7,22,44,.74); font-weight: 900; font-size: 12px; background: rgba(255,255,255,.74); border: 1px solid rgba(7,22,44,.10); padding: 10px 14px; border-radius: 16px; letter-spacing: .06em; }

/* preloader */
#preloader{ position:fixed; inset:0; background: radial-gradient(1200px 560px at 25% 10%, rgba(83,224,255,.20), transparent 60%),
  radial-gradient(900px 460px at 85% 20%, rgba(42,134,255,.14), transparent 55%), linear-gradient(180deg, var(--w0), var(--w1));
  display:grid; place-items:center; z-index:9999; transition: opacity .22s ease, visibility .22s ease; }
#preloader.is-hidden{ opacity:0; visibility:hidden; }
.pl{ display:grid; place-items:center; gap:14px; position:relative; }
.pl__ring{ width:110px; height:110px; border-radius:999px; background: radial-gradient(circle at 30% 30%, rgba(83,224,255,.18), rgba(42,134,255,.06), transparent 62%);
  position:absolute; animation: breathe 1.8s ease-in-out infinite; }
@keyframes breathe{ 0%,100%{ transform: scale(1); opacity:.8; } 50%{ transform: scale(1.06); opacity:1; } }
.pl__logo{ width:320px; height:auto; position:relative; z-index:1; }
.pl__mono{ fill:none; stroke: url(#plg); stroke-width:4.2; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:280; stroke-dashoffset:280;
  animation: draw 1.0s cubic-bezier(.2,.9,.2,1) forwards; }
.pl__pulse{ fill:none; stroke: rgba(42,134,255,.78); stroke-width:3.0; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:160; stroke-dashoffset:160;
  animation: draw .9s .12s cubic-bezier(.2,.9,.2,1) forwards, pulse 1.6s 1.2s ease-in-out infinite; }
.pl__word{ font-family: Inter, system-ui; font-weight:900; font-size:18px; letter-spacing:.08em; text-transform: uppercase; fill: rgba(7,22,44,.78); }
.pl__bar{ width:240px; height:10px; border-radius:999px; background: rgba(7,22,44,.08); border: 1px solid rgba(7,22,44,.10); overflow:hidden; }
.pl__bar span{ display:block; height:100%; width:46%; border-radius:999px; background: linear-gradient(90deg, rgba(42,134,255,.92), rgba(83,224,255,.92));
  animation: load 1.05s ease-in-out infinite; }
@keyframes load{ 0%{ transform: translateX(-70%); } 50%{ transform: translateX(140%); } 100%{ transform: translateX(320%); } }
.pl__hint{ font-weight:800; color: rgba(7,22,44,.62); font-size:12px; letter-spacing:.14em; text-transform: uppercase; }

/* responsive */
@media (max-width: 980px){ .triple{ grid-template-columns: 1fr; } .ach__txt{ max-width: 560px; } }
@media (max-width: 820px){ .menu{ display:none; } .burger{ display:block; } }
@media (max-width: 720px){ .bullets{ grid-template-columns: 1fr; } .cta{ display:none; } .logo{ height: 44px; } }

@media (prefers-reduced-motion: reduce){ *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition:none !important; } }

@keyframes videoBreathe{0%,100%{transform: translateY(0) scale(1);}50%{transform: translateY(-1px) scale(1.012);}}

.hero::after{content:''; position:absolute; left:0; right:0; bottom:-40px; height:220px; background: radial-gradient(600px 180px at 50% 0%, rgba(83,224,255,.18), transparent 70%); pointer-events:none;}


/* Press marquee */
.press{ padding: 28px 0 6px; }
.press__rail{
  position: relative;
  border-radius: 26px;
  padding: 18px 14px;
  overflow: hidden;
  cursor: grab;
}
.press__rail.is-dragging{ cursor: grabbing; }
.press__rail::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 220px at 20% 30%, rgba(83,224,255,.12), transparent 60%),
    radial-gradient(900px 220px at 80% 40%, rgba(42,134,255,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.55));
  border: 1px solid rgba(7,22,44,.08);
  border-radius: 26px;
  box-shadow: 0 22px 70px rgba(7,22,44,.08);
}
.press__rail::after{
  content:"";
  position:absolute; inset:-2px;
  border-radius: 28px;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(247,251,255,1) 0%, rgba(247,251,255,0) 12%),
    linear-gradient(270deg, rgba(247,251,255,1) 0%, rgba(247,251,255,0) 12%);
  mix-blend-mode: screen;
  opacity: .9;
}
.press__track{
  position: relative;
  display:flex;
  gap: 36px;
  align-items:center;
  white-space: nowrap;
  will-change: transform;
  padding: 0 10px;
}
.press__item{ position:relative; z-index:1; flex: 0 0 auto; }
.press__logo{
  font-family: Inter, system-ui;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 22px;
  color: rgba(7,22,44,.58);
  opacity: .88;
  filter: grayscale(1);
  transition: opacity .18s ease, transform .18s ease, color .18s ease;
}
.press__thin{ font-weight: 800; opacity:.8; }
.press__logo--serif{ letter-spacing: .12em; font-size: 18px; font-weight: 900; }
.press__logo--badge{ display:inline-flex; align-items:center; gap:10px; }
.press__badge{
  width: 30px; height: 30px;
  border-radius: 999px;
  display:grid; place-items:center;
  background: rgba(7,22,44,.72);
  color:#fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 18px 42px rgba(7,22,44,.16);
}
.press__logo--round{ display:inline-flex; align-items:center; gap:10px; }
.press__dot{ width: 18px; height: 18px; border-radius:999px; background: rgba(7,22,44,.52); display:inline-block; }
.press__item:hover .press__logo{
  opacity: 1;
  color: rgba(7,22,44,.78);
  transform: translateY(-1px);
}

/* Reviews */
.reviews{ padding: 24px 0 84px; }
.reviews__wrap{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(228,246,242,.65);
  border: 1px solid rgba(7,22,44,.08);
  box-shadow: 0 22px 70px rgba(7,22,44,.08);
  padding: 34px 30px;
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
}
.reviews__wrap::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 340px at 20% 30%, rgba(83,224,255,.12), transparent 60%),
    radial-gradient(900px 340px at 80% 40%, rgba(42,134,255,.08), transparent 62%);
  pointer-events:none;
}
.reviews__left, .reviews__right{ position:relative; z-index:1; }

.reviews__excellent{
  font-family: Inter, system-ui;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.03em;
  color: rgba(7,22,44,.86);
  margin-bottom: 10px;
}
.reviews__stars{ display:flex; gap:4px; margin-bottom: 10px; }
.rstar{
  width: 34px; height: 34px;
  display:inline-flex; align-items:center; justify-content:center;
  background: var(--success);
  color:#fff;
  font-size: 18px;
  line-height:1;
  box-shadow: 0 10px 22px rgba(17,196,122,.20);
}
.rstar--split{
  background: linear-gradient(90deg, var(--success) 0 50%, rgba(17,196,122,.22) 50% 100%);
  border: 1px solid rgba(17,196,122,.28);
}
.reviews__based{
  color: rgba(7,22,44,.74);
  font-weight: 650;
  font-size: 14px;
  margin: 2px 0 16px;
}
.reviews__tp{
  display:flex; align-items:center; gap: 10px;
  font-family: Inter, system-ui;
  font-weight: 900;
  font-size: 26px;
  color: rgba(7,22,44,.78);
}
.reviews__tpstar{ color: var(--success); font-size: 28px; transform: translateY(-1px); }

.reviews__right{ display:flex; flex-direction:column; gap: 10px; position:relative; }
.reviews__viewport{ overflow:hidden; width:100%; padding: 0 28px; }
.reviews__track{
  display:flex;
  gap: 26px;
  will-change: transform;
  transition: transform .35s cubic-bezier(.2,.9,.2,1);
}
.rev{
  width: 260px;
  flex: 0 0 auto;
  color: rgba(7,22,44,.82);
}
.rev__stars{ display:flex; gap:3px; margin-bottom: 10px; }
.rev__sq{
  width: 20px; height: 20px;
  display:grid; place-items:center;
  background: var(--success);
  color:#fff;
  font-size: 12px;
  line-height:1;
}
.rev__title{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(7,22,44,.88);
  margin: 0 0 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rev__text{
  font-weight: 600;
  font-size: 13px;
  color: rgba(7,22,44,.74);
  margin: 0 0 10px;
}
.rev__meta{
  font-weight: 700;
  font-size: 12px;
  color: rgba(7,22,44,.56);
}
.rev__meta b{ color: rgba(7,22,44,.68); font-weight: 900; }

.reviews__nav{
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(7,22,44,.14);
  background: rgba(255,255,255,.62);
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 16px 40px rgba(7,22,44,.10);
  transition: transform .15s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  position:absolute;
  top: 44px;
}
.reviews__nav span{ font-size: 20px; color: rgba(7,22,44,.74); transform: translateY(-1px); }
.reviews__nav:hover{ transform: translateY(-1px); background:#fff; box-shadow: 0 22px 60px rgba(7,22,44,.14); }
.reviews__nav[disabled]{ opacity:.35; cursor: not-allowed; transform:none; box-shadow:none; }
.reviews__nav--prev{ left: 6px; }
.reviews__nav--next{ right: 6px; }

.reviews__note{
  margin-top: 8px;
  font-weight: 650;
  font-size: 13px;
  color: rgba(7,22,44,.60);
}

@media (max-width: 1100px){
  .reviews__wrap{ grid-template-columns: 1fr; }
  .reviews__viewport{ padding: 0 44px; }
  .reviews__nav{ top: 18px; }
}

/* ===== Blocks 2-6 ===== */

.sec{ padding: 70px 0; }
.sec__head{ text-align:center; margin-bottom: 30px; position:relative; }
.sec__title{
  font-family: Inter, system-ui;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 34px;
  color: rgba(7,22,44,.88);
  text-transform: uppercase;
}
.sec__rule{
  width: 140px; height: 2px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42,134,255,.0), rgba(42,134,255,.55), rgba(83,224,255,.0));
}
.sec__desc{ margin-top: 10px; font-weight: 650; color: rgba(7,22,44,.60); }
.sec__subnote{ text-align:center; margin-top: 18px; color: rgba(7,22,44,.55); font-style: italic; font-weight: 650; }

/* Video grids */
.vgrid{ display:grid; gap: 18px; }
.vgrid--wide{ grid-template-columns: repeat(3, 1fr); }
.vgrid--tall{ grid-template-columns: repeat(4, 1fr); }

.vcard{
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(7,22,44,.10);
  background: rgba(7,22,44,.92);
  overflow:hidden;
  box-shadow: 0 22px 70px rgba(7,22,44,.14);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, filter .22s ease;
  min-height: 170px;
}
.vcard--tall{ min-height: 330px; background: rgba(255,255,255,.65); border-color: rgba(7,22,44,.08); }
.vcard__media{
  position:absolute; inset:0;
  background:
    radial-gradient(480px 220px at 30% 30%, rgba(83,224,255,.18), transparent 60%),
    radial-gradient(520px 260px at 70% 70%, rgba(42,134,255,.16), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.0));
  opacity: .9;
}
.vcard--tall .vcard__media{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(420px 260px at 50% 25%, rgba(83,224,255,.22), transparent 64%);
}
.vcard::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.58));
  opacity:.8;
}
.vcard--tall::after{
  background: linear-gradient(180deg, rgba(7,22,44,.0), rgba(7,22,44,.08));
  opacity: 1;
}
.vcard__play{
  position:absolute; left:50%; top:50%;
  width: 54px; height: 54px;
  border-radius: 999px;
  transform: translate(-50%,-50%);
  background: linear-gradient(180deg, rgba(0,213,137,1), rgba(0,168,113,1));
  box-shadow: 0 22px 60px rgba(0,168,113,.28);
}
.vcard__play::before{
  content:"";
  position:absolute; left: 22px; top: 18px;
  width: 0; height: 0;
  border-left: 14px solid rgba(255,255,255,.95);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 8px 18px rgba(7,22,44,.25));
}
.vcard:hover{ transform: translateY(-3px); box-shadow: 0 30px 90px rgba(7,22,44,.18); }
.vcard:hover .vcard__play{ filter: brightness(1.06); }

.sec__more{ display:flex; justify-content:center; margin-top: 18px; }
.linkbtn{
  border: none;
  background: transparent;
  color: rgba(7,22,44,.62);
  font-weight: 800;
  letter-spacing: .02em;
  cursor:pointer;
  padding: 10px 14px;
  border-radius: 12px;
}
.linkbtn:hover{ background: rgba(83,224,255,.10); color: rgba(7,22,44,.78); }

/* Results slider */
.results{ padding-top: 66px; }
.rslider{ position:relative; }
.rviewport{ overflow:hidden; }
.rtrack{
  display:flex; gap: 18px;
  will-change: transform;
  transition: transform .38s cubic-bezier(.2,.9,.2,1);
}
.rcard{
  flex: 0 0 auto;
  width: 280px;
  border-radius: 16px;
  background: rgba(7,38,60,.96);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 26px 80px rgba(7,22,44,.18);
  overflow:hidden;
  position:relative;
}
.rcard::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(520px 220px at 25% 10%, rgba(83,224,255,.12), transparent 60%),
    radial-gradient(520px 240px at 85% 60%, rgba(42,134,255,.10), transparent 62%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 22px);
  opacity:.85;
  pointer-events:none;
}
.rcard__top{ position:relative; z-index:1; padding: 22px 18px 10px; display:flex; gap: 12px; align-items:center; }
.rcard__avatar{
  width: 54px; height: 54px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(83,224,255,.40), rgba(42,134,255,.30));
  border: 2px solid rgba(255,255,255,.30);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.rcard__name{
  color:#fff; font-weight: 900; letter-spacing: -0.01em; font-size: 18px;
}
.rcard__age, .rcard__country{ font-weight: 800; opacity:.9; }
.rcard__grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.10);
}
.rcell{
  padding: 14px 14px;
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.rcell:nth-child(2n){ border-right:none; }
.rcell__k{ color: rgba(255,255,255,.82); font-weight: 750; font-size: 12px; }
.rcell__v{ color: rgba(0,213,137,1); font-weight: 900; margin-top: 6px; }

.rnav{
  position:absolute; top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(7,22,44,.14);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 54px rgba(7,22,44,.12);
  cursor:pointer;
}
.rnav:hover{ background:#fff; transform: translateY(-50%) scale(1.03); }
.rnav--prev{ left: -10px; }
.rnav--next{ right: -10px; }
.rnav[disabled]{ opacity:.35; cursor: not-allowed; }

/* Why section */
.why{ padding: 80px 0; }
.why__card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(7,22,44,.08);
  background: rgba(255,255,255,.78);
  box-shadow: 0 26px 90px rgba(7,22,44,.10);
  display:grid;
  grid-template-columns: 1.15fr .95fr;
  min-height: 420px;
}
.why__copy{ padding: 40px 42px; }
.why__title{
  font-weight: 950;
  font-size: 38px;
  letter-spacing:-0.03em;
  color: rgba(7,22,44,.90);
  margin: 0 0 14px;
}
.why__text{
  color: rgba(7,22,44,.70);
  font-weight: 600;
  line-height: 1.75;
  font-size: 14px;
  max-width: 620px;
  white-space: pre-line;
}
.why__media{ position:relative; }
.why__media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
}
.why__media::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.52) 40%, rgba(7,22,44,.40) 100%);
}
.why__overlay{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  justify-content:flex-end;
  padding: 32px 34px;
  gap: 12px;
}
.why__quote{
  color: rgba(255,255,255,.92);
  font-weight: 850;
  font-size: 18px;
  line-height: 1.35;
  max-width: 420px;
  text-shadow: 0 14px 50px rgba(0,0,0,.35);
}
.why__sign{
  color: rgba(255,255,255,.86);
  font-weight: 700;
}

/* Press articles placeholders */
.press2__grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
.pbox{
  border-radius: 14px;
  background: rgba(7,22,44,.92);
  border: 1px solid rgba(7,22,44,.10);
  box-shadow: 0 20px 70px rgba(7,22,44,.16);
  overflow:hidden;
  position:relative;
  min-height: 120px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pbox__shot{
  position:absolute; inset:0;
  background:
    radial-gradient(520px 200px at 30% 20%, rgba(83,224,255,.14), transparent 60%),
    radial-gradient(520px 240px at 80% 70%, rgba(42,134,255,.10), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.0));
  opacity:.95;
}
.pbox:hover{ transform: translateY(-2px); box-shadow: 0 28px 90px rgba(7,22,44,.18); }

/* Join group */
.join__card{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(7,22,44,.08);
  background:
    radial-gradient(900px 320px at 20% 30%, rgba(83,224,255,.14), transparent 60%),
    radial-gradient(900px 320px at 80% 40%, rgba(42,134,255,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.80), rgba(255,255,255,.62));
  box-shadow: 0 28px 100px rgba(7,22,44,.10);
  padding: 44px 44px;
  display:grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items:center;
}
.phone{
  width: 320px; height: 640px;
  border-radius: 44px;
  background: linear-gradient(180deg, rgba(14,28,46,.96), rgba(8,20,34,.96));
  box-shadow: 0 50px 160px rgba(7,22,44,.22);
  position:relative;
  margin-left: 20px;
  transform: perspective(900px) rotateY(10deg) rotateX(2deg);
  border: 1px solid rgba(255,255,255,.10);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty{ 0%,100%{ transform: perspective(900px) rotateY(10deg) rotateX(2deg) translateY(0); } 50%{ transform: perspective(900px) rotateY(10deg) rotateX(2deg) translateY(-10px);} }
.phone__screen{
  position:absolute; inset: 14px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.phone__shine{
  position:absolute; inset:0;
  border-radius: 44px;
  background: radial-gradient(520px 240px at 30% 15%, rgba(255,255,255,.16), transparent 60%);
  pointer-events:none;
}
.join__title{
  font-weight: 950;
  font-size: 38px;
  letter-spacing: -0.03em;
  color: rgba(7,22,44,.90);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.join__accent{ color: rgba(0,168,113,1); }
.join__text{
  color: rgba(7,22,44,.70);
  font-weight: 600;
  line-height: 1.75;
  font-size: 14px;
  white-space: pre-line;
  margin-bottom: 24px;
}

@media (max-width: 1100px){
  .vgrid--wide{ grid-template-columns: repeat(2, 1fr); }
  .vgrid--tall{ grid-template-columns: repeat(2, 1fr); }
  .press2__grid{ grid-template-columns: repeat(3, 1fr); }
  .why__card{ grid-template-columns: 1fr; }
  .why__media{ min-height: 340px; }
  .join__card{ grid-template-columns: 1fr; }
  .phone{ margin: 0 auto; transform: none; }
}
@media (max-width: 640px){
  .sec__title{ font-size: 26px; }
  .press2__grid{ grid-template-columns: repeat(2, 1fr); }
  .vcard--tall{ min-height: 260px; }
  .why__copy{ padding: 28px 22px; }
  .join__card{ padding: 30px 22px; }
}


/* Video elements */
.video__frame{ position: relative; overflow: hidden; }
.video__el{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius: inherit;
  filter: saturate(1.05) contrast(1.05);
}
.video__mesh{ position:absolute; inset:0; pointer-events:none; }

.vcard{ position:relative; overflow:hidden; }
.vcard__video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius: inherit;
}
.vcard__play{
  position:absolute; inset:0;
  display:grid; place-items:center;
  pointer-events:none;
}
.vcard__play svg{
  width:44px; height:44px;
  fill: rgba(255,255,255,.9);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
}
.vcard.is-playing .vcard__play{ opacity:.15; }

.vcard--tall{ aspect-ratio: 9 / 16; }

/* Compare section */
.section--compare{ padding: 72px 0; }
.compareCard{
  background: radial-gradient(1000px 400px at 20% 0%, rgba(35, 255, 176, .10), transparent 60%),
              radial-gradient(800px 380px at 80% 0%, rgba(255, 61, 90, .10), transparent 60%),
              rgba(6, 26, 43, .95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px;
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.compareDivider{ background: rgba(255,255,255,.10); }
.compareTitle{
  font-size: 34px;
  letter-spacing: .5px;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.compareCol--good .compareTitle{ color: #20f0b3; }
.compareCol--bad .compareTitle{ color: #ff3d5a; }
.compareList{ list-style:none; padding:0; margin:0; display:grid; gap: 12px; }
.compareList li{
  padding: 12px 14px 12px 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  color: rgba(255,255,255,.90);
}
.compareCol--good .compareList li::before,
.compareCol--bad .compareList li::before{
  content:"";
  width: 26px; height: 26px;
  border-radius: 50%;
  position:absolute; left: 14px; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.compareCol--good .compareList li::after,
.compareCol--bad .compareList li::after{
  content:"";
  position:absolute; left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
}
.compareCol--good .compareList li::after{ background:#20f0b3; }
.compareCol--bad .compareList li::after{ background:#ff3d5a; }

/* Database */
.section--database{ padding: 72px 0; }
.dbCard{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.dbText .h2{ margin-top: 0; }
.dbBullets{ margin: 14px 0 18px 18px; }
.dbBullets li{ margin: 8px 0; color: rgba(255,255,255,.92); }
.dbEm{ color: rgba(255,255,255,.95); font-weight: 600; }
.dbVisual{ display:flex; align-items:center; justify-content:center; }
.dbFrame{
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(32,240,179,.10), rgba(255,61,90,.08));
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
  overflow:hidden;
}
.dbGlow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(32,240,179,.35), transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(255,61,90,.30), transparent 45%);
  filter: blur(18px);
}
.dbLabel{
  position:absolute; left: 16px; bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(6,26,43,.65);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 13px;
}

/* Who */
.section--who{ padding: 72px 0; }
.whoCard{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px;
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.whoPhotos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.whoPhotos img{
  width:100%; height:100%;
  object-fit:cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.whoPhotos img:nth-child(1){ grid-column: 1 / 2; grid-row: 1 / 2; }
.whoPhotos img:nth-child(2){ grid-column: 2 / 3; grid-row: 1 / 3; }
.whoPhotos img:nth-child(3){ grid-column: 1 / 2; grid-row: 2 / 3; }
.whoEm{ font-weight: 600; color: rgba(255,255,255,.95); }

/* Instagram */
.section--instagram{ padding: 72px 0 92px; }
.instaCard{
  background: rgba(6,26,43,.95);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.instaHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.instaTitle{
  margin: 0;
  font-size: 34px;
  letter-spacing: .7px;
  text-transform: uppercase;
}
.instaBtn{
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(32,240,179,.14);
  border: 1px solid rgba(32,240,179,.35);
  color: rgba(255,255,255,.95);
  text-decoration:none;
  font-weight: 700;
}
.instaBtn:hover{ transform: translateY(-1px); }
.instaGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.instaGrid img{
  width:100%;
  aspect-ratio: 4 / 3;
  object-fit:cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 980px){
  .compareCard{ grid-template-columns: 1fr; }
  .compareDivider{ display:none; }
  .dbCard{ grid-template-columns: 1fr; }
  .whoCard{ grid-template-columns: 1fr; }
  .instaGrid{ grid-template-columns: repeat(2, 1fr); }
}

/* Width normalization for sections after Join */
.section--compare,
.section--database,
.section--who,
.section--instagram{
  padding-left: 0;
  padding-right: 0;
}
.compareCard,
.dbCard,
.whoCard,
.instaCard{
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  box-sizing: border-box;
}

.compareCard,
.dbCard,
.whoCard,
.instaCard{
  border-color: rgba(7,22,44,.08);
}


/* avatar photos in results */
.rcard__avatar{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* FAQ */
.section--faq{
  padding: 72px 0 96px;
}
.faqCard{
  position: relative;
  background:
    radial-gradient(800px 260px at 15% 18%, rgba(83,224,255,.08), transparent 60%),
    radial-gradient(760px 260px at 85% 70%, rgba(42,134,255,.06), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,255,255,.56));
  border: 1px solid rgba(7,22,44,.08);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7,22,44,.08);
  padding: 28px 32px 24px;
}
.faqList{
  max-width: 980px;
  margin: 0 auto;
}
.faqItem{
  border-bottom: 1px dashed rgba(7,22,44,.10);
}
.faqItem:last-child{
  border-bottom: none;
}
.faqItem summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-weight: 800;
  font-size: 18px;
  color: rgba(7,22,44,.86);
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqPlus{
  font-size: 34px;
  line-height: 1;
  color: rgba(7,22,44,.72);
  transition: transform .18s ease;
}
.faqItem[open] .faqPlus{
  transform: rotate(45deg);
}
.faqAnswer{
  padding: 0 0 22px;
  color: rgba(7,22,44,.70);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
}


/* Requested visual fixes */
html{
  scroll-behavior: smooth;
}
#whyfree, #database, #students, #who, #faq{
  scroll-margin-top: 108px;
}
.why__media img{
  object-position: center 18%;
}
.dbBullets li{
  color: rgba(7,22,44,.88) !important;
}
.dbEm{
  color: rgba(7,22,44,.88) !important;
}
.whoEm{
  color: rgba(7,22,44,.90) !important;
}
.dbFrame{
  background: linear-gradient(135deg, rgba(83,224,255,.10), rgba(42,134,255,.08));
}
.dbNote{
  position:absolute;
  inset: 14px 14px 58px 14px;
  width: calc(100% - 28px);
  height: calc(100% - 72px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(7,22,44,.10);
}
