:root {
  color-scheme: light;
  --ink: #17172b;
  --muted: #68687a;
  --line: #e8e8ef;
  --soft: #f7f7fb;
  --soft-purple: #f2f1ff;
  --brand: #5b5bd6;
  --brand-dark: #4545b9;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(41, 39, 87, 0.13);
  --radius: 24px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: absolute;
  z-index: -1;
  top: -240px;
  left: 50%;
  width: min(1000px, 100vw);
  height: 620px;
  content: "";
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(91, 91, 214, 0.11), transparent 68%);
  pointer-events: none;
}

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

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

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

.site-header {
  position: relative;
  z-index: 20;
  padding: 22px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #515163;
  font-size: 14px;
  font-weight: 590;
}

.nav-links a {
  transition: color 160ms ease;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
}

.hero {
  padding: 92px 0 76px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid #dfdefb;
  border-radius: 999px;
  color: #4f4fbd;
  background: rgba(247, 246, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
  box-shadow: 0 0 0 4px rgba(91, 91, 214, 0.12);
}

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

h1 {
  max-width: 850px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 670px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 680;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(91, 91, 214, 0.25);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 15px 34px rgba(91, 91, 214, 0.32);
}

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

.button-secondary:hover {
  background: var(--soft);
}

.hero-note {
  margin: 18px 0 0;
  color: #888896;
  font-size: 13px;
}

.product-gallery {
  position: relative;
  max-width: 1060px;
  margin: 70px auto 0;
}

.gallery-frame {
  position: relative;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(34, 33, 73, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.gallery-frame::before {
  position: absolute;
  inset: auto 15% -80px;
  height: 160px;
  border-radius: 50%;
  background: rgba(91, 91, 214, 0.28);
  content: "";
  filter: blur(65px);
}

.gallery-slide {
  position: relative;
  margin: 0;
  text-align: left;
}

.gallery-slide[hidden] {
  display: none;
}

.gallery-slide img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.gallery-slide figcaption {
  display: flex;
  gap: 10px 24px;
  padding: 20px 12px 10px;
  align-items: baseline;
  justify-content: space-between;
}

.gallery-slide figcaption strong {
  font-size: 16px;
  letter-spacing: -0.015em;
}

.gallery-slide figcaption span {
  color: var(--muted);
  font-size: 14px;
}

.gallery-tabs {
  display: grid;
  max-width: 820px;
  margin: 18px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-tabs button {
  display: flex;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #5f5f70;
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.gallery-tabs button span {
  color: #9696a5;
  font-size: 11px;
  font-weight: 750;
}

.gallery-tabs button:hover {
  border-color: #cecdf4;
  color: var(--brand);
}

.gallery-tabs button[aria-selected="true"] {
  border-color: var(--brand);
  color: white;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(91, 91, 214, 0.2);
}

.gallery-tabs button[aria-selected="true"] span {
  color: rgba(255, 255, 255, 0.72);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-top: 32px;
  color: #6f6f80;
  font-size: 13px;
  font-weight: 560;
}

.trust-line span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.trust-line svg {
  color: var(--brand);
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.feature-card {
  min-height: 270px;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 52px;
  border-radius: 14px;
  color: var(--brand);
  background: var(--soft-purple);
  place-items: center;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
}

.step::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 1px solid #d8d7f8;
  border-radius: 50%;
  color: var(--brand);
  background: white;
  content: counter(steps);
  font-size: 13px;
  font-weight: 750;
  place-items: center;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  padding: clamp(36px, 7vw, 72px);
  border-radius: 32px;
  color: white;
  background: #18182d;
  align-items: center;
}

.privacy-panel .kicker {
  color: #a7a7ff;
}

.privacy-panel h2 {
  margin-bottom: 20px;
}

.privacy-panel p {
  margin-bottom: 0;
  color: #bebecd;
  font-size: 17px;
  line-height: 1.65;
}

.privacy-list {
  display: grid;
  gap: 12px;
}

.privacy-list div {
  display: flex;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #e6e6ee;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.check {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--brand);
  place-items: center;
}

.price-panel {
  display: grid;
  max-width: 850px;
  margin-inline: auto;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 80px rgba(41, 39, 87, 0.09);
  align-items: center;
}

.price-panel h2 {
  font-size: clamp(34px, 5vw, 48px);
}

.price-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.price {
  min-width: 220px;
  text-align: center;
}

.price strong {
  display: block;
  margin-bottom: 4px;
  font-size: 42px;
  letter-spacing: -0.05em;
}

.price span {
  display: block;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 13px;
}

.price .button {
  width: 100%;
}

.faq {
  max-width: 760px;
  margin-inline: auto;
}

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

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

.faq summary {
  padding: 23px 4px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 680;
  list-style: none;
}

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

.faq summary::after {
  float: right;
  color: var(--brand);
  content: "+";
  font-size: 21px;
  font-weight: 400;
}

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

.faq details p {
  max-width: 660px;
  padding: 0 4px 23px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 35px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-meta {
  max-width: 600px;
  color: #848493;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 20px;
  color: #5f5f70;
  font-size: 13px;
  font-weight: 600;
}

.legal-hero {
  padding: 82px 0 42px;
}

.legal-hero h1 {
  max-width: 740px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(43px, 7vw, 68px);
}

.legal-hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-content {
  max-width: 760px;
  padding: 34px 0 110px;
}

.legal-content h2 {
  margin-top: 45px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #555568;
  font-size: 16px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 34px 0 42px;
}

.support-card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.support-card h3 {
  margin-top: 0;
  font-size: 17px;
}

.support-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-box {
  padding: 28px;
  border-radius: 20px;
  background: var(--soft-purple);
}

.contact-box h2 {
  margin-top: 0;
}

.guide-hero {
  max-width: 1120px;
  padding: 76px 0 54px;
}

.guide-hero h1 {
  max-width: 800px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(44px, 7vw, 70px);
}

.guide-hero > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.guide-hub {
  padding-bottom: 110px;
}

.start-path {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: 28px;
  color: white;
  background: #18182d;
  align-items: center;
}

.start-path .kicker {
  color: #a7a7ff;
}

.start-path h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 43px);
}

.path-steps {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.path-steps a {
  display: flex;
  gap: 13px;
  min-height: 54px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #eeeeF5;
  background: rgba(255, 255, 255, 0.045);
  align-items: center;
  font-size: 15px;
  font-weight: 650;
  transition: border-color 160ms ease, background 160ms ease;
}

.path-steps a:hover {
  border-color: rgba(167, 167, 255, 0.55);
  background: rgba(167, 167, 255, 0.1);
}

.path-steps span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: var(--brand);
  place-items: center;
  font-size: 12px;
}

.guide-section-heading {
  margin: 86px 0 34px;
}

.guide-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 46px);
}

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

.guide-card {
  display: flex;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  flex-direction: column;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: #d6d5f8;
  box-shadow: 0 18px 45px rgba(41, 39, 87, 0.09);
}

.guide-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 13px;
  color: var(--brand);
  background: var(--soft-purple);
  place-items: center;
  font-size: 12px;
  font-weight: 760;
}

.guide-card h3 {
  margin-bottom: 9px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.guide-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.guide-link {
  margin-top: auto;
  color: var(--brand);
  font-size: 14px;
  font-weight: 680;
}

.guide-breadcrumbs {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
  color: #858594;
  font-size: 13px;
}

.guide-breadcrumbs a:hover {
  color: var(--brand);
}

.guide-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: clamp(42px, 7vw, 90px);
  padding-bottom: 115px;
  align-items: start;
}

.guide-sidebar {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 5px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--soft);
}

