@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #101218;
  --bg-raised: #151923;
  --surface: #1b202b;
  --surface-raised: #232936;
  --surface-soft: #282e3c;
  --text: #f5f6fb;
  --muted: #afb4c2;
  --faint: #858c9d;
  --line: rgba(255, 255, 255, .11);
  --line-strong: rgba(255, 255, 255, .18);
  --accent: #836cff;
  --accent-hover: #9a87ff;
  --accent-strong: #d6ceff;
  --accent-soft: rgba(131, 108, 255, .16);
  --teal: #9de3d7;
  --teal-soft: rgba(93, 194, 178, .12);
  --amber: #f3c873;
  --success: #9be2b5;
  --success-soft: rgba(92, 205, 133, .14);
  --warning: #f2c66d;
  --warning-soft: rgba(242, 198, 109, .14);
  --danger: #ff9fa8;
  --danger-soft: rgba(255, 111, 124, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-strong);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--accent-hover);
}

button,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
}

button {
  cursor: pointer;
}

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

.hidden {
  display: none !important;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(16, 18, 24, .88);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.site-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-shell .site-header {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(157, 227, 215, .25);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--text);
  font-family: "Outfit", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.025em;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: .94;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

p {
  margin-top: 0;
}

.lede,
.sub,
.section-sub,
.updated,
.hint,
.foot,
footer,
.muted {
  color: var(--muted);
}

.sub {
  margin-bottom: 28px;
  font-size: 19px;
}

.section-sub {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 17px;
}

.cta,
.secondary-cta,
button.buy,
button.primary,
.plan-link,
.link-btn,
.pack,
.purchase-option {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.cta,
button.buy,
button.primary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  padding: 12px 19px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(131, 108, 255, .25);
}

.cta:hover,
button.buy:not(:disabled):hover,
button.primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(131, 108, 255, .32);
}

.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  color: var(--text);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.secondary-cta:hover {
  border-color: rgba(157, 227, 215, .5);
  background: rgba(157, 227, 215, .07);
  color: var(--text);
  transform: translateY(-2px);
}

/* Home */
.hero-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 28%, rgba(131, 108, 255, .16), transparent 27rem),
    radial-gradient(circle at 10% 75%, rgba(83, 194, 176, .08), transparent 24rem),
    var(--bg);
}

.hero-shell::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: 5%;
  width: 520px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding: 80px 0 66px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-brandline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.hero-brandline .eyebrow {
  margin: 0;
}

.hero-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

.hero-offer {
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--text);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.hero .lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.cta-sub {
  display: block;
  max-width: 520px;
  color: var(--faint);
  font-size: 13px;
  line-height: 1.5;
}

.hero-scene {
  position: relative;
  min-height: 472px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(38, 44, 57, .98), rgba(24, 28, 38, .98));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-scene::before,
.hero-scene::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(131, 108, 255, .15);
  border-radius: 50%;
  content: "";
}

.hero-scene::before {
  top: 50px;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 32px rgba(131, 108, 255, .04), 0 0 0 64px rgba(131, 108, 255, .025);
}

.hero-scene::after {
  right: -120px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-color: rgba(157, 227, 215, .14);
}

.scene-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.scene-topline span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: var(--teal);
  font-size: 20px;
  font-weight: 500;
}

.scene-orb {
  display: grid;
  width: 156px;
  height: 156px;
  margin: 26px auto 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 26%, #a291ff, #6248df 75%);
  box-shadow: 0 0 0 18px rgba(131, 108, 255, .08), 0 20px 60px rgba(0, 0, 0, .28);
}

.scene-orb img {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .2);
}

.scene-question {
  margin: 0 0 20px;
  color: var(--text);
  font-family: "Outfit", "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
}

.scene-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
}

.scene-chips span {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
  padding: 8px 12px;
  font-size: 12px;
  white-space: nowrap;
}

.scene-composer {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  padding: 8px 10px 8px 18px;
}

.scene-plus,
.scene-send {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal);
  font-size: 20px;
}

.scene-placeholder {
  flex: 1;
  color: var(--faint);
  font-size: 14px;
}

.scene-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 19px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts > div {
  min-height: 112px;
  padding: 25px 22px 25px 0;
}

.hero-facts > div + div {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 14px;
}

.hero-facts span {
  color: var(--faint);
  font-size: 12px;
  line-height: 1.45;
}

/* Shared content bands */
.capability-band,
.pricing-band {
  background: var(--bg-raised);
}

.capability-band,
.trust-band,
.pricing-band {
  border-bottom: 1px solid var(--line);
}

.capability-band,
.pricing-band {
  padding: 92px 0;
}

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

.section-heading > div,
.section-heading h2 {
  margin-bottom: 0;
}

