:root {
  /* Ableton Sans fallback — https://www.ableton.com/en/live/ */
  --font-brand: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  /*
   * Live 12 default UI: cool gray shell + blue selection/modulation.
   * SelectorZoneCrossfadeRamp #5577c6, BipolReset/Modulation #6dd7ff,
   * SelectionBackgroundContrast #a8d2e0, Clip7/8 #6baace #4881aa
   */
  --live-desktop: #22242a;
  --live-surface: #2f3138;
  --live-detail: #373a41;
  --live-control: #3e4045;
  --live-meter: #1e1e1e;
  --live-transport: #282828;
  --live-focus: #7d8088;
  --bg: #0a0a0c;
  --bg-mid: var(--live-desktop);
  --surface: var(--live-detail);
  --surface-2: var(--live-control);
  --text: #f5f5f5;
  --text-ui: #e6e6e6;
  --muted: #949494;
  --muted-light: #a0a0a0;
  /* Primary UI accent — Live blue (not orange) */
  --accent: #5577c6;
  --accent-2: #6dd7ff;
  --accent-3: #3d5a9e;
  --accent-on: #141414;
  --live-blue-soft: #a8d2e0;
  --live-blue-zone: #b4ccda;
  --glow-rgb: 85, 119, 198;
  --live-rgb: 109, 186, 206;
  --live-clip-blue: #4881aa;
  --live-clip-cyan: #6baace;
  --live-clip-green: #52ba46;
  --live-clip-violet: #954eb2;
  --aspire-violet: var(--live-clip-cyan);
  --aspire-teal: var(--live-clip-blue);
  --ok: var(--live-clip-cyan);
  --ok-dark: var(--live-meter);
  --border: rgba(230, 230, 230, 0.1);
  --border-strong: rgba(109, 186, 206, 0.4);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  --neo-inset: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --neo-raised: 8px 8px 22px rgba(0, 0, 0, 0.45);
  --glass: rgba(62, 64, 69, 0.35);
  --glass-strong: rgba(47, 49, 56, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(var(--glow-rgb), 0.14), transparent 52%),
    radial-gradient(ellipse 80% 45% at 88% 8%, rgba(var(--live-rgb), 0.1), transparent 48%),
    radial-gradient(ellipse 70% 50% at 12% 92%, rgba(72, 129, 170, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 42%, var(--live-desktop) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}

main {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main > .container,
main > .section.container,
main > section.container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  position: sticky;
  top: 16px;
  z-index: 10;
  margin-top: 16px;
  background:
    linear-gradient(120deg, rgba(34, 36, 42, 0.94), rgba(47, 49, 56, 0.88)),
    linear-gradient(145deg, var(--glass-strong), var(--glass));
  border-color: color-mix(in srgb, var(--accent-2) 18%, var(--border));
  border: 1px solid var(--border);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
  --brand-logo-height: 21px;
}

.brand:hover {
  color: var(--text);
  opacity: 0.9;
}

.brand-logo-icon {
  display: block;
  height: var(--brand-logo-height);
  width: auto;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions .hero-buy-btn {
  min-width: 0;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  line-height: 0;
  color: #fff;
  cursor: default;
  pointer-events: none;
}

.platform-icon {
  color: #fff;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.platform-icon--mac {
  object-fit: contain;
  /* Black silhouette asset → white on dark UI */
  filter: brightness(0) invert(1);
  box-sizing: content-box;
  padding: 3px;
}

.header-action .platform-icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

a.hero-buy-btn {
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
}

.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
  transform: translateY(1px);
}

.brand-wordmark strong {
  font-family: var(--font-brand);
  font-size: calc(var(--brand-logo-size) * 0.5);
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--text);
}

.cart-btn {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: var(--text);
  border-radius: 14px;
  width: 56px;
  height: 56px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.cart-btn:hover {
  border-color: rgba(255, 179, 71, 0.5);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    0 0 22px rgba(var(--glow-rgb), 0.24);
}

.cart-btn:hover .cart-icon {
  animation: cart-wiggle 0.46s ease-in-out;
}

.cart-btn span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  line-height: 1;
  padding: 0;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: var(--accent-on);
  border-radius: 999px;
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(var(--glow-rgb), 0.5);
}

.cart-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
  opacity: 0.95;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 20px;
  padding: 24px 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2.5rem auto 0;
  padding: 0;
}

.hero-product-image {
  width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 24px rgba(var(--glow-rgb), 0.2));
}

