﻿/* ============================================================
   DOMVISION v2 вЂ” index2 styles
   Faithful to maket screenshots, Manrope, cyan accents.
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: #0F172A;
  background: #F8FAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

:root {
  --bg-dark: #0B1220;
  --bg-dark-2: #0F172A;
  --bg-light: #F4F7FB;
  --text: #0F172A;
  --text-mut: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line-d: rgba(255, 255, 255, 0.08);
  --accent: #22D3EE;
  --accent-2: #67E8F9;
  --accent-deep: #0891B2;
  --grad: linear-gradient(135deg, #22D3EE 0%, #2563EB 100%);
  --grad-soft: linear-gradient(135deg, rgba(34,211,238,.16), rgba(37,99,235,.08));
  --shadow-sm: 0 4px 18px -8px rgba(15,23,42,.18);
  --shadow-md: 0 18px 50px -22px rgba(15,23,42,.22);
  --shadow-glow: 0 0 0 1px rgba(34,211,238,.45), 0 18px 60px -18px rgba(34,211,238,.35);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography helpers ---------- */
.t-cyan       { color: var(--accent); }
h1 .t-cyan {
    display: block;
}
.t-cyan-bold  { color: var(--accent); font-weight: 700; }
.t-muted      { color: var(--text-mut); }

/* eyebrow: SECTION в”Ђв”Ђв”ЂвЂў */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::after {
  content: '';
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* Section titles */
.sec__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--text);
}
.sec__title--lg {
  font-size: clamp(28px, 4.2vw, 46px);
  letter-spacing: -0.015em;
}
.sec__title--oneline { white-space: nowrap; }
@media (max-width: 720px) { .sec__title--oneline { white-space: normal; } }
.sec--dark .sec__title { color: #F1F5F9; }
.sec__sub, .sec__lead {
  margin: 0 0 24px;
  font-size: 16px;
  color: var(--text-mut);
  max-width: 720px;
}
.sec--dark .sec__sub { color: #94A3B8; }
.sec__lead { font-weight: 500; color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn--grad {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(34,211,238,.55);
}
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(34,211,238,.7); }
.btn--ghost {
  background: rgba(34,211,238,.06);
  color: var(--accent-2);
  border-color: rgba(34,211,238,.55);
}
.btn--ghost:hover { background: rgba(34,211,238,.12); border-color: var(--accent-2); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--full { width: 100%; }

/* horizontal rule with centered text */
.rule {
  position: relative;
  text-align: center;
  margin: 32px auto;
  font-weight: 500;
  color: var(--text);
}
.sec--dark .rule { color: #E2E8F0; }
.rule span {
  position: relative;
  display: inline-block;
  padding: 0 18px;
  background: var(--bg-light);
}
.sec--dark .rule span { background: var(--bg-dark); }
.rule::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .55;
}
.rule--big { font-size: 19px; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
  height: 72px;
  display: flex;
  align-items: center;
}
.hdr--scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -16px rgba(15,23,42,.18);
}
.hdr__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.hdr__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3px;
  flex-shrink: 0;
}
.hdr__logo-img {
  position: relative;
  display: block;
  height: 26px;
}
.hdr__logo-img img {
  height: 26px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}
.hdr__logo-img .is-dark { display: none; }
.hdr--scrolled .hdr__logo-img .is-light { display: none; }
.hdr--scrolled .hdr__logo-img .is-dark { display: block; }
/* Brand tag — distributed across the full logo width (matches mobile hero) */
.brand-tag {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.1;
}
.brand-tag > span { display: inline-block; }
.hdr__logo-tag {
  font-size: 9.5px;
  color: rgba(241, 245, 249, .78);
}
.hdr--scrolled .hdr__logo-tag { color: var(--text-mut); }

.hdr__nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.hdr__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(241, 245, 249, .9);
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.hdr__link:hover { color: var(--accent-2); }
.hdr__link--active { color: var(--accent); }
.hdr--scrolled .hdr__link { color: var(--text); }
.hdr--scrolled .hdr__link:hover { color: var(--accent-deep); }
.hdr--scrolled .hdr__link--active { color: var(--accent-deep); }

.hdr__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .35);
  transition: background .2s, color .2s, border-color .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.hdr__phone:hover { background: rgba(34,211,238,.16); border-color: var(--accent); }
.hdr--scrolled .hdr__phone { color: var(--accent-deep); border-color: rgba(8,145,178,.4); background: rgba(34,211,238,.06); }

