:root {
  --violet: #6c2bd9;
  --purple: #8b3df0;
  --pink: #df2b8c;
  --orange: #ff8a30;
  --ink: #17112b;
  --muted: #716a80;
  --line: #ece8f2;
  --bg: #fbfaff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.nav {
  min-height: calc(76px + env(safe-area-inset-top));
  padding-top: env(safe-area-inset-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    var(--violet),
    var(--pink) 58%,
    var(--orange)
  );
  box-shadow: 0 7px 20px rgba(139, 61, 240, 0.25);
}
.mark svg,
.inputRow button svg {
  width: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.navActions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
}
.navActions a {
  color: #514a60;
  text-decoration: none;
}
.freeBadge {
  padding: 8px 11px;
  border-radius: 20px;
  background: #f0e7ff;
  color: var(--violet);
  font-size: 10px;
  letter-spacing: 0.06em;
}
.languagePicker {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #e4dcec;
  border-radius: 12px;
  background: #fff;
  color: #5e536c;
  box-shadow: 0 5px 18px rgba(58, 31, 92, 0.05);
}
.languagePicker svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.languagePicker select {
  max-width: 118px;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}
.languagePicker:focus-within {
  border-color: #9f6ce8;
  box-shadow: 0 0 0 3px rgba(139, 61, 240, 0.13);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 80px 0 95px;
  background: linear-gradient(180deg, #fbf8ff 0%, #fff 100%);
  border-block: 1px solid #f0ebf7;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d9c9f2 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.32;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.heroInner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}
.orbOne {
  width: 290px;
  height: 290px;
  background: radial-gradient(circle, #f8c5e6, transparent 68%);
  top: 20px;
  left: -80px;
}
.orbTwo {
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, #d2c1ff, transparent 68%);
  right: -90px;
  bottom: -50px;
}
.eyebrow {
  display: inline-block;
  padding: 8px 13px;
  background: #f1e9ff;
  border: 1px solid #e4d5fa;
  border-radius: 30px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
h1 {
  margin: 22px 0 18px;
  font-size: clamp(54px, 7vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 900;
}
h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--orange));
  background-clip: text;
  -webkit-background-clip: text;
}
.intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 34px;
}
.downloadCard {
  max-width: 840px;
  margin: auto;
  padding: 14px 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e3dcef;
  border-radius: 19px;
  box-shadow: 0 25px 65px rgba(72, 34, 126, 0.14);
}
.inputRow {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.linkIcon {
  width: 38px;
  color: #9c8eaa;
  font-size: 22px;
}
.inputRow input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 16px;
  color: var(--ink);
}
.inputRow input::placeholder {
  color: #aaa1b5;
}
.inputRow button {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 13px;
  padding: 0 25px;
  background: linear-gradient(100deg, var(--violet), var(--pink));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(161, 45, 189, 0.23);
  touch-action: manipulation;
}
.inputRow button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}
.consent {
  display: flex;
  gap: 9px;
  align-items: center;
  text-align: left;
  margin: 10px 8px 0;
  padding-top: 12px;
  border-top: 1px solid #eeeaf3;
  color: #81798b;
  font-size: 11px;
  line-height: 1.4;
  cursor: pointer;
}
.consent input {
  width: 17px;
  height: 17px;
  accent-color: var(--purple);
  flex: 0 0 auto;
}
.message {
  margin: 12px 6px 0;
  padding: 11px;
  border-radius: 9px;
  background: #f3eaff;
  color: #6d29bc;
  font-size: 12px;
  text-align: left;
}
.providerNote {
  margin: 10px 8px 0;
  color: #a099aa;
  font-size: 10px;
  text-align: left;
}
.resultCard {
  max-width: 840px;
  margin: 22px auto 0;
  padding: 13px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e3dcef;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(72, 34, 126, 0.13);
}
.videoShell {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #160f22;
}
.videoShell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.resultCopy {
  padding: 10px 20px 10px 0;
}
.readyBadge {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}
.resultCopy h2 {
  margin: 0 0 8px;
  max-width: 480px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.resultCopy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}
