:root {
  --ink: #171422;
  --muted: #716b7f;
  --line: #e5e0ee;
  --soft: #f7f5fb;
  --white: #fff;
  --night: #07060b;
  --night-soft: #11101a;
  --purple: #715cff;
  --purple-dark: #4e3fd1;
  --purple-light: #b3a6ff;
  --magenta: #d946ef;
  --cyan: #26d3ee;
  --green: #42d79e;
  --orange: #ffb34d;
  --shell: 1180px;
  --header-height: 68px;
  --local-nav-height: 52px;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

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

.site-header {
  height: var(--header-height);
  color: rgba(255,255,255,.88);
  background: rgba(10,10,12,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  width: min(calc(100% - 44px), 1440px);
  height: 100%;
  margin: 0 auto;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.local-nav__inner,
.site-footer__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 132px;
  font-size: 14px;
  font-weight: 700;
}

.brand__logo {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
}

.brand__mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--magenta), var(--purple) 52%, var(--cyan));
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(113,92,255,.25);
  font-size: 15px;
  font-weight: 900;
}

.brand__name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.brand__name small {
  color: rgba(255,255,255,.46);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  min-width: 0;
  justify-self: end;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  padding: 0 14px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.82);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  background: #715cff;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: none;
}

.site-header__tools {
  display: grid;
  grid-template-columns: minmax(220px, 248px) auto;
  align-items: center;
  gap: 18px;
}

