@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --font-display: "Newsreader", "Georgia", serif;
  --color-ink: #0b1220;
  --color-ink-muted: #5a6477;
  --color-ink-inverse: #f8fafc;
  --color-accent: #ef4444;
  --color-accent-dark: #b91c1c;
  --color-protect: #0ea5a4;
  --color-protect-dark: #0f766e;
  --color-accent-soft: rgba(239, 68, 68, 0.12);
  --color-surface: #ffffff;
  --color-surface-alt: #f3f5fa;
  --color-border: #e2e8f0;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 16px 40px rgba(11, 18, 32, 0.18);
  --radius: 20px;
  --radius-small: 12px;
  --max-width: 1120px;
  --page-hero-min-height: 19.5rem;
}

.td-currency-resolving [data-currency-sensitive],
.td-currency-resolving [data-price-plan],
.td-currency-resolving [data-price-unit] {
  visibility: hidden;
}

/* Checkout (Stripe Payment Element) */
.section-checkout {
  padding-top: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.checkout-grid > * {
  min-width: 0;
}

.summary-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
  position: sticky;
  top: 88px;
}

.summary-kicker {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.94rem;
  color: var(--color-ink-muted);
}

.summary-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.summary-price {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.summary-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--color-ink-muted);
  display: grid;
  gap: 0.4rem;
}

.summary-note {
  margin: 0.5rem 0 0;
  font-size: 1.06rem;
  color: var(--color-ink-muted);
}

.checkout-card .muted {
  margin-top: -0.5rem;
  margin-bottom: 0.1rem;
}

.express-checkout {
  display: grid;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  padding: 0.85rem;
  min-height: 138px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.express-checkout.is-pending {
  opacity: 1;
  transform: translateY(0);
}

.express-checkout.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.express-mount-wrap {
  position: relative;
  min-height: 64px;
  max-width: 560px;
  margin: 0 auto;
}

.express-element {
  min-height: 64px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 0.35rem;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.express-checkout.is-ready .express-element {
  border-color: rgba(14, 165, 164, 0.45);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 164, 0.08);
  background: #ffffff;
}

.express-element iframe {
  width: 100%;
}

.express-skeleton {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(100deg, #e2e8f0 12%, #f8fafc 50%, #e2e8f0 88%);
  background-size: 240% 100%;
  animation: express-skeleton-shimmer 1.05s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.express-checkout.is-loading .express-skeleton {
  opacity: 1;
}

.express-checkout.is-ready .express-skeleton,
.express-checkout.is-visible .express-skeleton {
  opacity: 0;
}

@keyframes express-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.manual-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.2rem 0 0;
}

.manual-divider::before {
  content: "";
  width: 100%;
  border-top: 1px solid rgba(100, 116, 139, 0.45);
}

.manual-divider span {
  position: absolute;
  padding: 0 0.65rem;
  background: #ffffff;
  color: #334155;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.manual-checkout {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
  padding: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.manual-checkout .checkout-actions {
  margin-top: 0.1rem;
}

.checkout-trust {
  margin: 0;
  font-weight: 700;
  color: var(--color-ink);
}

.checkout-reassure {
  margin-top: -0.4rem;
}

.checkout-actions {
  display: grid;
  gap: 0.45rem;
}

.checkout-primary {
  width: 100%;
  min-height: 58px;
  font-size: 1.16rem;
  font-weight: 700;
  background: #0b1220;
  color: #ffffff;
  border-color: #0b1220;
}

.checkout-primary:hover,
.checkout-primary:focus-visible {
  background: #020617;
  color: #ffffff;
}

.checkout-secondary-row {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-ink-muted);
}

.checkout-secondary-row a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-secondary-row a:hover,
.checkout-secondary-row a:focus-visible {
  color: var(--color-ink);
}

.plan-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.plan-upgrade-note {
  margin: -0.2rem 0 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 118, 110, 0.32);
  background: rgba(14, 165, 164, 0.1);
  color: #0f766e;
  font-weight: 600;
  line-height: 1.35;
}

.plan-upgrade-note strong {
  color: #0f172a;
  font-weight: 800;
}

.plan-option {
  text-align: left;
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.7rem 0.9rem 0.9rem 2.3rem;
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  position: relative;
  box-shadow: none;
}

.plan-option:hover,
.plan-option:focus-visible {
  border-color: rgba(239, 68, 68, 0.6);
  outline: none;
}

.plan-option.is-selected {
  border-color: var(--color-accent);
  box-shadow: none;
}

.plan-option#planAnnual:not(.is-selected) {
  border-color: rgba(185, 28, 28, 0.68);
  background: #ffffff;
  box-shadow: none;
}

.plan-radio {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid #94a3b8;
  background: #ffffff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.plan-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: transparent;
}

.plan-option.is-selected .plan-radio {
  border-color: var(--color-accent);
}

.plan-option.is-selected .plan-radio::after {
  background: var(--color-accent);
}

.plan-badge {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--color-accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-option#planAnnual .plan-badge {
  background: #dc2626;
  color: #ffffff;
  font-weight: 900;
  box-shadow: none;
}

