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

:root {
  --bg: #0c0e1a;
  --bg2: #111326;
  --line: rgba(255, 255, 255, .07);
  --muted: #3e4270;
  --sub: #6b71a8;
  --body: #a0a6d6;
  --head: #e8eaff;
  --white: #fff;
  --acc: #5865f2;
  --acc2: #818cf8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.delay-5 {
  transition-delay: .05s;
}

.delay-8 {
  transition-delay: .08s;
}

.delay-10 {
  transition-delay: .1s;
}

.delay-16 {
  transition-delay: .16s;
}

a {
  color: inherit;
  text-decoration: none;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(12, 14, 26, .85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  letter-spacing: -.5px;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.logo-svg {
  width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.logo-svg path {
  fill: transparent;
  stroke: white;
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
  padding: 7px 14px;
  transition: color .15s;
}

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

.nav-login,
.nav-dl {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  min-height: 36px;
  padding: 0 18px;
  cursor: pointer;
  margin-left: 12px;
  transition: background .15s, border-color .15s, color .15s;
}

.nav-login {
  color: var(--head);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
}

.nav-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .14);
}

.nav-dl {
  color: #fff;
  background: var(--acc);
  border: 1px solid transparent;
}

.nav-dl:hover {
  background: #4752c4;
}

.hero {
  padding: 130px 40px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(88, 101, 242, .14) 0%, transparent 70%),
    var(--bg);
  overflow: hidden;
}

.hero-h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3.2rem, 7vw, 8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -4px;
  color: var(--white);
  margin-bottom: 32px;
}

.hero-h1 .dim {
  color: var(--acc2);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--sub);
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero-sub strong {
  color: var(--body);
  font-weight: 600;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 72px;
}

.btn-a,
.btn-b {
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  padding: 15px 36px;
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: -.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-a {
  color: #fff;
  background: var(--acc);
  border: none;
}

.btn-a:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.btn-b {
  color: var(--head);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
}

.btn-b:hover {
  background: rgba(255, 255, 255, .11);
  transform: translateY(-2px);
}

.hero-shot {
  width: min(1320px, calc(100vw - 48px));
  max-width: 1320px;
  margin: -20px auto -122px;
  padding-bottom: 122px;
  position: relative;
}

.shot-inner {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  box-shadow:
    0 -10px 42px rgba(88, 101, 242, .07),
    0 26px 58px rgba(0, 0, 0, .42);
  transform: translateY(82px);
}

.shot-inner img {
  display: block;
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  background: #111326;
}

.hero-shot-image-fallback {
  display: block;
  min-height: 480px;
  background: #111326;
}

.shot-fade {
  position: absolute;
  bottom: 122px;
  left: 0;
  right: 0;
  height: 330px;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(12, 14, 26, 0) 0%, rgba(12, 14, 26, .62) 48%, var(--bg) 100%),
    radial-gradient(ellipse 70% 58% at 50% 92%, rgba(12, 14, 26, .95) 0%, rgba(12, 14, 26, 0) 72%);
  pointer-events: none;
}

.mq-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 3;
  height: 46px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
}

.mq-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: mq 30s linear infinite;
  width: max-content;
}

.mq-it {
  font-size: 13px;
  font-weight: 400;
  color: var(--sub);
  padding: 0 24px;
}

.mq-it strong {
  color: var(--head);
  font-weight: 600;
}

.mq-sep {
  color: var(--muted);
  font-size: 12px;
  flex-shrink: 0;
}

@keyframes mq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.feats {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.feat:first-child {
  padding-top: 0;
}

.feat:last-child {
  border-bottom: none;
}

.feat.flip {
  direction: rtl;
}

.feat.flip > * {
  direction: ltr;
}

.feat-n {
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--acc2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.feat-h {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.feat-p {
  font-size: 16px;
  font-weight: 400;
  color: var(--sub);
  line-height: 1.8;
  max-width: 420px;
}

.sh-vis {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.sh-big {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
  color: var(--acc2);
  flex-shrink: 0;
}

.sh-list {
  list-style: none;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.sh-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--muted);
}

.voice-vis {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.v-user {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
  padding: 12px 14px;
}

.v-user.spk {
  background: rgba(35, 209, 139, .06);
  border-color: rgba(35, 209, 139, .18);
}

.v-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar-fl {
  background: #2d2452;
  color: #afa9ec;
}

.avatar-ve {
  background: #1d3a2e;
  color: #5dcaa5;
}

.avatar-ye {
  background: #2a1820;
  color: #ed93b1;
}

.avatar-ma {
  background: #2a2010;
  color: #fac775;
}

.v-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--head);
  flex: 1;
}

.v-ms {
  font-size: 11px;
  color: var(--muted);
  margin-right: 8px;
}

.bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
}

.bars span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #23d18b;
}

.spk .bars span {
  animation: bv .55s ease-in-out infinite alternate;
}

.bars.off span {
  background: rgba(255, 255, 255, .1);
  animation: none !important;
}