.site-search {
  display: flex;
  width: 100%;
  height: 44px;
  padding: 0 10px 0 14px;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-search:hover,
.site-search:focus-within {
  background: rgba(255,255,255,.09);
  border-color: rgba(124,58,237,.42);
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.site-search input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 13px;
}

.site-search input::placeholder { color: rgba(255,255,255,.42); }
.site-search input::-webkit-search-cancel-button { opacity: .55; }

.site-search button {
  display: inline-grid;
  width: 30px;
  height: 30px;
  padding: 0;
  flex: 0 0 auto;
  place-items: center;
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.site-search button:hover { color: #fff; background: rgba(124,58,237,.28); }
.site-search svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }

.auth-buttons { position: relative; display: flex; flex: 0 0 auto; }

.auth-btn,
.user-profile {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.94);
  background: linear-gradient(135deg, #796cff, #5e5be7);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(91,82,223,.28);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.auth-btn:hover,
.user-profile:hover {
  color: #fff;
  box-shadow: 0 12px 30px rgba(91,82,223,.38);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.user-profile { position: relative; gap: 8px; padding: 0 12px; }
.user-avatar { width: 26px; height: 26px; object-fit: cover; border-radius: 50%; }
.user-name { max-width: 80px; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.user-rights-badge { display: none; }
.user-dropdown { position: absolute; z-index: 20; top: calc(100% + 8px); right: 0; display: none; min-width: 120px; padding: 6px; background: rgba(20,18,28,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,.34); }
.user-profile:hover .user-dropdown,
.user-profile:focus-within .user-dropdown { display: grid; }
.dropdown-item { padding: 8px 10px; border-radius: 8px; font-size: 12px; }
.dropdown-item:hover { background: rgba(255,255,255,.08); }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.local-nav {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--local-nav-height);
  background: rgba(253,252,255,.88);
  border-bottom: 1px solid rgba(84,62,175,.13);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.local-nav__title { font-size: 17px; font-weight: 720; }

.local-nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4e485b;
  font-size: 12px;
}

.local-nav__links a:hover { color: var(--purple); }

.local-nav__consult {
  padding: 7px 14px;
  color: #fff !important;
  background: linear-gradient(135deg, #806eff, #5d4ce1);
  border-radius: 999px;
  box-shadow: 0 7px 20px rgba(94,74,220,.22);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - var(--local-nav-height)));
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 22%, rgba(122,87,255,.16), transparent 26%),
    radial-gradient(circle at 85% 28%, rgba(217,70,239,.13), transparent 24%),
    linear-gradient(135deg, #050509 0%, #0a0812 48%, #16102a 100%);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(5,5,9,.85), transparent);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.hero__glow--one {
  top: 22%;
  right: 4%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(116,89,255,.24), transparent 68%);
}

.hero__glow--two {
  right: 34%;
  bottom: -34%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(38,211,238,.1), transparent 68%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, .9fr);
  align-items: center;
  gap: 72px;
  padding-top: 66px;
  padding-bottom: 92px;
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #b8a8ff; }

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.hero h1 span {
  color: rgba(255,255,255,.52);
  font-size: .59em;
  font-weight: 580;
  letter-spacing: -.02em;
}

.hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  font-weight: 470;
  line-height: 1.55;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #846fff, #5d4ce1);
  box-shadow: 0 12px 32px rgba(93,76,225,.3);
}

.button--primary:hover { background: linear-gradient(135deg, #937fff, #6858e9); }

.button--ghost {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
}

.button--ghost:hover { background: rgba(255,255,255,.13); }

.button--light {
  color: #4e3fd1;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(87,65,181,.15);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 44px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust i { color: var(--green); font-style: normal; font-weight: 900; }

.hero__visual {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(179,166,255,.32), transparent 34%, transparent 70%, rgba(217,70,239,.18));
  border-radius: inherit;
  filter: blur(1px);
}

.mini-card {
  position: relative;
  display: grid;
  min-height: 104px;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(8,7,13,.67);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
}

.mini-card--shared {
  background: linear-gradient(135deg, rgba(106,83,239,.24), rgba(41,30,85,.5));
  border-color: rgba(170,153,255,.4);
  box-shadow: 0 18px 44px rgba(56,35,142,.24);
  transform: translateX(-14px);
}

.mini-card__number {
  color: rgba(255,255,255,.34);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.mini-card div { display: grid; gap: 3px; }
.mini-card div small { color: rgba(255,255,255,.45); font-size: 11px; }
.mini-card div strong { color: #fff; font-size: 19px; }

.mini-card > p {
  margin: 0;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -.06em;
}

.mini-card > p span { margin-right: 2px; color: var(--purple-light); font-size: 12px; }
.mini-card > p small { margin-left: 5px; color: rgba(255,255,255,.4); font-family: inherit; font-size: 10px; letter-spacing: 0; }

.mini-card__badge {
  position: absolute;
  top: -9px;
  right: 16px;
  padding: 4px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(217,70,239,.24);
  font-size: 10px;
  font-weight: 800;
}

.hero__connector { display: flex; height: 10px; justify-content: center; }
.hero__connector span { display: block; width: 1px; height: 100%; background: linear-gradient(to bottom, rgba(179,166,255,.18), rgba(179,166,255,.55)); }

.hero__visual-note {
  margin: 8px 0 0;
  color: rgba(255,255,255,.42);
  font-size: 11px;
  text-align: center;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 44px;
  place-items: start center;
  padding-top: 9px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(12px); }
}

.band { padding: 112px 0; scroll-margin-top: var(--local-nav-height); }
.band--soft { background: var(--soft); }
.band--dark { color: #fff; background: var(--night); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 56px;
}

.section-heading h2,
.rights__intro h2,
.addons__intro h2,
.package__copy h2,
.faq__heading h2,
.contact__copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 730;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading > p {
  max-width: 340px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.band--dark .section-heading > p { color: rgba(255,255,255,.5); }

.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 5px;
  background: #f2eff8;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.scenario-tabs button {
  min-height: 58px;
  padding: 10px 14px;
  background: transparent;
  border: 0;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.scenario-tabs button[aria-pressed="true"] {
  color: #fff;
  background: linear-gradient(135deg, #7965f6, #5744d0);
  box-shadow: 0 9px 22px rgba(78,63,209,.22);
}

.scenario-answer {
  display: grid;
  min-height: 164px;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  margin-top: 24px;
  padding: 34px 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(41,31,79,.08);
}

.scenario-answer__label { display: grid; gap: 5px; }
.scenario-answer__label span { color: var(--muted); font-size: 12px; }
.scenario-answer__label strong { color: var(--purple-dark); font-size: 27px; }
.scenario-answer__copy p { margin: 0; color: #514b5e; font-size: 16px; }
.scenario-answer__copy small { display: block; margin-top: 10px; color: var(--muted); font-size: 11px; }
.scenario-answer > a { color: var(--purple); font-size: 14px; font-weight: 750; white-space: nowrap; }

.rights { overflow: hidden; }

.rights__layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 82px;
}

.rights__intro .kicker { color: var(--purple-light); }
.rights__intro p:last-child { max-width: 540px; margin: 28px 0 0; color: rgba(255,255,255,.58); }

.rights__matrix {
  overflow: hidden;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}

.rights__row {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1.1fr 1.3fr .7fr;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.rights__row--head {
  min-height: 54px;
  color: rgba(255,255,255,.38);
  border-top: 0;
  font-size: 11px;
}

.rights__row--featured {
  background: linear-gradient(90deg, rgba(113,92,255,.2), rgba(113,92,255,.06));
  box-shadow: inset 3px 0 0 var(--purple-light);
}

.rights__row strong { font-size: 16px; }
.rights__row span { color: rgba(255,255,255,.58); font-size: 14px; }
.rights__row em { justify-self: start; padding: 5px 10px; border-radius: 999px; font-size: 11px; font-style: normal; font-weight: 800; }
.rights__row .yes { color: #7fecbd; background: rgba(66,215,158,.12); }
.rights__row .no { color: #ffc879; background: rgba(255,179,77,.12); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(28,20,62,.055);
}

.price-card--featured {
  z-index: 2;
  background: linear-gradient(160deg, #151126 0%, #211745 100%);
  border-color: rgba(146,127,255,.72);
  box-shadow: 0 28px 75px rgba(72,49,168,.22);
  color: #fff;
  transform: translateY(-14px);
}

.price-card__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 22px rgba(217,70,239,.22);
  font-size: 11px;
  font-weight: 800;
  transform: translateX(-50%);
}

.price-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-card__index {
  color: #aaa4b5;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.price-card__tag {
  padding: 5px 10px;
  color: var(--purple-dark);
  background: #f0edff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.price-card--featured .price-card__index { color: rgba(255,255,255,.35); }
.price-card--featured .price-card__tag { color: #ddd7ff; background: rgba(137,116,255,.17); }

.price-card__eyebrow {
  min-height: 38px;
  margin: 28px 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.price-card--featured .price-card__eyebrow { color: rgba(255,255,255,.48); }

.price-card h3 { margin: 0; font-size: 30px; line-height: 1.2; letter-spacing: -.03em; }

.price-card__price {
  display: flex;
  min-height: 86px;
  align-items: baseline;
  margin-top: 14px;
  color: var(--purple-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.price-card--featured .price-card__price { color: #b9abff; }
.price-card__price span { margin-right: 5px; font-size: 16px; }
.price-card__price strong { font-size: 54px; line-height: 1; letter-spacing: -.08em; }
.price-card__price small { margin-left: 8px; color: var(--muted); font-family: inherit; font-size: 12px; }
.price-card--featured .price-card__price small { color: rgba(255,255,255,.4); }

.price-card__summary {
  min-height: 80px;
  margin: 12px 0 0;
  color: #5e5869;
  font-size: 14px;
}

.price-card--featured .price-card__summary { color: rgba(255,255,255,.62); }

.price-card__list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.price-card--featured .price-card__list { border-top-color: rgba(255,255,255,.11); }

.price-card__list li {
  position: relative;
  padding-left: 20px;
  color: #4e4858;
  font-size: 13px;
}

.price-card--featured .price-card__list li { color: rgba(255,255,255,.68); }

.price-card__list li::before {
  content: "";
  position: absolute;
  top: .57em;
  left: 1px;
  width: 7px;
  height: 7px;
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(113,92,255,.09);
}

.price-card--featured .price-card__list li::before { background: var(--purple-light); box-shadow: 0 0 0 4px rgba(179,166,255,.12); }

.price-card__rights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.price-card__rights span {
  padding: 5px 9px;
  color: #5a4bcc;
  background: #f1efff;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 750;
}

.price-card--featured .price-card__rights span { color: #d7d0ff; background: rgba(113,92,255,.16); }

.price-card__button {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding: 0 17px;
  color: var(--purple-dark);
  background: #f6f4ff;
  border: 1px solid #e6e0ff;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 750;
}

.price-card__button--primary {
  color: #fff;
  background: linear-gradient(135deg, #806aff, #5e4bd7);
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(92,69,215,.28);
}

.price-card__button span { transition: transform .2s ease; }
.price-card__button:hover span { transform: translateX(4px); }

.pricing-note {
  max-width: 920px;
  margin: 66px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.pricing-note strong { color: var(--ink); }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(113,92,255,.55) 12%, rgba(113,92,255,.55) 88%, transparent);
}

.timeline article {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.timeline article::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin: -4px 0 34px;
  background: var(--purple);
  border: 5px solid #f0edff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(113,92,255,.25);
}

.timeline article > span {
  color: var(--purple);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
}

.timeline article strong { display: block; margin-top: 8px; font-size: 19px; }
.timeline article p { margin: 14px 0 0; color: var(--muted); font-size: 13px; }
.timeline__note { margin: 24px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.addons__layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 88px;
}

.addons__intro > p:not(.kicker) { max-width: 560px; margin: 28px 0 0; color: var(--muted); }
.addons__intro > a { display: inline-block; margin-top: 24px; color: var(--purple); font-size: 14px; font-weight: 750; }

.addon-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(34,25,70,.09);
}

.addon-list div {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 26px;
  border-top: 1px solid var(--line);
}

.addon-list div:first-child { border-top: 0; }
.addon-list span { color: #4e4858; font-size: 14px; }
.addon-list strong { color: var(--purple-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; }

.addon-list__upgrade { background: linear-gradient(90deg, #f5f2ff, #fbfaff); }
.addon-list__upgrade strong { font-family: inherit; font-size: 12px; }

.package__layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 86px;
}

.package__copy > p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
}

.package__included {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.package__included li {
  padding: 7px 11px;
  color: #574c70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.package__guide-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 780;
}

.package__guide-link span { transition: transform .2s ease; }
.package__guide-link:hover span { transform: translateX(4px); }

.package__visual > p {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.package-window {
  overflow: hidden;
  background: #0b0912;
  border: 1px solid rgba(113,92,255,.32);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(38,25,83,.2);
}

.package-window__bar {
  display: grid;
  min-height: 54px;
  grid-template-columns: 9px 9px 9px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.package-window__bar > span {
  width: 9px;
  height: 9px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
}

.package-window__bar > span:first-child { background: #d946ef; }
.package-window__bar > span:nth-child(2) { background: #715cff; }
.package-window__bar > span:nth-child(3) { background: #26d3ee; }
.package-window__bar strong { overflow: hidden; margin-left: 7px; font-size: 11px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }

.package-tree { padding: 10px 20px 20px; }

.package-tree__row {
  display: grid;
  min-height: 54px;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.package-tree__row:last-child { border-bottom: 0; }
.package-tree__row > span { color: var(--purple-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.package-tree__row strong { overflow: hidden; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.package-tree__row em { padding: 4px 8px; color: rgba(255,255,255,.43); background: rgba(255,255,255,.06); border-radius: 999px; font-size: 9px; font-style: normal; }
.package-tree__folder { color: #fff; }
.package-tree__folder strong { font-weight: 760; }
.package-tree__child { min-height: 46px; padding-left: 28px; color: rgba(255,255,255,.58); }

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
}

.brief-grid div {
  min-height: 210px;
  padding: 28px;
  background: #0b0a10;
}

.brief-grid span { color: var(--purple-light); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; }
.brief-grid strong { display: block; margin-top: 28px; font-size: 18px; }
.brief-grid p { margin: 12px 0 0; color: rgba(255,255,255,.45); font-size: 13px; }

.faq__layout {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 100px;
}

.faq__heading { position: sticky; top: calc(var(--local-nav-height) + 40px); }
.faq__items { border-top: 1px solid var(--line); }

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

.faq summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--purple); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { margin: -4px 50px 28px 0; color: var(--muted); font-size: 14px; }

.contact {
  padding-top: 0;
  background: linear-gradient(to bottom, #fff 0, #fff 34%, #f4f1fb 34%, #f4f1fb 100%);
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  padding: 58px 64px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 20%, rgba(217,70,239,.22), transparent 23%),
    radial-gradient(circle at 68% 85%, rgba(38,211,238,.09), transparent 26%),
    linear-gradient(135deg, #100c1c, #211647 76%, #2a1954);
  border: 1px solid rgba(170,151,255,.3);
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(53,32,124,.2);
}

.contact__copy .kicker { color: var(--purple-light); }
.contact__copy h2 { font-size: clamp(36px, 3.8vw, 52px); }
.contact__copy > p:not(.kicker) { max-width: 700px; margin: 24px 0 0; color: rgba(255,255,255,.56); font-size: 14px; }
.contact__actions { margin-top: 28px; }

.contact__qr {
  display: grid;
  justify-items: center;
  min-width: 250px;
  text-align: center;
}

.contact__qr-frame {
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28), 0 0 40px rgba(113,92,255,.24);
}

.contact__qr img { display: block; width: 190px; height: 190px; border-radius: 10px; }
.contact__qr strong { margin-top: 16px; font-size: 14px; }
.contact__qr > span { margin-top: 5px; color: rgba(255,255,255,.43); font-size: 10px; }

.site-footer {
  min-height: 96px;
  color: #777184;
  background: #f4f1fb;
  border-top: 1px solid #e8e3f2;
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .72s ease, transform .72s ease;
}

.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-search { display: none; }
  .site-header__tools { display: flex; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) 410px; gap: 42px; }
  .hero h1 { font-size: 58px; }
  .hero__lead { font-size: 18px; }
  .price-card { padding: 24px; }
  .price-card__price strong { font-size: 46px; }
  .rights__layout { grid-template-columns: 1fr; gap: 54px; }
  .rights__intro p:last-child { max-width: 680px; }
  .addons__layout { gap: 54px; }
  .package__layout { gap: 54px; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .hero { min-height: auto; }
  .hero__layout { grid-template-columns: 1fr; padding-top: 84px; padding-bottom: 100px; }
  .hero__content { text-align: center; }
  .hero h1, .hero__lead { margin-right: auto; margin-left: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { width: min(100%, 560px); margin: 0 auto; }
  .mini-card--shared { transform: none; }
  .section-heading { align-items: start; }
  .scenario-tabs { grid-template-columns: repeat(2, 1fr); }
  .scenario-answer { grid-template-columns: 190px minmax(0, 1fr); }
  .scenario-answer > a { grid-column: 2; }
  .price-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-card { width: min(100%, 640px); margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card__eyebrow, .price-card__summary { min-height: auto; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .timeline article::before { margin-bottom: 25px; }
  .addons__layout { grid-template-columns: 1fr; }
  .package__layout { grid-template-columns: 1fr; }
  .package__visual { width: min(100%, 680px); }
  .brief-grid { grid-template-columns: repeat(2, 1fr); }
  .faq__layout { grid-template-columns: 1fr; gap: 46px; }
  .faq__heading { position: static; }
  .contact__panel { grid-template-columns: 1fr; text-align: center; }
  .contact__copy > p:not(.kicker) { margin-right: auto; margin-left: auto; }
  .contact__actions { justify-content: center; }
}

@media (max-width: 680px) {
  :root { --header-height: 60px; --local-nav-height: 48px; }
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .site-header__inner { width: calc(100% - 32px); }
  .brand { min-width: 0; }
  .brand__logo { height: 38px; }
  .brand__name small { display: none; }
  .auth-btn, .user-profile { min-height: 38px; padding: 0 13px; font-size: 12px; }
  .local-nav__title { font-size: 15px; }
  .local-nav__links { gap: 12px; }
  .local-nav__links > a:not(.local-nav__consult) { display: none; }
  .local-nav__consult { padding: 6px 11px; }
  .hero__layout { gap: 50px; padding-top: 68px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero h1 span { display: block; margin-top: 12px; font-size: .48em; line-height: 1.25; }
  .hero__lead { font-size: 17px; }
  .desktop-only { display: none; }
  .hero__actions { display: grid; width: 100%; grid-template-columns: 1fr 1fr; }
  .button { min-height: 46px; padding: 0 17px; font-size: 13px; }
  .hero__trust { display: grid; gap: 8px; margin-top: 34px; }
  .hero__visual { padding: 14px; border-radius: 22px; }
  .mini-card { min-height: 92px; grid-template-columns: 28px minmax(0, 1fr) auto; padding: 16px 14px; }
  .mini-card div strong { font-size: 16px; }
  .mini-card > p { font-size: 22px; }
  .band { padding: 82px 0; }
  .section-heading { display: block; margin-bottom: 40px; }
  .section-heading h2, .rights__intro h2, .addons__intro h2, .package__copy h2, .faq__heading h2, .contact__copy h2 { font-size: 38px; }
  .section-heading > p { margin-top: 20px; text-align: left; }
  .scenario-tabs { grid-template-columns: 1fr; border-radius: 16px; }
  .scenario-tabs button { min-height: 50px; }
  .scenario-answer { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .scenario-answer > a { grid-column: auto; }
  .rights__layout { gap: 42px; }
  .rights__matrix { border-radius: 18px; }
  .rights__row { min-height: 74px; grid-template-columns: 1.1fr 1.2fr .72fr; gap: 8px; padding: 0 14px; }
  .rights__row--head { min-height: 46px; }
  .rights__row strong { font-size: 13px; }
  .rights__row span { font-size: 11px; }
  .rights__row em { padding: 4px 7px; font-size: 9px; }
  .price-card { padding: 24px 22px; border-radius: 22px; }
  .price-card__price strong { font-size: 48px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: 0; }
  .addons__layout { gap: 42px; }
  .package__layout { gap: 42px; }
  .package-window { border-radius: 18px; }
  .package-window__bar { padding: 0 14px; }
  .package-tree { padding: 8px 14px 14px; }
  .package-tree__row { grid-template-columns: 24px minmax(0, 1fr) auto; gap: 8px; }
  .package-tree__row strong { font-size: 10px; }
  .package-tree__child { padding-left: 10px; }
  .addon-list div { min-height: 66px; padding: 0 18px; }
  .addon-list span { font-size: 12px; }
  .addon-list strong { font-size: 12px; }
  .brief-grid { grid-template-columns: 1fr; }
  .brief-grid div { min-height: 174px; }
  .faq summary { min-height: 76px; font-size: 14px; }
  .faq details p { margin-right: 24px; }
  .contact { padding-top: 0; background: #f4f1fb; }
  .contact__panel { width: 100%; padding: 52px 22px; border-radius: 0; }
  .contact__actions { display: grid; grid-template-columns: 1fr; }
  .contact__qr img { width: 168px; height: 168px; }
  .site-footer { padding: 24px 0; }
  .site-footer__inner { display: block; }
  .site-footer__inner span { display: block; margin: 4px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