.plan-name {
  font-weight: 800;
}

.plan-sub {
  color: var(--color-ink-muted);
  font-size: 1.03rem;
}

.plan-amount {
  margin-top: 0.2rem;
  font-weight: 800;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-input-wrap {
  position: relative;
  display: block;
}

.field input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 1.06rem;
}

.field input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.field input.is-invalid {
  border-color: var(--color-accent-dark);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.field input.is-valid {
  border-color: rgba(14, 165, 164, 0.65);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.12);
  padding-right: 2.25rem;
}

.field-valid {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  transform: translateY(-50%);
  color: #0f766e;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.field-label {
  font-weight: 700;
}

.checkout-group-label {
  margin-top: 0.1rem;
  margin-bottom: -0.1rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #334155;
  letter-spacing: 0.01em;
}

.field-error {
  margin: -0.25rem 0 0;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--color-accent-dark);
}

.payment-wrap {
  display: grid;
  gap: 0.5rem;
}

.payment-wrap.is-placeholder .payment-element {
  min-height: 56px;
  border-style: dashed;
  border-color: rgba(90, 100, 119, 0.45);
  background: #f8fafc;
}

.payment-element {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.payment-element .__PrivateStripeElement {
  width: 100%;
}

@media (max-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .plan-picker {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-surface-alt);
  min-height: 100vh;
}

h1,
h2 {
  font-family: var(--font-display);
}

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

a:hover,
a:focus-visible {
  color: var(--color-accent-dark);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  z-index: 999;
}

.skip-link:focus {
  left: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 3rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 18, 32, 0.96);
  color: var(--color-ink-inverse);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0.7rem 0;
  gap: 1.5rem;
}

.site-header-checkout .checkout-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
  font-weight: 600;
}

.site-header-checkout .checkout-help-label {
  color: rgba(248, 250, 252, 0.75);
}

.site-header-checkout .checkout-help a {
  color: var(--color-ink-inverse);
}

.site-header-checkout .checkout-help a:hover,
.site-header-checkout .checkout-help a:focus-visible {
  color: #fbbf24;
}

.site-header-checkout .brand {
  cursor: default;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: transparent;
  border: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 999px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.06rem;
}

.site-nav a {
  color: rgba(248, 250, 252, 0.7);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--color-ink-inverse);
}

.locale-picker {
  position: relative;
}

.locale-picker-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.47rem 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.locale-picker-toggle::-webkit-details-marker {
  display: none;
}

.locale-picker-toggle:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.75);
  outline-offset: 2px;
}

.locale-picker[open] .locale-picker-toggle {
  border-color: rgba(94, 234, 212, 0.5);
  background: rgba(15, 23, 42, 0.88);
}

.locale-picker-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(248, 250, 252, 0.9);
  margin-left: 0.12rem;
  transform: translateY(1px);
  transition: transform 0.18s ease;
}

.locale-picker[open] .locale-picker-caret {
  transform: rotate(180deg) translateY(-1px);
}

.locale-picker-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: 224px;
  max-height: 340px;
  overflow-y: auto;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: rgba(11, 18, 32, 0.98);
  padding: 0.45rem;
  box-shadow: var(--shadow-soft);
  z-index: 25;
}

.locale-picker-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.52rem 0.56rem;
  border-radius: 10px;
  color: rgba(248, 250, 252, 0.86);
}

.locale-picker-link:hover,
.locale-picker-link:focus-visible {
  color: #ffffff;
  background: rgba(51, 65, 85, 0.72);
}

.locale-picker-link.is-current {
  color: #ffffff;
  background: rgba(14, 165, 164, 0.2);
}

.locale-picker-flag {
  width: 18px;
  height: 13px;
  border-radius: 3px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  overflow: hidden;
  flex: 0 0 auto;
}

.locale-picker-flag img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.25);
  line-height: 1;
}

.nav-toggle-bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle-bars span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #f8fafc;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(239, 68, 68, 0.18);
}

.site-header.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.main {
  padding-bottom: 4rem;
}

.hero {
  color: var(--color-ink-inverse);
  padding: 2.2rem 0 4rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 164, 0.2) 0%, transparent 40%),
    linear-gradient(120deg, #0b1220 0%, #111827 55%, #0b1220 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 600;
  font-size: 0.98rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin: 1.2rem 0 1rem;
}

.hero p.lede {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.75);
  max-width: 34rem;
}

.hero-proof {
  margin: 0.8rem 0 0;
  font-size: 1.02rem;
  color: rgba(248, 250, 252, 0.75);
}

.hero .hero-copy .hero-bullets {
  list-style-type: none;
  padding-left: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(248, 250, 252, 0.9);
}

.hero .hero-copy .hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
}

.hero .hero-copy .hero-bullets .bullet-text {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero .hero-copy .hero-bullets strong::after {
  content: ":";
  margin-left: 0.1rem;
}

.hero .hero-copy .hero-bullets .bullet-desc {
  color: rgba(248, 250, 252, 0.75);
}

.icon-shield {
  width: 18px;
  height: 18px;
  color: var(--color-protect);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.5rem;
}

.hero-reassure {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: rgba(248, 250, 252, 0.65);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-accent-dark);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(248, 250, 252, 0.35);
  color: #f8fafc;
}