.section-heading .eyebrow {
  margin-bottom: 15px;
}

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

.feat {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.feat:hover {
  border-color: rgba(157, 227, 215, .32);
  background: rgba(157, 227, 215, .045);
  transform: translateY(-3px);
}

.feature-index {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.feat p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.trust-band {
  padding: 90px 0;
  background: var(--bg);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: start;
}

.trust-layout h2 {
  max-width: 420px;
}

.trust-points {
  display: grid;
  gap: 0;
}

.trust-points p {
  margin: 0;
  padding: 0 0 22px 22px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 15px;
}

.trust-points p + p {
  padding-top: 22px;
}

.trust-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

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

.plan {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.plan:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.plan.feature {
  border-color: rgba(131, 108, 255, .62);
  background: linear-gradient(160deg, rgba(82, 65, 159, .45), var(--surface) 62%);
  box-shadow: 0 16px 42px rgba(63, 45, 139, .17);
}

.plan-kicker {
  min-height: 22px;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.plan .name {
  margin-bottom: 9px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.plan .price {
  margin-bottom: 5px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -.03em;
}

.plan .price span {
  color: var(--faint);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.plan .cr {
  min-height: 42px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.plan ul {
  display: grid;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 20px;
}

.plan li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 800;
}

.plan-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.plan.feature .plan-link,
.plan-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

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

.credit-note {
  max-width: 870px;
  margin: 23px auto 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.final {
  display: grid;
  justify-items: center;
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.final-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.final h2 {
  margin-bottom: 10px;
}

.final .section-sub {
  margin-bottom: 24px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  font-size: 12px;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-links a {
  color: var(--muted);
}

/* Support and legal pages */
.site-doc > .wrap {
  max-width: 850px;
  padding-top: 72px;
  padding-bottom: 88px;
}

.site-doc .topbar .wrap {
  max-width: 1120px;
  padding: 0;
}

.site-doc .site-header-wrap {
  width: min(calc(100% - 48px), 1120px);
  max-width: none;
  padding: 0;
}

.site-doc h1 {
  max-width: 760px;
  margin-bottom: 13px;
  font-size: clamp(3rem, 7vw, 5rem);
}

.site-doc .updated {
  margin-bottom: 30px;
  font-size: 13px;
}

.site-doc .lede {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.site-doc h2 {
  margin-top: 56px;
  font-size: 29px;
}

.site-doc h3 {
  margin-top: 34px;
}

.site-doc p,
.site-doc li {
  color: var(--muted);
}

.site-doc p {
  margin-bottom: 18px;
}

.site-doc ul,
.site-doc ol {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.site-doc strong,
.site-doc th,
.site-doc dt,
.site-doc summary {
  color: var(--text);
}

.note,
.contact {
  margin: 28px 0 34px;
  padding: 19px 21px;
  border: 1px solid rgba(157, 227, 215, .22);
  border-radius: var(--radius-sm);
  background: var(--teal-soft);
}

.note strong,
.contact strong {
  color: var(--teal);
}

.note p,
.contact p {
  margin-bottom: 0;
}

.site-doc table {
  width: 100%;
  margin: 24px 0 34px;
  border-collapse: collapse;
  font-size: 14px;
}

.site-doc th,
.site-doc td {
  border-bottom: 1px solid var(--line);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.site-doc th {
  border-bottom-color: var(--line-strong);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-doc td:first-child {
  width: 31%;
  color: var(--text);
  font-weight: 700;
}

.site-doc details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.site-doc details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.site-doc summary {
  cursor: pointer;
  font-weight: 700;
  list-style-position: outside;
}

.site-doc details p {
  margin: 15px 0 0 23px;
}

.site-doc hr {
  margin: 54px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.site-doc footer {
  padding-top: 23px;
}

/* Purchase flow */
.site-buy .wrap {
  max-width: 780px;
}

.buy-flow {
  padding-top: 70px;
  padding-bottom: 90px;
}

.site-buy h1 {
  max-width: 650px;
  font-size: clamp(3rem, 7vw, 5.1rem);
}

.site-buy .sub {
  max-width: 610px;
}

.steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 35px 0 24px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.steps .s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.steps .dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
}

.steps .s.active,
.steps .s.done {
  color: var(--text);
}

.steps .s.active .dot,
.steps .s.done .dot {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.steps .bar {
  height: 1px;
  background: var(--line);
}

.buy-section {
  margin-top: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .1);
}

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

.purchase-option {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  padding: 19px;
  text-align: left;
}

.purchase-option:hover {
  border-color: rgba(131, 108, 255, .68);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.option-name {
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.option-price {
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 800;
}

.option-price small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 500;
}

.option-detail {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.option-action {
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.selection-summary,
.acct,
.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.selection-summary strong,
.acct .id,
.total b {
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.selection-summary span,
.acct .who {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.link-btn {
  display: inline-flex;
  margin: 0 0 27px;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  padding: 0;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-btn:hover {
  color: var(--accent-hover);
}

.site-buy label {
  display: grid;
  gap: 7px;
  margin: 0 0 9px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.hint {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.site-buy input {
  width: 100%;
  min-height: 50px;
  margin-bottom: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: 0;
  background: var(--bg-raised);
  color: var(--text);
  padding: 12px 14px;
}

.site-buy input::placeholder {
  color: var(--faint);
}

.site-buy input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

button.buy {
  width: 100%;
  margin-top: 5px;
}

button.buy:disabled,
button.primary:disabled {
  cursor: not-allowed;
  opacity: .5;
  transform: none;
}

.msg {
  min-height: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.msg.err {
  color: var(--danger);
}

.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 21px;
}

.pack {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  padding: 13px 10px;
  text-align: left;
}

.pack:hover,
.pack.on {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.pack .c {
  font-size: 13px;
  font-weight: 800;
}

.pack .p {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.total {
  margin-top: 22px;
  margin-bottom: 14px;
}

.total span {
  color: var(--muted);
  font-size: 13px;
}

.badge {
  border: 1px solid rgba(157, 227, 215, .24);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
}

.badge.free {
  border-color: var(--line);
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
}

.foot {
  margin: 27px 0 0;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.banner {
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 15px;
  font-size: 13px;
}

.banner.ok {
  border-color: rgba(155, 226, 181, .3);
  background: var(--success-soft);
  color: var(--success);
}

.banner.warn {
  border-color: rgba(242, 198, 109, .3);
  background: var(--warning-soft);
  color: var(--warning);
}

.confirm-layer {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  overflow: auto;
  place-items: center;
  background: rgba(5, 7, 11, .74);
  padding: 22px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.confirm-dialog {
  width: min(100%, 500px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 27px;
  box-shadow: var(--shadow);
}

.confirm-dialog h2 {
  margin-bottom: 21px;
  font-size: 31px;
}

.confirm-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
}

.avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.confirm-person strong,
.confirm-person span {
  display: block;
}

.confirm-person span {
  color: var(--muted);
  font-size: 13px;
}

.account-facts {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.account-facts div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.account-facts dt,
.account-facts dd {
  margin: 0;
  font-size: 13px;
}

.account-facts dt {
  color: var(--muted);
}

.account-facts dd {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.device-block {
  color: var(--muted);
  font-size: 13px;
}

.device-block strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.device-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.device-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  padding: 5px 9px;
  font-size: 12px;
}

.device-sync-note {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
}

.privacy-note {
  color: var(--faint);
  font-size: 12px;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.confirm-actions button:not(.primary) {
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.confirm-actions button:not(.primary):hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: 42px;
  }

  .hero-scene {
    min-height: 430px;
  }

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

  .hero-facts > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .hero-facts > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .trust-layout {
    grid-template-columns: 1fr;
    display: grid;
    gap: 18px;
  }

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

  .plan:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .wrap,
  .site-doc .site-header-wrap {
    width: min(calc(100% - 32px), 1120px);
  }

  .site-header {
    min-height: 68px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 15px 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  nav a {
    font-size: 12px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 62px 0 42px;
  }

  .hero .lede {
    font-size: 16px;
  }

  .hero-scene {
    min-height: 420px;
    margin-top: 46px;
  }

  .capability-band,
  .trust-band,
  .pricing-band {
    padding: 68px 0;
  }

  .grid,
  .plans,
  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .plan:last-child {
    grid-column: auto;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feat {
    min-height: auto;
  }

  .trust-layout {
    gap: 30px;
  }

  .site-doc > .wrap,
  .buy-flow {
    padding-top: 52px;
    padding-bottom: 65px;
  }

  .site-doc table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .site-doc th,
  .site-doc td {
    min-width: 150px;
  }

  .steps {
    gap: 7px;
    font-size: 10px;
  }

  .steps .s {
    gap: 5px;
  }

  .steps .dot {
    width: 24px;
    height: 24px;
  }

  .buy-section,
  .confirm-dialog {
    padding: 18px;
  }

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

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

@media (max-width: 420px) {
  h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .hero-actions .cta,
  .hero-actions .secondary-cta {
    width: 100%;
  }

  .hero-actions .cta,
  .hero-actions .secondary-cta {
    text-align: center;
  }

  .hero-facts > div {
    padding-right: 12px;
  }

  .hero-facts > div + div {
    padding-left: 12px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