.guide-sidebar strong {
  padding: 4px 8px 8px;
  font-size: 13px;
}

.guide-sidebar a {
  padding: 8px;
  border-radius: 9px;
  color: #666678;
  font-size: 13px;
  line-height: 1.35;
}

.guide-sidebar a:hover,
.guide-sidebar a[aria-current="page"] {
  color: var(--brand);
  background: white;
}

.guide-article {
  min-width: 0;
}

.guide-article h2 {
  padding-top: 24px;
  margin-top: 38px;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.guide-article h2:first-child {
  padding-top: 0;
  margin-top: 0;
}

.guide-article h3 {
  margin-top: 28px;
  margin-bottom: 9px;
  font-size: 19px;
}

.guide-article p,
.guide-article li {
  color: #565668;
  font-size: 16px;
  line-height: 1.72;
}

.guide-article a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ui-path {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 16px;
  margin: 18px 0 24px;
  border: 1px solid #dfdefb;
  border-radius: 14px;
  color: #4f4fbd;
  background: var(--soft-purple);
  align-items: center;
  font-size: 14px;
  font-weight: 680;
}

.ui-path span:not(:last-child)::after {
  margin-left: 7px;
  color: #a0a0bb;
  content: "→";
}

.guide-steps {
  padding: 0;
  margin: 24px 0 34px;
  counter-reset: guide-steps;
  list-style: none;
}

.guide-steps > li {
  position: relative;
  min-height: 60px;
  padding: 0 0 28px 58px;
  counter-increment: guide-steps;
}

.guide-steps > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid #d8d7f8;
  border-radius: 50%;
  color: var(--brand);
  background: white;
  content: counter(guide-steps);
  place-items: center;
  font-size: 13px;
  font-weight: 760;
}