.section .btn-secondary {
  border-color: var(--color-border);
  color: var(--color-ink);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.98rem;
  color: rgba(248, 250, 252, 0.7);
}

.hero-reassure + .hero-meta {
  margin-top: 0.7rem;
}

.hero-meta span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-panel {
  align-self: stretch;
}

.risk-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-card);
}

.risk-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.risk-header h2 {
  font-size: 1.18rem;
  margin: 0;
}

.status-chip {
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

.risk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.risk-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: start;
}

.risk-note {
  display: block;
  font-size: 0.96rem;
  color: rgba(226, 232, 240, 0.7);
  margin-top: 0.2rem;
}

.risk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.35rem;
  display: inline-block;
}

.risk-dot.danger {
  background: var(--color-accent);
}

.risk-dot.warn {
  background: #f97316;
}

.risk-dot.protect {
  background: #22c55e;
  box-shadow: 0 0 4px #ffffff, 0 0 12px #22c55e;
}

.risk-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: #3b82f6;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  width: auto;
  white-space: nowrap;
  text-align: center;
}

.risk-footer {
  margin-top: 1.5rem;
  color: rgba(226, 232, 240, 0.7);
}

.section {
  padding: 3.8rem 0;
}

.section-contrast {
  background: #f8fafc;
}

.section-social {
  background: #111a2b;
  color: var(--color-ink-inverse);
  padding: 2.6rem 0;
}

.section-social h2 {
  color: var(--color-ink-inverse);
  margin: 0;
}

.social-proof {
  display: grid;
  gap: 1.5rem;
}

.social-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 18px 36px rgba(11, 18, 32, 0.28);
}

.social-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.social-card p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(248, 250, 252, 0.92);
  position: relative;
  padding-left: 1.6rem;
  padding-right: 1.4rem;
}

.social-card .quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(248, 250, 252, 0.35);
  pointer-events: none;
}

.social-card .quote-mark--open {
  left: 0;
  top: -0.2rem;
}

.social-card .quote-mark--close {
  right: 0;
  bottom: -0.4rem;
}

.social-attribution {
  font-size: 1.02rem;
  color: rgba(248, 250, 252, 0.65);
}

.star-rating {
  color: #facc15;
  font-size: 1.02rem;
  letter-spacing: 0.18rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.section p.section-lede {
  color: var(--color-ink-muted);
  max-width: 36rem;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-pricing {
  background: #ffffff;
}

.protection-banner {
  margin-top: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-protect);
  border-radius: var(--radius-small);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.protection-banner h2 {
  margin: 0;
  font-size: 1.2rem;
}

.protection-banner p {
  margin: 0.35rem 0 0;
  color: var(--color-ink-muted);
}

.banner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 165, 164, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.banner-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-protect);
  stroke-width: 2;
  fill: none;
}

.protection-icons {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.5rem;
}

.browser-gate {
  margin: 1.5rem 0;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-small);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.browser-gate[hidden] {
  display: none !important;
}

.browser-gate--supported {
  border-left-color: #2f855a;
  background: #e9f7ef;
}

.browser-gate--unsupported {
  border-left-color: var(--color-accent);
}

.browser-gate h3 {
  margin: 0;
  font-size: 1.1rem;
}

.browser-gate p {
  margin: 0.35rem 0 0.9rem;
  color: var(--color-ink-muted);
}

.browser-gate-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.browser-gate-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-accent);
  stroke-width: 2;
  fill: none;
}

.browser-gate--supported .browser-gate-icon {
  background: #d7f2e3;
}

.browser-gate--supported .browser-gate-icon svg {
  stroke: #2f855a;
}

.protection-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-soft);
  color: var(--color-ink);
  font-weight: 600;
}

.protection-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-protect);
  stroke-width: 2;
  fill: none;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-small);
  padding: 1.8rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}


.pricing-card.featured {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.15);
  position: relative;
}

.pricing-card.featured .price-note.emphasis {
  color: var(--color-protect-dark);
  font-weight: 700;
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-header h3 {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.2rem;
}

.price {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-ink);
}

.price-unit {
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--color-ink-muted);
}

.price-note {
  margin: 0.4rem 0 0;
  font-size: 1.06rem;
  color: var(--color-ink-muted);
}

.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--color-ink-muted);
  font-size: 1.08rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-protect);
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.15);
}

.pricing-trustline {
  margin: 1.5rem 0 0;
  font-weight: 600;
  color: var(--color-ink-muted);
}

.pricing-next {
  margin-top: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-small);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.4rem;
}

.pricing-next h3 {
  margin: 0 0 0.4rem;
  font-size: 1.16rem;
}

.pricing-next p {
  margin: 0;
  color: var(--color-ink-muted);
}

.page-trial-expired .main {
  padding-bottom: 3rem;
}

.trial-expired-hero {
  padding: 2.2rem 0 1.5rem;
}

