@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-text-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-text-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-text-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Golos Text";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("assets/fonts/golos-text-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --bg: #05102b;
  --bg-2: #08183a;
  --surface: #0d1c3c;
  --surface-hover: #0c214e;
  --panel: #0c1e45;
  --chip: #092b6e;
  --line: #374770;
  --line-soft: #37477066;
  --line-card: #37477099;
  --line-strong: #445c8f;

  --text: #f9fbfc;
  --text-2: #dae8fa;
  --muted: #adc6eb;
  --faint: #90a0c1;
  --dim: #657c9e;

  --brand: #166cf4;
  --brand-hover: #0e89f8;
  --brand-deep: #1550cc;
  --accent: #35aaf6;
  --live: #4ade80;
  --danger: #e5484d;

  --font: "Golos Text", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--text-2);
}

h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 26px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(22, 108, 244, 0.9);
}
.btn--primary:hover {
  background: var(--brand-hover);
  color: #fff;
}
.btn--ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: #fff;
}
.btn--light {
  background: #fff;
  color: var(--bg);
  font-weight: 800;
}
.btn--light:hover {
  background: var(--text-2);
  color: var(--bg);
}
.btn--outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--outline-light:hover {
  border-color: #fff;
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(5, 16, 43, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.brand:hover {
  color: var(--text);
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}
.site-nav a {
  color: var(--muted);
}
.site-nav a:hover {
  color: #fff;
}
.site-nav .lang-switch {
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 8px;
}
.site-nav .site-nav__cta {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px rgba(22, 108, 244, 0.8);
}
.site-nav .site-nav__cta:hover {
  background: var(--brand-hover);
  color: #fff;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  place-items: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle__icon--close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  display: block;
}

.mobile-nav {
  display: none;
}

@media (max-width: 919px) {
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: grid;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-top: 4px;
    padding-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
    background: var(--bg);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, 0.8);
    clip-path: inset(0 0 100% 0);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: clip-path 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 0.2s, visibility 0s linear 0.32s;
  }
  .mobile-nav.is-open {
    clip-path: inset(0 0 -60px 0);
    transform: none;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .mobile-nav a {
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-nav .mobile-nav__lang {
    color: var(--muted);
    font-size: 15px;
    border-bottom: 0;
  }
  .mobile-nav .mobile-nav__cta {
    margin-top: 8px;
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 14px;
    border-bottom: 0;
  }
}

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

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero__beam {
  position: absolute;
  pointer-events: none;
}
.hero__beam--a {
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: linear-gradient(115deg, rgba(22, 108, 244, 0) 30%, rgba(22, 108, 244, 0.14) 50%, rgba(22, 108, 244, 0) 70%);
}
.hero__beam--b {
  right: -20%;
  top: -10%;
  width: 50%;
  height: 130%;
  background: linear-gradient(115deg, rgba(14, 137, 248, 0) 40%, rgba(14, 137, 248, 0.1) 52%, rgba(14, 137, 248, 0) 64%);
}
.hero__inner {
  position: relative;
  padding-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 24px 48px;
  align-items: end;
}
.hero__copy {
  padding-bottom: 88px;
  align-self: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  background: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(22, 108, 244, 0.9);
  margin: 0;
}
.pill__star {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 12px;
}

.hero h1 {
  font-size: clamp(46px, 6.6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 28px 0 24px;
}
.hero__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__note {
  font-size: 14px;
  color: var(--faint);
  margin: 22px 0 0;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  justify-self: center;
}
.hero__glow {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  bottom: -6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(22, 108, 244, 0.55), rgba(22, 108, 244, 0.18) 60%, rgba(22, 108, 244, 0));
}
.hero__arc {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 20%;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  border: 2px solid rgba(53, 170, 246, 0.35);
  border-bottom: none;
}
.hero__mascot {
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 82%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(22, 108, 244, 0.35));
}

.float-card {
  position: absolute;
  background: rgba(12, 30, 69, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.7);
  font-size: 13px;
  animation: float 6s ease-in-out infinite;
}
.float-card--voice {
  left: 0;
  top: 6%;
  width: min(260px, 46%);
  border-radius: 18px;
  padding: 14px;
}
.float-card--pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 10px 14px;
}
.float-card--screen {
  right: 0;
  top: 12%;
  font-weight: 700;
  animation-duration: 7s;
  animation-delay: 1s;
}
.float-card--ptt {
  right: 2%;
  top: 56%;
  gap: 8px;
  font-weight: 600;
  animation-duration: 5.5s;
  animation-delay: 0.5s;
}