.bars span:nth-child(1) {
  height: 5px;
  animation-delay: 0s;
}

.bars span:nth-child(2) {
  height: 10px;
  animation-delay: .08s;
}

.bars span:nth-child(3) {
  height: 16px;
  animation-delay: .16s;
}

.bars span:nth-child(4) {
  height: 10px;
  animation-delay: .24s;
}

.bars span:nth-child(5) {
  height: 5px;
  animation-delay: .32s;
}

@keyframes bv {
  from {
    transform: scaleY(.3);
    opacity: .3;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

.privacy-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 32px;
  background: rgba(88, 101, 242, .07);
  border: 1px solid rgba(88, 101, 242, .15);
  border-radius: 14px;
}

.privacy-card p {
  font-family: "Unbounded", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--acc2);
  letter-spacing: -1px;
}

.privacy-card span {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
}

.vs {
  padding: 0 40px 120px;
  max-width: 1100px;
  margin: 0 auto;
}

.vs-hd {
  margin-bottom: 40px;
}

.vs-hd h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 8px;
}

.vs-hd p {
  font-size: 14px;
  color: var(--muted);
}

.vs-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  overflow-x: auto;
}

.seo-copy-block {
  padding: 96px 40px 110px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 65% 60% at 50% 0%, rgba(88, 101, 242, .1) 0%, transparent 70%),
    var(--bg2);
}

.seo-hd {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.seo-title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 18px;
}

.seo-intro {
  color: var(--sub);
  font-size: 17px;
  line-height: 1.8;
}

.seo-grid,
.faq-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-card,
.faq-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 19, 38, .72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .16);
}

.seo-card h3,
.faq-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.seo-card p,
.faq-card p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.7;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: var(--head);
  background: var(--bg2);
  white-space: nowrap;
  letter-spacing: -.2px;
}

thead th:first-child {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
}

thead th.us {
  color: #a5b4fc;
  background: rgba(88, 101, 242, .1);
  border-bottom: 2px solid var(--acc);
}

tbody td {
  padding: 13px 22px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(17, 19, 38, .8);
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody td:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--sub);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vy {
  color: var(--white) !important;
  font-weight: 600 !important;
  background: rgba(88, 101, 242, .06) !important;
}

.vn {
  color: var(--muted) !important;
  opacity: .4;
}

.cta {
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(88, 101, 242, .1) 0%, transparent 70%),
    var(--bg);
}

.cta h2 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 900;
  letter-spacing: -4px;
  color: var(--white);
  line-height: .92;
  margin-bottom: 20px;
}

.cta h2 .dim {
  color: var(--acc2);
}

.cta p {
  font-size: 17px;
  color: var(--sub);
  margin-bottom: 44px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-main {
  font-size: 14px;
  padding: 16px 40px;
}

.cta-secondary {
  font-size: 14px;
  padding: 16px 32px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-logo {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--sub);
  display: flex;
  align-items: center;
  gap: 7px;
}

.foot-logo-svg {
  width: 24px;
}

.foot-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.foot-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 12px;
  transition: color .15s;
}

.foot-links a:hover {
  color: var(--body);
}

.foot-copy {
  font-size: 12px;
  color: var(--muted);
}

.r {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.r.on {
  opacity: 1;
  transform: none;
}

.alias-resolver {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 30%, rgba(88, 101, 242, .18) 0%, transparent 70%),
    rgba(12, 14, 26, .94);
  backdrop-filter: blur(20px);
}

.alias-resolver[hidden] {
  display: none;
}

.alias-card {
  width: min(560px, 100%);
  padding: 34px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(17, 19, 38, .92);
  box-shadow:
    0 -8px 60px rgba(88, 101, 242, .12),
    0 32px 80px rgba(0, 0, 0, .7);
}

.alias-kicker {
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--acc2);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.alias-card h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: .98;
  color: var(--white);
  margin-bottom: 16px;
}

.alias-card p {
  color: var(--sub);
  font-size: 16px;
  line-height: 1.7;
}

.alias-target {
  margin: 24px 0;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .3);
  color: var(--head);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.alias-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  nav {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 100px 20px 0;
  }

  .hero-btns,
  .cta-btns,
  .alias-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-shot {
    width: min(100%, calc(100vw - 24px));
    margin: 2px auto -72px;
    padding-bottom: 92px;
  }

  .shot-inner {
    border-radius: 18px;
    transform: translateY(48px);
  }

  .shot-inner img {
    min-height: 280px;
  }

  .shot-fade {
    bottom: 92px;
    height: 170px;
  }

  .feats {
    padding: 60px 20px;
  }

  .feat {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0;
  }

  .feat.flip {
    direction: ltr;
  }

  .sh-vis {
    flex-direction: column;
    gap: 24px;
  }

  .vs,
  .cta {
    padding: 60px 20px;
  }

  .seo-copy-block {
    padding: 60px 20px;
  }

  .seo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