.trial-expired-hero-inner {
  max-width: var(--max-width);
}

.trial-expired-hero .page-header h1,
.trial-expired-hero h1 {
  color: #f8fafc;
}

.trial-expired-pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.95rem;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trial-expired-intro {
  margin: 0 0 0.85rem;
  max-width: 46rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.08rem;
}

.trial-expired-risk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-width: 38rem;
}

.trial-expired-risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.96);
}

.trial-risk-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(239, 68, 68, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trial-risk-icon svg {
  width: 15px;
  height: 15px;
  stroke: #f87171;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-trial-expired-flow {
  background: #f3f5fa;
  padding-top: 1.35rem;
}

.trial-expired-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.95rem;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
}

.trial-step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1.05rem;
  display: grid;
  gap: 0.65rem;
}

.trial-step-card-primary {
  border-color: rgba(14, 165, 164, 0.35);
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.14);
}

.trial-step-kicker {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0ea5e9;
}

.trial-step-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  line-height: 1.1;
}

.trial-step-copy {
  margin: 0;
  color: var(--color-ink-muted);
  font-size: 1.1rem;
}

.trial-step-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.trial-step-pricing .pricing-card {
  padding: 1.1rem;
  box-shadow: none;
  gap: 0.7rem;
}

.page-trial-expired .trial-step-pricing .pricing-card.featured {
  transform: none;
}

.page-trial-expired .trial-step-pricing .pricing-header h3 {
  margin: 0.2rem 0 0.1rem;
  font-size: 1.14rem;
}

.page-trial-expired .trial-step-pricing .price {
  font-size: 1.8rem;
  line-height: 1.05;
}

.page-trial-expired .trial-step-pricing .price-unit {
  font-size: 1.08rem;
}

.page-trial-expired .trial-step-pricing .price-note {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}

.page-trial-expired .trial-step-pricing .pricing-features {
  gap: 0.38rem;
  font-size: 1.03rem;
}

.page-trial-expired .trial-step-pricing .pricing-features li {
  gap: 0.5rem;
}

.page-trial-expired .trial-step-pricing .pricing-features li::before {
  width: 7px;
  height: 7px;
}

.page-trial-expired .trial-step-pricing .pricing-badge {
  font-size: 0.88rem;
  padding: 0.24rem 0.62rem;
}

.trial-step-plan-btn {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  font-size: 1.06rem;
}

.trial-step-actions {
  display: grid;
  gap: 0.65rem;
}

.trial-step-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 44px;
  font-size: 1.06rem;
  font-weight: 700;
}

.trial-step-btn-primary {
  background: #22c55e;
  border-color: #22c55e;
  color: #ffffff;
}

.trial-step-btn-primary:hover,
.trial-step-btn-primary:focus-visible {
  background: #16a34a;
  border-color: #16a34a;
  color: #ffffff;
}

.trial-step-btn-secondary {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

.trial-step-btn-secondary:hover,
.trial-step-btn-secondary:focus-visible {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.trial-step-btn-secondary-dark {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #0f172a;
}

.trial-step-btn-secondary-dark:hover,
.trial-step-btn-secondary-dark:focus-visible {
  background: #f8fafc;
  border-color: #94a3b8;
  color: #0f172a;
}

.trial-step-footnote {
  margin: 0;
  font-size: 1.06rem;
  color: #475569;
}

.trial-activate-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  display: grid;
  gap: 0.3rem;
  line-height: 1.35;
  font-size: 1.08rem;
}

.trial-step-card-activate .trial-step-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trial-expired-alt {
  margin: 0.7rem 0 0;
  text-align: center;
  color: var(--color-ink-muted);
  font-size: 1.05rem;
}

.trial-expired-alt a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 900px) {
  .pricing-card.featured {
    transform: translateY(-6px);
  }
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-small);
  padding: 1.6rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.card--threat {
  border-left: 3px solid var(--color-accent);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.16rem;
}