.vc__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 10px;
}
.vc__count {
  margin-left: auto;
  color: var(--faint);
  font-weight: 500;
}
.vc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vc__user {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.vc__user--speaking {
  color: var(--text);
}
.vc__avatar {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--line-strong);
}
.vc__user--speaking .vc__avatar {
  box-shadow: 0 0 0 2px var(--panel), 0 0 0 4px var(--live);
}
.vc__status {
  margin-left: auto;
  font-size: 11px;
  color: var(--dim);
}
.vc__user--speaking .vc__status {
  color: var(--live);
}

.icon-tile {
  flex: none;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
}
.icon-tile--sm {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}
.live-badge {
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 5px;
}
.kbd {
  background: var(--chip);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 12px;
  font-family: inherit;
}

/* ---------- Perks strip ---------- */

.perks {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.perks__inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}
.perk {
  display: flex;
  gap: 14px;
  align-items: center;
}
.perk .icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
}
.perk__title {
  font-weight: 700;
  font-size: 16px;
}
.perk__sub {
  font-size: 14px;
  color: var(--faint);
}

/* ---------- Ticker ---------- */

.ticker {
  padding: 22px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: tick 60s linear infinite;
}
.ticker__group {
  display: flex;
  gap: 36px;
  padding: 0 36px 0 0;
  margin: 0;
  list-style: none;
  align-items: center;
  flex: none;
}
.ticker__word {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.ticker__word:nth-child(6n + 1) {
  color: var(--accent);
}
.ticker__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
  transform: rotate(45deg);
}

/* ---------- Sections ---------- */

.section {
  padding: 112px 0;
}
.section--alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 850;
  margin: 0;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

.features__head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.features__head .section-title {
  flex: 1 1 480px;
  max-width: 760px;
}
.features__head p {
  flex: 0 1 380px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line-card);
  border-radius: 22px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: var(--surface-hover);
}
.feature-card__num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--chip);
  border: 1px solid var(--brand-deep);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 750;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------- Voice ---------- */

