:root {
  --bg-1: #06070d;
  --bg-2: #0b0f18;
  --bg-3: #101624;
  --bg-4: #161d2e;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f3f5fb;
  --muted: #a6aec5;
  --soft: #7e87a1;
  --cool: #62d6ff;
  --cool-soft: #b8ecff;
  --warm: #ffca55;
  --mint: #79f0cc;
  --danger: #ff7e90;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(98, 214, 255, 0.12), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(255, 202, 85, 0.12), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 36%, #090d15 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.45;
  z-index: 0;
}

body::before {
  top: 96px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(98, 214, 255, 0.12);
}

body::after {
  top: 160px;
  right: -90px;
  width: 360px;
  height: 360px;
  background: rgba(255, 202, 85, 0.1);
}

body.is-cart-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 24px;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark polyline {
  fill: none;
  stroke: var(--warm);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(255, 202, 85, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.solution-tabs::-webkit-scrollbar {
  display: none;
}

.solution-tab,
.ghost-link {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.solution-tab:hover,
.ghost-link:hover,
.solution-tab.is-active {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-button,
.btn,
.icon-button {
  appearance: none;
  border: 1px solid var(--line);
  color: inherit;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cart-button:hover,
.btn:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.cart-button__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--warm), #fff1c1);
  color: #101013;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero {
  padding-top: 78px;
}

.hero-grid,
.checkout-layout,
.split-layout {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 32px;
  width: 5px;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(98, 214, 255, 0), var(--cool), rgba(255, 202, 85, 0.8));
  box-shadow: 0 0 24px rgba(98, 214, 255, 0.35);
}

.lead {
  max-width: 720px;
  font-size: 1.08rem;
  color: var(--muted);
}

.gradient-text {
  background: linear-gradient(120deg, #ffffff 10%, var(--cool-soft) 42%, #ffd574 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: #f7d87e;
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.price-card__actions,
.checkout-actions,
.cart-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  border-color: transparent;
  color: #111318;
  background: linear-gradient(135deg, #fff0be 0%, var(--warm) 50%, #ffe8a0 100%);
  box-shadow: 0 18px 42px rgba(255, 202, 85, 0.22);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cool-soft);
  cursor: pointer;
}

.eyebrow,
.badge,
.price-card__badge,
.provider-card__state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.badge {
  padding: 9px 14px;
  font-size: 0.74rem;
  color: #dbe8f1;
}

.eyebrow--compact {
  margin-bottom: 12px;
  padding: 7px 11px;
}

.hero-chip-row,
.hero-metrics,
.preview-captions,
.footer-links,
.compat-list,
.stack-list {
  display: grid;
  gap: 14px;
}

.hero-chip-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.hero-chip,
.caption-pill,
.compat-item,
.stack-item,
.workflow-step,
.summary-card,
.site-footer,
.field,
.provider-card,
.card,
.price-card,
.info-card,
.faq-item,
.metric-card,
.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-chip {
  padding: 16px 18px;
  border-radius: 18px;
  color: #dce5ef;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cool-soft);
  font-size: 1.05rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.panel,
.card,
.price-card,
.faq-item,
.summary-card,
.field,
.provider-card,
.workflow-step,
.compat-item,
.stack-item {
  border-radius: var(--radius-lg);
}

.preview-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(98, 214, 255, 0.12);
  filter: blur(20px);
}

.preview-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.preview-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050608;
}

.preview-figure img {
  width: 100%;
  height: auto;
}

.preview-captions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.caption-pill {
  padding: 16px;
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head--tight {
  max-width: none;
  margin-bottom: 24px;
}

.grid-3,
.grid-2,
.faq-grid {
  display: grid;
  gap: 20px;
}

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

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

.license-single {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.card,
.price-card,
.faq-item,
.info-card {
  padding: 28px;
}

.feature-card,
.price-card,
.faq-item,
.stack-item {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.price-card:hover,
.faq-item:hover,
.stack-item:hover,
.provider-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cool-soft), var(--cool));
  box-shadow: 0 12px 28px rgba(98, 214, 255, 0.16);
}

.card-icon--warm {
  background: linear-gradient(135deg, #ffe8a1, var(--warm));
  box-shadow: 0 12px 28px rgba(255, 202, 85, 0.16);
}

.license-section,
.checkout-section,
.systems-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 70% 0%, rgba(98, 214, 255, 0.08), transparent 30%);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border-color: rgba(255, 202, 85, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 28px 84px rgba(255, 202, 85, 0.12);
}

.price-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.price-card__badge {
  padding: 7px 10px;
  margin-bottom: 12px;
  font-size: 0.68rem;
  color: #e6eef7;
}

.price-card__amount {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--warm);
}

.price-card__description,
.faq-item p,
.feature-card p,
.workflow-step p,
.compat-item,
.stack-item p,
.field-group__head p,
.provider-card p,
.summary-card p,
.cart-item p,
#footerNote {
  color: var(--muted);
}

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

.perk-list li {
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dce4ef;
}

.download-stack {
  display: grid;
  gap: 12px;
}

.download-button {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 202, 85, 0.12), rgba(255, 255, 255, 0.05));
}

.download-button span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.download-button small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checkout-panel {
  padding: 30px;
}

.checkout-side {
  display: grid;
  gap: 20px;
}

.checkout-form {
  display: grid;
  gap: 20px;
}

.checkout-warning {
  padding: 20px 22px;
  border: 1px solid rgba(255, 202, 85, 0.38);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 202, 85, 0.18), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-warning strong {
  display: block;
  margin-bottom: 8px;
  color: #fff1bf;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.checkout-warning p {
  margin: 0;
  color: #f3e7bf;
}

