:root {
  --bg: #08090c;
  --surface: #101217;
  --surface-2: #151820;
  --surface-3: #1a1e27;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f7f7fa;
  --muted: #a5a9b5;
  --muted-2: #7f8491;
  --purple: #8174ff;
  --purple-soft: #a69dff;
  --cyan: #2dd4df;
  --green: #8bf263;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 0%, rgba(97, 78, 255, 0.10), transparent 28rem),
    radial-gradient(circle at 0% 42%, rgba(45, 212, 223, 0.045), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span,
.footer-brand strong {
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 13px;
  font-weight: 720;
  transition: background .2s ease, border-color .2s ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line-strong);
}

.icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  margin-top: 34px;
  padding: 70px 72px 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(15, 17, 23, 0.90);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(130, 112, 255, 0.06), transparent 44%),
    linear-gradient(300deg, rgba(45, 212, 223, 0.05), transparent 38%);
}

.hero-decoration {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.hero-decoration-one {
  width: 520px;
  height: 520px;
  top: -250px;
  right: -120px;
  background: radial-gradient(circle, rgba(125, 105, 255, 0.25), rgba(125, 105, 255, 0.025) 56%, transparent 72%);
}

.hero-decoration-two {
  width: 380px;
  height: 380px;
  right: 180px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(45, 212, 223, 0.16), transparent 69%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent 0, black 45%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 45%, black 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 890px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 242, 99, 0.18);
  border-radius: 999px;
  background: rgba(139, 242, 99, 0.045);
  color: #cdfcc0;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(139, 242, 99, .75);
}

