:root {
  color-scheme: light;
  --paper: #f4f2ed;
  --paper-deep: #e9e6df;
  --ink: #17171b;
  --ink-soft: #313138;
  --night: #0b0b0d;
  --night-soft: #131318;
  --muted: #77747b;
  --muted-light: #a09da8;
  --line: rgba(23, 23, 27, .15);
  --line-soft: rgba(23, 23, 27, .08);
  --line-dark: rgba(255, 255, 255, .15);
  --purple: #7c42e9;
  --purple-bright: #a26cff;
  --purple-soft: #e8ddff;
  --purple-ink: #cbb3ff;
  --signature-glow: rgba(162, 108, 255, .26);
  --signature-glow-strong: rgba(162, 108, 255, .42);
  --success: #9fe8ba;
  --danger: #ffb4bf;
  --radius-card: 20px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.site-page {
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 92% 3%, rgba(162, 108, 255, .08), transparent 24rem),
    var(--paper);
}

::selection { background: var(--purple-soft); color: var(--ink); }

img { max-width: 100%; }

a { color: inherit; }

button,
input { font: inherit; }

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

button { cursor: pointer; }

button:disabled { cursor: wait; }

:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 4px;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(11, 11, 13, .94);
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  width: 84px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav::-webkit-scrollbar { display: none; }

.main-nav a {
  flex: 0 0 auto;
  color: #aaa7b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  transition: color .2s ease;
}

.main-nav a:hover { color: #fff; }

.header-cta {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(162, 108, 255, .65);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(124, 66, 233, .16);
  box-shadow: 0 0 22px rgba(162, 108, 255, .1), 0 1px 0 rgba(255, 255, 255, .06) inset;
  color: #eee7ff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.header-cta:hover { border-color: var(--purple-bright); background: rgba(124, 66, 233, .3); box-shadow: 0 0 28px rgba(162, 108, 255, .2); transform: translateY(-1px); }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 18px;
  background: linear-gradient(135deg, #242229, var(--ink));
  box-shadow: 0 10px 24px rgba(23, 23, 27, .16), 0 0 0 1px rgba(255, 255, 255, .05) inset;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover { background: linear-gradient(135deg, var(--purple), #6330c5); box-shadow: 0 12px 26px rgba(124, 66, 233, .24), 0 0 22px rgba(162, 108, 255, .13); transform: translateY(-2px); }

.button:active { transform: translateY(0); }

.button-secondary {
  border-color: var(--line-dark);
  background: transparent;
  color: inherit;
}

.button-secondary:hover { border-color: var(--purple-bright); background: rgba(162, 108, 255, .12); }

.button-block { width: 100%; }

.eyebrow,
.section-label {
  margin: 0;
  color: var(--purple);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow .dot { margin: 0 5px; color: var(--purple); }

.accent { color: var(--purple); }

.section { padding: 92px 0; }

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

.section-heading h2 {
  margin: 14px 0 16px;
  font-size: clamp(2.35rem, 10vw, 5rem);
  font-weight: 720;
  letter-spacing: -.075em;
  line-height: .94;
}

.section-heading p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-marker {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
}

.section-marker i {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--purple);
}

.section-marker-light { color: var(--muted-light); }

.hero {
  display: grid;
  gap: 25px;
  padding-top: 38px;
}

.hero-copy { padding: 14px 0 0; }

.hero-kicker,
.stage-topline,
.selector-heading,
.order-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-code,
.selector-status,
.order-card-top > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}

.hero h1 {
  max-width: 600px;
  margin: 21px 0 19px;
  font-size: clamp(3.5rem, 17vw, 7rem);
  font-weight: 740;
  letter-spacing: -.09em;
  line-height: .84;
}

.hero h1 em {
  color: var(--purple);
  font-style: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 28px;
}

.quiet-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.quiet-link:hover { color: var(--ink); }

.hero-signals {
  display: grid;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.hero-signals li {
  display: flex;
  min-height: 39px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
}

.hero-signals li::before {
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--purple);
  content: "";
}

.hero-stage {
  position: relative;
  min-height: 354px;
  overflow: hidden;
  margin: 2px -16px 0;
  border-radius: 0 0 27px 27px;
  padding: 18px 16px 0;
  background: var(--night);
  color: #fff;
}

.hero-stage::before {
  position: absolute;
  top: 26%;
  right: -100px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(162, 108, 255, .35);
  border-radius: 50%;
  content: "";
}

.hero-stage::after {
  position: absolute;
  bottom: 56px;
  left: -70px;
  width: 180px;
  height: 1px;
  background: var(--purple-bright);
  box-shadow: 0 0 30px rgba(162, 108, 255, .6);
  content: "";
  transform: rotate(-25deg);
}

.stage-topline {
  position: relative;
  z-index: 1;
  color: #87848e;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.stage-topline span:last-child { color: #d5c2ee; }

.stage-core {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 286px;
  place-items: center;
  padding: 18px 0 28px;
}

.stage-core::before {
  position: absolute;
  width: min(78vw, 290px);
  height: min(78vw, 290px);
  border: 1px solid rgba(162, 108, 255, .3);
  border-radius: 50%;
  content: "";
}

.stage-core img {
  position: relative;
  width: min(88%, 355px);
  height: auto;
  border-radius: 3px;
}

.hero-stage figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  border-top: 1px solid var(--line-dark);
  color: #9c99a4;
  font-size: 9px;
  letter-spacing: .06em;
}

.hero-stage figcaption strong { color: #fff; font-size: 10px; }

.brand-band {
  border-block: 1px solid var(--line);
  background: var(--paper-deep);
}

.brand-band-inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.brand-band strong { font-size: 12px; letter-spacing: .14em; }

.brand-band p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .05em;
  text-align: right;
  text-transform: uppercase;
}

.brand-band-inner > span { color: var(--purple); font-size: 18px; }

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 14px;
  width: 1px;
  background: linear-gradient(var(--purple), var(--line));
  content: "";
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 22px;
  gap: 15px;
  min-height: 130px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 25px 0 22px;
}

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

.process-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--purple);
  border-radius: 50%;
  background: var(--paper);
  color: var(--purple);
  font-size: 9px;
  font-weight: 850;
}

.process-item h3 { margin: 2px 0 8px; font-size: 18px; font-weight: 740; letter-spacing: -.04em; }

.process-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.62; }

.process-arrow { padding-top: 3px; color: var(--purple); font-size: 19px; }

.principles {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 54px;
  overflow: hidden;
  border-radius: 18px;
  padding: 27px 23px 29px;
  background: var(--ink);
  color: #fff;
}

.principles-mark {
  position: absolute;
  top: -27px;
  right: 16px;
  color: rgba(162, 108, 255, .35);
  font-family: Georgia, serif;
  font-size: 140px;
  line-height: 1;
}

.principles h3 { position: relative; z-index: 1; margin: 0; font-size: 34px; font-weight: 720; letter-spacing: -.07em; line-height: .95; }

.principles .accent { color: var(--purple-bright); }

.principles-copy { position: relative; z-index: 1; max-width: 560px; margin: 0; color: #aaa7b0; font-size: 13px; line-height: 1.7; }

.profile-section {
  overflow: hidden;
  background: var(--night);
  color: #fff;
}

.profile-intro { display: grid; gap: 30px; }

.profile-section .section-heading { margin-bottom: 0; }

.profile-section .section-heading p:not(.eyebrow) { color: #aaa7b0; }

.profile-section .accent { color: var(--purple-bright); }

.profile-note {
  max-width: 430px;
  margin: 0;
  border-left: 1px solid var(--purple-bright);
  padding: 2px 0 2px 17px;
  color: #aaa7b0;
  font-size: 12px;
  line-height: 1.7;
}

.profile-wall { position: relative; margin-top: 43px; }

.profile-wall-line { position: absolute; top: 0; right: 0; left: 0; height: 1px; background: var(--line-dark); }

.profile-rail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }

.profile-card {
  display: grid;
  grid-template-columns: 24px 54px 1fr;
  min-height: 96px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
}

.profile-index { color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .08em; }

.profile-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(162, 108, 255, .7);
  border-radius: 50%;
  background: #232029;
}

.profile-avatar img { display: block; width: 100%; height: 100%; object-fit: cover; }