.downloadAgain {
  width: fit-content;
  height: 48px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(100deg, var(--violet), var(--pink));
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(161, 45, 189, 0.2);
  cursor: pointer;
  touch-action: manipulation;
}
.downloadAgain svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.trust {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 25px;
  color: #6c6478;
  font-size: 12px;
}
.trust span::first-letter {
  color: var(--purple);
}
.steps {
  padding: 90px 0;
}
.sectionHead {
  text-align: center;
}
.sectionHead span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--purple);
}
.sectionHead h2 {
  font-size: 42px;
  letter-spacing: -0.04em;
  margin: 13px 0 8px;
}
.sectionHead p {
  color: var(--muted);
  margin: 0 0 48px;
}
.stepGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stepGrid article {
  display: flex;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(42, 22, 72, 0.04);
}
.stepGrid b {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0e6ff, #ffe8f6);
  color: var(--violet);
  font-size: 18px;
}
.stepGrid h3 {
  margin: 2px 0 8px;
  font-size: 17px;
}
.stepGrid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.features {
  padding: 90px 0;
  border-block: 1px solid #f0ebf7;
  background:
    radial-gradient(circle at 12% 20%, rgba(223, 43, 140, 0.09), transparent 27%),
    radial-gradient(circle at 88% 80%, rgba(108, 43, 217, 0.1), transparent 30%),
    #fcfaff;
}
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.featureGrid article {
  min-height: 235px;
  padding: 28px;
  border: 1px solid #e8e0f0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(55, 28, 91, 0.06);
}
.featureGrid article > span {
  display: inline-grid;
  place-items: center;
  width: 45px;
  height: 31px;
  margin-bottom: 26px;
  border-radius: 20px;
  background: linear-gradient(100deg, #f0e7ff, #ffe8f5);
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.featureGrid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  letter-spacing: -0.025em;
}
.featureGrid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.faq {
  padding: 90px 0 70px;
}
.faqList {
  max-width: 850px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
.faqList details {
  border-bottom: 1px solid var(--line);
}
.faqList summary {
  position: relative;
  padding: 23px 54px 23px 4px;
  list-style: none;
  cursor: pointer;
  color: #30263e;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  touch-action: manipulation;
}
.faqList summary::-webkit-details-marker {
  display: none;
}
.faqList summary::after {
  content: "+";
  position: absolute;
  right: 7px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1e9ff;
  color: var(--violet);
  font-size: 19px;
  transform: translateY(-50%);
}
.faqList details[open] summary::after {
  content: "−";
}
.faqList details > p {
  max-width: 760px;
  margin: -3px 0 24px 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.legal {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 75px;
  padding: 18px 22px;
  border: 1px solid #e7dff0;
  background: #f7f3fb;
  border-radius: 12px;
  color: #777080;
  font-size: 11px;
  line-height: 1.6;
}
.legal > span {
  color: var(--violet);
  font-size: 16px;
}
.legal p {
  margin: 0;
}
.legal strong {
  color: #5d556a;
}
.siteFooter {
  padding: 34px 0 calc(34px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: #8b8495;
  font-size: 11px;
}
.footerMain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footerMain > p {
  max-width: 620px;
  margin: 0;
  text-align: center;
  line-height: 1.55;
}
.siteFooter .brand {
  font-size: 15px;
}
.siteFooter .mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}
.siteFooter .mark svg {
  width: 15px;
}
.footerLinks,
.languageLinks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 19px;
}
.footerLinks {
  margin-top: 26px;
}
.languageLinks {
  margin-top: 14px;
}
.footerLinks a,
.languageLinks a {
  color: #716879;
  text-decoration: none;
  font-weight: 700;
}
.languageLinks a[aria-current="page"] {
  color: var(--violet);
}

.documentPage {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 5%, rgba(223, 43, 140, 0.08), transparent 24%),
    radial-gradient(circle at 92% 22%, rgba(108, 43, 217, 0.09), transparent 27%),
    var(--bg);
}
.documentNav {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 255, 0.94);
}
.documentNav .nav {
  min-height: calc(72px + env(safe-area-inset-top));
}
.documentNavLinks {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 750;
}
.documentNavLinks a {
  color: #5f566c;
  text-decoration: none;
}
.documentHero {
  padding: 76px 0 46px;
  text-align: center;
}
.documentHero .eyebrow {
  margin-bottom: 18px;
}
.documentHero h1 {
  margin: 0 auto 18px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1;
}
.documentHero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.documentContent {
  max-width: 850px;
  margin: 0 auto 86px;
  padding: 38px clamp(22px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(55, 28, 91, 0.07);
}
.documentContent h2 {
  margin: 34px 0 10px;
  color: #30263e;
  font-size: 24px;
  letter-spacing: -0.025em;
}
.documentContent h2:first-child {
  margin-top: 0;
}
.documentContent p,
.documentContent li {
  color: #696171;
  font-size: 15px;
  line-height: 1.75;
}
.documentContent ul {
  padding-left: 22px;
}
.documentContent a {
  color: var(--violet);
  font-weight: 750;
}
.documentUpdated {
  display: block;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #93899f;
  font-size: 12px;
}
.documentFooter {
  padding: 36px 0 calc(36px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.documentFooter .footerMain {
  margin-bottom: 24px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(108, 43, 217, 0.32);
  outline-offset: 3px;
}

@media (hover: hover) {
  .inputRow button:not(:disabled),
  .downloadAgain,
  .navActions a {
    transition:
      transform 160ms ease,
      opacity 160ms ease;
  }
  .inputRow button:not(:disabled):hover,
  .downloadAgain:hover {
    transform: translateY(-1px);
  }
  .navActions a:hover {
    opacity: 0.68;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 28px, 560px);
  }
  .nav {
    min-height: calc(68px + env(safe-area-inset-top));
  }
  .brand {
    gap: 8px;
    font-size: 18px;
  }
  .mark {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }
  .navActions {
    gap: 0;
  }
  .navActions a {
    display: none;
  }
  .freeBadge {
    display: none;
  }
  .languagePicker {
    min-height: 44px;
    padding-inline: 9px;
  }
  .languagePicker select {
    width: 100px;
    max-width: 100px;
    font-size: 12px;
  }
  .hero {
    padding: 48px 0 62px;
    min-height: auto;
  }
  .hero::before {
    background-size: 20px 20px;
  }
  .eyebrow {
    padding: 7px 11px;
    font-size: 9px;
  }
  h1 {
    margin: 18px 0 16px;
    font-size: clamp(40px, 12.7vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }
  .intro {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 26px;
  }
  .downloadCard {
    padding: 10px;
    border-radius: 17px;
    box-shadow: 0 18px 42px rgba(72, 34, 126, 0.13);
  }
  .inputRow {
    height: auto;
    flex-wrap: wrap;
    gap: 9px;
  }
  .linkIcon {
    display: none;
  }
  .inputRow input {
    width: 100%;
    flex-basis: 100%;
    min-height: 52px;
    padding: 14px 13px;
    border: 1px solid #eee8f4;
    border-radius: 12px;
    background: #fcfbfe;
    font-size: 16px;
  }
  .inputRow button {
    width: 100%;
    height: 54px;
    justify-content: center;
  }
  .consent {
    align-items: flex-start;
    margin: 12px 4px 0;
    padding-top: 13px;
    font-size: 11px;
  }
  .consent input {
    width: 19px;
    height: 19px;
    margin-top: 1px;
  }
  .message {
    margin: 11px 2px 0;
    line-height: 1.45;
  }
  .providerNote {
    margin: 10px 4px 2px;
    line-height: 1.45;
  }
  .trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 21px;
  }
  .resultCard {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
  }
  .videoShell {
    width: min(100%, 320px);
    margin-inline: auto;
    border-radius: 12px;
  }
  .resultCopy {
    padding: 6px 5px 5px;
  }
  .resultCopy h2 {
    font-size: 19px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .resultCopy p {
    margin-bottom: 13px;
  }
  .downloadAgain {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    justify-content: center;
    font-size: 13px;
  }
  .stepGrid {
    grid-template-columns: 1fr;
  }
  .steps {
    padding: 64px 0;
  }
  .features,
  .faq {
    padding: 64px 0;
  }
  .featureGrid {
    grid-template-columns: 1fr;
  }
  .featureGrid article {
    min-height: 0;
    padding: 23px;
  }
  .featureGrid article > span {
    margin-bottom: 20px;
  }
  .faqList summary {
    padding: 21px 49px 21px 2px;
    font-size: 15px;
  }
  .faqList details > p {
    margin-left: 2px;
    padding-right: 10px;
    font-size: 13px;
  }
  .sectionHead h2 {
    font-size: clamp(30px, 9.5vw, 38px);
    line-height: 1.05;
  }
  .sectionHead p {
    margin-bottom: 34px;
    line-height: 1.5;
  }
  .stepGrid article {
    padding: 21px;
  }
  .legal {
    margin-bottom: 42px;
    padding: 16px;
  }
  .footerMain {
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.5;
  }
  .siteFooter {
    padding-top: 30px;
  }
  .footerLinks {
    margin-top: 24px;
  }
  .documentNavLinks > a {
    display: none;
  }
  .documentHero {
    padding: 54px 0 34px;
  }
  .documentHero p {
    font-size: 15px;
  }
  .documentContent {
    margin-bottom: 58px;
    padding: 28px 20px;
    border-radius: 18px;
  }
  .documentContent h2 {
    font-size: 21px;
  }
}

@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 22px);
  }
  .brand {
    font-size: 16px;
  }
  .languagePicker select {
    width: 86px;
  }
  h1 {
    font-size: 38px;
  }
}

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