* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; }

body {
  font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
  background: #06080d;
  color: #fff;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.wrap {
  width: 100%;
  max-width: 1120px;
}

.top {
  margin-bottom: 48px;
}

.title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.subtitle {
  margin-top: 12px;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}

.subtitle .subtitle-store-link {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.subtitle .subtitle-store-link:hover {
  color: #60a5fa;
}

.subtitle--secondary {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: 18px;
  font-size: 14px;
}

.top-nav a {
  color: #3b82f6;
  font-weight: 500;
  text-decoration: none;
}

.top-nav a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.top-store-row {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}

.top-store-row--split {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.top-store-row--split .top-nav {
  margin-top: 0;
}

.chrome-store-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.chrome-store-wrap--success {
  flex: 0 0 auto;
}

.chrome-store-btn {
  display: inline-block;
  box-sizing: border-box;
  min-width: 200px;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: #4b8cff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 8px 30px rgba(75, 140, 255, 0.28);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.chrome-store-btn:hover {
  background: #5a97ff;
  color: #fff;
  text-decoration: none;
}

.chrome-store-btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.chrome-store-btn:active {
  transform: scale(0.99);
}

.chrome-store-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
  max-width: 26em;
}

@media (max-width: 560px) {
  .top-store-row--split {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

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

@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

.card {
  position: relative;
  border-radius: 28px;
  padding: 32px;
}

.card--monthly {
  border: 1px solid #2a3f6b;
  background: linear-gradient(180deg, rgba(15,22,40,0.9), rgba(8,12,20,0.95));
  box-shadow: 0 0 20px rgba(59,130,246,0.08);
}

.card--lifetime {
  border: 1px solid #31548a;
  background: linear-gradient(180deg, rgba(23,42,76,0.95), rgba(9,14,24,1));
  box-shadow: 0 0 60px rgba(75,140,255,0.25);
  transform: scale(1.03);
}

.badge {
  border-radius: 999px;
  border: 1px solid #456aa7;
  background: #0d1830;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #cfe0ff;
}

.card-head { margin-bottom: 24px; }

.head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.kicker--lifetime { color: #b8ccf0; }
.card--monthly .kicker { color: #9fb7e5; }

.price-row { display: flex; align-items: flex-end; gap: 10px; }
.price { font-size: 48px; font-weight: 600; letter-spacing: 0.02em; }
.price-sub { color: rgba(255,255,255,0.60); margin-bottom: 5px; font-size: 18px; }
.price-sub--lifetime { color: #c5d8f9; }

.desc {
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.desc--lifetime { color: rgba(212,225,248,0.80); }

.launch-offer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(59, 130, 246, 0.32);
  background: rgba(12, 22, 42, 0.55);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.launch-offer--lifetime {
  border-color: rgba(75, 140, 255, 0.38);
  background: rgba(16, 32, 58, 0.58);
  box-shadow: 0 0 26px rgba(75, 140, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.launch-offer__label {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(159, 183, 229, 0.62);
}

.launch-offer__code-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 8px;
}

.launch-offer__code-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
}

.launch-offer__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(107, 156, 255, 0.42);
  background: rgba(8, 16, 32, 0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #b8ccf0;
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
}

.launch-offer__copy {
  margin-left: auto;
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(58, 90, 145, 0.75);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.launch-offer__copy:hover {
  border-color: rgba(107, 156, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
}

.launch-offer__copy:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.launch-offer__copy.is-copied {
  border-color: rgba(96, 165, 250, 0.55);
  color: #93c5fd;
}

.launch-offer__headline {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.launch-offer__detail {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}

.launch-offer--lifetime .launch-offer__headline {
  color: rgba(232, 240, 255, 0.9);
}

.launch-offer--lifetime .launch-offer__detail {
  color: rgba(196, 214, 248, 0.58);
}

.simple-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.card--monthly .simple-bullets,
.card--lifetime .simple-bullets {
  margin-bottom: 14px;
}

.plan-helper {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.02em;
  margin: 0 0 26px;
}

.plan-helper a {
  color: #7ab8ff;
  font-weight: 600;
  text-decoration: none;
}

.plan-helper a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.plan-helper--lifetime {
  color: rgba(186, 214, 255, 0.88);
  font-weight: 600;
}

.simple-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.simple-row.strong { color: rgba(255,255,255,0.90); }
.card--monthly .simple-row.strong { color: rgba(255,255,255,0.85); }
.card--lifetime .simple-row.strong { color: rgba(255,255,255,0.95); }

.dot {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.dot--m { background: #5f8fdc; }
.dot--l { background: #78a8ff; }

.btn {
  width: 100%;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--monthly {
  border: 1px solid #3a5a91;
  background: transparent;
  color: rgba(255,255,255,0.90);
  font-weight: 500;
}
.btn--monthly:hover {
  border-color: #6b9cff;
  background: transparent;
  color: #fff;
}
.btn--monthly:active { transform: scale(0.99); }

.btn--lifetime {
  border: none;
  background: #4b8cff;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(75,140,255,0.28);
}
.btn--lifetime:hover { background: #5a97ff; }
.btn--lifetime:active { transform: scale(0.99); }

.pricing-footer {
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 20px;
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-sizing: border-box;
}

.support-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.support-email-inline {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.support-email-inline:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  font-family: inherit;
}

.site-footer-nav--center {
  justify-content: center;
}

.pricing-footer .site-footer-nav {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-nav a {
  font-weight: 500;
  color: #3b82f6;
  text-decoration: none;
  text-underline-offset: 2px;
}

.site-footer-nav a:hover {
  text-decoration: underline;
  color: #60a5fa;
}

.site-footer-sep {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

/* Shared legal/support header (matches landing header) */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 7, 12, 0.88);
  backdrop-filter: blur(12px);
}

.legal-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
}

.legal-header .brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.legal-header .brand-mark {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
}

.legal-header .brand-mark__img {
  width: auto;
  height: 34px;
  display: block;
  object-fit: contain;
}

.legal-header .header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.legal-header .header-cta:hover {
  background: #3b82f6;
  color: #fff;
}

.legal-header .header-cta__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: cover;
  clip-path: circle(46% at 50% 50%);
  background: transparent;
}

.legal-page {
  background: #0b0f14;
}

.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}

.legal-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.legal-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.legal-top-right .chrome-store-wrap {
  align-self: stretch;
  max-width: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid #31548a;
  background: linear-gradient(180deg, rgba(23, 42, 76, 0.95), rgba(9, 14, 24, 1));
  box-shadow: 0 0 32px rgba(75, 140, 255, 0.18);
  color: #d9e7ff;
  font-size: 16px;
  font-weight: 800;
}

.back-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.header-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.legal-container h1 {
  margin-bottom: 8px;
  color: #ededed;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.effective-date {
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 13px;
}

.legal-container h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: #ededed;
  font-size: 17px;
  font-weight: 600;
}

.legal-container p,
.legal-container li {
  margin-bottom: 12px;
  color: #b0b0b0;
  font-size: 15px;
  line-height: 1.6;
}

.legal-container ul {
  list-style: none;
  margin-bottom: 8px;
}

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

.legal-container li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #3b82f6;
}

.contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}

.email-highlight {
  margin: 8px 0 16px;
  font-size: 17px;
  font-weight: 600;
}

.legal-container .site-footer-nav {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  font-size: 14px;
}

.affiliate-container {
  max-width: 860px;
}

.affiliate-hero {
  margin-bottom: 28px;
}

.affiliate-kicker {
  margin-bottom: 10px;
  color: #9fb7e5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.affiliate-hero p:last-child {
  max-width: 660px;
}

.affiliate-card {
  border: 1px solid #31548a;
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(23,42,76,0.95), rgba(9,14,24,1));
  box-shadow: 0 0 60px rgba(75,140,255,0.18);
}

@media (max-width: 760px) {
  .page { padding: 22px; }
  .card { padding: 26px; }
  .card--lifetime { transform: none; }
  .price { font-size: 42px; }
  .subtitle { font-size: 16px; }
  .subtitle--secondary { font-size: 14px; }
  .launch-offer { padding: 12px 14px; }
  .launch-offer__copy {
    margin-left: 0;
    flex: 1 1 auto;
    min-width: 72px;
  }
  .legal-container { padding: 32px 22px 44px; }
  .affiliate-card { padding: 18px; }
  .legal-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal-top-right {
    width: 100%;
    align-items: center;
  }
  .header-links {
    justify-content: center;
  }

  .legal-header .site-header__inner {
    padding: 12px 16px;
  }

  .legal-header .brand {
    font-size: 18px;
    gap: 10px;
  }

  .legal-header .brand-mark__img {
    height: 30px;
  }

  .legal-header .header-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  .legal-header .header-cta__icon {
    width: 22px;
    height: 22px;
  }
}