.voice__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 64px;
  align-items: center;
}
.voice-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-card);
  border-radius: 28px;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.voice-panel__glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(22, 108, 244, 0.3), rgba(22, 108, 244, 0));
  pointer-events: none;
}
.speaker {
  position: relative;
  width: 120px;
  height: 120px;
}
.speaker__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--brand-hover);
  animation: ring 2.4s ease-out infinite;
}
.speaker__ring:nth-child(2) {
  animation-delay: 0.8s;
}
.speaker__ring:nth-child(3) {
  animation-delay: 1.6s;
}
.speaker__avatar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-deep);
  box-shadow: 0 0 0 4px var(--surface), 0 0 0 7px var(--live);
}
.speaker__avatar img {
  width: 76%;
  height: 76%;
  margin: 12%;
}
.waveform {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: center;
  height: 48px;
}
.waveform span {
  width: 6px;
  height: calc(48px * var(--h));
  border-radius: 3px;
  background: var(--brand-hover);
  animation: bar calc(0.8s + var(--d) * 0.2s) ease-in-out calc(var(--i) * 0.07s) infinite;
}
.waveform span:nth-child(even) {
  background: var(--accent);
}
.listeners {
  position: relative;
  display: flex;
  gap: 14px;
}
.listeners span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.voice__copy h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 850;
  margin: 0 0 20px;
}
.voice__copy > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 28px;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-2);
}
.check-list li::before {
  content: "✓";
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

/* ---------- Download ---------- */

.download-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(120deg, #1550cc 0%, #0a3183 60%, #092b6e 100%);
  border: 1px solid var(--brand);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  align-items: end;
}
.download-card__beam {
  position: absolute;
  right: -10%;
  top: -30%;
  width: 60%;
  height: 160%;
  background: linear-gradient(115deg, rgba(53, 170, 246, 0) 35%, rgba(53, 170, 246, 0.22) 50%, rgba(53, 170, 246, 0) 65%);
  pointer-events: none;
}
.download-card__copy {
  position: relative;
  padding: clamp(40px, 6vw, 80px);
}
.download-card h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin: 0 0 18px;
  color: #fff;
}
.download-card__copy > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 32px;
  max-width: 520px;
}
.download-card__visual {
  position: relative;
  align-self: end;
  justify-self: center;
  width: min(440px, 90%);
  aspect-ratio: 1 / 1;
  margin-top: -20px;
}
.download-card__glow {
  position: absolute;
  inset: 18% 6% -10% 6%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(53, 170, 246, 0.45), rgba(53, 170, 246, 0));
}
.download-card__visual img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 0 0 112px;
}
.faq__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
}
.faq__intro {
  flex: 1 1 300px;
}
.faq__intro .section-title {
  margin-bottom: 16px;
}
.faq__intro p {
  font-size: 17px;
  color: var(--faint);
  margin: 0;
  line-height: 1.6;
}
.faq-list {
  flex: 2 1 520px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-card);
  border-radius: 18px;
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 650;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--chip);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--brand);
  color: #fff;
}
.faq-item p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 680px;
}

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

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 36px 0;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer .brand {
  font-size: 16px;
}
.site-footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}
.site-footer__nav a {
  color: var(--faint);
}
.site-footer__nav a:hover {
  color: var(--text);
}
.site-footer__social {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.social-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--text);
  transition: color 0.2s;
}
.social-btn:hover {
  color: var(--accent);
}
.site-footer__legal {
  margin: 0;
  font-size: 14px;
  color: var(--faint);
}

/* ---------- Motion ---------- */

@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes bar {
  0%,
  100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 919px) {
  .hero__inner {
    padding-top: 28px;
    gap: 0;
  }
  .hero__copy {
    padding-bottom: 16px;
  }

  .section {
    padding: 32px 0;
  }
  .features__head {
    margin-bottom: 24px;
  }
  .voice__inner {
    gap: 28px;
  }
  .faq {
    padding-bottom: 32px;
  }

  .site-footer__inner {
    justify-content: center;
    gap: 16px 18px;
    text-align: center;
  }
  .site-footer__nav {
    justify-content: center;
    gap: 8px 12px;
    font-size: 13px;
  }
  .site-footer .brand img {
    width: 26px;
    height: 26px;
  }
  /* Logo + 4 links don't fit one line on phones; the name is already in the
     © line below, so keep it for screen readers only. */
  .site-footer .brand span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
  .site-footer__social {
    order: 1;
    flex-basis: 100%;
    justify-content: center;
    margin-left: 0;
  }
  .site-footer__legal {
    flex-basis: 100%;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .float-card--voice {
    width: min(220px, 55%);
  }
  .float-card--screen {
    top: auto;
    bottom: 10%;
  }
  .float-card--ptt {
    display: none;
  }
}

/* ---------- Legal pages (privacy/, terms/) ---------- */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.65;
}
.legal h1 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.15;
}
.legal h2 {
  margin: 36px 0 10px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.3;
}
.legal p,
.legal ul {
  margin: 0 0 12px;
}
.legal ul {
  padding-left: 22px;
}
.legal li {
  margin-bottom: 6px;
}
.legal__meta {
  color: var(--faint);
  font-size: 14px;
}
.legal__draft {
  margin: 20px 0 28px;
  padding: 14px 16px;
  border: 1px solid var(--danger);
  border-radius: 12px;
  background: rgba(229, 72, 77, 0.12);
  color: var(--text);
  font-size: 15px;
}
.legal mark {
  padding: 0 4px;
  border-radius: 4px;
  background: rgba(240, 180, 76, 0.25);
  color: var(--text);
}
.legal a {
  color: var(--accent);
}
.legal-header .site-header__inner {
  justify-content: space-between;
}
.legal-header__links {
  display: flex;
  gap: 18px;
  font-size: 15px;
}