.hdr__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.hdr__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hdr--scrolled .hdr__burger { background: rgba(15,23,42,.06); border-color: var(--line); }
.hdr--scrolled .hdr__burger span { background: var(--text); }
.hdr__burger--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger--open span:nth-child(2) { opacity: 0; }
.hdr__burger--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile nav drawer */
.mob-nav {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, .96);
  backdrop-filter: blur(8px);
  z-index: 40;
  padding: 100px 28px 40px;
  transform: translateY(-100%);
  transition: transform .35s ease;
  overflow-y: auto;
}
.mob-nav--open { transform: translateY(0); }
.mob-nav__list { display: flex; flex-direction: column; gap: 4px; }
.mob-nav__link {
  font-size: 22px;
  font-weight: 600;
  color: #F1F5F9;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mob-nav__link--muted { color: rgba(241,245,249,.6); }
.mob-nav__phone {
  margin-top: 20px;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  align-self: flex-start;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 60px;
  background: var(--bg-dark);
  color: #F1F5F9;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(800px 600px at 85% 80%, rgba(37,99,235,.16), transparent 65%),
    linear-gradient(180deg, #0B1220 0%, #0F172A 100%);
  z-index: 0;
}
/* .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 40%, transparent 80%);
} */
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__title {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 700;
  color: #F8FAFC;
}
.hero__sub {
  margin: 0 0 18px;
  font-size: 17px;
  color: #94A3B8;
  max-width: 560px;
}
.hero__lead {
  margin: 0 0 26px;
  font-size: 15.5px;
  color: #CBD5E1;
  max-width: 560px;
}
.hero__note {
  margin: 20px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(148, 163, 184, .85);
}

.hero__media {
  position: relative;
}
.hero__video {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #000;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(34,211,238,.25),
    0 30px 90px -30px rgba(34,211,238,.45),
    0 50px 120px -40px rgba(0,0,0,.7);
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  padding: 0;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(15, 23, 42, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, background .25s ease, visibility .25s;
  z-index: 2;
}
.hero__video--show-btn .hero__play { opacity: 1; visibility: visible; }
.hero__play:hover { transform: scale(1.06); background: rgba(15,23,42,.65); }
.hero__play-ico { display: none; }
.hero__play-ico--pause { display: block; }
.hero__video--paused .hero__play-ico--pause { display: none; }
.hero__video--paused .hero__play-ico--play  { display: block; }
.hero__caption {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  color: #94A3B8;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  color: var(--accent);
  opacity: .8;
  z-index: 2;
  animation: heroBob 2.4s ease-in-out infinite;
}
.hero__scroll:hover { opacity: 1; }
@keyframes heroBob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ============================================================
   SECTIONS вЂ” 1 block = 1 viewport
   ============================================================ */
.sec {
  position: relative;
  min-height: 100vh;
  padding: 92px 0 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.sec--light { background: var(--bg-light); color: var(--text); }
.sec--dark { background: var(--bg-dark); color: #F1F5F9; }
.sec--dark .sec__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(37,99,235,.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.sec--dark > .container { position: relative; z-index: 1; }
.sec > .container { width: 100%; }

.sec__split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.sec__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0F172A;
  max-height: 70vh;
}
.sec__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec__media--tall img { object-fit: cover; background: #0F172A; }
.sec__media--tall { aspect-ratio: 4 / 5; max-height: 72vh; }

/* ============================================================
   ABOUT вЂ” feature list
   ============================================================ */
.feat { list-style: none; padding: 0; margin: 0 0 22px; }
.feat__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.feat__row:first-child { border-top: 0; padding-top: 4px; }
.feat__row p { margin: 0; font-size: 15px; line-height: 1.5; }
.feat__ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.3);
}
.callout {
  margin-top: 8px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(34,211,238,.45);
  background: rgba(34,211,238,.05);
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  box-shadow: 0 0 28px -16px rgba(34,211,238,.45) inset;
  text-align: center;
}

/* ============================================================
   SYSTEM вЂ” two glow cards
   ============================================================ */
.sec--system .container { text-align: center; }
.sec--system .sec__sub { margin-left: auto; margin-right: auto; }

.sys {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 28px;
}
.sys__card {
  position: relative;
  text-align: left;
  padding: 28px 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(34,211,238,.06), rgba(15,23,42,.4));
  border: 1px solid rgba(34,211,238,.35);
  box-shadow:
    0 0 40px -10px rgba(34,211,238,.25),
    0 30px 80px -40px rgba(34,211,238,.3) inset;
}
.sys__ico {
  display: inline-flex;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.4);
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.sys__title { margin: 0 0 4px; font-size: 22px; font-weight: 700; color: #F1F5F9; }
.sys__sub { margin: 0 0 14px; color: #94A3B8; font-size: 14px; }
.sys__intro { margin: 14px 0 8px; color: #CBD5E1; font-weight: 500; font-size: 14.5px; }
.sys__list { list-style: none; padding: 0; margin: 0 0 16px; }
.sys__list li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.5;
}
.sys__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34,211,238,.7);
}
.sys__accent {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(34,211,238,.25);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 14.5px;
}
.sys__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 60px;
  opacity: .85;
  position: relative;
}
.sys__arrow--anim {
  opacity: 1;
  width: 92px;
  height: 60px;
}
.sys__arrow--anim svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(34,211,238,.85)) drop-shadow(0 0 22px rgba(34,211,238,.45));
  animation: sysArrowSlide 1.6s ease-in-out infinite;
}
.sys__arrow-pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,211,238,.55);
  transform: translate(-50%, -50%) scale(.6);
  z-index: 1;
  animation: sysArrowPulse 1.8s ease-out infinite;
  pointer-events: none;
}
@keyframes sysArrowSlide {
  0%, 100% { transform: translateX(-6px); }
  50%      { transform: translateX(8px); }
}
@keyframes sysArrowPulse {
  0%   { transform: translate(-50%, -50%) scale(.4); opacity: .85; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
.sys__bottom {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  color: #CBD5E1;
}
.sys__bottom-ico {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.35);
  align-items: center; justify-content: center;
}
.sys__bottom p { margin: 0; text-align: left; font-size: 14px; line-height: 1.5; }

/* ============================================================
   CONTENT (catalog)
   ============================================================ */
.cnt {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
  position: relative;
}
.cnt::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--accent) 50%, transparent 50%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  opacity: .35;
  z-index: 0;
}
.cnt__card {
  position: relative;
  padding: 24px 20px 20px;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  text-align: left;
  z-index: 1;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cnt__card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,.4);
  box-shadow: var(--shadow-md);
}
.cnt__num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: rgba(34, 211, 238, .22);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cnt__ico {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.3);
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cnt__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--text);
  text-wrap: balance;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}