.card p {
  color: var(--color-ink-muted);
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.split-points {
  padding-left: 1.2rem;
  color: var(--color-ink-muted);
}

.compare-grid {
  display: grid;
  gap: 1.2rem;
}

.compare-card {
  background: var(--color-surface);
  border-radius: var(--radius-small);
  padding: 1.4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.compare-label {
  font-weight: 700;
  margin: 0 0 0.8rem;
}

.compare-card--risk {
  border-left: 3px solid var(--color-accent);
}

.compare-card--safe {
  border-left: 3px solid var(--color-protect);
}

.mock-page {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.mock-line {
  height: 8px;
  border-radius: 999px;
  background: #dbe1ea;
}

.mock-line.short {
  width: 60%;
}

.mock-ad {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  width: fit-content;
}

.mock-tracker {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
}

.mock-shield {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(14, 165, 164, 0.2);
  border: 1px solid rgba(14, 165, 164, 0.4);
}

.steps {
  display: grid;
  gap: 1.2rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius-small);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-note {
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.toolbar-visual {
  margin-top: 0.75rem;
  max-width: 420px;
}

.toolbar-bar {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  background: #e2e8f0;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
}

.toolbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
}

.toolbar-labels {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 0.35rem;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.page-welcome .welcome-float-steps {
  position: fixed;
  top: 36px;
  right: 32px;
  z-index: 50;
  display: grid;
  gap: 0.85rem;
  width: max-content;
  min-width: 420px;
  pointer-events: none;
  animation: welcome-float 1.8s ease-in-out infinite;
}

.page-welcome .welcome-bullets {
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.6rem;
  max-width: none;
  color: #0f172a;
}

.page-welcome .welcome-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #34d399;
  color: #ffffff;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 0.8rem;
}

.page-welcome .welcome-status strong {
  color: #ffffff;
}

.page-welcome .welcome-status-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.page-welcome .welcome-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.06rem;
  white-space: nowrap;
}

.page-welcome .welcome-bullets .bullet-text {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.35rem;
}

.page-welcome .welcome-bullets strong::after {
  content: ":";
  margin-left: 0.1rem;
}

.page-welcome .welcome-bullets .bullet-desc {
  color: #475569;
}

.page-welcome .welcome-step-card {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.page-welcome .welcome-step-card:first-child {
  overflow: visible;
}

.page-welcome .welcome-step-label {
  background: #34d399;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 1rem 1.2rem;
  min-width: 86px;
  text-align: center;
  border-radius: 16px 0 0 16px;
}

.page-welcome .welcome-step-text {
  padding: 0.9rem 1.1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.page-welcome .welcome-step-card:first-child::before {
  content: '';
  position: absolute;
  top: -14px;
  right: 110px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid var(--color-border);
}

.page-welcome .welcome-step-card:first-child::after {
  content: '';
  position: absolute;
  top: -13px;
  right: 111px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #ffffff;
}

.page-welcome .welcome-inline-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin: 0 2px;
  vertical-align: middle;
}

.page-welcome .welcome-inline-logo {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 2px;
}

@keyframes welcome-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .page-welcome .welcome-float-steps {
    animation: none;
  }
}

@media (max-width: 900px) {
  .page-welcome .welcome-float-steps {
    display: none;
  }
}

.callout {
  padding: 1.8rem;
  border-radius: var(--radius);
  background: #f1f5f9;
  border: 1px solid var(--color-border);
  display: grid;
  gap: 1rem;
}

.form-card {
  background: var(--color-surface);
  border-radius: var(--radius-small);
  padding: 1.8rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.license-key {
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: #0f172a;
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.25);
  word-break: break-all;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.form-row input {
  flex: 1 1 240px;
  min-width: 200px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 1.06rem;
}

.form-row input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  font-size: 1.06rem;
  color: var(--color-ink-muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.page-header {
  padding: 3rem 0 2rem;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.page-checkout .page-header {
  padding: 0;
}

.page-checkout .page-header .container {
  min-height: clamp(7.75rem, 14vh, 10.25rem);
  padding-block: 1rem 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-checkout .page-header h1 {
  margin: 0 0 0.35rem;
  line-height: 1.05;
  font-size: clamp(1.9rem, 4.8vw, 2.35rem);
}

.page-checkout .page-header .muted {
  margin: 0;
  max-width: 34rem;
}

.prose {
  max-width: 760px;
  color: var(--color-ink-muted);
}

.prose h2 {
  color: var(--color-ink);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.page-privacy .main {
  padding-bottom: 3rem;
}

.page-hero,
.privacy-hero,
.support-hero,
.pricing-hero,
.terms-hero,
.trial-expired-hero {
  color: var(--color-ink-inverse);
  padding: 2.2rem 0 1.5rem;
  min-height: var(--page-hero-min-height);
  background:
    radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 164, 0.2) 0%, transparent 40%),
    linear-gradient(120deg, #0b1220 0%, #111827 55%, #0b1220 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.page-hero-inner {
  max-width: var(--max-width);
  width: 100%;
  min-height: calc(var(--page-hero-min-height) - 3.7rem);
  padding-bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero-inner > :first-child {
  margin-bottom: 0.8rem;
}

.page-hero-inner > :nth-child(2) {
  margin-top: auto !important;
}

.page-hero-inner > :last-child {
  margin-bottom: auto !important;
}

.privacy-hero-inner,
.terms-hero-inner {
  max-width: var(--max-width);
}

.pricing-hero-inner {
  max-width: var(--max-width);
}

.privacy-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.privacy-lede {
  margin: 0;
  max-width: 48rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.privacy-updated {
  margin: 0.7rem 0 0;
  color: rgba(226, 232, 240, 0.88);
  font-size: 1.05rem;
}

.privacy-pill-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.privacy-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-privacy-content {
  padding-top: 1.35rem;
}

.privacy-layout {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.privacy-sidecard {
  position: sticky;
  top: 86px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.privacy-sidecard h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0f172a;
}

.privacy-quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.privacy-quick-list li {
  margin: 0;
  padding: 0.66rem 0.72rem;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  background: #f8fafc;
}

.privacy-quick-question {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.privacy-quick-answer {
  margin: 0.25rem 0 0;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.45;
}

.privacy-body {
  display: grid;
  gap: 0.8rem;
}

.privacy-block {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.privacy-block h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.58rem;
  color: #0f172a;
}

.privacy-block p {
  margin: 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.6;
}

.privacy-block ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.52;
}

.privacy-block li {
  margin-bottom: 0.42rem;
}

.privacy-block li:last-child {
  margin-bottom: 0;
}

.privacy-block strong {
  color: #0f172a;
}

.privacy-block-contact {
  border-color: rgba(14, 165, 164, 0.42);
  box-shadow: 0 10px 28px rgba(14, 165, 164, 0.14);
}

.privacy-block a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-support .main {
  padding-bottom: 3rem;
}

.support-hero-inner {
  max-width: var(--max-width);
}

.pricing-kicker,
.terms-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.privacy-hero h1,
.support-hero h1,
.pricing-hero h1,
.terms-hero h1,
.trial-expired-hero h1,
.license-recovery-hero h1,
.account-hero h1,
.thank-you-hero h1,
.welcome-live-hero h1 {
  color: #f8fafc;
  margin: 1rem 0 0.48rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.pricing-lede,
.terms-lede {
  margin: 0;
  max-width: 46rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.terms-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.terms-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-hero .protection-banner {
  margin-top: 1.25rem;
}

.pricing-hero .protection-banner h2 {
  color: #0f172a;
}

.pricing-hero .protection-banner p {
  color: #475569;
}

.page-terms .main {
  padding-bottom: 3rem;
}

.section-terms-content {
  padding-top: 1.35rem;
}

.terms-layout {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.terms-sidecard {
  position: sticky;
  top: 86px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.terms-sidecard h2 {
  margin: 0 0 0.72rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0f172a;
}

.terms-quick-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.56rem;
}

.terms-quick-list li {
  margin: 0;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.82);
  background: #f8fafc;
}

.terms-quick-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.terms-quick-copy {
  margin: 0.24rem 0 0;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.45;
}

.terms-body {
  display: grid;
  gap: 0.8rem;
}

.terms-block {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.terms-block h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.58rem;
  color: #0f172a;
}

.terms-block p {
  margin: 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.6;
}

.terms-block a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.terms-block-contact {
  border-color: rgba(59, 130, 246, 0.44);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.14);
}

.license-recovery-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.license-recovery-lede {
  margin: 0;
  max-width: 50rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.license-recovery-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.license-recovery-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-license-recovery-content {
  padding-top: 1.35rem;
}

.license-recovery-wrap {
  max-width: var(--max-width);
}

.license-recovery-card {
  max-width: 980px;
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.1);
}

.account-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.account-lede {
  margin: 0;
  max-width: 50rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.account-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.account-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-account-content {
  padding-top: 1.35rem;
}

.account-wrap {
  max-width: var(--max-width);
}

.account-card {
  max-width: 980px;
  border-color: rgba(14, 165, 164, 0.32);
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.12);
}

.thank-you-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.thank-you-lede {
  margin: 0;
  max-width: 50rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.thank-you-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.thank-you-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-thank-you-content {
  padding-top: 1.35rem;
}

.thank-you-wrap {
  max-width: var(--max-width);
}

.thank-you-card {
  max-width: 980px;
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.1);
}

.welcome-live-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.welcome-live-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.welcome-live-check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.4);
}

.welcome-live-check svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.welcome-live-lede {
  margin: 0;
  max-width: 50rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.welcome-live-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.welcome-live-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-welcome-live-content {
  padding-top: 1.35rem;
}

.welcome-live-wrap {
  max-width: var(--max-width);
}

.welcome-live-card {
  max-width: 980px;
  border-color: rgba(14, 165, 164, 0.34);
  box-shadow: 0 12px 30px rgba(14, 165, 164, 0.12);
}

.welcome-live-proof-intro {
  margin: 0;
  color: #334155;
  font-size: 1.12rem;
  line-height: 1.55;
}

.welcome-live-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.welcome-live-proof-block {
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 14px;
  background: #f8fafc;
  padding: 1rem;
}

.welcome-live-proof-block h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: #0f172a;
}

.welcome-live-proof-steps {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.4rem;
}

.welcome-live-proof-steps li {
  color: #334155;
  font-size: 1.1rem;
  line-height: 1.5;
}

.welcome-live-help {
  margin: 0;
}

.support-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.86rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.support-lede {
  margin: 0;
  max-width: 46rem;
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.16rem;
  line-height: 1.5;
}

.support-pill-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.support-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.82rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: rgba(248, 250, 252, 0.95);
  font-size: 1rem;
  font-weight: 700;
}

.section-support-content {
  padding-top: 1.35rem;
}

.page-uninstall .main {
  padding-bottom: 3rem;
}

.uninstall-feedback-form {
  display: grid;
  gap: 0.65rem;
}

.uninstall-feedback-form label {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.uninstall-feedback-form select,
.uninstall-feedback-form textarea,
.uninstall-feedback-form input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: #0f172a;
  font-size: 1.03rem;
  line-height: 1.45;
}

.uninstall-feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}

.uninstall-feedback-form select:focus-visible,
.uninstall-feedback-form textarea:focus-visible,
.uninstall-feedback-form input[type="email"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.support-layout {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.support-sidecard {
  position: sticky;
  top: 86px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.support-sidecard h2 {
  margin: 0 0 0.72rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #0f172a;
}

.support-side-actions {
  display: grid;
  gap: 0.56rem;
}

.support-side-action {
  display: grid;
  gap: 0.12rem;
  padding: 0.72rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.82);
  background: #f8fafc;
  color: #0f172a;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.support-side-action:hover,
.support-side-action:focus-visible {
  border-color: rgba(14, 165, 164, 0.55);
  background: #ffffff;
  color: #0f172a;
}

.support-side-action-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
}

.support-side-action-sub {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.4;
}

.support-side-hours {
  margin: 0.8rem 0 0;
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.45;
}

.support-body {
  display: grid;
  gap: 0.8rem;
}

.support-block {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
}

.support-block h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.58rem;
  color: #0f172a;
}

.support-block p {
  margin: 0;
  color: #334155;
  font-size: 1.08rem;
  line-height: 1.6;
}

.support-block a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.support-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: start;
  color: #334155;
  font-size: 1.06rem;
  line-height: 1.5;
}

.support-checklist li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-top: 0.45em;
  background: #0ea5a4;
  box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.15);
}

.support-block-highlight {
  border-color: rgba(59, 130, 246, 0.44);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.14);
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #ffffff;
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.footer-title {
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color-ink-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}

.muted {
  color: var(--color-ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}





@media (max-width: 980px) {
  .terms-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .terms-sidecard {
    position: static;
  }

  .support-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .support-sidecard {
    position: static;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .privacy-sidecard {
    position: static;
  }

  .welcome-live-proof-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .trial-expired-grid {
    grid-template-columns: 1fr;
  }

  .trial-step-pricing {
    grid-template-columns: 1fr;
  }

  .trial-step-card-activate .trial-step-actions {
    grid-template-columns: 1fr;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card .btn {
    width: 100%;
    justify-content: center;
  }

  .js .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.4rem;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .js .site-header.nav-open .site-nav {
    max-height: 72vh;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-top: 0.75rem;
    padding: 0.85rem;
    background: rgba(11, 18, 32, 0.96);
    border-color: rgba(148, 163, 184, 0.2);
    box-shadow: var(--shadow-soft);
    overflow-y: auto;
  }

  .js .site-nav a {
    width: 100%;
    padding: 0.45rem 0.35rem;
  }

  .js .site-nav .locale-picker {
    width: 100%;
    order: -1;
    margin-bottom: 0.2rem;
  }

  .js .site-nav .locale-picker-toggle {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
  }

  .js .site-nav .locale-picker-menu {
    position: static;
    width: 100%;
    margin-top: 0.45rem;
    box-shadow: none;
    border-color: rgba(148, 163, 184, 0.2);
  }

  .js .site-nav.locale-overlay-open {
    background: rgba(5, 12, 28, 0.99);
  }

  .js .site-nav.locale-overlay-open > a {
    display: none;
  }

  .js .site-nav.locale-overlay-open .locale-picker {
    width: 100%;
  }

  .js .site-nav.locale-overlay-open .locale-picker-toggle {
    margin-bottom: 0.5rem;
  }

  .js .site-nav.locale-overlay-open .locale-picker-menu {
    max-height: calc(72vh - 5.25rem);
  }

  .js .nav-cta {
    margin-top: 0.35rem;
  }

  .js .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 2rem, var(--max-width));
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero-inner {
    min-height: 0;
    padding-bottom: 0;
  }

  .page-hero-inner > :nth-child(2) {
    margin-top: 0 !important;
  }

  .page-hero-inner > :last-child {
    margin-bottom: 0 !important;
  }

  .page-checkout .page-header {
    padding: 0;
  }

  .page-checkout .page-header .container {
    min-height: clamp(6.8rem, 18vh, 8.1rem);
    padding-block: 0.7rem 0.65rem;
  }

  .page-checkout .page-header h1 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.8rem, 9vw, 2.15rem);
  }

  .page-checkout .page-header .muted {
    font-size: 1.1rem;
    line-height: 1.35;
    margin: 0;
  }

  .privacy-hero {
    padding: 1.8rem 0 1.25rem;
  }

  .support-hero,
  .pricing-hero,
  .terms-hero,
  .trial-expired-hero,
  .license-recovery-hero,
  .account-hero,
  .thank-you-hero,
  .welcome-live-hero {
    padding: 1.8rem 0 1.25rem;
  }

  .support-kicker {
    font-size: 0.88rem;
  }

  .pricing-kicker,
  .terms-kicker {
    font-size: 0.88rem;
  }

  .license-recovery-kicker {
    font-size: 0.88rem;
  }

  .account-kicker {
    font-size: 0.88rem;
  }

  .thank-you-kicker {
    font-size: 0.88rem;
  }

  .welcome-live-kicker {
    font-size: 0.88rem;
  }

  .welcome-live-heading {
    gap: 0.55rem;
  }

  .welcome-live-check {
    width: 38px;
    height: 38px;
  }

  .welcome-live-check svg {
    width: 20px;
    height: 20px;
  }

  .support-lede {
    font-size: 1.1rem;
  }

  .pricing-lede,
  .terms-lede {
    font-size: 1.1rem;
  }

  .license-recovery-lede {
    font-size: 1.1rem;
  }

  .account-lede {
    font-size: 1.1rem;
  }

  .thank-you-lede {
    font-size: 1.1rem;
  }

  .welcome-live-lede {
    font-size: 1.1rem;
  }

  .terms-pill {
    font-size: 0.98rem;
  }

  .license-recovery-pill {
    font-size: 0.98rem;
  }

  .account-pill {
    font-size: 0.98rem;
  }

  .thank-you-pill {
    font-size: 0.98rem;
  }

  .welcome-live-pill {
    font-size: 0.98rem;
  }

  .welcome-live-proof-intro,
  .welcome-live-proof-steps li {
    font-size: 1.05rem;
  }

  .welcome-live-proof-block h3 {
    font-size: 1.34rem;
  }

  .terms-sidecard,
  .terms-block {
    padding: 0.9rem;
  }

  .terms-sidecard h2,
  .terms-block h2 {
    font-size: 1.38rem;
  }

  .terms-quick-title,
  .terms-quick-copy {
    font-size: 1.06rem;
  }

  .terms-block p {
    font-size: 1.05rem;
  }

  .support-pill {
    font-size: 0.98rem;
  }

  .support-sidecard,
  .support-block {
    padding: 0.9rem;
  }

  .support-sidecard h2,
  .support-block h2 {
    font-size: 1.38rem;
  }

  .support-side-action-title {
    font-size: 1.06rem;
  }

  .support-side-action-sub,
  .support-side-hours {
    font-size: 1.06rem;
  }

  .support-block p,
  .support-checklist li {
    font-size: 1.05rem;
  }

  .privacy-kicker {
    font-size: 0.88rem;
  }

  .privacy-lede {
    font-size: 1.1rem;
  }

  .privacy-updated {
    font-size: 1.02rem;
  }

  .privacy-pill {
    font-size: 0.98rem;
  }

  .privacy-sidecard,
  .privacy-block {
    padding: 0.9rem;
  }

  .privacy-sidecard h2,
  .privacy-block h2 {
    font-size: 1.38rem;
  }

  .privacy-quick-question {
    font-size: 1.06rem;
  }

  .privacy-quick-answer {
    font-size: 1.06rem;
  }

  .privacy-block p,
  .privacy-block ul {
    font-size: 1.05rem;
  }

  .page-checkout .checkout-grid {
    gap: 1rem;
  }

  .header-inner {
    height: 60px;
    min-height: 60px;
    padding: 0;
    position: relative;
  }

  .js .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  body.page-checkout {
    overflow-x: hidden;
  }

  .site-header-checkout .header-inner {
    height: auto;
    min-height: 0;
    padding: 0.5rem 0 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.35rem;
    position: static;
  }

  .site-header-checkout .checkout-help {
    width: 100%;
    justify-content: flex-start;
    gap: 0.2rem 0.55rem;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .site-header-checkout .checkout-help-label,
  .site-header-checkout .checkout-help a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .js .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 0.35rem;
  }

  .hero {
    padding: 1.8rem 0 2.5rem;
  }

  .trial-expired-pill {
    font-size: 0.88rem;
    padding: 0.33rem 0.8rem;
  }

  .trial-expired-intro {
    font-size: 1.06rem;
    margin-bottom: 0.95rem;
  }

  .trial-expired-risk-list li {
    font-size: 1.06rem;
  }

  .trial-step-card {
    padding: 0.95rem;
    gap: 0.62rem;
  }

  .trial-step-actions .btn {
    min-height: 42px;
    font-size: 1.04rem;
  }

  .page-trial-expired .trial-step-pricing .price {
    font-size: 1.65rem;
  }

  .trial-step-plan-btn {
    min-height: 40px;
    font-size: 1.02rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-social {
    padding: 2rem 0;
  }

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

  .hero .hero-copy .hero-bullets {
    gap: 0.75rem;
  }

  .hero .hero-copy .hero-bullets li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 0.7rem;
    align-items: start;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-small);
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.55);
    box-shadow: 0 14px 28px rgba(11, 18, 32, 0.18);
  }

  .hero .hero-copy .hero-bullets .icon-shield {
    margin-top: 0.2rem;
  }

  .hero .hero-copy .hero-bullets .bullet-text {
    display: block;
  }

  .hero .hero-copy .hero-bullets strong {
    display: block;
  }

  .hero .hero-copy .hero-bullets strong::after {
    content: "";
    margin-left: 0;
  }

  .hero .hero-copy .hero-bullets .bullet-desc {
    display: block;
    font-size: 1.02rem;
    color: rgba(248, 250, 252, 0.7);
    margin-top: 0.2rem;
  }







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

  .risk-card {
    padding: 1.25rem;
  }

  .risk-note {
    font-size: 0.98rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