.profile-card strong { overflow-wrap: anywhere; color: #f2eff5; font-size: 11px; font-weight: 700; line-height: 1.25; }

.profile-disclaimer { margin: 21px 0 0; color: #77747f; font-size: 9px; letter-spacing: .07em; line-height: 1.5; }

.buy-section { background: var(--paper-deep); }

.buy-heading { max-width: 660px; }

.shop-shell {
  overflow: hidden;
  border: 1px solid rgba(162, 108, 255, .2);
  border-radius: 24px;
  background: var(--night);
  box-shadow: 0 26px 80px rgba(32, 24, 50, .16), 0 0 0 1px rgba(255, 255, 255, .03) inset;
  color: #fff;
}

.purchase-progress {
  display: grid;
  grid-template-columns: auto minmax(18px, 1fr) auto minmax(18px, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  border-bottom: 1px solid var(--line-dark);
  padding: 0 19px;
  color: #77747f;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}

.purchase-progress span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: color .25s ease, opacity .25s ease; }

.purchase-progress span b { color: #5e5b64; font-size: 9px; transition: color .25s ease; }

.purchase-progress span.is-current { color: var(--purple-ink); }

.purchase-progress span.is-current b { color: var(--purple-bright); }

.purchase-progress i { display: block; height: 1px; background: var(--line-dark); }

.shop-top { display: grid; gap: 0; }

.selector-copy { padding: 29px 19px 27px; }

.selector-heading .section-label { color: var(--purple-bright); }

.selector-status { display: inline-flex; align-items: center; gap: 6px; color: #8fd9aa; }

.selector-status i { display: block; width: 5px; height: 5px; border-radius: 50%; background: #8fd9aa; }

.selector-copy h3 { margin: 19px 0 10px; font-size: clamp(2.2rem, 11vw, 4.4rem); font-weight: 710; letter-spacing: -.08em; line-height: .88; }

.selector-copy h3 em { color: var(--purple-bright); font-style: normal; }

.selector-copy > p:not(.package-list-label) { max-width: 530px; margin: 0; color: #aaa7b0; font-size: 13px; line-height: 1.7; }

.package-benefits { display: grid; margin-top: 29px; border-top: 1px solid var(--line-dark); }

.package-benefit { display: grid; grid-template-columns: 28px 1fr; gap: 8px; min-height: 63px; align-items: center; border-bottom: 1px solid var(--line-dark); }

.package-benefit > span { color: var(--purple-bright); font-size: 9px; font-weight: 850; letter-spacing: .1em; }

.package-benefit strong { display: block; color: #f4f1f7; font-size: 11px; line-height: 1.2; }

.package-benefit small { display: block; margin-top: 4px; color: #77747f; font-size: 10px; line-height: 1.35; }

.package-list-label { margin-top: 29px !important; color: #77747f !important; font-size: 9px !important; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  overflow: visible;
  padding: 7px 1px 15px;
}

.package-grid::after { display: none; }

.package,
.more-packages,
.extra-package {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #aaa7b0;
  text-align: left;
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, color .28s ease, transform .28s ease;
}

.package {
  display: grid;
  width: 100%;
  flex: none;
  min-height: 282px;
  grid-template-rows: auto 1fr auto auto;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--radius-card);
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .018) 58%, rgba(124, 66, 233, .07));
  box-shadow: 0 16px 35px rgba(0, 0, 0, .14), 0 1px 0 rgba(255, 255, 255, .06) inset;
}

.package::before {
  position: absolute;
  top: -55px;
  right: -55px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 108, 255, .2), transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.package-topline { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

.package-code { color: #77747f; font-size: 8px; font-weight: 850; letter-spacing: .16em; }

.package-main { display: flex; flex-direction: column; justify-content: center; min-height: 140px; padding-top: 12px; }

.package-index { color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .1em; }

.package-main .package-quantity { color: #f4f1f7; font-size: clamp(3.25rem, 16vw, 5.2rem); font-weight: 770; letter-spacing: -.11em; line-height: .8; }

.package-unit { margin-top: 11px; color: #77747f; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.package-service { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 12px; color: #aaa7b0; font-size: 10px; line-height: 1.4; }

.package-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 18px; }

.package-price { color: #fff; font-size: 24px; font-weight: 850; letter-spacing: -.07em; line-height: 1; }

.package-select { display: inline-flex; min-height: 34px; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; padding: 0 11px; color: #d5c2ee; font-size: 8px; font-weight: 850; letter-spacing: .09em; }

.package-check { color: var(--purple-bright); font-size: 15px; opacity: 0; transform: scale(.65); transition: opacity .2s ease, transform .2s ease; }

.package:hover { border-color: rgba(162, 108, 255, .55); color: #fff; transform: translateY(-3px); }

.package:hover::before,
.package.is-active::before { opacity: 1; }

.package.is-active {
  border-color: rgba(190, 156, 255, .82);
  background: linear-gradient(145deg, rgba(124, 66, 233, .52), rgba(46, 28, 84, .88) 62%, rgba(11, 11, 13, .96));
  box-shadow: 0 20px 48px rgba(74, 35, 154, .28), 0 0 0 1px rgba(162, 108, 255, .16) inset, 0 0 34px rgba(162, 108, 255, .12);
  color: #fff;
  transform: translateY(-4px);
}

.package.is-active .package-index,
.package.is-active .package-code,
.package.is-active .package-unit,
.package.is-active .package-service { color: #e5d8ff; }

.package.is-active .package-quantity { color: #fff; text-shadow: 0 0 24px rgba(210, 190, 255, .18); }

.package.is-active .package-check { opacity: 1; transform: scale(1); color: #fff; text-shadow: 0 0 18px rgba(210, 190, 255, .8); }

.package.is-active .package-select { border-color: rgba(255, 255, 255, .45); background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, .13); color: var(--ink); }

.package.is-active .package-select span { color: var(--purple); }

.package:active { transform: translateY(-1px) scale(.99); }

.package:disabled,
.extra-package:disabled,
.more-packages:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

.package:focus-visible,
.extra-package:focus-visible,
.more-packages:focus-visible { outline-color: var(--purple-bright); outline-offset: 4px; }

.more-packages { display: flex; width: 100%; min-height: 52px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); padding: 0; color: #d5c2ee; font-size: 10px; font-weight: 800; letter-spacing: .05em; }

.more-packages:hover { color: #fff; }

.more-packages[aria-expanded="true"] { color: var(--purple-bright); }

.more-packages > span { display: inline-block; font-size: 17px; transition: transform .2s ease; }

.more-packages[aria-expanded="true"] > span { transform: rotate(180deg); }

.extra-packages { display: grid; gap: 10px; margin-top: 12px; }

.extra-package { display: grid; min-height: 76px; grid-template-columns: 28px 1fr auto 20px; align-items: center; gap: 10px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; padding: 13px 14px; background: rgba(255, 255, 255, .025); }

.extra-package-index { color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .08em; }

.extra-package-main strong { display: block; color: #eeeaf3; font-size: 13px; }

.extra-package-main small { display: block; margin-top: 3px; color: #77747f; font-size: 9px; }

.extra-package-price { color: #eeeaf3; font-size: 12px; font-weight: 850; white-space: nowrap; }

.extra-package-check { color: var(--purple-bright); font-size: 13px; opacity: 0; transform: scale(.65); transition: opacity .2s ease, transform .2s ease; }

.extra-package:hover { border-color: rgba(162, 108, 255, .45); color: #fff; transform: translateY(-2px); }

.extra-package.is-active { border-color: rgba(190, 156, 255, .76); background: linear-gradient(110deg, rgba(124, 66, 233, .35), rgba(255, 255, 255, .04)); color: #fff; box-shadow: 0 0 28px rgba(162, 108, 255, .1); }

.extra-package.is-active .extra-package-index,
.extra-package.is-active .extra-package-main small { color: #e5d8ff; }

.extra-package.is-active .extra-package-check { opacity: 1; transform: scale(1); }

.order-card { margin: 0 19px 20px; border: 1px solid rgba(162, 108, 255, .24); border-top: 2px solid var(--purple-bright); border-radius: var(--radius-card); padding: 22px 19px 19px; background: linear-gradient(145deg, #fbfaf7, #ebe7df); box-shadow: 0 18px 42px rgba(0, 0, 0, .16), 0 1px 0 #fff inset; color: var(--ink); }

.order-card-top .section-label { color: var(--purple); font-size: 9px; }

.order-card-top > span { color: var(--muted); }

.order-card h3 { margin: 21px 0 5px; font-size: clamp(3.2rem, 17vw, 5rem); font-weight: 740; letter-spacing: -.1em; line-height: .78; }

.order-card h3 small { display: block; margin-top: 10px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .14em; }

.order-service { margin: 22px 0 20px; border-bottom: 1px solid var(--line); padding-bottom: 18px; color: var(--muted); font-size: 11px; }

.order-service strong { display: block; margin-top: 5px; color: var(--ink); font-size: 14px; }

.order-price-row { display: flex; align-items: end; justify-content: space-between; gap: 12px; }

.order-price-label { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .14em; }

.order-price { color: var(--ink); font-size: 25px; font-weight: 850; letter-spacing: -.06em; }

.order-note { display: flex; gap: 8px; margin: 16px 0 18px; color: var(--muted); font-size: 10px; line-height: 1.55; }

.order-note::before { color: var(--purple); content: "✓"; font-weight: 900; }

.order-card .button { background: linear-gradient(135deg, #242229, var(--ink)); }

.order-card .button:hover { background: var(--purple); }

.checkout-step,
.payment-panel { border-top: 1px solid var(--line-dark); background: radial-gradient(circle at 86% 0%, rgba(162, 108, 255, .09), transparent 22rem), var(--night-soft); }

.checkout-step { padding: 29px 19px 32px; }

.step-header { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 26px; }

.step-index { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; border: 1px solid var(--purple-bright); border-radius: 50%; color: var(--purple-bright); font-size: 9px; font-weight: 850; }

.step-header h3 { margin: 0 0 5px; color: #fff; font-size: 20px; font-weight: 720; letter-spacing: -.05em; line-height: 1.05; }

.step-header p { margin: 0; color: #96929c; font-size: 12px; line-height: 1.55; }

.review-line { display: grid; gap: 0; margin: 0 0 26px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 0; }

.review-line div { display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 45px; border-bottom: 1px solid rgba(255, 255, 255, .08); }

.review-line div:last-child { border-bottom: 0; }

.review-line dt { color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.review-line dd { margin: 0; color: #fff; font-size: 12px; font-weight: 700; text-align: right; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.field { display: grid; gap: 7px; }

.field.full { grid-column: 1 / -1; }

.field label { color: #d8d4de; font-size: 11px; font-weight: 700; }

.field label span { color: #77747f; font-weight: 500; }

.field input { width: 100%; min-height: 47px; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .19); border-radius: 0; outline: 0; padding: 0 2px; background: transparent; color: #fff; font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }

.field input::placeholder { color: #625f68; }

.field input:focus { border-color: var(--purple-bright); box-shadow: 0 2px 0 var(--purple-bright); }

.field input[aria-invalid="true"] { border-color: var(--danger); }

.consent { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 9px; margin-top: 3px; color: #96929c; font-size: 11px; line-height: 1.5; }

.consent input { width: 16px; height: 16px; flex: 0 0 16px; accent-color: var(--purple); }

.consent a { color: #d9c5f6; }

.form-note { margin: 17px 0 0; color: #77747f; font-size: 10px; line-height: 1.55; }

.form-error,
.payment-error { min-height: 20px; margin: 14px 0 0; color: var(--danger); font-size: 12px; }

.form-error:not(:empty),
.payment-error:not(:empty) { border: 1px solid rgba(255, 180, 191, .24); border-radius: 12px; padding: 11px 12px; background: rgba(214, 71, 94, .09); }

.checkout-step .button { margin-top: 5px; }

.payment-panel { padding: 31px 19px 34px; color: #fff; }

.payment-panel.is-error { background: radial-gradient(circle at 86% 0%, rgba(214, 71, 94, .1), transparent 22rem), var(--night-soft); }

.payment-head { display: flex; flex-direction: column; gap: 19px; }

.status-pill { display: inline-flex; min-height: 25px; align-items: center; border: 1px solid rgba(162, 108, 255, .5); border-radius: 999px; padding: 0 9px; background: rgba(124, 66, 233, .12); color: #d9c5f6; font-size: 9px; font-weight: 850; letter-spacing: .1em; }

.status-pill.is-success { border-color: rgba(159, 232, 186, .4); background: rgba(75, 177, 113, .12); color: var(--success); }

.status-pill.is-warning { border-color: rgba(255, 203, 130, .4); background: rgba(203, 136, 54, .12); color: #ffd39a; }

.status-pill.is-danger { border-color: rgba(255, 180, 191, .4); background: rgba(214, 71, 94, .12); color: var(--danger); }

.payment-head h3 { margin: 17px 0 7px; color: #fff; font-size: 30px; font-weight: 720; letter-spacing: -.07em; line-height: .95; }

.payment-head p { margin: 0; color: #aaa7b0; font-size: 12px; line-height: 1.6; }

.payment-total { border-left: 1px solid var(--line-dark); padding-left: 13px; }

.payment-total span { display: block; color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .1em; }

.payment-total strong { display: block; margin-top: 5px; color: #fff; font-size: 23px; letter-spacing: -.05em; }

.payment-layout { display: grid; gap: 26px; margin-top: 28px; }

.qr-frame { position: relative; display: grid; width: min(100%, 280px); aspect-ratio: 1; margin: 0 auto; place-items: center; border: 8px solid #fff; border-radius: 24px; padding: 13px; background: #fff; box-shadow: 0 18px 50px rgba(0, 0, 0, .24), 0 0 38px rgba(162, 108, 255, .14); }

.qr-kicker { position: absolute; top: -17px; left: 0; z-index: 1; border-radius: 999px; padding: 4px 7px; background: rgba(11, 11, 13, .88); color: #d5c2ee; font-size: 8px; font-weight: 850; letter-spacing: .13em; }

.qr-frame img { display: block; width: 100%; height: 100%; object-fit: contain; }

.payment-info h4 { margin: 0 0 9px; color: #fff; font-size: 17px; letter-spacing: -.035em; }

.payment-info > p { margin: 0; color: #aaa7b0; font-size: 12px; line-height: 1.65; }

.copy-label { display: block; margin: 24px 0 8px; color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .1em; }

.copy-row { display: flex; gap: 8px; }

.copy-row input { width: 100%; min-width: 0; min-height: 44px; border: 1px solid var(--line-dark); border-radius: 2px; padding: 0 10px; background: transparent; color: #c8c3ce; font-size: 10px; }

.copy-row .button { min-height: 44px; padding: 0 13px; }

.payment-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 25px 0 0; }

.payment-meta div { border-top: 1px solid var(--line-dark); padding-top: 10px; }

.payment-meta dt { color: #77747f; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }

.payment-meta dd { margin: 4px 0 0; color: #fff; font-size: 11px; font-weight: 700; overflow-wrap: anywhere; }

.payment-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.payment-actions .button { min-height: 42px; border-radius: 10px; font-size: 9px; }

.payment-footnote { margin: 26px 0 0; color: #77747f; font-size: 10px; line-height: 1.6; }

.faq-section { padding-bottom: 110px; }

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

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

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

summary { display: flex; min-height: 61px; align-items: center; justify-content: space-between; gap: 15px; cursor: pointer; list-style: none; color: var(--ink); font-size: 14px; font-weight: 700; letter-spacing: -.02em; }

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

summary::after { color: var(--purple); content: "+"; font-size: 20px; font-weight: 400; transition: transform .2s ease; }

details[open] summary::after { transform: rotate(45deg); }

details p { max-width: 620px; margin: -2px 30px 19px 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

details a { color: var(--purple); }

.site-footer { border-top: 1px solid var(--line); background: var(--paper); padding: 33px 0 91px; }

.footer-inner { display: flex; flex-direction: column; gap: 23px; }

.footer-brand strong { font-size: 17px; letter-spacing: -.04em; }

.footer-brand p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }

.footer-links { display: flex; flex-wrap: wrap; gap: 14px 20px; }

.footer-links a { color: var(--muted); font-size: 11px; text-decoration: none; }

.footer-links a:hover { color: var(--ink); }

.mobile-dock { position: fixed; z-index: 25; right: 10px; bottom: 10px; left: 10px; display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid rgba(162, 108, 255, .3); border-radius: 16px; padding: 0 8px 0 14px; background: rgba(11, 11, 13, .94); box-shadow: 0 14px 40px rgba(0, 0, 0, .2), 0 0 28px rgba(162, 108, 255, .09); color: #fff; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.mobile-dock > span { color: #aaa7b0; font-size: 10px; }

.mobile-dock a { display: inline-flex; min-height: 40px; align-items: center; gap: 8px; border-radius: 11px; padding: 0 14px; background: linear-gradient(135deg, var(--purple), #6330c5); box-shadow: 0 8px 20px rgba(124, 66, 233, .24); color: #fff; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

[hidden] { display: none !important; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px, 1px, 1px, 1px) !important; white-space: nowrap !important; }

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

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .profile-card:nth-child(2) { transition-delay: .04s; }
  .profile-card:nth-child(3) { transition-delay: .08s; }
  .profile-card:nth-child(4) { transition-delay: .12s; }
}

.legal-page { background: var(--paper); }

.legal-main { max-width: 900px; padding: 44px 0 90px; }

.legal-header { border-bottom: 1px solid var(--line); padding-bottom: 34px; }

.legal-header h1 { max-width: 700px; margin: 18px 0 13px; font-size: clamp(2.5rem, 11vw, 5rem); font-weight: 730; letter-spacing: -.08em; line-height: .9; }

.legal-header > p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.back-link { display: inline-flex; margin-bottom: 35px; color: var(--purple); font-size: 12px; font-weight: 700; text-decoration: none; }

.back-link:hover { color: var(--ink); }

.legal-content section { border-bottom: 1px solid var(--line); padding: 27px 0; }

.legal-content h2 { margin: 0 0 10px; font-size: 20px; letter-spacing: -.04em; }

.legal-content p,
.legal-content li { color: var(--muted); font-size: 14px; line-height: 1.75; }

.legal-content p { margin: 0 0 12px; }

.legal-content p:last-child { margin-bottom: 0; }

.legal-content ul { margin: 0; padding-left: 20px; }

.legal-content a { color: var(--purple); }

@media (min-width: 700px) {
  body.site-page { padding-bottom: 0; }
  .container { width: min(var(--max-width), calc(100% - 64px)); }
  .header-inner { min-height: 72px; }
  .brand { width: 103px; height: 49px; }
  .header-cta { min-height: 39px; padding-inline: 16px; font-size: 10px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); align-items: center; gap: 54px; padding-top: 76px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-stage { min-height: 540px; margin: 0; border-radius: 0 0 4px 4px; padding: 22px 24px 0; }
  .stage-core { min-height: 430px; }
  .hero-stage figcaption { min-height: 57px; }
  .section { padding: 130px 0; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; }
  .process-grid::before { display: none; }
  .process-item { min-height: 185px; }
  .process-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .profile-intro { grid-template-columns: 1.1fr .9fr; align-items: end; gap: 60px; }
  .profile-rail { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0 25px; }
  .profile-card { grid-template-columns: 22px 54px 1fr; }
  .purchase-progress { padding-inline: 26px; }
  .shop-top { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: 26px; padding: 25px 26px 26px; }
  .selector-copy { padding: 0; }
  .package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding: 7px 0 15px; scroll-snap-type: none; }
  .package-grid::after { display: none; }
  .package { width: auto; min-height: 248px; }
  .package-main { min-height: 118px; }
  .extra-packages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .order-card { position: sticky; top: 94px; align-self: start; margin: 0; }
  .checkout-step, .payment-panel { padding: 42px 46px; }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .payment-head { flex-direction: row; align-items: end; justify-content: space-between; }
  .payment-total { text-align: right; }
  .payment-layout { grid-template-columns: 280px 1fr; align-items: center; }
  .mobile-dock { display: none; }
  .site-footer { padding-bottom: 48px; }
  .footer-inner { flex-direction: row; align-items: end; justify-content: space-between; }
}

@media (max-width: 520px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: 9px; }
  .header-cta { padding-inline: 10px; font-size: 8px; }
  .profile-card { grid-template-columns: 19px 49px 1fr; gap: 8px; }
  .profile-avatar { width: 49px; height: 49px; }
  .profile-card strong { font-size: 10px; }
  .order-card h3 { font-size: 3.6rem; }
}

@media (max-width: 360px) {
  .main-nav { display: none; }
  .hero h1 { font-size: 3.25rem; }
  .brand-band-inner { grid-template-columns: auto 1fr; }
  .brand-band-inner > span { display: none; }
  .brand-band p { font-size: 9px; }
  .profile-rail { grid-template-columns: 1fr; }
}

/* Final mobile-first package architecture */
body.site-page {
  background:
    radial-gradient(circle at 18% 9%, rgba(162, 108, 255, .11), transparent 20rem),
    linear-gradient(180deg, #f8f7f4 0%, #f2eff8 58%, #f7f6f3 100%);
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, .16);
  background: rgba(10, 9, 12, .88);
  box-shadow: 0 12px 38px rgba(16, 9, 26, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  padding-bottom: 32px;
}

.hero-copy::after {
  position: absolute;
  top: 26px;
  right: -34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(124, 66, 233, .16);
  border-radius: 50%;
  box-shadow: 0 0 44px rgba(162, 108, 255, .12);
  content: "";
  pointer-events: none;
}

.hero-stage {
  border: 1px solid rgba(162, 108, 255, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 37%, rgba(124, 66, 233, .23), transparent 13rem),
    linear-gradient(145deg, #09090b 0%, #15101e 65%, #0b0b0d 100%);
  box-shadow: 0 24px 68px rgba(49, 25, 84, .2), 0 0 42px rgba(162, 108, 255, .08);
}

.hero-stage::before { border-color: rgba(190, 156, 255, .28); box-shadow: 0 0 54px rgba(162, 108, 255, .08); }
.stage-core::before { border-color: rgba(190, 156, 255, .22); box-shadow: 0 0 42px rgba(162, 108, 255, .12); }
.hero-stage figcaption { border-top-color: rgba(255, 255, 255, .14); }

.profile-section {
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    radial-gradient(circle at 92% 10%, rgba(124, 66, 233, .24), transparent 21rem),
    #09090b;
  background-size: 100% 54px, auto, auto;
}

.profile-wall { border-radius: 22px; padding: 0 15px; background: rgba(255, 255, 255, .025); box-shadow: 0 0 0 1px rgba(255, 255, 255, .06) inset; }
.profile-wall-line { right: 15px; left: 15px; background: rgba(255, 255, 255, .13); }
.profile-card { border-bottom-color: rgba(255, 255, 255, .11); }
.profile-avatar { box-shadow: 0 0 22px rgba(162, 108, 255, .15); }

.buy-section {
  background:
    radial-gradient(circle at 3% 14%, rgba(162, 108, 255, .14), transparent 18rem),
    #f0edf5;
}

.buy-heading h2 { max-width: 640px; }

.shop-shell {
  border-color: rgba(162, 108, 255, .3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(124, 66, 233, .2), transparent 22rem),
    linear-gradient(150deg, #09090b, #14101c 63%, #0b0b0d);
  box-shadow: 0 28px 90px rgba(55, 27, 91, .24), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.shop-top { display: grid; gap: 0; }
.selector-copy { padding: 27px 16px 22px; }
.selector-heading { min-height: 24px; }
.selector-copy h3 { font-size: clamp(2.55rem, 12vw, 4.8rem); }
.package-benefits { margin-top: 25px; }
.package-list-label { margin-top: 26px !important; }

.package-catalog { display: grid; gap: 26px; margin-top: 4px; }
.package-group { min-width: 0; }

.package-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 13px;
  color: #77747f;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.package-group-kicker { color: #eee7ff; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.package-group-heading > span:last-child { text-align: right; }

.package-grid,
.extra-packages.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 11px;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.package-grid::after { display: none; }

.package,
.extra-package {
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: none;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 19px;
  padding: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 62%, rgba(124, 66, 233, .09));
  box-shadow: 0 15px 30px rgba(0, 0, 0, .16), 0 1px 0 rgba(255, 255, 255, .07) inset;
}

.package {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 0;
}

.package-topline { position: relative; min-height: 21px; align-items: flex-start; }
.package-role { min-width: 0; color: #a9a4b1; font-size: 8px; font-weight: 900; letter-spacing: .12em; line-height: 1.25; }
.package-code { display: none; }
.package-badge { position: absolute; top: 25px; right: 22px; max-width: 56%; color: #d9c5f6; font-size: 7px; font-weight: 900; letter-spacing: .09em; line-height: 1.2; text-align: right; }
.package-check { position: absolute; top: -1px; right: 0; }

.package-main { min-height: 0; padding: 19px 0 12px; }
.package-main .package-quantity { display: block; font-size: clamp(2.75rem, 16vw, 4.6rem); letter-spacing: -.1em; line-height: .82; }
.package-unit { display: block; margin-top: 10px; }
.package-service { border-top-color: rgba(255, 255, 255, .12); padding-top: 10px; }

.package-economy { display: grid; gap: 4px; border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 10px; }
.package-unit-price { color: #f1eaff; font-size: 10px; font-weight: 800; letter-spacing: .01em; }
.package-saving { color: #98929f; font-size: 9px; line-height: 1.35; }
.package-bottom { margin-top: 13px; border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 12px; }
.package-price { font-size: 22px; }
.package-select { min-height: 32px; padding-inline: 10px; }

.package-entry { min-height: 224px; background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018)); }
.package-growth { min-height: 238px; }
.package-recommended { min-height: 278px; border-color: rgba(175, 139, 255, .55); background: linear-gradient(145deg, rgba(124, 66, 233, .25), rgba(34, 23, 55, .8) 68%, rgba(11, 11, 13, .98)); box-shadow: 0 18px 42px rgba(74, 35, 154, .22), 0 0 35px rgba(162, 108, 255, .1), 0 1px 0 rgba(255, 255, 255, .12) inset; }
.package-value { min-height: 292px; border-color: rgba(198, 170, 255, .68); background: linear-gradient(145deg, rgba(162, 108, 255, .28), rgba(44, 25, 75, .9) 67%, rgba(11, 11, 13, .98)); box-shadow: 0 20px 48px rgba(74, 35, 154, .26), 0 0 44px rgba(162, 108, 255, .14), 0 1px 0 rgba(255, 255, 255, .15) inset; }
.package-recommended .package-badge, .package-value .package-badge { color: #f1eaff; }

.package:hover { transform: translateY(-2px); }
.package.is-active { transform: translateY(-3px); }
.package.is-active .package-role,
.package.is-active .package-unit-price,
.package.is-active .package-saving { color: #fff; }

.extra-packages.package-grid { gap: 8px; }
.extra-package { display: grid; grid-template-columns: 25px minmax(0, 1fr) auto 17px; align-items: center; gap: 9px; min-height: 83px; padding: 12px 13px; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.extra-package-index { color: #77747f; font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.extra-package-main { min-width: 0; }
.extra-package-main strong { color: #f2eff5; font-size: 13px; line-height: 1.15; }
.extra-package-main small { margin-top: 5px; color: #96919e; font-size: 9px; line-height: 1.35; }
.extra-package-price { font-size: 13px; }
.extra-package-check { font-size: 14px; }
.extra-package.is-active { background: linear-gradient(110deg, rgba(124, 66, 233, .34), rgba(255, 255, 255, .04)); }

.economy-note { margin: 14px 0 0; border-left: 1px solid var(--purple-bright); padding-left: 11px; color: #96919e; font-size: 9px; line-height: 1.5; }

.order-card { margin: 0 16px 20px; border-radius: 21px; padding: 20px 17px 17px; background: linear-gradient(145deg, #fff, #eeeaf5); box-shadow: 0 20px 48px rgba(0, 0, 0, .2), 0 0 28px rgba(162, 108, 255, .1); }
.order-card h3 { margin-top: 19px; font-size: clamp(3.25rem, 18vw, 5.4rem); }
.order-service { display: grid; gap: 4px; margin: 20px 0 0; padding-bottom: 15px; }
.order-service strong { margin-top: 0; font-size: 16px; }
.order-service > span { color: var(--muted); font-size: 10px; }
.order-metrics { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 8px; border-bottom: 1px solid var(--line); padding: 15px 0 16px; }
.order-metrics div { min-width: 0; }
.order-metrics span { display: block; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .09em; }
.order-metrics strong { display: block; margin-top: 6px; color: var(--ink); font-size: 12px; letter-spacing: -.03em; overflow-wrap: anywhere; }
.order-metrics div:first-child strong { font-size: 20px; }
.order-note { margin-bottom: 16px; }

.review-line dd { max-width: 65%; overflow-wrap: anywhere; }

.more-packages[hidden] { display: none !important; }

@media (min-width: 700px) {
  .hero { padding-bottom: 80px; }
  .selector-copy { padding: 0; }
  .package-grid-entry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid-growth { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-recommended { grid-column: 1 / -1; }
  .package-value { grid-column: 1 / -1; }
  .package-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .economy-note { max-width: 510px; }
}

@media (max-width: 420px) {
  .package-badge { max-width: 52%; font-size: 6px; }
  .extra-package-main small { font-size: 8px; }
  .order-metrics { gap: 5px; }
  .order-metrics strong { font-size: 11px; }
}

/* Approved refinement: brand opening, visual proof and premium plan selection */
.hero {
  gap: 22px;
  padding-top: 22px;
  padding-bottom: 34px;
}

.hero-stage {
  min-height: 312px;
  margin: 0 -16px;
  border: 1px solid rgba(190, 156, 255, .34);
  border-radius: 25px 25px 31px 31px;
  padding: 14px 16px 0;
  background:
    radial-gradient(circle at 66% 35%, rgba(133, 61, 255, .26), transparent 12rem),
    radial-gradient(circle at 32% 84%, rgba(255, 255, 255, .08), transparent 12rem),
    linear-gradient(145deg, #070709 0%, #14101d 64%, #09090b 100%);
  box-shadow: 0 25px 64px rgba(43, 21, 75, .24), 0 0 45px rgba(162, 108, 255, .11), 0 1px 0 rgba(255, 255, 255, .14) inset;
}

.hero-stage::before {
  top: 23%;
  right: -92px;
  width: 250px;
  height: 250px;
  border-color: rgba(205, 180, 255, .28);
  box-shadow: 0 0 55px rgba(162, 108, 255, .1);
}

.hero-stage::after {
  bottom: 51px;
  left: 13%;
  width: 132px;
  opacity: .7;
  box-shadow: 0 0 28px rgba(162, 108, 255, .68);
}

.stage-topline { font-size: 7px; letter-spacing: .15em; }
.stage-core { min-height: 238px; padding: 10px 0 18px; }
.stage-core::before { width: min(62vw, 230px); height: min(62vw, 230px); border-color: rgba(205, 180, 255, .23); box-shadow: 0 0 42px rgba(162, 108, 255, .15); }
.stage-core img { width: min(100%, 312px); filter: drop-shadow(0 17px 22px rgba(0, 0, 0, .3)); }
.hero-stage figcaption { min-height: 42px; font-size: 8px; }
.hero-stage figcaption strong { font-size: 8px; }

.hero-copy { padding: 0; }
.hero-copy::after { display: none; }
.hero-kicker { padding-top: 3px; }
.hero h1 { margin-top: 17px; margin-bottom: 15px; }
.hero-signals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-signals li {
  min-height: 44px;
  border-top: 0;
  border-bottom: 1px solid var(--line-soft);
  padding-right: 7px;
  font-size: 10px;
}

.hero-signals li:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.hero-signals li:nth-last-child(-n + 2) { border-bottom: 0; }
.hero-actions { margin-top: 18px; }

.profile-wall {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(190, 156, 255, .17);
  border-radius: 24px;
  padding: 0 10px 14px;
  background:
    radial-gradient(circle at 90% 7%, rgba(124, 66, 233, .16), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012) 60%),
    rgba(7, 7, 9, .76);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .2), 0 0 0 1px rgba(255, 255, 255, .035) inset;
}

.profile-wall-line { top: 43px; right: 10px; left: 10px; background: rgba(255, 255, 255, .11); }
.profile-showcase-bar { position: relative; z-index: 1; display: flex; min-height: 43px; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, .1); color: #8f8999; font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.profile-showcase-bar span { display: inline-flex; align-items: center; gap: 7px; }
.profile-showcase-bar span:last-child { color: #6e6878; font-size: 7px; }
.profile-showcase-bar i { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--purple-bright); box-shadow: 0 0 11px rgba(162, 108, 255, .75); }

.profile-rail { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; padding-top: 10px; }
.profile-card { position: relative; display: grid; min-height: 100px; grid-template-columns: 20px 48px minmax(0, 1fr); align-items: center; gap: 8px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 16px; border-bottom-color: rgba(255, 255, 255, .1); padding: 10px; background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015) 70%); box-shadow: 0 12px 25px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .07) inset; isolation: isolate; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.profile-card::before { position: absolute; z-index: -1; top: -42px; right: -35px; width: 118px; height: 118px; border-radius: 50%; background: radial-gradient(circle, rgba(162, 108, 255, .2), transparent 68%); content: ""; opacity: .46; }
.profile-card > * { position: relative; z-index: 1; }
.profile-card:nth-child(3n + 2) { margin-top: 6px; }
.profile-card:nth-child(5n) { border-color: rgba(162, 108, 255, .22); }
.profile-card:hover { border-color: rgba(190, 156, 255, .52); box-shadow: 0 16px 30px rgba(0, 0, 0, .2), 0 0 24px rgba(162, 108, 255, .1); transform: translateY(-3px); }
.profile-card-featured { grid-column: 1 / -1; min-height: 138px; grid-template-columns: 22px 76px minmax(0, 1fr); padding: 12px; background: linear-gradient(145deg, rgba(124, 66, 233, .22), rgba(255, 255, 255, .035) 62%, rgba(162, 108, 255, .11)); border-color: rgba(190, 156, 255, .34); box-shadow: 0 18px 35px rgba(0, 0, 0, .19), 0 0 32px rgba(162, 108, 255, .1), 0 1px 0 rgba(255, 255, 255, .11) inset; }
.profile-card-featured::before { width: 185px; height: 185px; top: -80px; right: -44px; opacity: .75; }
.profile-index { align-self: start; padding-top: 3px; color: #77717f; }
.profile-avatar { width: 48px; height: 48px; border: 1px solid rgba(205, 180, 255, .64); border-radius: 15px; box-shadow: 0 0 20px rgba(162, 108, 255, .16); }
.profile-card-featured .profile-avatar { width: 76px; height: 76px; border-radius: 21px; box-shadow: 0 0 28px rgba(162, 108, 255, .22); }
.profile-card strong { color: #f4f0f8; font-size: 10px; }
.profile-card-featured strong { font-size: 13px; }

.package-catalog { gap: 22px; }
.package-group-heading { min-height: 25px; padding-top: 10px; }
.package-group-kicker { font-size: 9px; letter-spacing: .2em; }
.package-group-heading > span:last-child { max-width: 58%; font-size: 7px; letter-spacing: .08em; line-height: 1.3; }
.package-grid, .extra-packages.package-grid { gap: 9px; margin-top: 9px; }

.package { min-height: 0; overflow: hidden; border-color: rgba(255, 255, 255, .1); border-radius: 20px; padding: 14px; background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 66%, rgba(124, 66, 233, .06)); box-shadow: 0 14px 30px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .08) inset; isolation: isolate; }
.package::before { z-index: -1; top: -76px; right: -64px; width: 190px; height: 190px; background: radial-gradient(circle, rgba(162, 108, 255, .28), transparent 67%); opacity: 0; }
.package::after { position: absolute; z-index: -1; inset: 1px; border: 1px solid rgba(255, 255, 255, .04); border-radius: 19px; content: ""; pointer-events: none; }
.package > * { position: relative; z-index: 1; }
.package-topline { min-height: 19px; }
.package-role { color: #aaa4b3; font-size: 7px; letter-spacing: .14em; }
.package-badge { top: -1px; right: 22px; max-width: 54%; border: 1px solid rgba(190, 156, 255, .34); border-radius: 999px; padding: 4px 7px; background: rgba(124, 66, 233, .18); color: #eadfff; font-size: 6px; letter-spacing: .08em; }
.package-check { top: 0; right: 0; }
.package-main { display: flex; min-height: 0; align-items: baseline; gap: 8px; padding: 17px 0 12px; }
.package-main .package-quantity { font-size: clamp(2.7rem, 14vw, 4.25rem); line-height: .84; }
.package-unit { margin: 0; font-size: 8px; letter-spacing: .1em; }
.package-service { border-top-color: rgba(255, 255, 255, .12); padding-top: 9px; font-size: 9px; }
.package-benefits-mini { display: flex; flex-wrap: wrap; gap: 5px; padding-top: 7px; }
.package-benefits-mini > span { border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 4px 6px; color: #bcb4c7; font-size: 7px; line-height: 1; }
.package-economy { grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px; border-top-color: rgba(255, 255, 255, .09); padding-top: 10px; }
.package-unit-price { font-size: 9px; }
.package-saving { max-width: 170px; color: #b0a9b8; font-size: 8px; line-height: 1.25; text-align: right; }
.package-bottom { margin-top: 12px; border-top-color: rgba(255, 255, 255, .1); padding-top: 11px; }
.package-price { font-size: 22px; }
.package-price::before { display: block; margin-bottom: 4px; color: #77717f; content: "VALOR"; font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.package-select { min-height: 31px; border-color: rgba(255, 255, 255, .2); padding-inline: 10px; font-size: 7px; }

.package-entry { min-height: 188px; background: linear-gradient(145deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .014)); }
.package-growth { min-height: 210px; }
.package-recommended { min-height: 255px; border-color: rgba(190, 156, 255, .54); background: linear-gradient(145deg, rgba(124, 66, 233, .3), rgba(38, 25, 61, .84) 66%, rgba(11, 11, 13, .98)); box-shadow: 0 17px 40px rgba(74, 35, 154, .24), 0 0 38px rgba(162, 108, 255, .13), 0 1px 0 rgba(255, 255, 255, .14) inset; }
.package-value { min-height: 268px; border-color: rgba(205, 180, 255, .66); background: linear-gradient(145deg, rgba(162, 108, 255, .3), rgba(49, 27, 80, .9) 66%, rgba(11, 11, 13, .98)); box-shadow: 0 19px 44px rgba(74, 35, 154, .27), 0 0 44px rgba(162, 108, 255, .16), 0 1px 0 rgba(255, 255, 255, .15) inset; }
.package-recommended::before, .package-value::before { opacity: 1; }
.package-recommended .package-select, .package-value .package-select { border-color: rgba(205, 180, 255, .55); background: rgba(255, 255, 255, .08); color: #fff; }
.package.is-active { border-color: rgba(225, 214, 255, .92); box-shadow: 0 20px 45px rgba(74, 35, 154, .31), 0 0 42px rgba(162, 108, 255, .18), 0 1px 0 rgba(255, 255, 255, .2) inset; transform: translateY(-3px); }
.package.is-active .package-benefits-mini > span { border-color: rgba(255, 255, 255, .3); color: #f5efff; }

.extra-packages.package-grid { gap: 8px; }
.extra-package { min-height: 76px; border-radius: 15px; border-color: rgba(255, 255, 255, .09); border-left: 2px solid rgba(124, 66, 233, .45); padding: 10px 12px; background: linear-gradient(110deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)); box-shadow: 0 10px 22px rgba(0, 0, 0, .12), 0 1px 0 rgba(255, 255, 255, .06) inset; }
.extra-package:nth-child(2) { border-left-color: rgba(145, 91, 238, .58); }
.extra-package:nth-child(3) { border-left-color: rgba(174, 124, 255, .7); }
.extra-package:last-child { border-color: rgba(205, 180, 255, .36); border-left-color: var(--purple-bright); background: linear-gradient(110deg, rgba(124, 66, 233, .2), rgba(255, 255, 255, .035)); box-shadow: 0 13px 28px rgba(74, 35, 154, .16), 0 0 26px rgba(162, 108, 255, .08); }
.extra-package-main strong { font-size: 12px; }
.extra-package-main small { margin-top: 4px; color: #a49daa; font-size: 8px; line-height: 1.3; }
.extra-package-price { color: #f3eef8; font-size: 12px; }
.extra-package.is-active { border-color: rgba(205, 180, 255, .72); border-left-color: #fff; background: linear-gradient(110deg, rgba(124, 66, 233, .38), rgba(255, 255, 255, .05)); }

@media (max-width: 699px) {
  .extra-package:not(:last-child)::after { position: absolute; bottom: -12px; left: 17px; z-index: 2; color: var(--purple-bright); content: "↓"; font-size: 12px; line-height: 1; text-shadow: 0 0 12px rgba(162, 108, 255, .75); }
}

@media (min-width: 700px) {
  .hero { grid-template-columns: minmax(360px, 1fr) minmax(0, .9fr); gap: 54px; padding-top: 62px; padding-bottom: 82px; }
  .hero-stage { min-height: 470px; margin: 0; border-radius: 28px; padding-inline: 24px; }
  .stage-core { min-height: 362px; }
  .profile-rail { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
  .profile-card { min-height: 116px; grid-template-columns: 18px 49px minmax(0, 1fr); }
  .profile-card-featured { grid-column: span 2; grid-row: span 2; min-height: 244px; grid-template-columns: 23px 104px minmax(0, 1fr); align-content: center; }
  .profile-card-featured .profile-avatar { width: 104px; height: 104px; }
  .profile-card-featured strong { font-size: 15px; }
  .package-grid-entry { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid-growth { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-recommended, .package-value { grid-column: auto; }
  .package-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 360px) {
  .profile-rail { grid-template-columns: 1fr; }
  .profile-card-featured { grid-template-columns: 20px 70px minmax(0, 1fr); }
  .profile-card-featured .profile-avatar { width: 70px; height: 70px; }
  .hero-signals { grid-template-columns: 1fr; }
  .hero-signals li:nth-child(odd) { border-right: 0; }
  .hero-signals li:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line-soft); }
  .hero-signals li:last-child { border-bottom: 0; }
}

/*
 * TURBINAAÊ APP VISUAL SYSTEM
 * Visual-only layer. Functional hooks, content and state classes intentionally
 * remain untouched so the existing checkout and payment flow keeps its contract.
 */
:root {
  --app-paper: #f7f6f8;
  --app-paper-deep: #edecf1;
  --app-ink: #111116;
  --app-ink-soft: #34333d;
  --app-night: #0d0d12;
  --app-night-raised: #15151c;
  --app-night-card: #1b1b24;
  --app-muted: #777581;
  --app-muted-light: #a6a3ad;
  --app-line: rgba(17, 17, 22, .12);
  --app-line-dark: rgba(255, 255, 255, .12);
  --app-purple: #855cff;
  --app-purple-bright: #b18aff;
  --app-purple-soft: #ede6ff;
  --app-glow: rgba(165, 126, 255, .26);
  --app-success: #a7e9c0;
  --app-danger: #ffb9c4;
  --app-shadow: 0 24px 70px rgba(34, 26, 54, .14);
  --app-radius: 28px;
}

html {
  background: var(--app-paper);
  scroll-padding-top: 82px;
}

body.site-page {
  min-height: 100svh;
  padding-bottom: calc(76px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 6% 1%, rgba(133, 92, 255, .08), transparent 24rem),
    radial-gradient(circle at 96% 34%, rgba(133, 92, 255, .055), transparent 27rem),
    var(--app-paper);
  color: var(--app-ink);
}

body.site-page,
body.legal-page {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

button,
a,
input,
summary {
  touch-action: manipulation;
}

button,
input {
  -webkit-appearance: none;
  appearance: none;
}

button[hidden],
[hidden] {
  display: none !important;
}

.container {
  width: min(1160px, calc(100% - 32px));
}

.section {
  padding: 80px 0;
}

.site-header {
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom-color: rgba(255, 255, 255, .09);
  background: rgba(13, 13, 18, .86);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .11);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
  min-height: 66px;
  gap: 14px;
}

.brand {
  width: 88px;
  height: 46px;
}

.brand img {
  filter: drop-shadow(0 4px 12px rgba(157, 113, 255, .24));
}

.main-nav {
  gap: 22px;
}

.main-nav a {
  color: #aaa7b5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  transition: color .22s ease, opacity .22s ease;
}

.main-nav a:hover {
  color: #fff;
}

.header-cta {
  min-height: 40px;
  border-color: rgba(177, 138, 255, .58);
  border-radius: 13px;
  padding-inline: 14px;
  background: linear-gradient(135deg, rgba(133, 92, 255, .23), rgba(133, 92, 255, .08));
  box-shadow: 0 0 26px rgba(133, 92, 255, .12), 0 1px 0 rgba(255, 255, 255, .12) inset;
  color: #f0eaff;
  font-size: 9px;
  letter-spacing: .08em;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.header-cta:hover {
  border-color: var(--app-purple-bright);
  background: linear-gradient(135deg, rgba(133, 92, 255, .38), rgba(133, 92, 255, .13));
  box-shadow: 0 0 30px rgba(133, 92, 255, .2), 0 1px 0 rgba(255, 255, 255, .16) inset;
  transform: translateY(-2px);
}

.button {
  min-height: 54px;
  border-radius: 15px;
  padding-inline: 20px;
  background: linear-gradient(135deg, #25242c, #101015);
  box-shadow: 0 12px 24px rgba(17, 17, 22, .16), 0 1px 0 rgba(255, 255, 255, .12) inset;
  font-size: 10px;
  letter-spacing: .11em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
  background: linear-gradient(135deg, #9a70ff, #6940d5);
  box-shadow: 0 16px 28px rgba(91, 48, 190, .24), 0 0 28px rgba(165, 126, 255, .16);
  transform: translateY(-2px);
}

.button:active,
.header-cta:active,
.package:active,
.extra-package:active,
.mobile-dock a:active {
  transform: scale(.985);
}

.button-secondary {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .055);
}

.button-secondary:hover {
  border-color: rgba(177, 138, 255, .72);
  background: rgba(133, 92, 255, .18);
}

.eyebrow,
.section-label {
  font-size: 10px;
  letter-spacing: .16em;
}

.accent {
  color: var(--app-purple);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 14px 0 17px;
  font-size: clamp(2.5rem, 9vw, 5rem);
  letter-spacing: -.075em;
  line-height: .93;
}

.section-heading p:not(.eyebrow) {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.72;
}

.section-marker {
  margin-bottom: 20px;
}

.section-marker i {
  width: 40px;
  background: linear-gradient(90deg, var(--app-purple), rgba(133, 92, 255, .12));
}

.hero {
  gap: 34px;
  padding-top: 30px;
  padding-bottom: 72px;
}

.hero-stage {
  min-height: 390px;
  margin: 0;
  border: 1px solid rgba(177, 138, 255, .18);
  border-radius: 32px;
  padding: 19px 20px 0;
  background:
    radial-gradient(circle at 72% 32%, rgba(133, 92, 255, .2), transparent 13rem),
    radial-gradient(circle at 18% 92%, rgba(133, 92, 255, .11), transparent 13rem),
    linear-gradient(145deg, #17151e, #09090d 70%);
  box-shadow: 0 22px 58px rgba(17, 12, 29, .24), 0 1px 0 rgba(255, 255, 255, .11) inset;
}

.hero-stage::before {
  top: 14%;
  right: -105px;
  width: 340px;
  height: 340px;
  border-color: rgba(177, 138, 255, .25);
  box-shadow: 0 0 80px rgba(133, 92, 255, .08);
}

.hero-stage::after {
  bottom: 60px;
  left: -36px;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--app-purple-bright));
  box-shadow: 0 0 26px rgba(177, 138, 255, .76);
}

.stage-topline {
  color: #92909d;
  font-size: 8px;
  letter-spacing: .16em;
}

.stage-topline span:last-child {
  color: #e0d3ff;
}

.stage-core {
  min-height: 310px;
  padding: 20px 0 28px;
}

.stage-core::before {
  width: min(76vw, 300px);
  height: min(76vw, 300px);
  border-color: rgba(177, 138, 255, .28);
  box-shadow: 0 0 52px rgba(133, 92, 255, .12);
}

.stage-core img {
  width: min(92%, 390px);
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .36)) drop-shadow(0 0 22px rgba(157, 113, 255, .16));
}

.hero-stage figcaption {
  min-height: 52px;
  border-top-color: rgba(255, 255, 255, .13);
  color: #a09ca9;
  font-size: 9px;
}

.hero-stage figcaption strong {
  color: #fff;
  font-size: 10px;
  letter-spacing: .08em;
}

.hero-copy {
  padding: 0;
}

.hero-kicker {
  min-height: 24px;
}

.hero-code {
  color: var(--app-muted);
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 18px;
  font-size: clamp(3.55rem, 17vw, 7.2rem);
  font-weight: 740;
  letter-spacing: -.1em;
  line-height: .83;
}

.hero h1 em {
  color: var(--app-purple);
}

.hero-lead {
  max-width: 570px;
  font-size: 15px;
  line-height: 1.75;
}

.hero-signals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 27px;
}

.hero-signals li {
  min-height: 44px;
  border-top-color: var(--app-line);
  padding-inline: 2px;
  color: var(--app-ink-soft);
  font-size: 11px;
}

.hero-signals li:nth-child(odd) {
  border-right: 1px solid var(--app-line);
  padding-right: 13px;
}

.hero-signals li:nth-child(even) {
  padding-left: 13px;
}

.hero-signals li::before {
  width: 6px;
  height: 6px;
  margin-right: 9px;
  background: var(--app-purple);
  box-shadow: 0 0 12px rgba(133, 92, 255, .52);
}

.hero-actions {
  gap: 10px;
  margin-top: 23px;
}

.quiet-link {
  min-height: 42px;
  color: var(--app-muted);
  font-size: 12px;
  transition: color .2s ease, transform .2s ease;
}

.quiet-link:hover {
  color: var(--app-ink);
  transform: translateX(2px);
}

.brand-band {
  border-block-color: var(--app-line);
  background: rgba(237, 236, 241, .74);
}

.brand-band-inner {
  min-height: 70px;
  gap: 16px;
}

.brand-band strong {
  font-size: 11px;
  letter-spacing: .16em;
}

.brand-band p {
  font-size: 10px;
  line-height: 1.4;
}

.brand-band-inner > span {
  color: var(--app-purple);
  text-shadow: 0 0 16px rgba(133, 92, 255, .35);
}

.process-grid::before {
  left: 15px;
  background: linear-gradient(var(--app-purple), rgba(133, 92, 255, .08));
}

.process-item {
  grid-template-columns: 32px minmax(0, 1fr) 22px;
  gap: 17px;
  min-height: 138px;
  border-top-color: var(--app-line);
  padding: 27px 0 24px;
}

.process-item:last-child {
  border-bottom-color: var(--app-line);
}

.process-number {
  width: 31px;
  height: 31px;
  border-color: rgba(133, 92, 255, .62);
  background: var(--app-paper);
  color: var(--app-purple);
  box-shadow: 0 0 0 5px var(--app-paper), 0 0 18px rgba(133, 92, 255, .16);
}

.process-item h3 {
  margin-top: 2px;
  font-size: 19px;
  letter-spacing: -.045em;
}

.process-item p {
  font-size: 13px;
  line-height: 1.68;
}

.process-arrow {
  color: var(--app-purple);
  text-shadow: 0 0 13px rgba(133, 92, 255, .3);
}

.principles {
  gap: 19px;
  margin-top: 52px;
  border: 1px solid rgba(177, 138, 255, .15);
  border-radius: 25px;
  padding: 31px 27px 33px;
  background:
    radial-gradient(circle at 92% 10%, rgba(133, 92, 255, .28), transparent 16rem),
    linear-gradient(145deg, #1a1820, #0d0d12 72%);
  box-shadow: 0 20px 48px rgba(15, 13, 22, .19), 0 1px 0 rgba(255, 255, 255, .08) inset;
}

.principles-mark {
  top: -22px;
  right: 20px;
  color: rgba(177, 138, 255, .29);
}

.principles h3 {
  font-size: clamp(2.2rem, 9vw, 3.5rem);
}

.principles .accent {
  color: var(--app-purple-bright);
}

.principles-copy {
  color: #b4afbb;
  font-size: 13px;
  line-height: 1.72;
}

.profile-section {
  background:
    radial-gradient(circle at 84% 5%, rgba(133, 92, 255, .15), transparent 28rem),
    var(--app-night);
}

.profile-section .section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.profile-section .section-heading p:not(.eyebrow),
.profile-note {
  color: #b3afbb;
}

.profile-section .accent {
  color: var(--app-purple-bright);
}

.profile-note {
  border-left-color: var(--app-purple-bright);
  padding-left: 18px;
  font-size: 12px;
}

.profile-wall {
  margin-top: 42px;
  padding: 0 1px 1px;
}

.profile-wall-line {
  background: rgba(255, 255, 255, .13);
}

.profile-showcase-bar {
  border-bottom-color: rgba(255, 255, 255, .11);
}

.profile-rail {
  gap: 10px;
  padding-top: 10px;
}

.profile-card {
  min-height: 104px;
  grid-template-columns: 22px 55px minmax(0, 1fr);
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .105);
  border-bottom-color: rgba(255, 255, 255, .105);
  border-radius: 18px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .018) 70%);
  box-shadow: 0 15px 28px rgba(0, 0, 0, .18), 0 1px 0 rgba(255, 255, 255, .07) inset;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.profile-card::before {
  top: -48px;
  right: -35px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(177, 138, 255, .23), transparent 68%);
}

.profile-card:hover {
  border-color: rgba(177, 138, 255, .58);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .22), 0 0 26px rgba(133, 92, 255, .13);
  transform: translateY(-3px);
}

.profile-avatar {
  width: 55px;
  height: 55px;
  border-color: rgba(177, 138, 255, .68);
  border-radius: 17px;
  box-shadow: 0 0 22px rgba(133, 92, 255, .18);
}

.profile-card strong {
  color: #f4f1f8;
  font-size: 11px;
}

.profile-card-featured {
  min-height: 154px;
  grid-template-columns: 22px 86px minmax(0, 1fr);
  border-color: rgba(177, 138, 255, .34);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(133, 92, 255, .27), rgba(255, 255, 255, .045) 62%, rgba(133, 92, 255, .12));
  box-shadow: 0 20px 40px rgba(0, 0, 0, .23), 0 0 34px rgba(133, 92, 255, .14), 0 1px 0 rgba(255, 255, 255, .13) inset;
}

.profile-card-featured .profile-avatar {
  width: 86px;
  height: 86px;
  border-radius: 23px;
}

.profile-card-featured strong {
  font-size: 13px;
}

.profile-disclaimer {
  color: #888392;
  font-size: 9px;
}

.buy-section {
  background:
    linear-gradient(180deg, rgba(237, 236, 241, .96), rgba(247, 246, 248, .98));
}

.buy-heading {
  max-width: 700px;
}

.shop-shell {
  border: 1px solid rgba(133, 92, 255, .19);
  border-radius: 32px;
  background: linear-gradient(155deg, #101016, #0b0b10 75%);
  box-shadow: 0 28px 80px rgba(34, 26, 54, .2), 0 1px 0 rgba(255, 255, 255, .07) inset;
}

.purchase-progress {
  min-height: 61px;
  border-bottom-color: rgba(255, 255, 255, .1);
  padding-inline: 23px;
  color: #777480;
  font-size: 8px;
}

.purchase-progress span b {
  color: #62606a;
}

.purchase-progress span.is-current {
  color: #e2d6ff;
}

.purchase-progress span.is-current b {
  color: var(--app-purple-bright);
}

.purchase-progress i {
  background: linear-gradient(90deg, rgba(177, 138, 255, .42), rgba(255, 255, 255, .09));
}

.selector-copy {
  padding: 34px 24px 30px;
}

.selector-heading .section-label {
  color: var(--app-purple-bright);
}

.selector-status {
  color: #9ce3b8;
}

.selector-status i {
  width: 6px;
  height: 6px;
  background: #9ce3b8;
  box-shadow: 0 0 12px rgba(156, 227, 184, .48);
}

.selector-copy h3 {
  margin-top: 21px;
  font-size: clamp(2.35rem, 11vw, 4.8rem);
  line-height: .86;
}

.selector-copy h3 em {
  color: var(--app-purple-bright);
}

.selector-copy > p:not(.package-list-label) {
  color: #b4b0bc;
  font-size: 13px;
  line-height: 1.72;
}

.package-benefits {
  margin-top: 27px;
  border-top-color: rgba(255, 255, 255, .1);
}

.package-benefit {
  min-height: 68px;
  border-bottom-color: rgba(255, 255, 255, .1);
}

.package-benefit > span {
  color: var(--app-purple-bright);
}

.package-benefit strong {
  color: #f5f2f9;
  font-size: 11px;
}

.package-benefit small {
  color: #85818e;
  font-size: 10px;
}

.package-list-label {
  margin-top: 27px !important;
  color: #878390 !important;
}

.package-catalog {
  gap: 28px;
}

.package-group-heading {
  min-height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding-bottom: 9px;
}

.package-group-kicker {
  color: #e6deef;
  font-size: 9px;
  letter-spacing: .2em;
}

.package-group-heading > span:last-child {
  color: #817d89;
  font-size: 8px;
}

.package-grid,
.extra-packages.package-grid {
  gap: 10px;
  margin-top: 10px;
  padding: 7px 1px 13px;
}

.package {
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .017) 70%);
  box-shadow: 0 16px 31px rgba(0, 0, 0, .16), 0 1px 0 rgba(255, 255, 255, .08) inset;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}

.package::before {
  top: -72px;
  right: -58px;
  width: 185px;
  height: 185px;
  background: radial-gradient(circle, rgba(177, 138, 255, .28), transparent 67%);
}

.package-topline {
  min-height: 19px;
}

.package-index,
.package-role {
  color: #8c8795;
}

.package-role {
  font-size: 8px;
  letter-spacing: .14em;
}

.package-badge {
  border-color: rgba(177, 138, 255, .38);
  background: rgba(133, 92, 255, .2);
  color: #eee7ff;
  font-size: 6px;
  letter-spacing: .08em;
}

.package-main {
  min-height: 0;
  align-items: baseline;
  flex-direction: row;
  gap: 8px;
  padding: 19px 0 13px;
}

.package-main .package-quantity {
  color: #f5f2f8;
  font-size: clamp(2.9rem, 14vw, 4.35rem);
  line-height: .82;
}

.package-unit {
  margin-top: 0;
  color: #898592;
  font-size: 8px;
}

.package-service {
  border-top-color: rgba(255, 255, 255, .12);
  padding-top: 10px;
  color: #b3aebb;
  font-size: 9px;
}

.package-benefits-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-top: 8px;
}

.package-benefits-mini > span {
  border-color: rgba(255, 255, 255, .13);
  border-radius: 999px;
  padding: 5px 7px;
  color: #b9b2c5;
  font-size: 7px;
}

.package-economy {
  gap: 9px;
  border-top-color: rgba(255, 255, 255, .1);
  padding-top: 10px;
}

.package-unit-price {
  color: #e9e2f2;
  font-size: 9px;
}

.package-saving {
  color: #aaa3b2;
  font-size: 8px;
}

.package-bottom {
  margin-top: 13px;
  border-top-color: rgba(255, 255, 255, .1);
  padding-top: 12px;
}

.package-price {
  font-size: 23px;
}

.package-price::before {
  margin-bottom: 4px;
  color: #817b8b;
  font-size: 7px;
}

.package-select {
  min-height: 32px;
  border-color: rgba(255, 255, 255, .2);
  padding-inline: 10px;
  color: #d8c9f3;
  font-size: 7px;
}

.package-entry {
  min-height: 196px;
}

.package-growth {
  min-height: 213px;
}

.package-recommended {
  min-height: 259px;
  border-color: rgba(177, 138, 255, .57);
  background: linear-gradient(145deg, rgba(133, 92, 255, .3), rgba(45, 28, 77, .88) 65%, rgba(13, 13, 18, .98));
  box-shadow: 0 20px 43px rgba(58, 31, 126, .24), 0 0 38px rgba(133, 92, 255, .13), 0 1px 0 rgba(255, 255, 255, .14) inset;
}

.package-value {
  min-height: 273px;
  border-color: rgba(202, 181, 255, .68);
  background: linear-gradient(145deg, rgba(161, 121, 255, .31), rgba(51, 29, 84, .91) 66%, rgba(13, 13, 18, .98));
  box-shadow: 0 22px 47px rgba(58, 31, 126, .28), 0 0 45px rgba(133, 92, 255, .16), 0 1px 0 rgba(255, 255, 255, .15) inset;
}

.package-recommended .package-badge,
.package-value .package-badge {
  color: #f4eeff;
}

.package:hover {
  border-color: rgba(177, 138, 255, .7);
  box-shadow: 0 19px 37px rgba(0, 0, 0, .2), 0 0 25px rgba(133, 92, 255, .13);
  transform: translateY(-3px);
}

.package.is-active {
  border-color: rgba(236, 230, 255, .96);
  background: linear-gradient(145deg, rgba(133, 92, 255, .52), rgba(54, 31, 92, .92) 64%, rgba(13, 13, 18, .98));
  box-shadow: 0 23px 49px rgba(58, 31, 126, .32), 0 0 44px rgba(133, 92, 255, .2), 0 1px 0 rgba(255, 255, 255, .2) inset;
  transform: translateY(-4px);
}

.package.is-active .package-index,
.package.is-active .package-role,
.package.is-active .package-unit,
.package.is-active .package-service {
  color: #eee6ff;
}

.package.is-active .package-quantity {
  color: #fff;
  text-shadow: 0 0 28px rgba(225, 210, 255, .24);
}

.package.is-active .package-check {
  color: #fff;
  text-shadow: 0 0 18px rgba(210, 190, 255, .86);
}

.package.is-active .package-select {
  border-color: rgba(255, 255, 255, .55);
  background: #fff;
  color: var(--app-ink);
}

.package.is-active .package-select span {
  color: var(--app-purple);
}

.extra-packages.package-grid {
  gap: 8px;
}

.extra-package {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-left: 2px solid rgba(133, 92, 255, .48);
  border-radius: 16px;
  padding: 11px 13px;
  background: linear-gradient(110deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .016));
  box-shadow: 0 11px 23px rgba(0, 0, 0, .13), 0 1px 0 rgba(255, 255, 255, .06) inset;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.extra-package:nth-child(2) {
  border-left-color: rgba(145, 104, 248, .6);
}

.extra-package:nth-child(3) {
  border-left-color: rgba(177, 138, 255, .72);
}

.extra-package:last-child {
  border-color: rgba(205, 180, 255, .4);
  border-left-color: var(--app-purple-bright);
  background: linear-gradient(110deg, rgba(133, 92, 255, .21), rgba(255, 255, 255, .035));
  box-shadow: 0 14px 28px rgba(58, 31, 126, .17), 0 0 26px rgba(133, 92, 255, .09);
}

.extra-package:hover {
  border-color: rgba(177, 138, 255, .62);
  box-shadow: 0 15px 29px rgba(0, 0, 0, .19), 0 0 24px rgba(133, 92, 255, .12);
  transform: translateY(-2px);
}

.extra-package-main strong {
  color: #f3eff8;
  font-size: 12px;
}

.extra-package-main small {
  margin-top: 4px;
  color: #a49dac;
  font-size: 8px;
  line-height: 1.35;
}

.extra-package-price {
  color: #f4eff9;
  font-size: 13px;
}

.extra-package.is-active {
  border-color: rgba(235, 227, 255, .95);
  border-left-color: #fff;
  background: linear-gradient(110deg, rgba(133, 92, 255, .43), rgba(255, 255, 255, .055));
  box-shadow: 0 14px 30px rgba(58, 31, 126, .23), 0 0 30px rgba(133, 92, 255, .14);
}

.extra-package.is-active .extra-package-main small,
.extra-package.is-active .extra-package-index {
  color: #eee5ff;
}

.economy-note {
  border-left-color: var(--app-purple-bright);
  color: #8f8999;
  font-size: 9px;
}

.order-card {
  margin: 0 14px 22px;
  border: 1px solid rgba(133, 92, 255, .2);
  border-top: 3px solid var(--app-purple);
  border-radius: 24px;
  padding: 23px 20px 20px;
  background: linear-gradient(145deg, #fff, #f0eef5);
  box-shadow: 0 23px 50px rgba(0, 0, 0, .21), 0 1px 0 #fff inset;
}

.order-card-top .section-label {
  color: var(--app-purple);
}

.order-card-top > span {
  color: #85818d;
}

.order-card h3 {
  margin-top: 20px;
  font-size: clamp(3.3rem, 17vw, 5.55rem);
}

.order-card h3 small {
  margin-top: 11px;
  color: #817c89;
  font-size: 10px;
}

.order-service {
  margin-top: 21px;
  border-bottom-color: var(--app-line);
  padding-bottom: 16px;
  color: #85818d;
}

.order-service strong {
  margin-top: 4px;
  color: var(--app-ink);
  font-size: 15px;
}

.order-service > span {
  color: #85818d;
}

.order-metrics {
  border-bottom-color: var(--app-line);
  padding: 16px 0 17px;
}

.order-metrics span,
.order-price-label {
  color: #898491;
}

.order-metrics strong,
.order-price {
  color: var(--app-ink);
}

.order-metrics div:first-child strong {
  color: var(--app-purple);
}

.order-note {
  margin-bottom: 17px;
  color: #85818d;
}

.order-note::before {
  color: var(--app-purple);
}

.order-card .button {
  background: linear-gradient(135deg, #25242c, #101015);
}

.order-card .button:hover {
  background: linear-gradient(135deg, #9a70ff, #6940d5);
}

.checkout-step,
.payment-panel {
  border-top-color: rgba(255, 255, 255, .11);
  background:
    radial-gradient(circle at 92% 0%, rgba(133, 92, 255, .16), transparent 25rem),
    linear-gradient(155deg, #17161e, #0c0c11 74%);
}

.checkout-step {
  padding: 34px 24px 36px;
}

.step-header {
  gap: 14px;
  margin-bottom: 28px;
}

.step-index {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  border-color: rgba(177, 138, 255, .76);
  color: var(--app-purple-bright);
  box-shadow: 0 0 22px rgba(133, 92, 255, .14);
}

.step-header h3 {
  font-size: 21px;
}

.step-header p {
  color: #aaa5b1;
  font-size: 12px;
}

.review-line {
  margin-bottom: 27px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 0 15px;
  background: rgba(255, 255, 255, .035);
}

.review-line div {
  min-height: 47px;
  border-bottom-color: rgba(255, 255, 255, .08);
}

.review-line dt {
  color: #898491;
}

.review-line dd {
  color: #fff;
  font-size: 12px;
}

.form-grid {
  gap: 18px;
}

.field {
  gap: 8px;
}

.field label {
  color: #e0dbe7;
  font-size: 11px;
}

.field label span {
  color: #898491;
}

.field input {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .045);
  color: #fff;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input::placeholder {
  color: #77727f;
}

.field input:focus {
  border-color: rgba(177, 138, 255, .9);
  background: rgba(133, 92, 255, .08);
  box-shadow: 0 0 0 3px rgba(133, 92, 255, .14), 0 0 24px rgba(133, 92, 255, .08);
}

.field input[aria-invalid="true"] {
  border-color: rgba(255, 185, 196, .78);
  box-shadow: 0 0 0 3px rgba(255, 185, 196, .09);
}

.consent {
  gap: 10px;
  margin-top: 2px;
  color: #aaa5b1;
  font-size: 11px;
}

.consent input {
  position: relative;
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  margin-top: 1px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
}

.consent input:checked {
  border-color: var(--app-purple);
  background: var(--app-purple);
  box-shadow: 0 0 14px rgba(133, 92, 255, .22);
}

.consent input:checked::after {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.consent a {
  color: #e1d2ff;
}

.form-note {
  margin-top: 18px;
  color: #898491;
  font-size: 10px;
}

.form-error:not(:empty),
.payment-error:not(:empty) {
  border-color: rgba(255, 185, 196, .25);
  border-radius: 14px;
  background: rgba(214, 71, 94, .1);
}

.checkout-step .button {
  margin-top: 7px;
}

.payment-panel {
  padding: 34px 24px 38px;
}

.payment-panel.is-error {
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 71, 94, .14), transparent 25rem),
    linear-gradient(155deg, #17161e, #0c0c11 74%);
}

.payment-head {
  gap: 21px;
}

.status-pill {
  min-height: 28px;
  border-color: rgba(177, 138, 255, .55);
  padding-inline: 10px;
  background: rgba(133, 92, 255, .14);
  color: #e3d7ff;
}

.status-pill.is-success {
  border-color: rgba(167, 233, 192, .45);
  background: rgba(75, 177, 113, .13);
  color: var(--app-success);
}

.status-pill.is-warning {
  border-color: rgba(255, 203, 130, .45);
  background: rgba(203, 136, 54, .13);
}

.status-pill.is-danger {
  border-color: rgba(255, 185, 196, .45);
  background: rgba(214, 71, 94, .13);
  color: var(--app-danger);
}

.payment-head h3 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: .92;
}

.payment-head p {
  color: #b4b0bc;
  font-size: 12px;
}

.payment-total {
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid var(--app-purple);
  border-radius: 15px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .045);
}

.payment-total span {
  color: #898491;
}

.payment-total strong {
  margin-top: 6px;
  color: #fff;
  font-size: 25px;
}

.payment-layout {
  gap: 29px;
  margin-top: 31px;
}

.qr-frame {
  width: min(100%, 292px);
  border: 9px solid #fff;
  border-radius: 26px;
  padding: 13px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, .27), 0 0 42px rgba(133, 92, 255, .19);
}

.qr-kicker {
  top: -18px;
  padding: 5px 8px;
  background: rgba(13, 13, 18, .92);
  color: #dfd1ff;
}

.payment-info h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.payment-info > p {
  color: #b3aebb;
  font-size: 12px;
}

.copy-label {
  margin-top: 25px;
  color: #898491;
}

.copy-row {
  gap: 9px;
}

.copy-row input {
  min-height: 48px;
  border-color: rgba(255, 255, 255, .15);
  border-radius: 14px;
  padding-inline: 12px;
  background: rgba(255, 255, 255, .045);
  color: #d2cadc;
  font-size: 10px;
}

.copy-row .button {
  min-height: 48px;
  border-radius: 14px;
}

.payment-meta {
  gap: 12px;
  margin-top: 26px;
}

.payment-meta div {
  border-top-color: rgba(255, 255, 255, .12);
  padding-top: 11px;
}

.payment-meta dt {
  color: #898491;
}

.payment-meta dd {
  color: #fff;
}

.payment-actions {
  gap: 9px;
  margin-top: 25px;
}

.payment-actions .button {
  min-height: 44px;
  border-radius: 13px;
}

.payment-footnote {
  margin-top: 28px;
  color: #898491;
  font-size: 10px;
  line-height: 1.62;
}

.faq-section {
  background: var(--app-paper);
}

.faq-wrap {
  max-width: 1040px;
  margin: 0 auto;
}

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

.faq-list details {
  border-bottom-color: var(--app-line);
  transition: background .22s ease;
}

.faq-list details[open] {
  background: rgba(133, 92, 255, .045);
}

.faq-list summary {
  min-height: 62px;
  padding: 18px 38px 18px 0;
  color: var(--app-ink);
  font-size: 14px;
  font-weight: 700;
}

.faq-list summary::after {
  color: var(--app-purple);
  font-size: 20px;
}

.faq-list details p {
  max-width: 720px;
  padding: 0 38px 22px 0;
  color: var(--app-muted);
  font-size: 13px;
  line-height: 1.72;
}

.site-footer {
  border-top-color: var(--app-line);
  background: #ebeaf0;
}

.footer-inner {
  min-height: 120px;
  gap: 22px;
}

.footer-brand strong {
  color: var(--app-ink);
}

.footer-brand p,
.footer-links a {
  color: var(--app-muted);
}

.footer-links a:hover {
  color: var(--app-purple);
}

.mobile-dock {
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  min-height: 54px;
  border: 1px solid rgba(177, 138, 255, .25);
  border-radius: 18px;
  padding: 6px 7px 6px 14px;
  background: rgba(20, 19, 27, .9);
  box-shadow: 0 16px 38px rgba(18, 13, 29, .27), 0 1px 0 rgba(255, 255, 255, .12) inset;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
}

.mobile-dock span {
  color: #c7c0d0;
  font-size: 9px;
}

.mobile-dock a {
  min-height: 40px;
  border-radius: 13px;
  padding-inline: 15px;
  background: linear-gradient(135deg, var(--app-purple), #6740d0);
  box-shadow: 0 7px 18px rgba(91, 48, 190, .28);
  color: #fff;
  font-size: 9px;
  transition: transform .2s ease, filter .2s ease;
}

.mobile-dock a:hover {
  filter: brightness(1.1);
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 90% 0%, rgba(133, 92, 255, .09), transparent 24rem),
    var(--app-paper);
  color: var(--app-ink);
}

.legal-main {
  padding-top: max(30px, env(safe-area-inset-top));
  padding-bottom: 72px;
}

.legal-header {
  max-width: 760px;
  padding: 16px 0 38px;
}

.back-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-bottom: 37px;
  color: var(--app-purple);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover {
  color: var(--app-ink);
}

.legal-header h1 {
  margin: 15px 0 16px;
  font-size: clamp(2.7rem, 11vw, 5.7rem);
  letter-spacing: -.09em;
  line-height: .9;
}

.legal-header > p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--app-muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal-content {
  max-width: 820px;
  border-top: 1px solid var(--app-line);
}

.legal-content section {
  border-bottom: 1px solid var(--app-line);
  padding: 28px 0;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -.04em;
}

.legal-content p,
.legal-content li {
  color: var(--app-muted);
  font-size: 14px;
  line-height: 1.78;
}

.legal-content p {
  margin: 0;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 0;
  padding-left: 19px;
}

.legal-content a {
  color: var(--app-purple);
}

@media (max-width: 699px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .hero-stage {
    min-height: 372px;
  }

  .stage-core {
    min-height: 292px;
  }

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

  .package-grid-entry,
  .package-grid-growth,
  .package-grid-large {
    grid-template-columns: 1fr;
  }

  .package-entry {
    min-height: 195px;
  }

  .package-growth {
    min-height: 214px;
  }

  .package-recommended {
    min-height: 260px;
  }

  .package-value {
    min-height: 275px;
  }

  .order-card {
    margin-top: 2px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (min-width: 700px) {
  body.site-page {
    padding-bottom: 0;
  }

  .mobile-dock {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    align-items: center;
    gap: 62px;
    padding-top: 62px;
    padding-bottom: 94px;
  }

  .hero-stage {
    min-height: 512px;
  }

  .stage-core {
    min-height: 390px;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .button {
    width: auto;
  }

  .hero-signals {
    max-width: 570px;
  }

  .profile-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, .55fr);
    align-items: end;
    gap: 54px;
  }

  .profile-rail {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .profile-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 248px;
    grid-template-columns: 23px 105px minmax(0, 1fr);
  }

  .profile-card-featured .profile-avatar {
    width: 105px;
    height: 105px;
  }

  .profile-card-featured strong {
    font-size: 15px;
  }

  .shop-top {
    grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr);
    align-items: start;
  }

  .selector-copy {
    padding: 37px 31px 34px;
  }

  .order-card {
    position: sticky;
    top: 87px;
    margin: 25px 25px 25px 0;
  }

  .package-grid-entry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid-growth {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid-growth .package-recommended {
    grid-column: 1 / -1;
  }

  .package-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .checkout-step,
  .payment-panel {
    padding-inline: 31px;
  }

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

  .payment-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .payment-total {
    min-width: 180px;
  }

  .payment-layout {
    grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
    align-items: center;
    gap: 46px;
  }

  .qr-frame {
    width: min(100%, 320px);
  }

  .site-footer .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .shop-shell {
    border-radius: 36px;
  }

  .selector-copy {
    padding: 43px 42px 39px;
  }

  .order-card {
    margin-right: 34px;
  }

  .checkout-step,
  .payment-panel {
    padding-inline: 42px;
  }
}

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

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