.cnt__foot { margin-top: 36px; text-align: center; }
.cnt__channel {
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
}

/* ============================================================
   QUALITY
   ============================================================ */
.sec--quality .container { position: relative; z-index: 1; }
.qual {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  margin-top: 26px;
  align-items: stretch;
}
.qual__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #0F172A;
  max-height: 60vh;
  box-shadow: 0 0 0 1px rgba(34,211,238,.25), 0 30px 80px -30px rgba(34,211,238,.3);
}
.qual__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; background: #0F172A; display: block; }
.qual__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.qual__card {
  padding: 22px 22px;
  border-radius: var(--r-md);
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(34, 211, 238, .35);
  box-shadow: 0 0 30px -15px rgba(34, 211, 238, .35);
  transition: transform .25s, box-shadow .25s;
}
.qual__card:hover { transform: translateY(-3px); box-shadow: 0 0 40px -10px rgba(34,211,238,.45); }
.qual__ico {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.4);
  align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.qual__card h3 { margin: 0 0 6px; font-size: 16px; color: #F1F5F9; }
.qual__card p { margin: 0; color: #94A3B8; font-size: 13.5px; line-height: 1.5; }

.qual__glow {
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: var(--r-md);
  border: 1px solid rgba(34, 211, 238, .45);
  background: linear-gradient(180deg, rgba(34,211,238,.08), rgba(15,23,42,.4));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  box-shadow:
    0 0 50px -20px rgba(34, 211, 238, .55),
    inset 0 0 50px -30px rgba(34,211,238,.4);
}
.qual__glow-ico {
  display: inline-flex;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.5);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qual__glow p { margin: 0; color: #E2E8F0; font-size: 15px; font-weight: 500; }

/* ============================================================
   OWNERS
   ============================================================ */
.own {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}
.own__card {
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.own__card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,.4);
  box-shadow: var(--shadow-md);
}
.own__ico {
  display: inline-flex;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.35);
  align-items: center; justify-content: center;
}
.own__card h3 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

/* ============================================================
   PARTNERS вЂ” pillars
   ============================================================ */
.pil {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.pil__card {
  padding: 26px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(34,211,238,.06), rgba(15,23,42,.4));
  border: 1px solid rgba(34, 211, 238, .3);
  box-shadow: 0 0 40px -20px rgba(34,211,238,.3);
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}
.pil__card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .65);
  background: linear-gradient(180deg, rgba(34,211,238,.12), rgba(15,23,42,.55));
  box-shadow: 0 0 50px -10px rgba(34,211,238,.55), 0 30px 80px -40px rgba(34,211,238,.4);
}
.pil__card h3 { margin: 0 0 12px; font-size: 19px; color: #F1F5F9; }
.pil__card ul { list-style: none; padding: 0; margin: 0; }
.pil__card li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.5;
}
.pil__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(34,211,238,.7);
}
.pil__ico {
  display: inline-flex;
  width: 50px; height: 50px;
  border-radius: 13px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.4);
  align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pil__foot {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pil__foot p { margin: 0; color: #E2E8F0; font-size: 16px; }
.pil__foot .btn { margin-top: 14px; }

/* ============================================================
   BUSINESS вЂ” steps
   ============================================================ */
.biz {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 22px;
}
.biz__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.biz__step:hover { transform: translateY(-2px); border-color: rgba(34,211,238,.4); box-shadow: var(--shadow-sm); }
.biz__ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.4);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.biz__step h3 { margin: 0 0 6px; font-size: 16px; color: var(--text); }
.biz__div { display: block; height: 1px; width: 32px; background: var(--accent); opacity: .55; margin: 6px 0 8px; }
.biz__step p { margin: 0; color: var(--text-mut); font-size: 13.5px; line-height: 1.55; }

/* ============================================================
   FOR-WHOM (audience + stats)
   ============================================================ */
.aud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 26px 0 22px;
}
.aud__card {
  padding: 24px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(34,211,238,.07), rgba(15,23,42,.4));
  border: 1px solid rgba(34,211,238,.4);
  box-shadow: 0 0 40px -15px rgba(34,211,238,.3);
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}
.aud__card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, .7);
  background: linear-gradient(180deg, rgba(34,211,238,.13), rgba(15,23,42,.55));
  box-shadow: 0 0 50px -10px rgba(34,211,238,.55), 0 30px 80px -40px rgba(34,211,238,.4);
}
.aud__ico {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.45);
  align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.aud__card h3 { margin: 0 0 10px; font-size: 18px; color: #F1F5F9; line-height: 1.3; }
.aud__div { display: block; height: 1px; background: rgba(34,211,238,.35); margin: 0 0 10px; }
.aud__card p { margin: 0; color: #CBD5E1; font-size: 14px; line-height: 1.55; }

.aud__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(34,211,238,.4);
  background: rgba(15, 23, 42, .55);
  margin-bottom: 22px;
}
.aud__cta p { margin: 0; color: #E2E8F0; font-size: 15.5px; font-weight: 500; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stats__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: var(--r-md);
  background: rgba(15, 23, 42, .5);
  border: 1px solid rgba(34, 211, 238, .25);
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}
.stats__item:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .55);
  background: rgba(15, 23, 42, .7);
  box-shadow: 0 0 36px -14px rgba(34,211,238,.4);
}
.stats__ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(34,211,238,.1);
  border: 1px solid rgba(34,211,238,.4);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.stats__item strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 2px;
}
.stats__item p { margin: 0; color: #94A3B8; font-size: 13px; line-height: 1.5; }

/* ============================================================
   CONTACTS
   ============================================================ */
.cnt-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  margin-top: 26px;
  align-items: stretch;
}
.founder {
  position: relative;
  padding: 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-sm);
}
.founder__deco {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 320px;
  pointer-events: none;
}
.founder__deco svg { width: 100%; height: auto; }
.founder__top { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.founder__photo {
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(34,211,238,.4);
  flex-shrink: 0;
  background: #E2E8F0;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__meta h3 { margin: 0 0 4px; font-size: 20px; }
.founder__meta p { margin: 0; color: var(--text-mut); font-size: 14px; }
.founder__links { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.founder__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.founder__link:hover { color: var(--accent-deep); }
.founder__link-ico {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.35);
  color: var(--accent-deep);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* form */
.form {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 5px; }
.form__group span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mut);
}
.form__group input,
.form__group textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #F8FAFC;
  font-size: 14.5px;
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
}
.form__group textarea { min-height: 84px; }
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(34,211,238,.15);
}
.form__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
  font-size: 12.5px;
  color: var(--text-mut);
}

