:root {
  --bg: #07070c;
  --bg-soft: #0d0d16;
  --surface: rgba(20, 18, 34, 0.72);
  --surface-solid: #12111e;
  --surface-hover: #181629;
  --text: #f5f3ff;
  --muted: #a7a3b7;
  --muted-strong: #c8c4d5;
  --line: rgba(255, 255, 255, 0.09);
  --purple: #a855f7;
  --purple-light: #c084fc;
  --blue: #3485ff;
  --cyan: #25d5f2;
  --pink: #f244b4;
  --green: #36df94;
  --gradient: linear-gradient(120deg, var(--purple) 0%, #655cff 50%, var(--cyan) 100%);
  --gradient-text: linear-gradient(100deg, #ffffff 8%, #d6c5ff 42%, #75b9ff 75%, #4de4f2 100%);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 8%, rgba(98, 63, 235, 0.11), transparent 29rem),
    radial-gradient(circle at 18% 35%, rgba(33, 143, 255, 0.06), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section,
.section-shell {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  color: #09080d;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 12, 0.7);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 12, 0.91);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 740;
  letter-spacing: -0.02em;
}

.brand img {
  border: 1px solid rgba(168, 85, 247, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(112, 78, 255, 0.22);
}

.brand strong {
  color: var(--purple-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 620;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 780px;
  padding-top: 166px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--purple-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 12px var(--purple);
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 24px;
  font-size: clamp(4.15rem, 8.9vw, 7.75rem);
  letter-spacing: -0.082em;
  line-height: 0.84;
}

.hero h1 em,
.section-heading h2 em,
.final-cta h2 em {
  color: transparent;
  background: var(--gradient-text);
  background-clip: text;
  font-style: normal;
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 18px;
  color: #e6e2ed;
  font-size: clamp(1.34rem, 2.15vw, 1.82rem);
  font-weight: 630;
  line-height: 1.32;
  letter-spacing: -0.026em;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 760;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 34px rgba(111, 72, 255, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 40px rgba(111, 72, 255, 0.4);
}

.button-secondary {
  border-color: var(--line);
  color: #f0edf8;
  background: rgba(255, 255, 255, 0.045);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(168, 85, 247, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.hero-points span {
  margin-right: 5px;
  color: var(--green);
}

.hero-visual {
  position: relative;
}

.visual-glow {
  position: absolute;
  inset: 14% 10%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(105, 66, 255, 0.36);
  filter: blur(70px);
}

.product-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(174, 131, 255, 0.26);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(28, 25, 48, 0.94), rgba(10, 10, 18, 0.96));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
}

.product-card-top {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 7px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #454054;
}

.local-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8ffdf;
  font-size: 0.7rem;
  font-weight: 700;
}

.local-status i,
.footer-local i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 42%, rgba(91, 58, 213, 0.22), transparent 38%),
    #090912;
}

.product-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(8, 8, 14, 0.93), transparent 42%);
}

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: linear-gradient(rgba(137, 109, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(137, 109, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle, black, transparent 75%);
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(68%, 330px);
  border-radius: 50%;
  filter: drop-shadow(0 24px 55px rgba(101, 59, 255, 0.35));
}

.stage-caption {
  position: absolute;
  right: 24px;
  bottom: 23px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.stage-caption span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stage-caption strong {
  max-width: 210px;
  text-align: right;
  font-size: 0.95rem;
}

.product-progress {
  padding: 18px 8px 5px;
}

.product-progress div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.product-progress strong {
  color: #fff;
}

.product-progress > i {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.product-progress b {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--gradient);
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #e8e4f2;
  background: rgba(15, 14, 25, 0.88);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  font-size: 0.76rem;
  font-weight: 700;
  animation: float 5s ease-in-out infinite;
}

.floating-chip span {
  color: var(--cyan);
}

.chip-one {
  top: 18%;
  left: -34px;
}

.chip-two {
  right: -23px;
  bottom: 21%;
  animation-delay: -2.2s;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.hero-orb-one {
  top: 18%;
  right: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(107, 85, 255, 0.13);
}

.hero-orb-two {
  bottom: 10%;
  left: -190px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(42, 172, 255, 0.08);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.trust-list {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  color: #aaa5b6;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-list i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 10px var(--purple);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.free-card h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
}

.section-heading p,
.free-card p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 268px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(23, 21, 38, 0.82), rgba(13, 13, 22, 0.8));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card:hover {
  border-color: rgba(168, 85, 247, 0.26);
  background: linear-gradient(145deg, rgba(29, 25, 49, 0.95), rgba(14, 14, 24, 0.9));
  transform: translateY(-4px);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 550px;
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 54px;
  place-items: center;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.09);
  font-size: 1.2rem;
}

.feature-number {
  position: absolute;
  top: 30px;
  right: 28px;
  color: #666174;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-canvas {
  position: absolute;
  right: 27px;
  bottom: 28px;
  left: 27px;
  height: 205px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(circle at 45% 35%, rgba(109, 72, 255, 0.42), transparent 20%),
    radial-gradient(circle at 62% 56%, rgba(45, 186, 255, 0.3), transparent 24%), #0a0911;
}

.mini-canvas::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.6;
  background: linear-gradient(135deg, transparent 40%, rgba(168, 85, 247, 0.2));
}

.mini-canvas i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.mini-canvas i:nth-child(1) { inset: 25px 70px; }
.mini-canvas i:nth-child(2) { inset: 45px 95px; }
.mini-canvas i:nth-child(3) { inset: 66px 120px; }
.mini-canvas b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 20px #fff, 0 0 45px var(--purple);
  transform: translate(-50%, -50%);
}

.free-section {
  padding-block: 70px;
}

.free-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 58px;
  overflow: hidden;
  align-items: center;
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid rgba(172, 123, 255, 0.24);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 83% 35%, rgba(91, 70, 225, 0.22), transparent 26%),
    linear-gradient(130deg, #18132a, #0e0e18 62%);
  box-shadow: var(--shadow);
}

.free-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black);
  pointer-events: none;
}