.field,
.provider-card {
  display: block;
  padding: 18px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #dce4f3;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(6, 9, 15, 0.86);
  color: var(--text);
  font: inherit;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field input:focus,
.field select:focus {
  outline: 1px solid rgba(98, 214, 255, 0.5);
}

.field input::placeholder {
  color: var(--soft);
}

.field-hint {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.field-group {
  display: grid;
  gap: 14px;
}

.field-group__head h3 {
  margin-bottom: 6px;
}

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

.provider-card {
  position: relative;
  min-height: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.provider-card.is-active {
  border-color: rgba(98, 214, 255, 0.4);
  background: linear-gradient(180deg, rgba(98, 214, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.provider-card__radio {
  position: absolute;
  inset: 18px 18px auto auto;
  accent-color: var(--cool);
}

.provider-card__state {
  padding: 6px 10px;
  margin-bottom: 14px;
  font-size: 0.68rem;
  color: #dce8f4;
}

.provider-card__meta {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.88rem;
}

.summary-card {
  padding: 20px;
}

.summary-card__head,
.summary-row,
.cart-total-row,
.cart-item,
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.summary-card__head,
.summary-row {
  align-items: center;
}

.summary-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.summary-row span {
  color: var(--muted);
}

.footnote {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.checkout-status {
  min-height: 24px;
  font-size: 0.95rem;
}

.checkout-status--neutral {
  color: var(--cool-soft);
}

.checkout-status--success {
  color: var(--mint);
}

.checkout-status--error {
  color: var(--danger);
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-step {
  display: flex;
  gap: 14px;
  padding: 16px;
}

.workflow-step__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(98, 214, 255, 0.12);
  color: var(--cool-soft);
  font-family: "IBM Plex Mono", monospace;
}

.compat-list,
.stack-list {
  margin-top: 6px;
}

.compat-item,
.stack-item {
  padding: 18px;
}

.split-layout {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.site-footer {
  margin: 0 0 26px;
  padding: 28px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-row {
  align-items: flex-end;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.footer-links {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 4, 8, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 24;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 20px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(98, 214, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(10, 12, 19, 0.98), rgba(6, 8, 12, 0.98));
  box-shadow: -22px 0 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(24px);
  transform: translateX(104%);
  transition: transform 0.25s ease;
  z-index: 25;
}

body.is-cart-open .cart-drawer {
  transform: translateX(0);
}

body.is-cart-open .cart-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.cart-drawer__body {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding-right: 4px;
}

.cart-drawer__footer {
  display: grid;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  align-items: center;
  font-size: 1.04rem;
}

.cart-note {
  margin: 0;
  color: var(--soft);
}

.cart-item {
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.cart-item__copy {
  flex: 1;
}

.cart-item__meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.quantity-control button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.empty-state {
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.site-notice {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 14px);
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.site-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.account-section {
  padding-top: 84px;
}

.account-layout,
.auth-grid {
  display: grid;
  gap: 24px;
}

.account-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.account-panel {
  padding: 30px;
}

.account-side,
.auth-column {
  display: grid;
  gap: 20px;
}

.account-status-banner {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.account-status-banner--neutral {
  color: var(--cool-soft);
}

.account-status-banner--success {
  border-color: rgba(121, 240, 204, 0.32);
  color: var(--mint);
}

.account-status-banner--error {
  border-color: rgba(255, 126, 144, 0.34);
  color: var(--danger);
}

.auth-card {
  padding: 24px;
}

.auth-card h2,
.vault-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.auth-copy {
  margin-bottom: 18px;
  color: var(--muted);
}

.auth-form,
.profile-stack,
.license-vault {
  display: grid;
  gap: 14px;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.profile-row,
.license-item__head,
.license-item__meta,
.license-item__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.profile-row {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.profile-row span,
.license-item__head p,
.license-item__meta {
  color: var(--muted);
}

.google-button-wrap {
  min-height: 44px;
}

.inline-note {
  padding: 14px 16px;
  border: 1px solid rgba(121, 240, 204, 0.28);
  border-radius: 16px;
  background: rgba(121, 240, 204, 0.08);
  color: var(--mint);
}

.license-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.license-item h3 {
  margin-bottom: 6px;
}

.license-secret {
  display: block;
  margin: 18px 0 14px;
  padding: 16px;
  border: 1px solid rgba(98, 214, 255, 0.2);
  border-radius: 16px;
  background: rgba(6, 9, 15, 0.86);
  color: var(--cool-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.license-item__meta {
  font-size: 0.9rem;
}

.vault-card {
  padding: 24px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .checkout-layout,
  .split-layout,
  .account-layout,
  .grid-3,
  .faq-grid,
  .grid-2,
  .preview-captions,
  .hero-chip-row,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .solution-tabs {
    justify-content: flex-start;
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 72px 0;
  }

  .site-header {
    padding-top: 12px;
  }

  .topbar {
    padding: 14px;
  }

  .hero {
    padding-top: 46px;
  }

  .preview-card,
  .checkout-panel,
  .card,
  .price-card,
  .faq-item,
  .info-card {
    padding: 22px;
  }

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

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

  .price-card__head,
  .summary-card__head,
  .summary-row,
  .footer-row,
  .cart-item,
  .profile-row,
  .license-item__head,
  .license-item__meta,
  .license-item__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item__meta {
    justify-items: start;
  }

  .footer-links {
    grid-auto-flow: row;
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .btn,
  .cart-button {
    width: 100%;
    justify-content: center;
  }

  .checkout-actions,
  .cart-drawer__actions,
  .hero-actions,
  .auth-actions {
    flex-direction: column;
  }

  .ghost-link {
    width: 100%;
    text-align: center;
  }
}