.guide-steps > li:not(:last-child)::after {
  position: absolute;
  top: 39px;
  bottom: 5px;
  left: 18px;
  width: 1px;
  background: #e2e1f8;
  content: "";
}

.guide-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 17px;
}

.guide-callout {
  padding: 18px 20px;
  margin: 26px 0;
  border-left: 4px solid var(--brand);
  border-radius: 4px 14px 14px 4px;
  background: var(--soft-purple);
}

.guide-callout strong {
  display: block;
  margin-bottom: 5px;
  color: #44449e;
}

.guide-callout p {
  margin-bottom: 0;
  color: #5b5b76;
  font-size: 15px;
}

.choice-table {
  width: 100%;
  margin: 22px 0 32px;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  font-size: 14px;
}

.choice-table th,
.choice-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.choice-table tr:last-child td {
  border-bottom: 0;
}

.choice-table th {
  color: #55556a;
  background: var(--soft);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.choice-table td:first-child {
  color: var(--ink);
  font-weight: 680;
}

.related-guides {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.related-guides a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.related-guides a:hover {
  border-color: #d6d5f8;
  color: var(--brand);
}

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

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

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

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

  .button {
    transition: none;
  }
}

@media (max-width: 800px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 20px;
    display: none;
    width: 210px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 18px 50px rgba(41, 39, 87, 0.14);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    padding-top: 62px;
  }

  .product-gallery {
    margin-top: 50px;
  }

  .gallery-frame {
    padding: 7px;
    border-radius: 19px;
  }

  .gallery-slide img {
    border-radius: 13px;
  }

  .gallery-slide figcaption {
    display: grid;
    padding: 16px 9px 9px;
  }

  .section {
    padding: 82px 0;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 30px;
  }

  .privacy-panel,
  .price-panel {
    grid-template-columns: 1fr;
  }

  .price {
    min-width: 0;
    text-align: left;
  }

  .price .button {
    width: auto;
  }

  .footer-row {
    display: grid;
  }

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

  .start-path,
  .guide-layout {
    grid-template-columns: 1fr;
  }

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

  .guide-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-sidebar strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .gallery-tabs {
    grid-template-columns: 1fr;
  }

  .gallery-tabs button {
    justify-content: flex-start;
  }

  .trust-line {
    display: grid;
    justify-content: start;
    padding-left: 16px;
    text-align: left;
  }

  .privacy-panel {
    padding: 30px 22px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .guide-grid,
  .guide-sidebar,
  .related-guides {
    grid-template-columns: 1fr;
  }

  .guide-hero {
    padding-top: 54px;
  }

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

  .choice-table {
    display: block;
    overflow-x: auto;
  }
}