.free-card > * {
  position: relative;
  z-index: 1;
}

.free-card h2 {
  margin-bottom: 14px;
}

.free-card p strong {
  color: #fff;
}

.free-card .free-note {
  margin: 14px 0 28px;
  color: #c1bdca;
  font-size: 0.91rem;
}

.activation-visual {
  display: grid;
  justify-items: center;
  text-align: center;
}

.activation-ring {
  display: grid;
  width: 190px;
  height: 190px;
  margin-bottom: 20px;
  place-content: center;
  border: 1px solid rgba(168, 85, 247, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105, 75, 235, 0.3), rgba(21, 19, 35, 0.8) 65%);
  box-shadow: 0 0 70px rgba(91, 65, 230, 0.22), inset 0 0 30px rgba(93, 70, 220, 0.14);
}

.activation-ring span {
  font-size: 5rem;
  font-weight: 830;
  line-height: 0.9;
}

.activation-ring small {
  margin-top: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.activation-visual > p {
  color: var(--muted);
  font-size: 0.85rem;
}

.activation-visual strong {
  color: #fff;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 230px;
  padding: 25px 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-list li + li {
  border-left: 1px solid var(--line);
}

.steps-list li > span {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--purple-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.steps-list li:not(:last-child)::after {
  position: absolute;
  top: 28px;
  right: -7px;
  z-index: 2;
  content: "→";
  color: #746b87;
  font-size: 0.78rem;
}

.steps-list h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.downloads-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.014);
}

.download-notice {
  display: flex;
  max-width: 720px;
  align-items: center;
  gap: 15px;
  margin: -22px 0 30px;
  padding: 15px 18px;
  border: 1px solid rgba(53, 173, 255, 0.2);
  border-radius: 14px;
  background: rgba(43, 125, 210, 0.06);
}

.download-notice > span {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(73, 185, 255, 0.4);
  border-radius: 50%;
  color: #8edaff;
  font-weight: 800;
}

.download-notice strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.87rem;
}

.download-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.download-card {
  display: flex;
  min-height: 362px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(22, 20, 36, 0.78), rgba(13, 13, 21, 0.9));
  transition: border-color 180ms ease, transform 180ms ease;
}

.download-card:hover {
  border-color: rgba(109, 95, 246, 0.3);
  transform: translateY(-3px);
}

.download-card-primary {
  border-color: rgba(126, 104, 255, 0.42);
  background:
    radial-gradient(circle at 18% 0, rgba(90, 107, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(28, 25, 50, 0.96), rgba(14, 14, 25, 0.94));
  box-shadow: 0 20px 52px rgba(35, 29, 92, 0.2);
}

.download-card-primary:hover {
  border-color: rgba(126, 104, 255, 0.62);
}

.download-card-primary .download-head > span {
  color: #d8c9ff;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(52, 133, 255, 0.18));
  box-shadow: 0 0 24px rgba(103, 87, 255, 0.18);
}

.download-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.download-head > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(161, 98, 247, 0.3);
  border-radius: 12px;
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.075);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.71rem;
  font-weight: 800;
}