/* ============================================================
   FOOTER вЂ” 3 vertical cards (row) + brand block (right, divider)
   ============================================================ */
.ftr {
  background: var(--bg-dark);
  color: #E2E8F0;
  padding: 70px 0 28px;
  position: relative;
  overflow: hidden;
}
.ftr::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 80% 0%, rgba(34,211,238,.08), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(37,99,235,.06), transparent 60%);
  pointer-events: none;
}
.ftr > .container { position: relative; }
.ftr__top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 56px;
  padding-bottom: 36px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  align-items: stretch;
}

/* 3 cards in a row, each vertical */
.ftr__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ftr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px 26px;
  border-radius: var(--r-md);
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(255, 255, 255, .06);
  transition: transform .25s, border-color .25s, background .25s, box-shadow .25s;
  min-height: 280px;
}
.ftr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, .35);
  background: rgba(15, 23, 42, .8);
  box-shadow: 0 0 30px -10px rgba(34, 211, 238, .35);
}
.ftr-card__ico {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ftr-card__ico--max svg circle { fill: url(#gMax); }
.ftr-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #F1F5F9;
  line-height: 1.3;
}
.ftr-card p {
  margin: 0;
  color: #94A3B8;
  font-size: 13.5px;
  line-height: 1.55;
  flex-grow: 1;
}
.ftr-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(34, 211, 238, .55);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.ftr-card:hover .ftr-card__btn {
  background: rgba(34, 211, 238, .12);
  border-color: var(--accent-2);
  transform: translateX(2px);
}

/* brand block right with vertical divider */
.ftr__brand {
  position: relative;
  padding-left: 40px;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ftr__brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  align-self: flex-start;
}
.ftr__brand-img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(34,211,238,.25));
}
.ftr__brand-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .25);
  max-width: 50px;
}
.ftr__brand-line:first-child { max-width: 24px; }
.ftr__brand-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #F1F5F9;
  white-space: nowrap;
}
.ftr__tag {
  margin: 0;
  font-size: 11px;
  color: rgba(241,245,249,.82);
}
.ftr__about {
  margin: 4px 0 0;
  font-size: 13.5px;
  color: #94A3B8;
  line-height: 1.55;
}
.ftr__divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 4px 0;
}
.ftr__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  transition: color .2s;
}
.ftr__contact:hover { color: var(--accent-2); }
.ftr__contact-ico {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #CBD5E1;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: color .2s, border-color .2s, background .2s;
}
.ftr__contact:hover .ftr__contact-ico {
  color: var(--accent-2);
  border-color: rgba(34,211,238,.4);
  background: rgba(34,211,238,.08);
}
.ftr__contact-text { display: flex; flex-direction: column; gap: 1px; }
.ftr__contact-text strong { font-size: 14.5px; color: #F1F5F9; font-weight: 600; }
.ftr__contact-text em { font-size: 12px; color: #94A3B8; font-style: normal; }

.ftr__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  font-size: 13px;
  color: #64748B;
}
.ftr__copy { margin: 0; }
.ftr__legal {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.ftr__legal a { color: #94A3B8; transition: color .2s; }
.ftr__legal a:hover { color: var(--accent-2); }
.ftr__legal-sep { color: var(--accent); }
.ftr__social {
  display: inline-flex;
  gap: 10px;
  justify-self: end;
}
.ftr__social a {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  color: #CBD5E1;
  align-items: center; justify-content: center;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.ftr__social a:hover {
  color: var(--accent-2);
  border-color: rgba(34,211,238,.45);
  background: rgba(34,211,238,.08);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__phone { margin-left: auto; }
  .hdr__burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .sec__split { grid-template-columns: 1fr; gap: 36px; }
  .sec { min-height: auto; padding: 70px 0 50px; }
  .cnt { grid-template-columns: repeat(2, 1fr); }
  .cnt::before { display: none; }
  .qual { grid-template-columns: 1fr; }
  .own { grid-template-columns: repeat(2, 1fr); }
  .pil, .aud { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cnt-row { grid-template-columns: 1fr; }
  .sys { grid-template-columns: 1fr; }
  .sys__arrow { transform: rotate(90deg); margin: -10px auto; }
  .ftr__top { grid-template-columns: 1fr; gap: 36px; }
  .ftr__cards { grid-template-columns: repeat(3, 1fr); }
  .ftr-card { min-height: auto; }
  .ftr__brand { padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .aud__cta { flex-direction: column; align-items: stretch; text-align: center; }
  .ftr__bottom { grid-template-columns: 1fr; text-align: center; }
  .ftr__social { justify-self: center; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .sec { padding: 60px 0 40px; }
  .hero { padding: 100px 0 50px; min-height: auto; }
  .hero__title { font-size: 30px; }
  .sec__title, .sec__title--lg { font-size: 28px; }
  .cnt { grid-template-columns: 1fr; }
  .own { grid-template-columns: 1fr; }
  .qual__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hdr__logo-tag { display: none; }
  .ftr__cards { grid-template-columns: 1fr; }
  .qual__glow { flex-direction: column; gap: 14px; padding: 22px; }
  .founder__top { flex-direction: column; align-items: flex-start; }
  .biz__step { flex-direction: column; }
}


/* ============================================================
   TZ ADDITIONS вЂ” fits each section to one viewport
   ============================================================ */

/* Header link spacing tighter to fit 8 items */
.hdr__nav { gap: 2px; }
.hdr__link { padding: 8px 11px; font-size: 13.5px; }

/* РЎСЂРµРґР° вЂ” tooltip on hover */
.hdr__link--env { position: relative; }
.hdr__link--env::before {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(15, 23, 42, .95);
  color: #E2E8F0;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(34,211,238,.4);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, visibility .2s, transform .2s;
  pointer-events: none;
  z-index: 60;
}
.hdr__link--env:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HERO вЂ” CTA stacked under button */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 6px;
}
.hero__cta .hero__note { margin: 0; }

/* HERO вЂ” video controls bar */
.hero__controls {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  z-index: 3;
}
.hero__video:hover .hero__controls,
.hero__video--show-btn .hero__controls,
.hero__video--paused .hero__controls { opacity: 1; transform: translateY(0); }
.hero__ctrl {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  transition: background .2s;
  flex-shrink: 0;
}
.hero__ctrl:hover { background: rgba(34,211,238,.2); }
.hero__ctrl-ico { display: none; }
.hero__ctrl-ico--pause { display: block; }
.hero__video--paused .hero__ctrl-ico--pause { display: none; }
.hero__video--paused .hero__ctrl-ico--play { display: block; }
.hero__ctrl-ico--sound { display: block; }
.hero__video--muted .hero__ctrl-ico--sound { display: none; }
.hero__video--muted .hero__ctrl-ico--mute { display: block; }
.hero__time {
  color: #CBD5E1;
  font-size: 11.5px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero__progress {
  position: relative;
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  cursor: pointer;
  overflow: hidden;
}
.hero__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

/* Hero video вЂ” fit text inside (object-fit contain so it never crops) */
.hero__video video { object-fit: contain; background: #050B18; }
.hero__video { aspect-ratio: 16 / 9; }

/* ABOUT вЂ” title above, image left, text right; callout fixed to image bottom */

.sec--about { padding-top: 56px; flex-direction: column;}
.sec--about > .container:first-child { margin-bottom: 18px; text-align: left; }
.sec__split--about {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: stretch;
}
.sec__media--about {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0F172A;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.sec__media--about img {
  width: 100%;
  height: 100%;
  flex: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
  background: #0F172A;
  display: block;
}
.callout--about { margin: 0; align-self: stretch; margin-top: auto; }
.callout--about-wide {
  margin-top: 26px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(34, 211, 238, .45);
  background: linear-gradient(180deg, rgba(34,211,238,.08), rgba(255,255,255,.6));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  box-shadow:
    0 0 50px -20px rgba(34, 211, 238, .35),
    inset 0 0 50px -30px rgba(34,211,238,.25);
  width: 100%;
  color: var(--accent-deep);
}
.callout--about-wide .callout__ico {
  display: inline-flex;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(34,211,238,.12);
  border: 1px solid rgba(34,211,238,.5);
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.callout--about-wide p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.sec__lead--about { margin-top: 0; }

@media (max-width: 1080px) {
  .sec__split--about { grid-template-columns: 1fr; gap: 24px; }
  .sec__media--about { min-height: 280px; }
  .sec__media--about img { max-height: 60vh; }
}

/* SYSTEM вЂ” left aligned + smaller cards */
.sec--system-left .container { text-align: left; }
.sec--system-left .sec__sub { margin-left: 0; margin-right: 0; }
.sec--system-left .sys__bottom {
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  max-width: 640px;
}
.sys__card { padding: 20px 22px; }
.sys__title { font-size: 19px; }
.sys__intro { margin: 10px 0 6px; font-size: 13.5px; }
.sys__list li { font-size: 13px; padding: 4px 0 4px 18px; }
.sys__list li::before { top: 11px; width: 6px; height: 6px; }
.sys__accent { font-size: 13.5px; padding-top: 10px; }
.sys__ico { width: 44px; height: 44px; margin-bottom: 12px; }
.sys { gap: 22px; margin-top: 22px; }

/* CONTENT вЂ” smaller cards */
.cnt { gap: 14px; margin-top: 22px; }
.cnt__card { padding: 18px 16px 16px; }
.cnt__num { font-size: 28px; margin-bottom: 8px; }
.cnt__ico { width: 34px; height: 34px; margin-bottom: 10px; }
.cnt__title { font-size: 13px; line-height: 1.4; }
.cnt__foot { margin-top: 22px; }
.cnt__channel { font-size: 14px; }

/* QUALITY вЂ” smaller blocks */
.qual { gap: 24px; margin-top: 20px; }
.qual__media { max-height: 48vh; }
.qual__card { padding: 16px 18px; }
.qual__card h3 { font-size: 14.5px; }
.qual__card p { font-size: 12.5px; }
.qual__ico { width: 34px; height: 34px; margin-bottom: 8px; }
.qual__grid { gap: 12px; }
.qual__glow { margin-top: 18px; padding: 16px 22px; }
.qual__glow p { font-size: 14px; }

/* PARTNERS вЂ” smaller cards, button always visible */
.pil { gap: 16px; margin-top: 20px; }
.pil__card { padding: 20px 22px; }
.pil__card h3 { font-size: 17px; margin-bottom: 8px; }
.pil__card li { font-size: 13px; padding: 4px 0 4px 18px; }
.pil__ico { width: 42px; height: 42px; margin-bottom: 12px; }
.pil__foot { margin-top: 22px; }
.pil__foot p { font-size: 15px; }
.pil__foot .btn { white-space: normal; max-width: 100%; }

/* BUSINESS вЂ” smaller blocks to surface button */
.biz { gap: 10px; margin: 16px 0 18px; }
.biz__step { padding: 14px 16px; }
.biz__step h3 { font-size: 15px; margin-bottom: 4px; }
.biz__div { margin: 4px 0 6px; }
.biz__step p { font-size: 13px; line-height: 1.5; }
.biz__ico { width: 40px; height: 40px; }
.sec--light#business .sec__media--tall { max-height: 64vh; aspect-ratio: 4/5; }

/* FOR-WHOM вЂ” smaller cards */
.aud { gap: 14px; margin: 20px 0 16px; }
.aud__card { padding: 18px 20px; }
.aud__card h3 { font-size: 16px; margin-bottom: 6px; }
.aud__div { margin: 0 0 8px; }
.aud__card p { font-size: 13px; line-height: 1.5; }
.aud__ico { width: 44px; height: 44px; margin-bottom: 10px; }
.aud__cta { padding: 14px 22px; margin-bottom: 16px; }
.aud__cta p { font-size: 14.5px; }
.stats { gap: 12px; }
.stats__item { padding: 14px 16px; }
.stats__item strong { font-size: 17px; }
.stats__item p { font-size: 12px; }
.stats__ico { width: 38px; height: 38px; }

/* OWNERS вЂ” slightly tighter to fit on screen */
.own { gap: 14px; margin-top: 22px; }
.own__card { padding: 18px 20px; gap: 10px; }
.own__card h3 { font-size: 14.5px; }

/* CONTACTS вЂ” fit on screen */
.cnt-row { gap: 22px; margin-top: 20px; }
.founder { padding: 22px 24px; gap: 18px; }
.founder__photo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
}
.founder__photo img { object-fit: cover; object-position: center top; }
.founder__meta h3 { font-size: 19px; }
.founder__meta p { font-size: 13.5px; line-height: 1.45; }
.form { padding: 22px; gap: 12px; }
.form__group input, .form__group textarea { padding: 10px 13px; font-size: 14px; }
.form__group textarea { min-height: 70px; }
.form__req { color: #EF4444; font-style: normal; font-weight: 700; margin-left: 2px; }
.form__group--err input,
.form__group--err textarea {
  border-color: #EF4444;
  background: #FEF2F2;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .12);
}
.form__err {
  margin: 4px 0 0;
  font-size: 12px;
  color: #DC2626;
}

/* ============================================================
   TZ — Mobile refinements (mobile version of desktop site)
   ============================================================ */
@media (max-width: 720px) {
  /* HEADER — hide phone, keep burger only */
  .hdr__phone { display: none; }
  .hdr__inner { justify-content: space-between; }
  .hdr__burger { margin-left: auto; }

  /* HERO — reorder: title, subtitle, video, lead+button, note */
  .hero__grid { display: flex; flex-direction: column; gap: 18px; text-align: center; align-items: center; }
  .hero__text { display: contents; }
  .hero__title { order: 1; text-align: center; }
  .hero__sub { order: 2; text-align: center; }
  .hero__media { order: 3; width: 100%; }
  .hero__caption { display: none; } /* TZ: remove caption under video */
  .hero__lead { order: 4; text-align: center; }
  .hero__cta { order: 5; align-items: center; width: 100%; }
  .hero__cta .btn { align-self: center; }
  .hero__cta .hero__note { text-align: center; justify-content: center; }
  .hero__scroll { order: 6; display: none; }
  .feat__row p {text-align: left;}

  /* GLOBAL — center all section titles and subtitles */
  .sec__title, .sec__title--lg, .sec__sub, .sec__lead { text-align: center; }
  .eyebrow { text-align: center; display: block; margin-left: auto; margin-right: auto; }
  .sec--system-left .container { text-align: left; }
  .sec--system-left .sys__bottom { text-align: center; justify-content: center; }
  .sec__split .sec__body, .sec__split--about .sec__body { text-align: center; }

  /* CALLOUTS / bottom bars — center */
  .callout--about-wide,
  .qual__glow,
  .pil__foot,
  .aud__cta,
  .sys__bottom { text-align: center; justify-content: center; }
  .callout--about-wide p,
  .qual__glow p,
  .pil__foot p,
  .sys__bottom p { text-align: center; }

  /* CONTENT cards — image/icon left, text right, smaller height */
  .cnt { gap: 10px; }
  .cnt__card {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    padding: 12px 14px;
    text-align: left;
  }
  .cnt__num { grid-column: 1; grid-row: 1 / span 2; align-self: center; margin: 0; font-size: 22px; }
  .cnt__ico { grid-column: 1; grid-row: 1 / span 2; align-self: center; justify-self: center; margin: 0; display: none; }
  .cnt__title { grid-column: 2; grid-row: 1 / span 2; margin: 0; font-size: 13.5px; line-height: 1.35; align-self: center; }

  /* QUALITY cards — icon left, text right */
  .qual__card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 12px 14px;
    text-align: left;
  }
  .qual__ico { grid-column: 1; grid-row: 1 / span 2; margin: 0; }
  .qual__card h3 { grid-column: 2; margin: 0 0 2px; font-size: 14px; }
  .qual__card p { grid-column: 2; font-size: 12.5px; }

  /* OWNERS cards — icon left, text right */
  .own { gap: 10px; }
  .own__card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 12px 14px;
    text-align: left;
  }
  .own__ico { grid-column: 1; grid-row: 1; margin: 0; }
  .own__card h3 { grid-column: 2; grid-row: 1; margin: 0; font-size: 13.5px; line-height: 1.35; }

  /* PARTNERS pillar cards — icon left, text right */
  .pil { gap: 12px; }
  .pil__card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 14px 16px;
    text-align: left;
  }
  .pil__ico { grid-column: 1; grid-row: 1 / span 2; margin: 0; align-self: start; }
  .pil__card h3 { grid-column: 2; margin: 0 0 4px; font-size: 15px; }
  .pil__card ul { grid-column: 2; padding-left: 14px; margin: 0; }

  /* AUDIENCE cards (FOR-WHOM) — icon left, text right */
  .aud { gap: 10px; }
  .aud__card {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 12px 14px;
    text-align: left;
  }
  .aud__ico { grid-column: 1; grid-row: 1 / span 3; margin: 0; align-self: start; }
  .aud__card h3 { grid-column: 2; grid-row: 1; margin: 0 0 4px; font-size: 14.5px; }
  .aud__div { grid-column: 2; grid-row: 2; }
  .aud__card p { grid-column: 2; grid-row: 3; font-size: 12.5px; }

  /* BUSINESS — image first under title, then steps. Steps icon left + text right */
  .sec--light#business .sec__split { display: flex; flex-direction: column; gap: 18px; }
  .sec--light#business .sec__media--tall { order: 1; max-height: 38vh; aspect-ratio: 16/10; }
  .sec--light#business .sec__body { order: 2; text-align: center; }
  .biz__step {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 12px 14px;
    text-align: left;
  }
  .biz__ico { grid-column: 1; grid-row: 1 / span 4; margin: 0; align-self: start; }
  .biz__step > div { grid-column: 2; }
  .biz__step .btn { align-self: center; margin-left: auto; margin-right: auto; }
  .biz__step h3 { font-size: 14.5px; margin: 0 0 4px; }
  .biz__step p { font-size: 12.5px; }
  .sec--light#business .btn--lg { align-self: center; margin-left: auto; margin-right: auto; }

  /* SYSTEM cards — icon left, text right */
  .sys__card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    align-items: start;
    padding: 14px 16px;
    text-align: left;
  }
  .sys__ico { grid-column: 1; grid-row: 1 / span 6; margin: 0; align-self: start; }
  .sys__title, .sys__sub, .sys__intro, .sys__list, .sys__accent { grid-column: 2; }

  /* CONTACTS — center */
  #contacts .sec__title, #contacts .sec__sub { text-align: left; }
  .founder { text-align: center; }
  .founder__top { align-items: center; text-align: left; flex-direction: row;}
  .founder__meta { text-align: left; }
  .founder__links { align-items: left; }

  /* FOOTER — center brand block, center cards content & buttons */
  .ftr__brand { text-align: center; align-items: center; }
  .ftr__brand-logo { align-items: center; margin-left: auto; margin-right: auto; }
  .ftr__about { text-align: center; }
  .ftr__contact { justify-content: center; }
  .ftr-card { text-align: center; align-items: center; }
  .ftr-card h3, .ftr-card p { text-align: center; }
  .ftr-card__btn { margin-left: auto; margin-right: auto; }
  .ftr__bottom { text-align: center; }
}