.hero-fl-screenshot,
.hero-live-screenshot {
  display: block;
  width: min(100%, 720px);
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  border: 1px solid var(--border);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 25px;
  color: var(--accent);
  letter-spacing: 0.12em;
  padding-inline-end: 0.14em;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--text);
  width: max-content;
  max-width: 100%;
  margin: 5px auto 10px;
  padding: 0;
  letter-spacing: normal;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  text-shadow: none;
}

@media (min-width: 641px) {
  .hero-copy h1.hero-title--nowrap-md,
  .hero-copy h2.hero-title--nowrap-md {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}

h1 {
  margin: 6px 0 10px;
  max-width: 760px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-shadow: none;
}

h1.brand-wordmark {
  margin: 0;
  max-width: none;
  font: inherit;
  color: inherit;
  text-shadow: none;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-subtitle {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.45;
  max-width: 640px;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: 30px;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-actions .hero-buy-btn {
  padding-inline-end: calc(26px + 0.14em);
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.checkmark-icon {
  flex-shrink: 0;
  color: var(--ok);
}

.hero-fl-video,
.hero-live-video {
  object-fit: cover;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -140% -35%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(255, 255, 255, 0) 64%
  );
  transform: translateX(-120%) rotate(8deg);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 48%, var(--accent-3) 100%);
  color: var(--accent-on);
  border-color: color-mix(in srgb, var(--live-blue-soft) 65%, var(--accent));
  box-shadow:
    0 8px 22px rgba(var(--glow-rgb), 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--live-clip-cyan) 50%, var(--accent) 100%);
  filter: brightness(1.05);
}

a.hero-buy-btn {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-buy-btn {
  min-width: 210px;
  margin: 0;
  max-width: none;
  overflow-wrap: normal;
  word-break: normal;
  text-shadow: none;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--live-blue-soft) 70%, var(--accent));
  box-shadow:
    0 10px 28px rgba(var(--glow-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hero-buy-btn::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(var(--glow-rgb), 0.35) 0%,
    rgba(var(--glow-rgb), 0.12) 40%,
    transparent 72%
  );
  filter: blur(12px);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.hero-buy-btn:hover::before {
  opacity: 0.85;
}

.hero-buy-btn::after {
  animation: buy-btn-shimmer 5.6s ease-in-out infinite;
}

.hero-buy-btn:hover {
  filter: brightness(1.08) saturate(1.05);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    5px 5px 14px rgba(0, 0, 0, 0.32),
    -4px -4px 12px rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
}

.section {
  padding: 34px 0;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  padding: 16px;
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 71, 0.42);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.52),
    0 0 24px rgba(var(--glow-rgb), 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.product-badge {
  display: inline-block;
  font-size: 12px;
  color: #111;
  background: linear-gradient(130deg, color-mix(in srgb, var(--ok) 82%, #fff), var(--ok));
  border-radius: 8px;
  padding: 5px 8px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-title {
  margin: 0 0 6px;
  font-size: 20px;
}

.product-text {
  margin: 0;
  color: var(--muted);
  min-height: 44px;
}

.product-foot {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 24px;
  font-weight: 800;
  text-shadow: 0 0 16px rgba(var(--glow-rgb), 0.3);
}

.benefits {
  margin-top: 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card h3 {
  margin: 0;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-doc h2 {
  margin: 20px 0 8px;
  font-size: 20px;
  color: var(--text);
}

.legal-doc ul,
.legal-doc ol {
  margin: 8px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.legal-doc li + li {
  margin-top: 6px;
}

.legal-doc a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-doc a:hover {
  color: var(--accent-2);
}

.faq-list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  padding: 10px 14px;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.3);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  margin: 8px 0 2px;
  color: var(--muted);
}

.cart-panel {
  position: fixed;
  right: 16px;
  top: 16px;
  width: min(420px, calc(100% - 32px));
  height: calc(100% - 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(165deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  transform: translateX(120%);
  transition: transform 0.24s ease;
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    22px 22px 45px rgba(0, 0, 0, 0.5),
    -10px -10px 30px rgba(255, 255, 255, 0.03);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-panel-head,
.cart-panel-footer {
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.cart-panel-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
  margin-top: auto;
}

.cart-items {
  padding: 12px 14px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

.cart-row {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 8px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.35);
}

.cart-row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-row small {
  color: var(--muted);
}

.qty-control {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.qty-control button,
.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  color: var(--text);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    4px 4px 10px rgba(0, 0, 0, 0.3);
}

.qty-control button:hover,
.icon-btn:hover {
  border-color: rgba(255, 179, 71, 0.5);
  box-shadow:
    0 0 16px rgba(var(--glow-rgb), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-full {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
}

.buy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 24;
  background: rgba(0, 0, 0, 0.72);
}

.buy-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 25;
  width: min(440px, calc(100% - 32px));
  max-height: min(92dvh, calc(100vh - 24px));
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 24px 20px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(165deg, var(--surface-2), var(--surface));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 28px 48px rgba(0, 0, 0, 0.56);
}

.buy-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.buy-modal-title {
  margin: 0;
  font-size: 26px;
}

.buy-modal-subtitle {
  margin: 10px 0 18px;
  color: var(--muted);
}

.buy-modal-form {
  display: grid;
  gap: 0;
  margin-top: 20px;
}

.buy-modal-product {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.buy-modal-product-img {
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
}

.buy-modal-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.buy-modal-product-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.buy-modal-product-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.3;
}

.buy-modal-safe-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--ok);
  opacity: 0.9;
}

.buy-modal-safe-payment svg {
  flex-shrink: 0;
}

.buy-modal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.buy-modal-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 16px;
  padding: 12px 14px;
}

.buy-modal-field-notes {
  margin: 8px 0 20px;
}

.buy-modal-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.buy-modal-input:focus {
  outline: none;
  border-color: rgba(255, 179, 71, 0.7);
  box-shadow: 0 0 0 2px rgba(var(--glow-rgb), 0.25);
}

.buy-modal-input.is-invalid {
  border-color: rgba(255, 92, 92, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 92, 92, 0.22);
}

.buy-modal-error {
  margin: 6px 0 0;
  color: #ff8d8d;
  font-size: 13px;
  line-height: 1.35;
}

.buy-modal-field-notes .buy-modal-error[hidden] {
  display: none;
}

.buy-modal-trust-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.buy-modal-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.buy-modal-trust-item::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--ok) 18%, transparent);
  color: var(--ok);
  font-size: 12px;
  font-weight: 800;
}

.buy-modal-consents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 14px;
}

.buy-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.buy-modal-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

.buy-modal-consent--single {
  padding: 12px 13px;
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(var(--glow-rgb), 0.1), rgba(0, 0, 0, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.buy-modal-consent-text a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.buy-modal-consent-text a:hover {
  color: var(--accent-2);
}

button.buy-modal-submit {
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.buy-modal-submit {
  width: 100%;
  padding: 18px 29px 16px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-align: center;
  border-radius: 14px;
  border: 1px solid rgba(var(--glow-rgb), 0.68);
  box-shadow:
    0 10px 28px rgba(var(--glow-rgb), 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.buy-modal-form.is-submitting .buy-modal-submit {
  opacity: 0.92;
}

.buy-modal-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: saturate(0.75);
}

.payment-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
}

.payment-badge-img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 108px;
  object-fit: contain;
  object-position: center;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.payment-badge-img--sbp {
  height: 28px;
  max-width: 140px;
}

.payment-badge-img--yoomoney {
  height: 28px;
  max-width: 64px;
}

.payment-badge-img--alfa {
  height: 28px;
  max-width: 96px;
}

.payment-badge-img--card {
  height: 28px;
  width: auto;
  max-width: 44px;
  color: #fff;
}

.buy-modal-success {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--ok) 38%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--ok) 14%, transparent);
  color: color-mix(in srgb, var(--ok) 72%, var(--text));
  font-size: 13px;
  text-align: center;
}

.payment-result-modal {
  width: min(560px, calc(100% - 28px));
  display: grid;
  gap: 14px;
  padding: 30px 24px 24px;
  border-radius: 20px;
  border-color: rgba(var(--glow-rgb), 0.45);
  background:
    radial-gradient(circle at 8% 8%, rgba(var(--glow-rgb), 0.16), transparent 48%),
    radial-gradient(circle at 92% 12%, rgba(var(--glow-rgb), 0.16), transparent 46%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(165deg, var(--surface-2), var(--bg-mid));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 32px 70px rgba(0, 0, 0, 0.62),
    0 0 30px rgba(var(--glow-rgb), 0.18);
}

.payment-result-modal .buy-modal-title {
  margin-right: 36px;
  font-size: 30px;
  letter-spacing: 0.02em;
  text-shadow:
    0 0 16px rgba(var(--glow-rgb), 0.35),
    0 0 38px rgba(0, 0, 0, 0.25);
}

.payment-result-message {
  margin: 2px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  white-space: pre-line;
}

.payment-result-downloads {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-result-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 108px;
  padding: 16px 12px;
  border-radius: 13px;
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  background:
    linear-gradient(145deg, rgba(var(--glow-rgb), 0.14), rgba(0, 0, 0, 0.1)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.payment-result-download:hover {
  border-color: rgba(var(--glow-rgb), 0.6);
  background:
    linear-gradient(145deg, rgba(var(--glow-rgb), 0.22), rgba(0, 0, 0, 0.14)),
    rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.payment-result-download .platform-icon {
  width: 32px;
  height: 32px;
  color: #fff;
}

.payment-result-download .platform-icon--mac {
  width: 34px;
  height: 34px;
  padding: 4px;
}

.payment-result-download-build {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 220, 180, 0.85);
}

@media (max-width: 640px) {
  .payment-result-modal {
    width: min(480px, calc(100% - 20px));
    padding: 24px 16px 16px;
  }

  .payment-result-modal .buy-modal-title {
    font-size: 24px;
  }

  .payment-result-downloads {
    grid-template-columns: 1fr;
  }
}

.footer {
  margin-top: 48px;
  padding: 40px 0 56px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-emblem {
  display: flex;
  justify-content: center;
  width: 100%;
  color: var(--muted);
  line-height: 0;
}

.footer-emblem__svg {
  display: block;
}

.footer > p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.15rem 0.25rem;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-refund-note {
  margin: 0;
  font-size: 13px;
  color: var(--ok);
  text-align: center;
}

.footer-refund-note__inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer .payment-badges {
  margin: 0;
  gap: clamp(1rem, 3vw, 1.75rem);
  justify-content: center;
}

.bg-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  filter: blur(98px);
  z-index: -1;
  animation: pulse-glow 9s ease-in-out infinite alternate;
}

.bg-glow-left {
  top: -80px;
  left: -80px;
  background: rgba(var(--glow-rgb), 0.34);
}

.bg-glow-right {
  right: -120px;
  bottom: -110px;
  background: rgba(0, 0, 0, 0.24);
}

@keyframes pulse-glow {
  from {
    transform: scale(0.95);
    opacity: 0.85;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes buy-btn-hypnosis {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(var(--glow-rgb), 0.34),
      0 0 0 0 rgba(var(--glow-rgb), 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
    filter: brightness(1);
  }
  35% {
    box-shadow:
      0 13px 32px rgba(var(--glow-rgb), 0.44),
      0 0 0 9px rgba(var(--glow-rgb), 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
    filter: brightness(1.06);
  }
  65% {
    box-shadow:
      0 14px 34px rgba(var(--glow-rgb), 0.48),
      0 0 0 12px rgba(var(--glow-rgb), 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
    filter: brightness(1.08);
  }
}

@keyframes buy-btn-shimmer {
  0%, 20% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  58% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
  100% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
}

@keyframes buy-btn-glow {
  0%, 100% {
    opacity: 0.48;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.76;
    transform: scale(1.04);
  }
}

@keyframes cart-wiggle {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-8deg) scale(1.04); }
  50% { transform: rotate(8deg) scale(1.07); }
  75% { transform: rotate(-5deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}

@media (max-width: 980px) {
  .hero-product-image {
    width: min(82vw, 320px);
  }

  .hero-visual .hero-fl-screenshot,
  .hero-visual .hero-live-screenshot,
  .hero-fl-screenshot,
  .hero-live-screenshot {
    width: min(100%, 520px);
  }

  .product-grid,
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-grid,
  .benefits {
    grid-template-columns: 1fr;
  }

  .header {
    flex-wrap: nowrap;
    padding: 10px 12px;
    margin-top: max(8px, env(safe-area-inset-top, 0px));
    top: max(8px, env(safe-area-inset-top, 0px));
  }

  .header-actions {
    gap: 10px;
  }

  .header-action .platform-icon {
    width: 24px;
    height: 24px;
  }

  .brand {
    --brand-logo-height: 21px;
  }

  .hero {
    padding-bottom: 96px;
  }

  .hero-actions .hero-buy-btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 15px;
    padding: 13px 18px;
    padding-inline-end: calc(18px + 0.12em);
    letter-spacing: 0.12em;
  }

  .buy-modal-submit {
    font-size: 19px;
    letter-spacing: 0.12em;
    padding: 17px 21px 15px;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(var(--glow-rgb), 0.68);
    box-shadow:
      0 10px 28px rgba(var(--glow-rgb), 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }

  .hero-actions {
    width: 100%;
  }

  .brand-wordmark strong {
    font-size: 16px;
    letter-spacing: 0.06em;
  }

  .brand-wordmark em {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.features {
  padding: 5rem 0 2rem;
}

.highlights {
  padding: 4rem 0 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 981px) {
  .highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.highlight-card--star {
  position: relative;
  grid-column: auto;
  isolation: isolate;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--border));
  background:
    radial-gradient(ellipse 90% 80% at 0% 50%, rgba(var(--glow-rgb), 0.2), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 30%, rgba(var(--live-rgb), 0.14), transparent 50%),
    linear-gradient(
      128deg,
      color-mix(in srgb, var(--live-blue-zone) 22%, transparent) 0%,
      color-mix(in srgb, var(--live-clip-blue) 12%, transparent) 45%,
      var(--live-surface) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    var(--neo-inset),
    var(--neo-raised),
    0 0 36px rgba(var(--glow-rgb), 0.12);
}

.highlight-card--star::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent), var(--live-clip-blue));
  pointer-events: none;
  z-index: 1;
}

.highlight-card--star::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 38%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0) 62%
  );
  transform: translateX(-120%) skewX(-8deg);
  animation: buy-btn-shimmer 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.highlight-card--star:hover {
  border-color: color-mix(in srgb, var(--accent-2) 45%, var(--accent));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    var(--neo-inset),
    var(--neo-raised),
    0 14px 36px rgba(var(--glow-rgb), 0.14);
}

.highlight-card--star .highlight-platforms--star {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  margin-top: auto;
  padding: 0 1.25rem 1.35rem;
  gap: 0.85rem 1.1rem;
  box-sizing: border-box;
}

.highlight-card--star .highlight-platform {
  flex: 0 1 auto;
  align-items: center;
  text-align: center;
  font-size: 0.72rem;
  gap: 0.35rem;
  min-width: 0;
}

.highlight-card--star .highlight-platform .platform-icon,
.highlight-card--star .highlight-platform svg {
  width: min(48px, 10vw);
  height: min(48px, 10vw);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.highlight-card--star .highlight-body--star {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.highlight-card--star .highlight-star-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--aspire-teal) 75%, var(--text));
}

.highlight-card--star .highlight-title {
  font-family: inherit;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: normal;
  line-height: 1.25;
  margin: 0 0 0.65rem;
  text-align: center;
  text-shadow: 0 0 20px color-mix(in srgb, var(--aspire-violet) 22%, transparent);
}

.highlight-card--star .highlight-desc {
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  max-width: 52ch;
}

@media (min-width: 981px) {
  .highlight-card--star {
    grid-column: 1 / -1;
  }

  .highlight-card--star .highlight-platform .platform-icon,
  .highlight-card--star .highlight-platform svg {
    width: 52px;
    height: 52px;
  }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.35);
}

.highlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: calc(220px + 3rem);
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 80% 70% at 50% 30%, rgba(var(--glow-rgb), 0.18), transparent 65%),
    var(--surface);
}

.highlight-visual--license {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(var(--live-rgb), 0.16), transparent 70%),
    var(--live-detail);
}

.highlight-visual--star {
  background:
    radial-gradient(ellipse 75% 65% at 50% 35%, rgba(var(--glow-rgb), 0.14), transparent 68%),
    var(--surface);
}

.highlight-image {
  width: min(220px, 85%);
  max-height: 220px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.highlight-platforms {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.highlight-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

.highlight-platform .platform-icon {
  width: min(110px, 22vw);
  height: min(110px, 22vw);
}

.highlight-platform .platform-icon--mac {
  width: min(110px, 22vw);
  height: min(110px, 22vw);
  max-width: 100%;
  padding: 8px;
}

.highlight-body {
  flex: 1;
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
}

.highlight-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.highlight-desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: var(--neo-inset), var(--neo-raised);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.feature-desc {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.reviews-section {
  padding: 3.5rem 0 4rem;
}

.reviews-section__inner {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent-2) 18%, var(--border));
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(var(--glow-rgb), 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(155deg, var(--surface-2), var(--surface));
  box-shadow:
    var(--neo-inset),
    var(--neo-raised),
    0 0 40px rgba(var(--glow-rgb), 0.06);
}

.reviews-section--page .reviews-section__inner {
  margin-top: 0.5rem;
}

.reviews-header--page {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.reviews-header--page .reviews-header__intro {
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-header--page .reviews-header__title {
  margin-bottom: 0;
  width: 100%;
  max-width: none;
}

.reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.reviews-header__intro {
  flex: 1 1 100%;
  min-width: 0;
}

.reviews-header__title {
  margin: 0 auto 0.65rem;
  width: 100%;
  max-width: none;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: var(--text);
  text-shadow: none;
}

.reviews-header__lead {
  margin: 0 auto;
  max-width: 42ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (min-width: 641px) {
  .reviews-header__lead--nowrap-md {
    max-width: none;
    white-space: nowrap;
  }
}

.reviews-summary {
  flex: 0 0 auto;
  text-align: center;
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 200, 114, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 24, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 220, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.28);
}

.reviews-summary__score {
  margin: 0 0 0.35rem;
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(108deg, #fff9e8 0%, #f0d878 40%, #e8c872 70%, #fff6dc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #e8c872;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .reviews-summary__score {
    color: transparent;
  }
}

.reviews-summary .star-rating {
  justify-content: center;
  margin-bottom: 0.5rem;
}

.reviews-summary__caption {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.reviews-summary__label {
  color: #e8c872;
}

.reviews-summary__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.reviews-summary__count {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.star-rating {
  display: inline-flex;
  align-items: center;
}

.star-rating__group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #e8c872;
}

.star-icon {
  display: block;
  flex-shrink: 0;
}

.star-rating--lg .star-icon {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 6px rgba(232, 200, 114, 0.45));
}

.star-rating--sm .star-icon {
  width: 14px;
  height: 14px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.reviews-grid__item {
  min-width: 0;
}

.reviews-grid__item[hidden],
.reviews-grid__item.is-review-hidden {
  display: none !important;
}

.reviews-grid__item > .review-card {
  height: 100%;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(145deg, var(--glass-strong), var(--glass)),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  padding: 1.35rem 1.4rem 1.45rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--neo-inset), var(--neo-raised);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.review-card::before {
  content: "\201C";
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(var(--glow-rgb), 0.14);
  pointer-events: none;
  user-select: none;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.38);
  box-shadow:
    var(--neo-inset),
    0 16px 36px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(var(--glow-rgb), 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.review-avatar--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.review-avatar--blue { background: var(--accent-3); }
.review-avatar--green { background: var(--ok); color: var(--ok-dark); }
.review-avatar--violet { background: var(--aspire-violet); }
.review-avatar--teal { background: var(--aspire-teal); color: #062020; }
.review-avatar--rose { background: linear-gradient(135deg, var(--accent-3), var(--accent)); }

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.reviews-cta--actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.reviews-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reviews-grid--block + .reviews-grid--block {
  margin-top: 0;
}

.reviews-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.reviews-more-btn:hover {
  border-color: rgba(var(--glow-rgb), 0.55);
  color: var(--accent-2);
  background: rgba(var(--glow-rgb), 0.08);
}

.reviews-cta--actions .hero-buy-btn {
  min-width: min(100%, 260px);
}

.reviews-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.reviews-all-btn:hover {
  border-color: rgba(var(--glow-rgb), 0.55);
  color: var(--accent-2);
  background: rgba(var(--glow-rgb), 0.08);
}

.reviews-page {
  padding: 2rem 0 4rem;
}

.reviews-page-back {
  margin: 0 0 1.5rem;
}

.reviews-page-back a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

.reviews-page-back a:hover {
  text-decoration: underline;
}

.reviews-page-lead {
  text-align: center;
  color: var(--muted);
  margin: -1.5rem auto 2.5rem;
  max-width: 42ch;
  line-height: 1.5;
}

.reviews-grid--all {
  margin-bottom: 0.5rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.reviews-grid--all .review-card {
  padding: 1.15rem 1.2rem;
}

.reviews-grid--all .review-text p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.reviews-header__lead a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 640px) {
  .reviews-summary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-meta {
  min-width: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.25;
}

.review-rating {
  margin-top: 0.35rem;
}

.review-text {
  margin: 0;
  flex: 1;
  border: none;
  padding: 0;
}

.review-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq {
  padding: 3rem 0 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq .faq-item {
  background: var(--surface-2);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  backdrop-filter: none;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq .faq-item[open] {
  border-color: rgba(var(--glow-rgb), 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s ease;
}

.faq .faq-question::-webkit-details-marker {
  display: none;
}

.faq .faq-question::marker {
  content: "";
}

.faq .faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease;
}

.faq .faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 0.15rem;
}

.faq .faq-question:hover {
  color: var(--accent-2);
}

.faq .faq-question:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -2px;
}

.faq .faq-answer {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