.download-head small {
  padding: 5px 8px;
  border-radius: 20px;
  color: #bcb6ca;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.download-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.download-card > p {
  min-height: 50px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.download-card ul {
  margin: 0 0 24px;
  padding: 0;
  color: #c2bdce;
  font-size: 0.78rem;
  list-style: none;
}

.download-card li {
  margin: 5px 0;
}

.download-card li::before {
  margin-right: 7px;
  color: var(--green);
  content: "✓";
}

.download-button {
  width: 100%;
  margin-top: auto;
  border-color: var(--line);
  color: #9e99aa;
  background: rgba(255, 255, 255, 0.035);
}

.download-button:hover,
.download-button:focus-visible {
  border-color: rgba(168, 85, 247, 0.3);
  color: #d9d3e4;
  background: rgba(168, 85, 247, 0.07);
}

.requirements-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.requirements-grid .section-heading {
  margin-bottom: 0;
}

.requirements-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.requirement-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
  padding: 25px;
}

.requirement-row + .requirement-row {
  border-top: 1px solid var(--line);
}

.requirement-row > span {
  color: var(--purple-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.73rem;
}

.requirement-row strong {
  display: block;
  margin-bottom: 4px;
}

.requirement-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq-section {
  padding-top: 72px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 120px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  color: #e8e4ef;
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--purple-light);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 620px;
  margin: -4px 48px 24px 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

.final-cta {
  padding-block: 80px;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 0, rgba(92, 64, 215, 0.2), transparent 35%),
    var(--surface-solid);
}

.final-cta img {
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(101, 72, 235, 0.24);
}

.final-cta .eyebrow {
  margin-bottom: 10px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.site-footer {
  padding: 56px 0 26px;
  border-top: 1px solid var(--line);
  background: #06060a;
}

.footer-main {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 42px;
  align-items: center;
  padding-bottom: 40px;
}

.footer-main > p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px 18px;
}

.footer-main nav button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 0.78rem;
  cursor: pointer;
}

.footer-main nav button:hover,
.footer-main nav button:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #777281;
  font-size: 0.7rem;
}

.footer-local {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.info-dialog {
  width: min(calc(100% - 36px), 470px);
  padding: 36px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 22px;
  color: var(--text);
  background: #13111e;
  box-shadow: var(--shadow);
}

.info-dialog::backdrop {
  background: rgba(3, 3, 7, 0.78);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #d8d2e3;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.dialog-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(127, 110, 255, 0.4);
  border-radius: 50%;
  color: #bfadff;
  background: rgba(103, 78, 228, 0.1);
  font-weight: 800;
}

.info-dialog h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.info-dialog p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-ok {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(4.05rem, 9.6vw, 6.25rem);
  }

  .product-stage {
    min-height: 380px;
  }

  .feature-grid,
  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-list li:nth-child(3) {
    border-left: 0;
  }

  .steps-list li:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .requirements-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-grid .section-heading {
    position: static;
    margin-bottom: 0;
  }

  .final-cta-inner {
    grid-template-columns: auto 1fr;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    grid-column: 1;
  }

  .footer-main nav {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section,
  .section-shell {
    padding-block: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: grid;
    visibility: hidden;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(13, 12, 21, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 170ms ease, transform 170ms ease, visibility 170ms ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(3.95rem, 17.5vw, 6.55rem);
  }

  .hero-subtitle,
  .hero-text {
    margin-inline: auto;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin: 14px auto 0;
  }

  .product-card {
    transform: none;
  }

  .feature-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .free-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .free-card .eyebrow {
    justify-content: center;
  }

  .free-card p {
    margin-inline: auto;
  }

  .activation-visual {
    grid-row: 1;
  }

  .trust-list {
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
  }

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

  .requirements-card {
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > p,
  .footer-main nav {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-main nav {
    justify-content: start;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 13.5vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.22rem;
  }

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

  .hero-points {
    display: grid;
  }

  .product-card {
    padding: 9px;
  }

  .product-stage {
    min-height: 335px;
  }

  .stage-caption {
    display: block;
  }

  .stage-caption strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .chip-one {
    top: 14%;
    left: -4px;
  }

  .chip-two {
    right: -4px;
  }

  .section-heading h2,
  .free-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .feature-card,
  .download-card {
    padding: 23px;
  }

  .free-card {
    padding: 34px 22px;
  }

  .activation-ring {
    width: 160px;
    height: 160px;
  }

  .activation-ring span {
    font-size: 4.2rem;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li,
  .steps-list li:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }

  .steps-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

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

  .steps-list li:not(:last-child)::after {
    display: none;
  }

  .steps-list li > span {
    margin-bottom: 28px;
  }

  .requirement-row {
    grid-template-columns: 32px 1fr;
    padding: 21px 18px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 34px 22px;
    text-align: center;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