.hero h1 {
  margin: 0;
  max-width: 1000px;
  font-size: clamp(58px, 7vw, 100px);
  line-height: .94;
  letter-spacing: -.068em;
  font-weight: 820;
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(100deg, #a79fff 0%, #7d70ff 45%, #31d5df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 720px;
  margin: 30px 0 0;
  color: #b4b8c3;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 780;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
}

.button-primary {
  color: #090a0d;
  background: linear-gradient(112deg, #a69dff, #32d4df);
  box-shadow: 0 14px 36px rgba(106, 91, 255, .22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 44px rgba(106, 91, 255, .30);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.025);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.05);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.platform-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #bec2cb;
  background: rgba(255,255,255,.018);
  font-size: 11px;
  font-weight: 700;
}

.hero-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.hero-summary article {
  min-width: 0;
  display: flex;
  gap: 15px;
  padding: 26px 28px 8px 0;
}

.hero-summary article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.summary-index {
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-summary strong,
.hero-summary span {
  display: block;
}

.hero-summary strong {
  margin-bottom: 7px;
  font-size: 14px;
  letter-spacing: -.02em;
}

.hero-summary article div span {
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.about-section,
.steps-section,
.devices-section,
.faq-section {
  padding: 112px 0 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading > span,
.devices-copy > span,
.final-cta > div > span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.section-heading h2,
.devices-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -.052em;
}

.section-heading p,
.devices-copy p,
.final-cta p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.feature-card,
.step-card,
.service-facts div,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.022);
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 23px;
  transition: border-color .2s ease, background .2s ease;
}

.feature-card:hover {
  transform: none;
  translate: none;
  border-color: var(--line-strong);
  background: rgba(255,255,255,.033);
}

.feature-card-accent {
  background:
    radial-gradient(circle at 90% 10%, rgba(129,116,255,.12), transparent 42%),
    rgba(255,255,255,.023);
}

.feature-number,
.step-number {
  display: block;
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
}

.feature-card h3,
.step-card h3 {
  margin: 58px 0 0;
  font-size: 22px;
  letter-spacing: -.035em;
}

.feature-card p,
.step-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.step-card {
  min-height: 265px;
  padding: 25px;
  border-radius: 21px;
}

.step-card h3 {
  margin-top: 72px;
  font-size: 18px;
}

.devices-section {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.devices-copy {
  position: sticky;
  top: 28px;
}

.device-list {
  border-top: 1px solid var(--line);
}

.device-row {
  display: grid;
  grid-template-columns: 42px minmax(120px, .7fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.device-index {
  color: var(--purple-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.device-row strong {
  font-size: 19px;
  letter-spacing: -.035em;
}

.device-row > span:last-child {
  color: var(--muted-2);
  font-size: 13px;
}

.service-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.service-facts div {
  min-height: 150px;
  padding: 23px;
  border-radius: 20px;
}

.service-facts strong,
.service-facts span {
  display: block;
}

.service-facts strong {
  font-size: 14px;
  line-height: 1.35;
}

.service-facts span {
  margin-top: 32px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.faq-list details {
  border-radius: 17px;
  overflow: hidden;
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 720;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--purple-soft);
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 112px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(45,212,223,.10), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(129,116,255,.13), transparent 36%),
    rgba(255,255,255,.025);
}

.final-cta h2 {
  font-size: clamp(34px, 4.2vw, 54px);
}

.site-footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 92px;
  border-top: 1px solid var(--line);
}

.footer-brand div span {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 11px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.legal-links a {
  color: var(--muted);
  font-size: 12px;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--text);
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 60px 50px 28px;
  }

  .hero h1 {
    font-size: clamp(54px, 9.2vw, 82px);
  }

  .hero-summary {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .hero-summary article {
    padding: 20px 0;
  }

  .hero-summary article + article {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .devices-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .devices-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .site-header {
    min-height: 72px;
  }

  .brand img,
  .footer-brand img {
    width: 35px;
    height: 35px;
  }

  .brand span {
    font-size: 15px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .hero {
    margin-top: 20px;
    padding: 38px 22px 22px;
    border-radius: 24px;
  }

  .hero-decoration-one {
    width: 340px;
    height: 340px;
    top: -170px;
    right: -150px;
  }

  .hero-grid {
    background-size: 36px 36px;
  }

  .eyebrow {
    margin-bottom: 21px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: .98;
    letter-spacing: -.058em;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .platform-list {
    margin-top: 22px;
  }

  .hero-summary {
    margin-top: 34px;
  }

  .hero-summary article {
    gap: 12px;
    padding: 17px 0;
  }

  .about-section,
  .steps-section,
  .devices-section,
  .faq-section {
    padding-top: 82px;
  }

  .section-heading h2,
  .devices-copy h2,
  .final-cta h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .section-heading p,
  .devices-copy p,
  .final-cta p {
    font-size: 14px;
  }

  .feature-grid,
  .steps-grid,
  .device-list,
  .service-facts {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
    padding: 24px;
  }

  .feature-card h3 {
    margin-top: 46px;
    font-size: 20px;
  }

  .step-card {
    min-height: 220px;
  }

  .step-card h3 {
    margin-top: 52px;
  }

  .device-row,
  .service-facts div {
    min-height: 130px;
  }

  .device-row > span:last-child {
    margin-top: 42px;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 82px;
    padding: 28px 22px;
    border-radius: 23px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    min-height: 160px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .brand span {
    display: none;
  }

  .hero h1 {
    font-size: 39px;
  }

  .platform-list li {
    padding: 6px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}

/* Pricing */
.pricing-section {
  margin-top: 104px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
  gap: 56px;
  align-items: center;
}

.pricing-intro > span,
.pricing-label {
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-intro h2 {
  max-width: 580px;
  margin: 18px 0 0;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.pricing-intro p {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.pricing-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(129, 116, 255, .10), transparent 42%),
    rgba(16, 18, 23, .94);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04);
}

.pricing-card-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 12px;
}

.pricing-value strong {
  font-size: clamp(54px, 6vw, 78px);
  line-height: .95;
  letter-spacing: -.065em;
}

.pricing-value span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.pricing-badge {
  padding: 9px 12px;
  border: 1px solid rgba(139, 242, 99, .20);
  border-radius: 999px;
  background: rgba(139, 242, 99, .055);
  color: #d5ffca;
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.pricing-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-features div {
  min-width: 0;
  padding: 22px 18px 22px 0;
}

.pricing-features div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.pricing-features strong,
.pricing-features span {
  display: block;
}

.pricing-features strong {
  font-size: 14px;
}

.pricing-features span {
  margin-top: 7px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.5;
}

.pricing-trial {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.022);
}

.pricing-trial div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.pricing-trial span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pricing-trial strong {
  color: #cdfcc0;
  font-size: 13px;
}

.pricing-trial p {
  margin: 10px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.pricing-button {
  width: 100%;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .pricing-section {
    margin-top: 72px;
  }

  .pricing-card {
    padding: 24px;
    border-radius: 22px;
  }

  .pricing-card-top {
    display: block;
  }

  .pricing-badge {
    display: inline-flex;
    margin-top: 18px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .pricing-features div {
    padding: 17px 0;
  }

  .pricing-features div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}


/* Fixed hover geometry — same approach as in the personal cabinet. */
.button,
.header-action,
button,
a.button,
.feature-card {
  transform: none;
  translate: none;
}

.button:hover,
.button:active,
.button:focus-visible,
.header-action:hover,
.header-action:active,
.header-action:focus-visible,
button:hover,
button:active,
button:focus-visible,
a.button:hover,
a.button:active,
a.button:focus-visible,
.feature-card:hover,
.feature-card:active,
.feature-card:focus-within {
  transform: none !important;
  translate: none !important;
}
