:root {
  --bg: #020811;
  --bg-soft: #07111f;
  --card: #0b1625;
  --card-2: #0e1b2d;
  --line: rgba(137, 169, 214, .17);
  --text: #f5f8ff;
  --muted: #9aa9bf;
  --blue: #2774ff;
  --blue-2: #0457ff;
  --cyan: #53a1ff;
  --accent-rgb: 39, 116, 255;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; font: inherit; }
a { text-decoration: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin: auto; }
[id] { scroll-margin-top: 94px; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(137, 169, 214, .13);
  background:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px),
    rgba(2, 8, 17, .9);
  background-size: 64px 64px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}
.hero {
  min-height: 608px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 76% 35%, rgba(var(--accent-rgb), .18), transparent 28%),
    radial-gradient(circle at 64% 8%, rgba(71, 117, 224, .1), transparent 26%),
    linear-gradient(120deg, #01060d, #040b15 54%, #061020);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 77% 43%, rgba(var(--accent-rgb), .08), transparent 30%),
    linear-gradient(90deg, rgba(0,0,0,.08), transparent 55%, rgba(4,12,24,.18));
}
.hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 82px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(9, 19, 32, 0),
    rgba(9, 19, 32, .18) 55%,
    rgba(9, 19, 32, .55) 100%
  );
}
nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 4;
}
.mono-icon,
.feature-icon {
  display: inline-block;
  flex: none;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand-icon {
  width: 30px;
  height: 36px;
  color: var(--cyan);
  filter: drop-shadow(0 0 12px rgba(var(--accent-rgb), .4));
}
.logo em { color: var(--blue); font-style: normal; }
.menu { display: flex; align-items: center; gap: 36px; color: #b9c3d1; font-size: 13px; }
.menu a:first-child { color: white; }
.buy {
  border: 0;
  border-radius: 9px;
  padding: 13px 19px;
  color: inherit;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), .2);
  transition: transform .2s ease;
}
.buy:hover, .primary:hover { transform: translateY(-2px); }
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.button-icon { width: 15px; height: 18px; color: white; }
.theme-tools {
  position: absolute;
  top: 102px;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(137,169,214,.22);
  border-radius: 12px;
  background: rgba(5,13,24,.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 35px rgba(0,0,0,.18);
}
.theme-tools span { color: #8798ae; font-size: 11px; }
.theme-swatch {
  width: 17px;
  height: 17px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  background: var(--swatch);
  transition: transform .2s ease, border-color .2s ease;
}
.theme-swatch:hover, .theme-swatch.active { transform: scale(1.18); border-color: white; }
.custom-color {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.custom-color::before {
  content: "+";
  position: absolute;
  z-index: 1;
  color: white;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}
.custom-color input { width: 34px; height: 34px; padding: 0; border: 0; cursor: pointer; opacity: 0; }
.hero-grid {
  min-height: 608px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.copy { padding-bottom: 25px; }
h1 {
  margin: 0 0 20px;
  font-size: clamp(49px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
h1 span { display: block; color: var(--blue); }
h1 .hero-main { color: var(--text); }
.lead { max-width: 510px; margin: 0 0 28px; color: #c3ccd9; font-size: 17px; line-height: 1.48; }
.micro-features { display: flex; gap: 28px; margin: 0 0 32px; }
.micro {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 148px;
  color: #d8deea;
  font-size: 12px;
  line-height: 1.25;
}
.micro .icon-ring {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--accent-rgb), .38);
  border-radius: 50%;
  color: var(--cyan);
  font-style: normal;
}
.micro .mono-icon { width: 18px; height: 18px; }
.actions { display: flex; gap: 14px; align-items: center; }
.primary, .secondary {
  min-width: 210px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  cursor: pointer;
  color: inherit;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 16px 38px rgba(var(--accent-rgb), .22);
  transition: transform .2s ease;
}
.primary span { display: block; width: 100%; }
.secondary { background: rgba(6,13,23,.68); border: 1px solid rgba(147,172,210,.28); }
.note { margin-top: 17px; color: #65758b; font-size: 11px; }
.hero-gradient-space { min-height: 570px; }
.platforms {
  position: relative;
  z-index: 3;
  margin-top: -36px;
  background:
    linear-gradient(to bottom, rgba(9,19,32,0), rgba(9,19,32,.9) 34px, #091320 58px),
    linear-gradient(90deg, #091320, #0d1826 55%, #08111d);
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.035);
}
.platform-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 30px;
}
.platform-row h2 {
  margin: 0;
  font-size: clamp(27px, 2.25vw, 34px);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  white-space: pre-line;
}
.app-list { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.app {
  height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: color-mix(in srgb, var(--card) 76%, transparent);
  box-shadow: inset 0 0 30px rgba(50,95,160,.03);
}
.app img { width: 31px; height: 31px; display: block; }
.app span {
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: .01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
.app.compact { text-align: center; }
.app.compact strong { color: var(--cyan); font-size: 22px; line-height: .8; }
.app.compact span { max-width: 76px; line-height: 1.15; }
section { padding: 72px 0; }
.section-title { text-align: center; margin: 0 0 34px; font-size: 34px; letter-spacing: -.035em; }
.section-title span { color: var(--blue); }
.section-title .title-main { color: var(--text); }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.feature-card {
  min-height: 250px;
  padding: 28px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--card) 92%, #152c49), color-mix(in srgb, var(--card) 88%, var(--bg)));
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(var(--accent-rgb), .55); }
.feature-card .feature-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--cyan);
  filter: drop-shadow(0 0 18px rgba(var(--accent-rgb), .25));
}
.feature-card h3 { margin: 0 0 11px; font-size: 16px; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.pricing-section {
  background: linear-gradient(180deg, rgba(8,18,31,.88), rgba(4,10,18,.7));
  border-top: 1px solid rgba(255,255,255,.035);
}
.reviews-section {
  padding: 66px 0 70px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.035);
  border-bottom: 1px solid rgba(255,255,255,.035);
  background: linear-gradient(90deg, #07111f, color-mix(in srgb, var(--card) 72%, #07111f), #07111f);
}
.reviews-section[hidden] { display: none; }
.reviews-section .section-title { margin-bottom: 30px; }
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
  width: max-content;
  display: flex;
  gap: 14px;
  padding: 4px 0 16px;
  animation: reviews-right 42s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
.review-card {
  width: 350px;
  min-height: 165px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
}
.review-head { display: flex; align-items: center; gap: 11px; margin-bottom: 15px; }
.review-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  font-size: 14px;
  font-weight: 800;
}
.review-author { display: grid; gap: 2px; }
.review-author strong { font-size: 13px; }
.review-stars { color: #ffca3a; font-size: 12px; letter-spacing: 1px; }
.review-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
@keyframes reviews-right {
  from { transform: translateX(calc(-50% - 7px)); }
  to { transform: translateX(0); }
}
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 15px; align-items: stretch; }
.plan {
  position: relative;
  padding: 30px 25px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, color-mix(in srgb, var(--card) 92%, #1a3151), color-mix(in srgb, var(--card) 94%, var(--bg)));
}
.plan.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), .25), 0 18px 50px rgba(var(--accent-rgb), .18);
}
.plan.trial-plan {
  border-color: rgba(53, 219, 145, .62);
  background:
    radial-gradient(circle at 100% 0, rgba(53, 219, 145, .12), transparent 38%),
    linear-gradient(145deg, color-mix(in srgb, var(--card) 92%, #14352f), color-mix(in srgb, var(--card) 94%, var(--bg)));
  box-shadow: 0 18px 50px rgba(18, 133, 88, .12);
}
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  border-radius: 20px;
  white-space: nowrap;
  color: var(--cyan);
  background: rgba(var(--accent-rgb), .18);
  font-size: 11px;
}
.trial-badge { color: #74f1b8; background: rgba(53, 219, 145, .14); }
.plan h3 { margin: 0 0 19px; color: #afbdd1; font-size: 18px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.price strong { font-size: 31px; letter-spacing: -.04em; }
.price span { color: #9ba9bc; font-size: 11px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; color: #afbbcc; font-size: 12px; line-height: 2; }
.plan li::before { content: "✓"; color: var(--cyan); margin-right: 9px; }
.plan-button {
  width: 100%;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  border: 1px solid rgba(129,157,199,.25);
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
}
.plan.popular .plan-button { border: 0; background: linear-gradient(135deg, var(--blue-2), var(--blue)); }
.plan.trial-plan .plan-button {
  border-color: rgba(53, 219, 145, .5);
  color: #dffff0;
  background: linear-gradient(135deg, rgba(18, 133, 88, .72), rgba(53, 219, 145, .38));
}
.trial-trigger:disabled { cursor: wait; opacity: .68; }
.empty-plans {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  text-align: center;
}
.cta {
  margin-top: 28px;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background: radial-gradient(circle at 28% 60%, rgba(var(--accent-rgb),.18), transparent 35%), #091728;
}
.cta h3 { margin: 0 0 8px; font-size: 22px; }
.cta p { margin: 0; color: var(--muted); font-size: 13px; }
.account-section {
  padding-top: 64px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--accent-rgb), .12), transparent 42%),
    linear-gradient(180deg, rgba(4, 10, 18, .72), rgba(7, 15, 26, .94));
  border-top: 1px solid rgba(255,255,255,.035);
}
.account-panel {
  padding: 28px;
  border: 1px solid rgba(var(--accent-rgb), .24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-rgb), .13), transparent 35%),
    color-mix(in srgb, var(--card) 90%, transparent);
  box-shadow: 0 25px 70px rgba(0,0,0,.18);
}
.account-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.account-kicker {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}
.account-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.account-head h3 { margin: 0 0 6px; font-size: 23px; }
.account-head p { margin: 0; color: var(--muted); font-size: 13px; }
.account-link-state {
  margin-bottom: 6px;
  padding: 6px 11px;
  border: 1px solid rgba(170,181,198,.26);
  border-radius: 999px;
  color: #c8d2e1;
  background: rgba(170,181,198,.1);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
}
.account-link-state.linked {
  border-color: rgba(83,236,168,.38);
  color: #8ff4c3;
  background: rgba(53,219,145,.13);
}
.account-actions { display: flex; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.account-sync,
.account-refresh {
  min-height: 43px;
  padding: 11px 16px;
  border: 1px solid rgba(var(--accent-rgb), .35);
  border-radius: 9px;
  color: white;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
}
.account-sync {
  border: 0;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}
.account-sync:disabled { cursor: default; opacity: .7; }
.account-refresh:disabled { cursor: wait; opacity: .65; }
.account-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 13px;
  margin-top: 20px;
}
.account-subscription,
.account-empty {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}
.account-empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
}
.account-subscription-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.account-subscription h4 { margin: 0 0 7px; font-size: 15px; }
.account-subscription p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.account-badge {
  padding: 6px 10px;
  flex: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
.account-badges { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.account-badge.active { color: #b3f9d5; background: rgba(53,219,145,.18); border-color: rgba(83,236,168,.25); }
.account-badge.expired { color: #e0e7f2; background: rgba(170,181,198,.14); border-color: rgba(190,201,216,.18); }
.account-badge.source { color: #c8dcff; background: rgba(var(--accent-rgb), .16); border-color: rgba(var(--accent-rgb), .2); }
.account-badge.source.telegram { color: #a9e7ff; background: rgba(40,169,235,.18); border-color: rgba(73,189,246,.22); }
.account-subscription-actions { display: flex; gap: 8px; margin-top: 17px; }
.account-subscription-actions button,
.account-subscription-actions a {
  min-height: 36px;
  padding: 9px 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), .3);
  border-radius: 8px;
  color: white;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
}
.account-subscription-actions a { background: rgba(var(--accent-rgb), .1); }
.account-note { margin: 18px 0 0; color: #718299; font-size: 11px; line-height: 1.5; }
footer { padding: 40px 0 58px; border-top: 1px solid rgba(255,255,255,.04); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; color: #8f9bad; font-size: 12px; }
.footer-grid h4 { margin: 0 0 14px; color: white; font-size: 13px; }
.footer-grid p { margin: 6px 0; }
.footer-grid a { transition: color .2s ease; }
.footer-grid a:hover { color: white; }
.copyright { margin-top: 13px; color: #5e6c80; }
.inline-brand em { color: inherit; font-style: normal; }
.checkout-dialog {
  width: min(560px, calc(100% - 28px));
  max-height: min(780px, calc(100vh - 32px));
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), .32);
  border-radius: 20px;
  color: var(--text);
  background: transparent;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .65);
  overflow: visible;
}
.checkout-dialog::backdrop {
  background: rgba(0, 7, 17, .78);
  backdrop-filter: blur(10px);
}
.checkout-panel {
  position: relative;
  max-height: min(780px, calc(100vh - 32px));
  padding: 32px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-rgb), .22), transparent 34%),
    linear-gradient(160deg, color-mix(in srgb, var(--card) 94%, #183a67), var(--bg));
  overflow-y: auto;
}
.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
}
.checkout-close:hover { color: white; border-color: rgba(var(--accent-rgb), .55); }
.checkout-kicker {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}
.checkout-dialog h2 { margin: 0 42px 24px 0; font-size: 29px; letter-spacing: -.03em; }
.checkout-summary,
.checkout-result {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}
.checkout-summary { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 8px 20px; }
.checkout-summary strong { font-size: 17px; }
.checkout-summary b { grid-row: 1 / span 2; grid-column: 2; color: white; font-size: 24px; }
.checkout-summary span,
.checkout-muted { color: var(--muted); font-size: 13px; line-height: 1.55; }
.checkout-heading { margin: 24px 0 11px; font-size: 13px; }
.payment-method {
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(var(--accent-rgb), .38);
  border-radius: 12px;
  color: white;
  background: rgba(var(--accent-rgb), .08);
  cursor: pointer;
  text-align: left;
}
.payment-method:hover { border-color: var(--blue); background: rgba(var(--accent-rgb), .14); }
.payment-method:disabled { cursor: wait; opacity: .6; }
.payment-method-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 10px;
  color: var(--cyan);
  background: rgba(var(--accent-rgb), .18);
  font-size: 17px;
}
.payment-method-copy { display: grid; gap: 3px; }
.payment-method-copy strong { font-size: 14px; }
.payment-method-copy span { color: var(--muted); font-size: 11px; }
.checkout-trust { margin: 15px 0 0; display: flex; gap: 7px; align-items: center; color: #8fa2bc; font-size: 11px; }
.checkout-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 750;
}
.checkout-spinner {
  width: 20px;
  height: 20px;
  flex: none;
  border: 2px solid rgba(var(--accent-rgb), .25);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: checkout-spin .8s linear infinite;
}
.checkout-success {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: #03120b;
  background: #35db91;
  font-size: 14px;
}
.checkout-actions { display: grid; gap: 10px; margin-top: 18px; }
.checkout-action {
  min-height: 48px;
  padding: 13px 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), .38);
  border-radius: 10px;
  color: white;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.checkout-action.primary {
  border: 0;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
}
.checkout-action:disabled { cursor: wait; opacity: .6; }
.subscription-box {
  margin-top: 13px;
  padding: 13px;
  border: 1px solid rgba(var(--accent-rgb), .3);
  border-radius: 9px;
  color: #cbe4ff;
  background: rgba(0, 0, 0, .22);
  font: 11px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  word-break: break-all;
  user-select: all;
}
.checkout-order { margin-top: 13px; color: #6f8098; font-size: 10px; }
.checkout-error { color: #ff9aa8; }
.site-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  padding: 11px 16px;
  border: 1px solid rgba(var(--accent-rgb), .35);
  border-radius: 999px;
  color: white;
  background: #0a1829;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .2s ease, transform .2s ease;
  font-size: 12px;
}
.site-toast.visible { opacity: 1; transform: translate(-50%, 0); }
@keyframes checkout-spin { to { transform: rotate(360deg); } }
@keyframes reveal {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 980px) {
  .menu { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-gradient-space { display: none; }
  .platform-row { grid-template-columns: 1fr; padding: 32px 0; }
  .app-list { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 520px); }
  nav { height: 76px; }
  .logo { font-size: 20px; }
  .brand-icon { width: 25px; height: 30px; }
  .buy { padding: 11px 13px; font-size: 11px; }
  .theme-tools { top: 88px; right: 0; transform: scale(.94); transform-origin: top right; }
  .hero-grid { min-height: auto; }
  h1 { font-size: 45px; }
  .lead { font-size: 15px; }
  .micro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .actions { align-items: stretch; flex-direction: column; }
  .primary, .secondary { width: 100%; min-width: 0; }
  .app-list { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .pricing { grid-template-columns: 1fr; }
  .review-card { width: 290px; }
  .cta { align-items: stretch; flex-direction: column; gap: 22px; }
  .account-panel { padding: 21px; }
  .account-head { align-items: stretch; flex-direction: column; }
  .account-actions { justify-content: stretch; }
  .account-sync, .account-refresh { flex: 1; }
  .account-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-panel { padding: 26px 20px 22px; }
  .checkout-dialog h2 { font-size: 25px; }
  section { padding: 52px 0; }
  .section-title { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reviews-track { animation: none; transform: none; }
}
