:root {
  --bg: #070b14;
  --s: #0c1424;
  --line: #1d2b45;
  --text: #f4f8ff;
  --muted: #91a2ba;
  --cyan: #43d9ff;
  --blue: #4d72ff;
  --green: #4ee5a5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
.section-pad {
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  padding-right: max(22px, calc((100vw - 1180px) / 2));
}
.nav-shell {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0 max(22px, calc((100vw - 1220px) / 2));
  background: #070b14dc;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #ffffff12;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}
.brand > span:last-child > span {
  color: var(--cyan);
}
.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px #43d9ff36;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin: auto;
  color: #a3b1c5;
  font-size: 14px;
}
.nav-links a:hover {
  color: #fff;
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.language-picker select {
  min-height: 40px;
  border: 1px solid #2a3a57;
  border-radius: 9px;
  padding: 0 8px;
  color: #dce5f2;
  background: #10192a;
  font: inherit;
  font-size: 14px;
}
.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;
}
html[dir="rtl"] .nav-shell,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .trust-row {
  direction: rtl;
}
.button {
  border: 0;
  border-radius: 9px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14px;
}
.button svg {
  width: 17px;
}
.primary {
  background: linear-gradient(135deg, #20c8ff, #526bff);
  color: #fff;
}
.ghost {
  color: #c2ccdb;
}
.secondary {
  border: 1px solid #2a3a57;
  background: #10192a;
}
.large {
  padding: 15px 22px;
}
.disabled {
  opacity: 0.58;
}
.menu-button {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: #fff;
}
.hero {
  min-height: 930px;
  padding-top: 95px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#14223b55 1px, transparent 1px),
    linear-gradient(90deg, #14223b55 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(#000, transparent 70%);
}
.hero-glow {
  position: absolute;
  width: 900px;
  height: 600px;
  top: -190px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(#2b54cc45, transparent 68%);
}
.hero > *:not(.hero-grid, .hero-glow) {
  position: relative;
}
.eyebrow,
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--cyan);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid #2a4663;
  border-radius: 99px;
  background: #0c1827;
}
.eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}
h1 {
  font-size: clamp(55px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 28px auto 25px;
  max-width: 900px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--cyan), #7b8fff, #8169ff);
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 700px;
  margin: auto;
  color: #a5b3c7;
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 25px 0 48px;
  color: #94a4ba;
  font-size: 13px;
}
.trust-row span,
.secure {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-row svg {
  width: 15px;
  color: var(--green);
}
.product-window {
  max-width: 980px;
  margin: auto;
  text-align: left;
  border: 1px solid #30415e;
  border-radius: 16px;
  overflow: hidden;
  background: #09101c;
  box-shadow:
    0 45px 100px #0009,
    0 0 80px #315cff1d;
}
.window-top {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 17px;
  color: #8290a5;
  font-size: 12px;
}
.window-top > span {
  text-align: center;
}
.dots {
  display: flex;
  gap: 6px;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6371;
}
.dots i:nth-child(2) {
  background: #ffbd4a;
}
.dots i:last-child {
  background: #48d597;
}
.secure {
  justify-self: end;
  color: #6ee8b2;
}
.secure svg {
  width: 14px;
}
.window-body {
  height: 420px;
  display: grid;
  grid-template-columns: 220px 1fr;
}
.window-body aside {
  padding: 22px 15px;
  border-right: 1px solid var(--line);
  background: #0b1321;
}
.mini-brand {
  display: flex;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 30px;
}
.mini-brand svg {
  width: 21px;
  color: var(--cyan);
}
.window-body aside > small {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #66758c;
  margin: 10px;
}
.side-item {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #77889f;
  font-size: 12px;
  padding: 10px;
  margin: 5px 0;
  border-radius: 7px;
}
.side-item svg {
  width: 15px;
}
.side-item.active {
  background: #112842;
  color: #66dfff;
}
.agent {
  height: 66px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
}
.agent > span,
.bot-avatar {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #152844;
  color: var(--cyan);
}
.agent svg {
  width: 18px;
}
.agent div {
  display: flex;
  flex-direction: column;
}
.agent b {
  font-size: 12px;
}
.agent small {
  font-size: 10px;
  color: #6e7f98;
}
.agent i {
  margin-left: auto;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.preview-center {
  height: 354px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle, #19275399, transparent 60%);
}
.orb {
  width: 60px;
  height: 60px;
  border: 1px solid #456aff;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: #122242;
  box-shadow: 0 0 50px #3d68ff4d;
}
.preview-center h3 {
  margin: 20px 0 5px;
}
.preview-center p {
  font-size: 12px;
  color: #718198;
}
.preview-input {
  margin-top: 25px;
  width: min(520px, 80%);
  border: 1px solid #273958;
  background: #0b1526;
  padding: 15px;
  border-radius: 10px;
  color: #586a83;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
.preview-input svg {
  width: 16px;
  color: var(--cyan);
}
.proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 30px;
  padding-bottom: 30px;
  border-block: 1px solid var(--line);
  background: #090f1a;
}
.proof div {
  padding: 10px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.proof div:last-child {
  border: 0;
}
.proof strong {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.proof span {
  font-size: 12px;
  color: #687a92;
}
.content-section {
  padding-top: 110px;
  padding-bottom: 110px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 53px;
}
.section-head h2,
.privacy h2,
.assistant-copy h2,
.price-copy h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 16px 0;
}
.section-head p,
.privacy-copy > p,
.assistant-copy > p,
.price-copy > p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.feature-card {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(150deg, #101a2d, #0b121f);
}
.feature-card.featured {
  border-color: #315b85;
}
.feature-icon,
.config-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--cyan);
  background: #122642;
  border: 1px solid #23405d;
}
.feature-card h3 {
  margin: 24px 0 9px;
}
.feature-card p {
  color: #8596ae;
  line-height: 1.55;
}
.card-index {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #24334b;
  font-size: 13px;
}
.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background: linear-gradient(90deg, #09101c, #0c1424);
}
.privacy-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.shield {
  position: relative;
  width: 175px;
  height: 175px;
  border-radius: 52px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #173659, #101d38);
  border: 1px solid #2f6791;
  transform: rotate(45deg);
  box-shadow: 0 0 100px #2c8cff2c;
}
.shield > svg {
  width: 72px;
  height: 72px;
  color: var(--cyan);
  transform: rotate(-45deg);
}
.ring {
  position: absolute;
  inset: -45px;
  border: 1px solid #284060;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.ring.two {
  inset: -90px;
  border-color: #1a2b43;
}
.data-pill {
  position: absolute;
  border: 1px solid #2a405f;
  background: #0d192b;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 11px;
  color: #a9bdd5;
  display: flex;
  gap: 8px;
}
.data-pill svg {
  width: 15px;
  color: var(--cyan);
}
.p1 {
  left: 6%;
  top: 24%;
}
.p2 {
  right: 1%;
  bottom: 22%;
}
.privacy-copy ul,
.price-copy ul,
.config-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.privacy-copy li,
.price-copy li,
.config-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 13px 0;
  color: #c0cada;
  font-size: 14px;
}
.privacy-copy li svg,
.price-copy li svg,
.config-card li svg {
  width: 17px;
  color: var(--green);
}
.privacy-copy > small {
  color: #607089;
}
.config {
  background: #080d17;
}
.config-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.config-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0c1422;
  position: relative;
}
.config-card.recommended {
  border-color: #3970d0;
  background: linear-gradient(170deg, #102343, #0d1727);
}
.recommend-label {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 9px;
  color: #65dfff;
  background: #123455;
  padding: 6px 8px;
  border-radius: 99px;
}
.config-card h3 {
  font-size: 22px;
  margin: 20px 0 4px;
}
.config-card > p {
  color: #70829b;
  font-size: 13px;
}
.config-card li {
  padding: 9px 0;
  border-bottom: 1px solid #18263b;
  margin: 0;
}
.config-note {
  text-align: center;
  color: #60718a;
  font-size: 12px;
  margin-top: 25px;
}
.assistant-section {
  padding-top: 115px;
  padding-bottom: 115px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: center;
  background: radial-gradient(circle at 25% 60%, #162959, transparent 32%);
}
.remaining {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}
.remaining b {
  font-size: 64px;
  color: var(--cyan);
}
.remaining span,
.assistant-copy > small {
  font-size: 13px;
  color: #718198;
}
.chat-box {
  border: 1px solid #273955;
  border-radius: 15px;
  background: #0a111e;
  box-shadow: 0 30px 70px #0007;
  overflow: hidden;
}
.chat-head {
  height: 72px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.chat-head > div {
  display: flex;
  gap: 11px;
}
.chat-head > div > div {
  display: flex;
  flex-direction: column;
}
.chat-head b {
  font-size: 13px;
}
.chat-head small,
.chat-head > span {
  color: #73859e;
  font-size: 10px;
}
.chat-head small i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.messages {
  height: 280px;
  padding: 20px;
  overflow-y: auto;
}
.message {
  display: flex;
  gap: 10px;
  margin-bottom: 17px;
  align-items: flex-start;
}
.message > span {
  flex: 0 0 29px;
  height: 29px;
  border-radius: 8px;
  background: #12233b;
  color: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 9px;
}
.message svg {
  width: 15px;
}
.message p {
  padding: 11px 13px;
  margin: 0;
  background: #111c2c;
  border-radius: 3px 10px 10px;
  color: #b6c2d3;
  font-size: 12px;
  line-height: 1.5;
}
.message.user {
  flex-direction: row-reverse;
}
.message.user p {
  background: #15375b;
}
.limit {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #5b4d32;
  background: #251e13;
  border-radius: 10px;
  color: #ffd77a;
}
.limit svg {
  width: 20px;
}
.limit b {
  font-size: 12px;
}
.limit p {
  font-size: 10px;
  margin: 4px 0;
}
.quick {
  padding: 0 20px 13px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.quick button {
  background: #101a2a;
  border: 1px solid #243550;
  color: #8194ad;
  font-size: 10px;
  padding: 7px 9px;
  border-radius: 99px;
}
.chat-form {
  display: flex;
  margin: 0 20px;
  border: 1px solid #263a59;
  border-radius: 10px;
  background: #0e1827;
}
.chat-form input {
  flex: 1;
  padding: 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}
.chat-form button {
  width: 45px;
  margin: 5px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #2767d7;
}
.chat-form button:disabled {
  opacity: 0.35;
}
.chat-form svg {
  width: 17px;
}
.ai-notice {
  text-align: center;
  padding: 10px;
  font-size: 9px;
  color: #52647c;
}
.pricing {
  padding-top: 110px;
  padding-bottom: 110px;
}
.price-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  max-width: 950px;
  margin: auto;
  border: 1px solid #2d4160;
  border-radius: 18px;
  background: linear-gradient(145deg, #101b2f, #0b111e);
  overflow: hidden;
}
.price-copy {
  padding: 55px;
}
.checkout {
  padding: 45px;
  background: #0c1627;
  border-left: 1px solid #273956;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checkout > small {
  font-size: 10px;
  color: var(--cyan);
}
.price {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
}
.price > b {
  font-size: 74px;
}
.price > span {
  font-size: 25px;
  font-weight: 700;
}
.price span small {
  display: block;
  color: #6f829b;
  font-size: 10px;
}
.checkout > p {
  text-align: center;
  font-size: 11px;
  color: #667890;
}
.secure-pay {
  text-align: center;
  color: #71849d;
  font-size: 10px;
  border-top: 1px solid #1d2b41;
  padding-top: 18px;
}
.secure-pay svg {
  width: 14px;
  vertical-align: middle;
  color: var(--green);
}
.faq-list {
  max-width: 850px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  padding: 24px 4px;
  background: transparent;
  color: #dce5f2;
  border: 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
}
.faq-item svg {
  width: 20px;
  color: #72839a;
}
.faq-item.open svg {
  transform: rotate(180deg);
  color: var(--cyan);
}
.faq-item p {
  color: #8395ad;
  line-height: 1.7;
  padding: 0 40px 23px 4px;
}
.footer {
  padding-top: 65px;
  padding-bottom: 25px;
  border-top: 1px solid var(--line);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
}
.footer-main > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #708198;
  font-size: 12px;
}
.footer-main b {
  color: #d5dfed;
}
.footer-bottom {
  border-top: 1px solid #162136;
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #506078;
  font-size: 10px;
}
.footer-bottom i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@media (max-width: 850px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    background: #0a111e;
    padding: 20px;
    flex-direction: column;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: 70px;
  }
  .hero-actions,
  .trust-row {
    flex-direction: column;
    align-items: center;
  }
  .window-body {
    grid-template-columns: 1fr;
  }
  .window-body aside {
    display: none;
  }
  .proof {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid,
  .config-grid {
    grid-template-columns: 1fr;
  }
  .privacy,
  .assistant-section,
  .price-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .privacy-visual {
    order: 2;
  }
  .checkout {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 50px;
  }
  .section-pad {
    padding-inline: 18px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .proof {
    grid-template-columns: 1fr;
  }
  .proof div {
    border-bottom: 1px solid var(--line);
  }
  .content-section {
    padding-block: 80px;
  }
  .privacy-visual {
    transform: scale(0.82);
  }
  .price-copy,
  .checkout {
    padding: 32px 24px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-main > div:first-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
