/* ==========================================================================
   Renegade Tools Sales Landing Page — style.css
   Blinkl-inspired liquid glass theme
   ========================================================================== */

:root {
  --bg: #0a0b0d;
  --bg-card: rgba(25, 26, 30, 0.65);
  --bg-input: rgba(40, 42, 48, 0.60);
  --border: rgba(255, 255, 255, 0.08);
  --border-hi: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-mid: #9a9ca3;
  --text-dim: #5c5e66;
  --orange: #FF6100;
  --orange-hi: #ff7f33;
  --orange-glow: rgba(255, 97, 0, 0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 97, 0, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

select {
  color-scheme: dark;
}

select option,
select optgroup {
  background-color: #15161a;
  color: #fff;
}

select option:checked {
  background-color: var(--orange);
  color: #fff;
}

select option:disabled {
  color: var(--text-dim);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Site Header ── */
.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1200px;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 8px 24px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 2px 6px rgba(255, 97, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 97, 0, 0.35);
}

.btn-primary:hover {
  background: var(--orange-hi);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(255, 97, 0, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border-hi);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1.5px);
}

.btn:disabled,
.btn.is-current-plan {
  cursor: default;
  pointer-events: none;
  transform: none;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: none;
}

.btn.is-included-plan {
  cursor: default;
  pointer-events: none;
  transform: none;
  color: var(--text-mid);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 35px;
}

.w-full {
  width: 100%;
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 60px;
  overflow: hidden;
}

.liquid-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 97, 0, 0.12) 0%, transparent 65%);
  filter: blur(80px);
  z-index: -2;
  animation: breathe 12s ease-in-out infinite alternate;
}

@keyframes breathe {
  0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle, #000 30%, transparent 80%);
  z-index: -1;
}

.hero-content {
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(100%, 520px);
  background: rgba(255, 97, 0, 0.08);
  border: 1px solid rgba(255, 97, 0, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-hi);
  margin-bottom: 24px;
}

.platform-app-logo {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(153, 153, 255, 0.18);
}

.platform-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.16);
}

.hero-title {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 620px;
}

.hero-trial-line {
  max-width: 620px;
  margin: 0 0 26px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-secondary-link {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.hero-secondary-link:hover {
  color: var(--text);
  border-color: rgba(255, 97, 0, 0.7);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-green { background: #32d74b; box-shadow: 0 0 8px #32d74b; }
.dot-mid { background: var(--text-dim); }

.hero-video-shell {
  width: min(960px, calc(100vw - 34px));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 97, 0, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 97, 0, 0.04);
  overflow: hidden;
}

.hero-video-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.hero-video-topline span {
  flex: 0 0 auto;
  color: var(--orange-hi);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-topline strong {
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050507;
  object-fit: cover;
}

.hero-video-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-video-controls button {
  min-width: 0;
  border: 0;
  background: rgba(10, 11, 13, 0.86);
  color: var(--text-mid);
  padding: 11px 8px;
  font: 800 11px var(--font-body);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.hero-video-controls button:hover,
.hero-video-controls button.is-active {
  background: rgba(255, 97, 0, 0.16);
  color: var(--text);
}

/* ── Social Proof ── */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-text {
  font-size: 13.5px;
  color: var(--text-mid);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.avatars img:first-child {
  margin-left: 0;
}

/* Product Preview */
.plugin-preview-section {
  padding: 86px 24px 32px;
}

.section-header.compact {
  margin-bottom: 34px;
}

.plugin-window {
  width: min(720px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 97, 0, 0.24), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(34, 211, 238, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(44, 37, 40, 0.88), rgba(21, 30, 34, 0.88));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.plugin-window.is-switching .plugin-card-large {
  overflow: hidden;
}

.plugin-window.is-switching .plugin-card-large > span,
.plugin-window.is-switching .plugin-card-large > strong,
.plugin-window.is-switching .plugin-card-large > p,
.plugin-window.is-switching .plugin-visual-stage {
  will-change: opacity, transform, filter;
}

.plugin-window.is-exiting-next .plugin-card-large > span,
.plugin-window.is-exiting-next .plugin-card-large > strong,
.plugin-window.is-exiting-next .plugin-card-large > p,
.plugin-window.is-exiting-next .plugin-visual-stage {
  animation: previewPaneExitNext 0.26s ease-in both;
}

.plugin-window.is-exiting-prev .plugin-card-large > span,
.plugin-window.is-exiting-prev .plugin-card-large > strong,
.plugin-window.is-exiting-prev .plugin-card-large > p,
.plugin-window.is-exiting-prev .plugin-visual-stage {
  animation: previewPaneExitPrev 0.26s ease-in both;
}

.plugin-window.is-entering-next .plugin-card-large > span,
.plugin-window.is-entering-next .plugin-card-large > strong,
.plugin-window.is-entering-next .plugin-card-large > p,
.plugin-window.is-entering-next .plugin-visual-stage {
  animation: previewPaneEnterNext 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.plugin-window.is-entering-prev .plugin-card-large > span,
.plugin-window.is-entering-prev .plugin-card-large > strong,
.plugin-window.is-entering-prev .plugin-card-large > p,
.plugin-window.is-entering-prev .plugin-visual-stage {
  animation: previewPaneEnterPrev 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.plugin-window.is-entering-next .plugin-card-large > strong,
.plugin-window.is-entering-prev .plugin-card-large > strong { animation-delay: 0.04s; }
.plugin-window.is-entering-next .plugin-card-large > p,
.plugin-window.is-entering-prev .plugin-card-large > p { animation-delay: 0.08s; }
.plugin-window.is-entering-next .plugin-visual-stage,
.plugin-window.is-entering-prev .plugin-visual-stage { animation-delay: 0.12s; }

.plugin-tabs button.is-auto-selected {
  animation: previewTabPulse 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.plugin-preview-header,
.plugin-tabs,
.plugin-card-large,
.plugin-card-small {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.plugin-preview-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 15px;
}

.plugin-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
}

.plugin-preview-header strong,
.plugin-card-large strong,
.plugin-card-small strong {
  display: block;
  color: var(--text);
  font-family: var(--font-title);
}

.plugin-preview-header span,
.plugin-card-large p,
.plugin-card-small span {
  color: var(--text-mid);
  font-size: 13px;
}

.plugin-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border-radius: 14px;
}

.plugin-tabs button {
  height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-mid);
  font: 800 13px var(--font-title);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.plugin-tabs button:hover,
.plugin-tabs button.is-active {
  background: linear-gradient(135deg, #ff6100, #ff7a1a);
  color: #fff;
  transform: translateY(-1px);
}

.plugin-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}

.plugin-card-large,
.plugin-card-small {
  border-radius: 14px;
  padding: 22px;
}

.plugin-card-large {
  min-height: 420px;
}

.plugin-card-large span[data-plugin-kicker] {
  color: var(--orange);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.plugin-card-large strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  max-width: 520px;
}

.gold-text,
.mini-text-presets-head em {
  font-style: normal;
  color: #ffd76a;
  text-shadow: 0 0 16px rgba(255, 199, 59, 0.5);
}

.plugin-card-large p {
  margin-top: 14px;
  max-width: 560px;
}

.plugin-preview-grid .plugin-card-small {
  display: none;
}

.plugin-card-small {
  min-height: 112px;
}

.plugin-card-small strong {
  font-size: 17px;
  margin-bottom: 7px;
}

.mini-wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 70px;
  margin-top: 32px;
}

.mini-wave i {
  display: block;
  width: 24px;
  height: 20px;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #ff9b42, #ff6100);
}

.mini-wave i:nth-child(2),
.mini-wave i:nth-child(6) { height: 58px; }
.mini-wave i:nth-child(3),
.mini-wave i:nth-child(7) { height: 42px; }
.mini-wave i:nth-child(4),
.mini-wave i:nth-child(5) {
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.plugin-feature-visual {
  display: grid;
  gap: 9px;
  margin-top: 34px;
}

.plugin-feature-row {
  height: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 97, 0, 0.95), rgba(255, 255, 255, 0.16));
}

.plugin-search-box,
.plugin-caption-preview,
.plugin-tempo-preview {
  margin-top: 34px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plugin-visual-stage {
  margin-top: 24px;
  min-height: 250px;
  overflow: hidden;
  border-radius: 14px;
}

.mini-home-customizer {
  position: relative;
  display: grid;
  gap: 12px;
}

.mini-home-toolbar,
.mini-home-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.26);
}

.mini-home-toolbar span,
.mini-home-status strong {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-home-toolbar button {
  position: relative;
  overflow: hidden;
  height: 30px;
  min-width: 96px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6100, #ff9b42);
  animation: homeCustomizePulse 9.6s ease-in-out forwards;
}

.mini-home-toolbar button em {
  display: block;
  font-style: normal;
  animation: homeButtonLabel 9.6s steps(1, end) forwards;
}

.mini-home-toolbar button em + em {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  animation: homeConfirmLabel 9.6s steps(1, end) forwards;
}

.mini-home-status span {
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 800;
}

.mini-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  perspective: 900px;
}

.mini-home-grid span,
.mini-control-card,
.mini-sfx-row,
.mini-launcher-row {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.mini-home-grid span {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px;
  color: var(--text);
  font: 800 16px var(--font-title);
}

.mini-home-grid span b,
.mini-home-grid span em {
  position: relative;
  z-index: 2;
}

.mini-home-grid span em {
  color: var(--text-mid);
  font-style: normal;
  font: 800 11px var(--font-body);
}

.home-tool-card {
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: homeToolWiggle 9.6s ease-in-out forwards;
}

.home-tool-card::before {
  content: "";
  position: absolute;
  inset: 10px auto auto 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 14px 0 rgba(255, 255, 255, 0.12), 28px 0 rgba(255, 255, 255, 0.12);
}

.home-tool-card::after {
  content: "MOVING";
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 3px 6px;
  border-radius: 999px;
  color: #0b0b0d;
  font-size: 9px;
  font-weight: 950;
  background: #ffd76a;
  opacity: 0;
  transform: translateY(-6px);
  animation: homeMovingReveal 9.6s ease-in-out forwards;
}

.home-tool-curve,
.home-tool-silence,
.home-tool-launcher {
  border-color: rgba(255, 215, 106, 0.24);
}

.home-tool-curve { animation-name: homeCurveMove; }
.home-tool-silence { animation-name: homeSilenceMove; }
.home-tool-launcher { animation-name: homeLauncherMove; }
.home-tool-text { animation-name: homeTextMove; }
.home-tool-sfx { animation-delay: 0.08s; }
.home-tool-speech { animation-delay: 0.16s; }
.home-tool-curve { animation-delay: 0.03s; }

.home-tool-curve::after,
.home-tool-silence::after,
.home-tool-launcher::after {
  animation-name: homeMovingReveal;
}

.mini-home-cursor {
  position: absolute;
  left: 84%;
  top: 22px;
  width: 16px;
  height: 22px;
  z-index: 6;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
  transform: translate3d(0, 0, 0) rotate(-12deg);
  animation: homeCursorPath 9.6s ease-in-out forwards;
}

.mini-home-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 100%, 35% 78%, 52% 100%, 70% 91%, 54% 68%, 100% 64%);
  background: #fff;
}

.mini-home-cursor::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 215, 106, 0.8);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.4);
  animation: homeCursorClick 9.6s ease-in-out forwards;
}

.mini-silence-panel,
.mini-launcher-panel,
.mini-speech-panel,
.mini-sfx-panel {
  display: grid;
  gap: 12px;
}

.mini-silence-panel,
.mini-sfx-panel {
  position: relative;
}

.mini-waveform {
  height: 94px;
  display: flex;
  align-items: end;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  background: #050505;
}

.mini-waveform i {
  flex: 1;
  display: block;
  min-width: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #f3f4f6, #5f636b);
  animation: miniSilenceWave 6.8s ease-in-out infinite;
}

.mini-waveform i:nth-child(3n) {
  background: linear-gradient(180deg, #ff7a1a, #6d2600);
}

.mini-waveform i:nth-child(1) { height: 30px; animation-delay: 0s; }
.mini-waveform i:nth-child(2) { height: 58px; animation-delay: 0.05s; }
.mini-waveform i:nth-child(3) { height: 78px; animation-delay: 0.1s; }
.mini-waveform i:nth-child(4) { height: 18px; animation-delay: 0.15s; }
.mini-waveform i:nth-child(5) { height: 52px; animation-delay: 0.2s; }
.mini-waveform i:nth-child(6) { height: 86px; animation-delay: 0.25s; }
.mini-waveform i:nth-child(7) { height: 24px; animation-delay: 0.3s; }
.mini-waveform i:nth-child(8) { height: 72px; animation-delay: 0.35s; }
.mini-waveform i:nth-child(9) { height: 28px; animation-delay: 0.4s; }
.mini-waveform i:nth-child(10) { height: 60px; animation-delay: 0.45s; }
.mini-waveform i:nth-child(11) { height: 80px; animation-delay: 0.5s; }
.mini-waveform i:nth-child(12) { height: 20px; animation-delay: 0.55s; }
.mini-waveform i:nth-child(13) { height: 66px; animation-delay: 0.6s; }
.mini-waveform i:nth-child(14) { height: 35px; animation-delay: 0.65s; }
.mini-waveform i:nth-child(15) { height: 76px; animation-delay: 0.7s; }
.mini-waveform i:nth-child(16) { height: 44px; animation-delay: 0.75s; }

.mini-control-row,
.mini-silence-console {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}

.mini-silence-console {
  position: relative;
  grid-template-columns: 0.88fr 1.2fr 0.9fr;
}

.mini-control-card {
  padding: 14px;
}

.mini-db-card {
  display: grid;
  place-items: center;
  gap: 8px;
}

.mini-db-card small {
  color: var(--text-mid);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-knob {
  width: 66px;
  height: 66px;
  border: 4px solid rgba(255, 97, 0, 0.95);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange-hi);
  font-weight: 900;
}

.mini-db-wheel {
  position: relative;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 97, 0, 0.92);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 174, 86, 0.46);
  border-radius: 50%;
  color: var(--orange-hi);
  font-weight: 950;
}

.mini-db-wheel::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 5px solid transparent;
  border-top-color: rgba(255, 97, 0, 0.92);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 174, 86, 0.46);
  border-radius: 50%;
  animation: miniDbWheel 6.8s ease-in-out infinite;
}

.mini-db-wheel span {
  position: absolute;
  opacity: 0;
  animation: miniDbNumbers 6.8s steps(1, end) infinite;
}

.mini-db-wheel span:nth-child(2) { animation-delay: 1.7s; }
.mini-db-wheel span:nth-child(3) { animation-delay: 3.4s; }
.mini-db-wheel span:nth-child(4) { animation-delay: 5.1s; }

.mini-slider {
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 45%, rgba(255,255,255,0.14) 45%);
}

.mini-slider-a {
  animation: miniSliderA 6.8s ease-in-out infinite;
}

.mini-slider-b {
  animation: miniSliderB 6.8s ease-in-out infinite;
}

.mini-silence-settings strong {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 12px;
}

.mini-run-btn {
  height: 44px;
  align-self: center;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  background: linear-gradient(180deg, #ff8b2b, #ff6100);
  animation: miniCutButton 6.8s ease-in-out infinite;
}

.mini-trim-timeline {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.26);
}

.mini-time-label,
.mini-cut-note {
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 800;
}

.mini-track {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 38px;
  margin: 10px 0 8px;
  overflow: hidden;
}

.mini-track span {
  height: 30px;
  border-radius: 7px;
}

.mini-track .mini-clip {
  flex: 1 1 22%;
  background: linear-gradient(180deg, #22d3ee, #0e7490);
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.14);
  animation: miniClipTrim 6.8s ease-in-out infinite;
}

.mini-track .mini-gap {
  flex: 0 0 10%;
  background: repeating-linear-gradient(90deg, rgba(255, 97, 0, 0.18) 0 4px, rgba(255, 97, 0, 0.48) 4px 8px);
  border: 1px dashed rgba(255, 132, 48, 0.52);
  animation: miniGapCollapse 6.8s ease-in-out infinite;
}

.mini-cut-note {
  opacity: 0.5;
  animation: miniCutNote 6.8s ease-in-out infinite;
}

.mini-launcher-panel {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(37, 24, 22, 0.95), rgba(70, 28, 12, 0.82));
}

.mini-launcher-search {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 2px 8px;
  color: var(--text);
  font: 900 18px var(--font-title);
}

.mini-launcher-search > span:first-child {
  white-space: nowrap;
}

.launcher-dots {
  color: var(--orange-hi);
  letter-spacing: 0.12em;
}

.mini-launcher-search .typed {
  min-width: 128px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
}

.mini-launcher-search .typed::before {
  content: "";
  animation: launcherTyping 7.2s steps(1, end) infinite;
}

.mini-launcher-search .typed::after {
  content: "";
  display: block;
  width: 2px;
  height: 19px;
  border-radius: 999px;
  background: #ffd76a;
  box-shadow: 0 0 14px rgba(255, 215, 106, 0.65);
  animation: launcherCaret 0.72s steps(1, end) infinite;
}

.mini-launcher-results {
  min-height: 214px;
  display: grid;
  gap: 8px;
  overflow: hidden;
}

.mini-launcher-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  max-height: 0;
  overflow: hidden;
  color: var(--text-mid);
  font-weight: 800;
  border-color: transparent;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: launcherResultCycle 7.2s ease-in-out infinite;
}

.mini-launcher-row.row-any:nth-child(1) { animation-name: launcherAnyOne; }
.mini-launcher-row.row-any:nth-child(2) { animation-name: launcherAnyTwo; }
.mini-launcher-row.row-l { animation-name: launcherLResult; }
.mini-launcher-row.row-lu { animation-name: launcherLuResult; }
.mini-launcher-row.row-final { animation-name: launcherFinalResult; }

.mini-launcher-row b {
  color: rgba(255, 215, 106, 0.86);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.mini-launcher-row.is-picked {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 97, 0, 0.55), rgba(255, 97, 0, 0.08));
}

.mini-clip,
.mini-launcher-clip {
  margin-top: 8px;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(90deg, #0f172a, #263449);
  box-shadow: inset 0 -3px 0 rgba(255, 97, 0, 0);
  animation: launcherApply 7.2s ease-in-out infinite;
}

.mini-launcher-command {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  color: var(--text-mid);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: launcherCommand 7.2s ease-in-out infinite;
}

.mini-launcher-command span {
  padding: 4px 8px;
  border-radius: 7px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
}

.mini-launcher-command strong {
  color: var(--text);
  font-size: 12px;
}

.mini-launcher-timeline {
  padding: 10px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.24);
}

.mini-launcher-clip {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.mini-launcher-clip em {
  position: absolute;
  right: 10px;
  top: 9px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-style: normal;
  font-size: 11px;
  background: linear-gradient(135deg, #ff6100, #ff9b42);
  opacity: 0;
  transform: translateY(8px);
  animation: launcherBadge 7.2s ease-in-out infinite;
}

.mini-speech-config {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}

.mini-pill-input,
.mini-transcript-box {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-transcript-box {
  min-height: 110px;
  color: var(--text-mid);
  line-height: 1.55;
}

.mini-transcript-box span {
  display: block;
  opacity: 0;
  transform: translateY(8px);
  animation: speechLine 7.2s ease-in-out infinite;
}

.mini-transcript-box span:nth-child(2) { animation-delay: 0.42s; }
.mini-transcript-box span:nth-child(3) { animation-delay: 0.84s; }

.mini-speech-wave {
  position: relative;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 12px;
  background: #050505;
  overflow: hidden;
}

.mini-speech-wave::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #ffd76a;
  box-shadow: 0 0 16px rgba(255, 215, 106, 0.7);
  animation: speechScan 7.2s ease-in-out infinite;
}

.mini-speech-wave i {
  flex: 1;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22d3ee, #0e7490);
  animation: speechWave 1.1s ease-in-out infinite alternate;
}

.mini-speech-wave i:nth-child(2n) { animation-delay: 0.15s; }
.mini-speech-wave i:nth-child(3n) { animation-delay: 0.3s; background: linear-gradient(180deg, #ff9b42, #ff6100); }

.mini-caption-timeline {
  display: flex;
  gap: 7px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.24);
}

.mini-caption-timeline b {
  flex: 1;
  padding: 9px 7px;
  border-radius: 8px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  background: linear-gradient(180deg, #7c3aed, #4c1d95);
  opacity: 0;
  transform: translateY(10px);
  animation: captionBlock 7.2s ease-in-out infinite;
}

.mini-caption-timeline b:nth-child(2) { animation-delay: 0.22s; }
.mini-caption-timeline b:nth-child(3) { animation-delay: 0.44s; }

.mini-orange-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-orange-actions span {
  padding: 13px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(180deg, #ff8b2b, #ff6100);
}

.mini-sfx-drop {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  animation: sfxDropZone 8.6s ease-in-out infinite;
}

.mini-sfx-folder {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  gap: 4px;
  width: 92px;
  height: 62px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
  transform-origin: center;
  animation: sfxFolderDrop 8.6s ease-in-out infinite;
}

.mini-sfx-folder span {
  position: relative;
  display: block;
  width: 58px;
  height: 42px;
  border-radius: 7px 7px 8px 8px;
  background: linear-gradient(180deg, #ffb45d, #ff6100);
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.14), 0 13px 24px rgba(255, 97, 0, 0.2);
}

.mini-sfx-folder span::before {
  content: "";
  position: absolute;
  left: 4px;
  top: -8px;
  width: 26px;
  height: 12px;
  border-radius: 6px 6px 0 0;
  background: #ffb45d;
}

.mini-sfx-folder span::after {
  content: "\266A";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.mini-sfx-folder b {
  line-height: 1.05;
}

.mini-sfx-drop strong {
  position: relative;
  color: var(--text-mid);
  font-size: 12px;
  text-align: center;
  animation: sfxDropHint 8.6s ease-in-out infinite;
}

.mini-sfx-drop strong::after {
  content: "Library loaded: 3 sounds";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffd76a;
  opacity: 0;
  transform: translateY(8px);
  animation: sfxLibraryReady 8.6s ease-in-out infinite;
}

.mini-sfx-list {
  display: grid;
  gap: 7px;
}

.mini-sfx-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--text-mid);
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  animation: sfxRowsLoad 8.6s ease-in-out infinite;
}

.mini-sfx-row:nth-child(2) { animation-delay: 0.12s; }
.mini-sfx-row:nth-child(3) { animation-delay: 0.24s; }

.mini-sfx-row.is-previewing {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 97, 0, 0.5), rgba(255, 97, 0, 0.08));
  animation: sfxPreviewRow 8.6s ease-in-out infinite;
}

.mini-sfx-wave {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 42px;
  overflow: hidden;
  opacity: 0;
  animation: sfxWaveReveal 8.6s ease-in-out infinite;
}

.mini-sfx-wave i {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6100, #ffb15f);
  animation: sfxWave 1.2s ease-in-out infinite alternate;
}

.mini-sfx-wave i:nth-child(even) {
  animation-delay: 0.25s;
}

.mini-sfx-wave span {
  position: absolute;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.75);
  animation: sfxPlayhead 8.6s ease-in-out infinite;
}

.mini-sfx-timeline {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.mini-sfx-timeline strong {
  color: var(--text-mid);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-sfx-timeline em {
  position: relative;
  flex: 1;
  padding: 9px 12px;
  border-radius: 8px;
  color: #fff;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(180deg, #22d3ee, #0e7490);
  opacity: 0;
  transform: translateX(22px);
  animation: sfxInsertClip 8.6s ease-in-out infinite;
}

.mini-sfx-cursor {
  position: absolute;
  left: 134px;
  top: 44px;
  width: 16px;
  height: 22px;
  z-index: 8;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
  transform: rotate(-12deg);
  animation: sfxCursorPath 8.6s ease-in-out infinite;
}

.mini-sfx-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 100%, 35% 78%, 52% 100%, 70% 91%, 54% 68%, 100% 64%);
  background: #fff;
}

.mini-sfx-cursor::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 215, 106, 0.82);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.4);
  animation: sfxCursorClick 8.6s ease-in-out infinite;
}

.mini-text-presets-panel {
  display: grid;
  gap: 14px;
}

.mini-text-presets-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.28);
}

.mini-text-presets-head span {
  margin: 0;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-text-presets-head strong {
  color: var(--text);
  font: 900 16px var(--font-title);
  text-align: right;
}

.mini-text-preset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  perspective: 900px;
}

.mini-text-preset-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: 1px solid transparent;
  outline-offset: -1px;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  transform-origin: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, outline-color 0.22s ease;
}

.plugin-preview-section.is-visible .mini-text-preset-grid video:hover,
.mini-text-preset-grid video:hover {
  z-index: 2;
  border-color: rgba(255, 215, 106, 0.72);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3), 0 0 18px rgba(255, 182, 39, 0.18);
  filter: saturate(1.08) brightness(1.06);
  transform: perspective(900px) rotateX(4deg) rotateY(-5deg);
}

.plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(even):hover,
.mini-text-preset-grid video:nth-child(even):hover {
  transform: perspective(900px) rotateX(4deg) rotateY(5deg);
}

@media (prefers-reduced-motion: no-preference) {
  .plugin-preview-section .section-header.compact,
  .plugin-preview-section .plugin-window {
    opacity: 0;
    transform: translateY(34px);
  }

  .plugin-preview-section.is-visible .section-header.compact {
    animation: previewSectionReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
  }

  .plugin-preview-section.is-visible .plugin-window {
    animation: previewSectionReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
  }

  .plugin-preview-section .plugin-preview-header,
  .plugin-preview-section .plugin-tabs,
  .plugin-preview-section .plugin-card-large > span,
  .plugin-preview-section .plugin-card-large > strong,
  .plugin-preview-section .plugin-card-large > p,
  .plugin-preview-section .mini-text-presets-head {
    opacity: 0;
    transform: translateY(18px);
  }

  .plugin-preview-section .mini-text-preset-grid video {
    opacity: 0;
    transform: translateY(26px) rotateX(10deg);
    filter: blur(7px) brightness(0.8);
    transition:
      opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
      border-color 0.22s ease,
      box-shadow 0.22s ease,
      outline-color 0.22s ease;
    transition-delay: var(--preset-delay, 1.35s), var(--preset-delay, 1.35s), var(--preset-delay, 1.35s), 0s, 0s, 0s;
  }

  .plugin-preview-section.is-visible .plugin-preview-header {
    animation: previewItemReveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
  }

  .plugin-preview-section.is-visible .plugin-tabs {
    animation: previewItemReveal 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.62s both;
  }

  .plugin-preview-section.is-visible .plugin-card-large > span {
    animation: previewItemReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.78s both;
  }

  .plugin-preview-section.is-visible .plugin-card-large > strong {
    animation: previewItemReveal 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
  }

  .plugin-preview-section.is-visible .plugin-card-large > p {
    animation: previewItemReveal 0.78s cubic-bezier(0.16, 1, 0.3, 1) 1.05s both;
  }

  .plugin-preview-section.is-visible .mini-text-presets-head {
    animation: previewItemReveal 0.78s cubic-bezier(0.16, 1, 0.3, 1) 1.2s both;
  }

  .plugin-preview-section.is-visible .mini-text-preset-grid video {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0) brightness(1);
    animation: presetTileGlow 5.8s ease-in-out infinite;
    animation-delay: calc(var(--preset-delay, 1.35s) + 1.2s);
  }

  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(1) { --preset-delay: 1.34s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(2) { --preset-delay: 1.48s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(3) { --preset-delay: 1.62s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(4) { --preset-delay: 1.76s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(5) { --preset-delay: 1.9s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(6) { --preset-delay: 2.04s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(7) { --preset-delay: 2.18s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(8) { --preset-delay: 2.32s; }
  .plugin-preview-section.is-visible .mini-text-preset-grid video:nth-child(9) { --preset-delay: 2.46s; }
}

@keyframes miniWavePulse {
  50% { transform: scaleY(0.72); opacity: 0.75; }
}

@keyframes homeCustomizePulse {
  0%, 12%, 84%, 100% { transform: translateY(0); box-shadow: none; }
  18%, 76% { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255, 97, 0, 0.24); }
}

@keyframes homeButtonLabel {
  0%, 22% { opacity: 1; transform: translateY(0); }
  23%, 100% { opacity: 0; transform: translateY(-10px); }
}

@keyframes homeConfirmLabel {
  0%, 22% { opacity: 0; transform: translateY(10px); }
  23%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes homeToolWiggle {
  0%, 18%, 78%, 100% { transform: translate3d(0, 0, 0) rotate(0); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08); }
  26% { transform: translate3d(0, -3px, 0) rotate(-0.7deg); }
  34% { transform: translate3d(0, -2px, 0) rotate(0.7deg); }
  42%, 62% { transform: translate3d(0, -4px, 0) rotate(-0.55deg); box-shadow: 0 14px 28px rgba(0,0,0,0.24), 0 0 16px rgba(255, 215, 106, 0.08); }
  70% { transform: translate3d(0, -1px, 0) rotate(0.4deg); }
}

@keyframes homeCurveMove {
  0%, 24% { transform: translate3d(0, 0, 0); }
  38%, 64% { transform: translate3d(calc(-200% - 24px), calc(-100% - 12px), 0) rotate(-2deg); box-shadow: 0 18px 34px rgba(0,0,0,0.28), 0 0 22px rgba(255, 215, 106, 0.22); }
  78%, 100% { transform: translate3d(calc(-200% - 24px), calc(-100% - 12px), 0) rotate(0); box-shadow: 0 18px 34px rgba(0,0,0,0.22), 0 0 22px rgba(255, 215, 106, 0.12); }
}

@keyframes homeSilenceMove {
  0%, 25% { transform: translate3d(0, 0, 0); }
  40%, 64% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(1.1deg); box-shadow: 0 16px 28px rgba(0,0,0,0.22); }
  78%, 100% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(0); }
}

@keyframes homeLauncherMove {
  0%, 26% { transform: translate3d(0, 0, 0); }
  40%, 64% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(-0.9deg); box-shadow: 0 16px 28px rgba(0,0,0,0.22); }
  78%, 100% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(0); }
}

@keyframes homeTextMove {
  0%, 28% { transform: translate3d(0, 0, 0); }
  40%, 64% { transform: translate3d(0, calc(100% + 12px), 0) rotate(0.7deg); box-shadow: 0 16px 28px rgba(0,0,0,0.22); }
  78%, 100% { transform: translate3d(0, calc(100% + 12px), 0) rotate(0); }
}

@keyframes homeMovingReveal {
  0%, 28% { opacity: 0; transform: translateY(-6px); }
  36%, 68% { opacity: 1; transform: translateY(0); }
  80%, 100% { opacity: 0; transform: translateY(-6px); }
}

@keyframes homeCursorPath {
  0%, 10% { left: 84%; top: 22px; transform: rotate(-12deg) scale(1); }
  16% { left: 84%; top: 22px; transform: rotate(-12deg) scale(0.92); }
  24% { left: 78%; top: 150px; transform: rotate(-12deg) scale(1); }
  40%, 56% { left: 16%; top: 72px; transform: rotate(-12deg) scale(1); }
  70% { left: 84%; top: 22px; transform: rotate(-12deg) scale(1); }
  76% { left: 84%; top: 22px; transform: rotate(-12deg) scale(0.92); }
  86% { left: 84%; top: 22px; opacity: 1; transform: rotate(-12deg) scale(1); }
  100% { left: 84%; top: 22px; opacity: 0; transform: rotate(-12deg) scale(1); }
}

@keyframes homeCursorClick {
  0%, 12%, 20%, 72%, 80%, 100% { opacity: 0; transform: scale(0.4); }
  15%, 75% { opacity: 1; transform: scale(1.1); }
}

@keyframes miniSilenceWave {
  0%, 16% { transform: scaleY(0.62); opacity: 0.62; }
  28%, 42% { transform: scaleY(1.08); opacity: 1; }
  52%, 62% { transform: scaleY(0.34); opacity: 0.45; }
  76%, 100% { transform: scaleY(0.86); opacity: 0.82; }
}

@keyframes miniDbWheel {
  0%, 18% { transform: rotate(-34deg); }
  28%, 45% { transform: rotate(22deg); }
  55%, 72% { transform: rotate(84deg); }
  82%, 100% { transform: rotate(128deg); }
}

@keyframes miniDbNumbers {
  0%, 24.9% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

@keyframes miniSliderA {
  0%, 18% { background: linear-gradient(90deg, var(--orange) 32%, rgba(255,255,255,0.14) 32%); }
  30%, 54% { background: linear-gradient(90deg, var(--orange) 55%, rgba(255,255,255,0.14) 55%); }
  66%, 100% { background: linear-gradient(90deg, var(--orange) 72%, rgba(255,255,255,0.14) 72%); }
}

@keyframes miniSliderB {
  0%, 18% { background: linear-gradient(90deg, var(--orange) 78%, rgba(255,255,255,0.14) 78%); }
  30%, 54% { background: linear-gradient(90deg, var(--orange) 62%, rgba(255,255,255,0.14) 62%); }
  66%, 100% { background: linear-gradient(90deg, var(--orange) 44%, rgba(255,255,255,0.14) 44%); }
}

@keyframes miniCutButton {
  0%, 54% { transform: translateY(0); box-shadow: none; }
  58% { transform: translateY(2px) scale(0.98); box-shadow: 0 0 0 5px rgba(255, 97, 0, 0.2); }
  68%, 100% { transform: translateY(0); box-shadow: none; }
}

@keyframes miniGapCollapse {
  0%, 58% { flex-basis: 10%; opacity: 1; transform: scaleX(1); }
  74%, 100% { flex-basis: 0%; opacity: 0; transform: scaleX(0); }
}

@keyframes miniClipTrim {
  0%, 58% { flex-grow: 1; }
  74%, 100% { flex-grow: 1.35; }
}

@keyframes miniCutNote {
  0%, 58% { opacity: 0.42; color: var(--text-mid); }
  74%, 100% { opacity: 1; color: #ffd76a; }
}

@keyframes previewSectionReveal {
  from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes previewItemReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes previewPaneExitNext {
  from { opacity: 1; transform: translateX(0); filter: blur(0); }
  to { opacity: 0; transform: translateX(-26px); filter: blur(7px); }
}

@keyframes previewPaneExitPrev {
  from { opacity: 1; transform: translateX(0); filter: blur(0); }
  to { opacity: 0; transform: translateX(26px); filter: blur(7px); }
}

@keyframes previewPaneEnterNext {
  from { opacity: 0; transform: translateX(32px); filter: blur(7px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes previewPaneEnterPrev {
  from { opacity: 0; transform: translateX(-32px); filter: blur(7px); }
  to { opacity: 1; transform: translateX(0); filter: blur(0); }
}

@keyframes previewTabPulse {
  0% { box-shadow: 0 0 0 rgba(255, 97, 0, 0); }
  42% { box-shadow: 0 0 0 4px rgba(255, 97, 0, 0.2), 0 10px 24px rgba(255, 97, 0, 0.22); }
  100% { box-shadow: 0 0 0 rgba(255, 97, 0, 0); }
}

@keyframes presetTileGlow {
  0%, 100% {
    outline-color: rgba(255, 215, 106, 0);
  }
  50% {
    outline-color: rgba(255, 215, 106, 0.24);
  }
}

@keyframes launcherTyping {
  0%, 14% { content: ""; }
  18%, 28% { content: "L"; }
  32%, 42% { content: "Lu"; }
  46%, 56% { content: "Lum"; }
  60%, 70% { content: "Lumetri"; }
  74%, 100% { content: "Lumetri Color"; }
}

@keyframes launcherCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes launcherResultCycle {
  0%, 100% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(10px) scale(0.98); }
}

@keyframes launcherAnyOne {
  0%, 14% { max-height: 48px; padding-top: 12px; padding-bottom: 12px; border-color: rgba(255, 255, 255, 0.11); opacity: 1; transform: translateY(0) scale(1); }
  20%, 100% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes launcherAnyTwo {
  0%, 14% { max-height: 48px; padding-top: 12px; padding-bottom: 12px; border-color: rgba(255, 255, 255, 0.11); opacity: 1; transform: translateY(0) scale(1); }
  20%, 100% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes launcherLResult {
  0%, 16% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(10px) scale(0.98); }
  22%, 42% { max-height: 48px; padding-top: 12px; padding-bottom: 12px; border-color: rgba(255, 255, 255, 0.11); opacity: 1; transform: translateY(0) scale(1); }
  50%, 100% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes launcherLuResult {
  0%, 30% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(10px) scale(0.98); }
  36%, 58% { max-height: 48px; padding-top: 12px; padding-bottom: 12px; border-color: rgba(255, 255, 255, 0.11); opacity: 1; transform: translateY(0) scale(1); }
  66%, 100% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(-10px) scale(0.98); }
}

@keyframes launcherFinalResult {
  0%, 54% { max-height: 0; padding-top: 0; padding-bottom: 0; border-color: transparent; opacity: 0; transform: translateY(12px) scale(0.98); }
  62%, 100% { max-height: 48px; padding-top: 12px; padding-bottom: 12px; border-color: rgba(255, 97, 0, 0.36); opacity: 1; transform: translateY(0) scale(1); }
  72%, 100% { box-shadow: 0 0 0 1px rgba(255, 215, 106, 0.2), 0 13px 28px rgba(255, 97, 0, 0.16); }
}

@keyframes launcherApply {
  0%, 68% { box-shadow: inset 0 -3px 0 rgba(255, 97, 0, 0); }
  78%, 100% { box-shadow: inset 0 -5px 0 rgba(255, 97, 0, 0.9); }
}

@keyframes launcherCommand {
  0%, 62% { opacity: 0.46; transform: translateY(0); }
  72% { opacity: 1; transform: translateY(1px) scale(0.99); border-color: rgba(255, 97, 0, 0.45); }
  84%, 100% { opacity: 0.86; transform: translateY(0); }
}

@keyframes launcherBadge {
  0%, 76% { opacity: 0; transform: translateY(8px); }
  86%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes speechWave {
  from { height: 10px; opacity: 0.55; }
  to { height: 42px; opacity: 1; }
}

@keyframes speechScan {
  0% { left: 10px; opacity: 0; }
  15%, 74% { opacity: 1; }
  86%, 100% { left: calc(100% - 12px); opacity: 0; }
}

@keyframes speechLine {
  0%, 18% { opacity: 0; transform: translateY(8px); }
  30%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0.55; transform: translateY(0); }
}

@keyframes captionBlock {
  0%, 48% { opacity: 0; transform: translateY(10px); }
  62%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes sfxDropZone {
  0%, 23% { border-color: rgba(255, 255, 255, 0.24); background: rgba(255, 255, 255, 0.045); }
  31%, 100% { border-color: rgba(255, 97, 0, 0.48); background: rgba(255, 97, 0, 0.08); }
}

@keyframes sfxFolderDrop {
  0% { transform: translate3d(-96px, -32px, 0) scale(0.84) rotate(-8deg); opacity: 0; }
  12% { opacity: 1; }
  28% { transform: translate3d(calc(50% + 110px), 0, 0) scale(1) rotate(0); opacity: 1; }
  34%, 100% { transform: translate3d(calc(50% + 110px), 0, 0) scale(0.82) rotate(0); opacity: 0; }
}

@keyframes sfxDropHint {
  0%, 22% { opacity: 1; transform: translateY(0); }
  32%, 100% { opacity: 0; transform: translateY(8px); }
}

@keyframes sfxLibraryReady {
  0%, 30% { opacity: 0; transform: translateY(8px); }
  42%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes sfxRowsLoad {
  0%, 32% { opacity: 0; transform: translateY(8px); }
  43%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes sfxWave {
  0% { height: 8px; }
  100% { height: 34px; }
}

@keyframes sfxPreviewRow {
  0%, 44% { opacity: 0; transform: translateY(8px); border-color: rgba(255, 255, 255, 0.11); }
  48%, 58% { opacity: 1; transform: translateY(0); border-color: rgba(255, 255, 255, 0.11); }
  64%, 100% { opacity: 1; transform: translateX(4px); border-color: rgba(255, 97, 0, 0.46); box-shadow: 0 10px 24px rgba(255, 97, 0, 0.12); }
}

@keyframes sfxWaveReveal {
  0%, 58% { opacity: 0; transform: translateY(8px); }
  66%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes sfxPlayhead {
  0%, 62% { left: 0; opacity: 0; }
  70%, 88% { opacity: 1; }
  100% { left: calc(100% - 2px); opacity: 0; }
}

@keyframes sfxInsertClip {
  0%, 76% { opacity: 0; transform: translateX(22px); }
  88%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes sfxCursorPath {
  0% { left: 36px; top: 8px; opacity: 0; transform: rotate(-12deg) scale(1); }
  10% { left: 96px; top: 26px; opacity: 1; transform: rotate(-12deg) scale(1); }
  26% { left: 50%; top: 42px; opacity: 1; transform: rotate(-12deg) scale(0.94); }
  36% { left: 50%; top: 42px; opacity: 0; transform: rotate(-12deg) scale(0.94); }
  48% { left: 62%; top: 172px; opacity: 0; transform: rotate(-12deg) scale(1); }
  60%, 68% { left: 62%; top: 172px; opacity: 1; transform: rotate(-12deg) scale(1); }
  78% { left: 74%; top: 282px; opacity: 1; transform: rotate(-12deg) scale(1); }
  84% { left: 74%; top: 282px; opacity: 1; transform: rotate(-12deg) scale(0.92); }
  92%, 100% { left: 74%; top: 282px; opacity: 0; transform: rotate(-12deg) scale(1); }
}

@keyframes sfxCursorClick {
  0%, 24%, 30%, 62%, 70%, 80%, 88%, 100% { opacity: 0; transform: scale(0.4); }
  27%, 66%, 83% { opacity: 1; transform: scale(1.1); }
}

@media (max-width: 820px) {
  .plugin-preview-grid {
    grid-template-columns: 1fr;
  }

  .plugin-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .plugin-tabs button {
    flex: 0 0 auto;
    min-width: 112px;
    padding-inline: 14px;
    scroll-snap-align: start;
  }

  .mini-text-presets-head {
    display: grid;
    align-items: start;
  }

  .mini-text-presets-head strong {
    text-align: left;
  }

  .mini-text-preset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-tool-curve,
  .home-tool-silence,
  .home-tool-launcher {
    animation-name: homeToolWiggle;
  }

  .home-tool-curve { animation-name: homeCurveMoveMobile; }
  .home-tool-silence { animation-name: homeSilenceMove; }
  .home-tool-launcher { animation-name: homeLauncherMoveMobile; }
  .home-tool-text { animation-name: homeTextMoveMobile; }

  @keyframes homeCurveMoveMobile {
    0%, 24% { transform: translate3d(0, 0, 0); }
    38%, 64% { transform: translate3d(calc(-100% - 12px), calc(-200% - 24px), 0) rotate(-2deg); box-shadow: 0 18px 34px rgba(0,0,0,0.28), 0 0 22px rgba(255, 215, 106, 0.22); }
    78%, 100% { transform: translate3d(calc(-100% - 12px), calc(-200% - 24px), 0) rotate(0); box-shadow: 0 18px 34px rgba(0,0,0,0.22), 0 0 22px rgba(255, 215, 106, 0.12); }
  }

  @keyframes homeLauncherMoveMobile {
    0%, 26% { transform: translate3d(0, 0, 0); }
    40%, 64% { transform: translate3d(calc(-100% - 12px), calc(100% + 12px), 0) rotate(-0.9deg); box-shadow: 0 16px 28px rgba(0,0,0,0.22); }
    78%, 100% { transform: translate3d(calc(-100% - 12px), calc(100% + 12px), 0) rotate(0); }
  }

  @keyframes homeTextMoveMobile {
    0%, 28% { transform: translate3d(0, 0, 0); }
    40%, 64% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(0.7deg); box-shadow: 0 16px 28px rgba(0,0,0,0.22); }
    78%, 100% { transform: translate3d(calc(100% + 12px), 0, 0) rotate(0); }
  }
}

/* ── Features / Tools Carousel ── */
.features-section {
  padding: 64px 20px 52px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: rgba(255, 97, 0, 0.08);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-mid);
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  padding: 10px 0;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .features-section {
    padding: 46px 18px 42px;
  }

  .features-section .section-header {
    margin-bottom: 28px;
  }

  .carousel-container {
    overflow: visible;
    padding: 0;
  }

  .carousel-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tool-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  background: rgba(25, 26, 30, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.tool-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.orange-glow { filter: drop-shadow(0 0 8px rgba(255, 97, 0, 0.3)); }
.purple-glow { filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.3)); }
.green-glow { filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.3)); }
.red-glow { filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.3)); }

.tool-meta h3 {
  font-size: 16px;
  margin-bottom: 2px;
}

.tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--text-dim);
  border: 1px solid var(--border);
}

.tag-audio { color: #ff7324; border-color: rgba(255,97,0,0.2); }
.tag-cmd { color: #ca8bff; border-color: rgba(191,90,242,0.2); }
.tag-vfx { color: #5ce675; border-color: rgba(50,215,75,0.2); }
.tag-caption { color: #5edbf0; border-color: rgba(64,200,224,0.2); }

.tool-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── Pricing Section ── */
.purchase-steps-section {
  padding: 54px 20px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.purchase-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.purchase-steps-grid article {
  background:
    linear-gradient(135deg, rgba(255, 97, 0, 0.06), rgba(255, 255, 255, 0.025)),
    var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.purchase-steps-grid article > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 97, 0, 0.12);
  border: 1px solid rgba(255, 97, 0, 0.28);
  color: var(--orange-hi);
  font-family: var(--font-title);
  font-weight: 800;
  margin-bottom: 16px;
}

.purchase-steps-grid strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 8px;
}

.purchase-steps-grid p {
  color: var(--text-mid);
  font-size: 13.5px;
  line-height: 1.6;
}

@media(max-width: 760px) {
  .purchase-steps-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-section {
  padding: 64px 20px 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

@media(max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-inline: auto;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.pro-card {
  border-color: rgba(255, 97, 0, 0.3);
  background: radial-gradient(circle at 100% 0%, rgba(255, 97, 0, 0.06) 0%, transparent 60%), rgba(25, 26, 30, 0.75);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.best-value {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.founder-badge {
  background: linear-gradient(135deg, #8d5b0a, #f7b633 45%, #fff0a6);
  color: #160d02;
}

.savings-badge {
  border-color: rgba(255, 97, 0, 0.32);
  background: rgba(255, 97, 0, 0.1);
  color: var(--orange-hi);
}

.trial-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 4px;
  border: 1px solid rgba(50, 215, 75, 0.35);
  background: rgba(50, 215, 75, 0.11);
  color: #74f28a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lifetime-deal-card {
  border-color: rgba(255, 207, 92, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 207, 92, 0.13) 0%, transparent 58%),
    radial-gradient(circle at 0% 100%, rgba(255, 97, 0, 0.08) 0%, transparent 55%),
    rgba(25, 26, 30, 0.82);
  box-shadow: 0 24px 58px rgba(255, 166, 36, 0.11), 0 20px 48px rgba(0, 0, 0, 0.34);
}

.price-anchor {
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  margin: 4px 0 2px;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 97, 0, 0.72);
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.price {
  font-size: 44px;
  font-family: var(--font-title);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.price span {
  font-size: 15px;
  color: var(--text-dim);
  font-family: var(--font-body);
  font-weight: 500;
}

.trial-note {
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 700;
}

.yearly-equivalent,
.lifetime-comparison,
.lifetime-urgency {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.yearly-equivalent {
  margin: 0 0 8px;
  color: var(--orange-hi);
}

.lifetime-comparison {
  margin: 0 0 6px;
  color: #ffd978;
}

.lifetime-urgency {
  margin: 0 0 20px;
  color: var(--text-mid);
}

.creator-attribution {
  margin: 18px auto 0;
  color: var(--text-mid);
  font-size: 13.5px;
  font-weight: 650;
  text-align: center;
}

.creator-attribution a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 97, 0, 0.55);
}

.creator-attribution a:hover {
  color: var(--orange-hi);
}

.trial-clarity-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 13px 16px;
  border: 1px solid rgba(50, 215, 75, 0.22);
  border-radius: 999px;
  background: rgba(50, 215, 75, 0.07);
  color: var(--text-mid);
  font-size: 12.5px;
}

.trial-clarity-row strong {
  color: var(--text);
  font-weight: 900;
}

.trial-clarity-row span {
  min-width: 0;
}

.features-list {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.features-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.features-list li strong {
  color: var(--text);
}

/* ── Checkout Modal Overlay ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 7, 8, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  animation: modal-appear 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modal-appear {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-mid);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text);
}

.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  margin-bottom: 28px;
}

.modal-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(255, 97, 0, 0.35));
}

.modal-header h2 {
  font-size: 22px;
}

.download-panel {
  max-width: 620px;
}

.profile-download-btn {
  margin-top: 12px;
  margin-bottom: 14px;
  justify-content: center;
  box-shadow: 0 16px 34px rgba(255, 97, 0, 0.28);
}

.profile-portal-link {
  margin: 12px auto 0;
  padding: 4px 8px;
  display: block;
  width: fit-content;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font: 700 11.5px var(--font-body);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.16);
  text-underline-offset: 4px;
  transition: color 0.16s ease, text-decoration-color 0.16s ease;
}

.profile-portal-link:hover {
  color: var(--text-mid);
  text-decoration-color: rgba(255, 255, 255, 0.36);
}

.profile-billing-note {
  margin: 10px 0 0;
  color: var(--text-dim);
  font-size: 11.5px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.download-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(255, 97, 0, 0.32);
}

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

.download-option {
  position: relative;
  display: flex;
  min-height: 155px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 70px 20px 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 97, 0, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.download-option.is-active-platform {
  border-color: rgba(255, 97, 0, 0.82);
  box-shadow: 0 18px 44px rgba(255, 97, 0, 0.16);
}

.download-option.is-active-platform::after {
  content: "Detected";
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 97, 0, 0.16);
  color: var(--orange-hi);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-option.is-disabled-platform {
  cursor: not-allowed;
  opacity: 0.42;
  filter: grayscale(0.35);
}

.download-system-icon {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--orange-hi);
  pointer-events: none;
}

.download-system-icon img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(52%) sepia(100%) saturate(4132%) hue-rotate(1deg) brightness(104%) contrast(105%);
}

.download-option:not(.is-disabled-platform):hover {
  transform: translateY(-2px);
  border-color: rgba(255, 97, 0, 0.62);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 97, 0, 0.26), transparent 46%),
    rgba(255, 255, 255, 0.07);
}

.download-platform {
  position: absolute;
  top: 18px;
  left: 58px;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 97, 0, 0.14);
  color: var(--orange-hi);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.download-option strong {
  font-size: 20px;
}

.download-option small,
.download-note {
  color: var(--text-mid);
  line-height: 1.45;
}

.download-note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
}

.checkout-intro {
  font-size: 13.5px;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 24px;
}

.input-group {
  margin-bottom: 18px;
}

.input-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.input-group input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.input-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 10px rgba(255, 97, 0, 0.2);
}

.checkout-code-group {
  margin: 16px 0 18px;
}

.checkout-code-group input {
  text-transform: uppercase;
  color: #ffd76a;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.checkout-code-group small {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 11.5px;
  line-height: 1.35;
}

/* Success panel within modal */
.checkout-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.checkmark-wrap {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.modal-checkmark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #32d74b;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #32d74b;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s   both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #32d74b;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #32d74b;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

.checkout-success h3 {
  font-size: 20px;
  color: #32d74b;
  margin-bottom: 10px;
}

.checkout-success p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 24px;
}

.license-copy-box {
  background: var(--bg-input);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  width: 100%;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.copy-row:last-child {
  border-bottom: none;
}

.copy-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
}

.copy-val {
  font-family: monospace;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  flex-grow: 1;
  text-align: right;
  margin-right: 12px;
}

.copy-btn {
  background: var(--glass);
  border: 1px solid var(--border-hi);
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.12s ease;
}

.copy-btn:hover {
  background: var(--glass-strong);
  color: var(--text);
}

.referral-profile-box {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 198, 77, 0.44);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 238, 171, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 183, 43, 0.13), rgba(110, 72, 18, 0.12) 48%, rgba(168, 85, 247, 0.04)),
    var(--bg-input);
  box-shadow: 0 18px 44px rgba(255, 166, 36, 0.12), inset 0 1px 0 rgba(255, 236, 180, 0.12);
}

.referral-profile-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 244, 197, 0.2) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: referral-card-shine 5.5s ease-in-out infinite;
}

.referral-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 12px;
}

.referral-mini-head strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.referral-eyebrow {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd66b;
  text-shadow: 0 0 18px rgba(255, 194, 64, 0.24);
}

.referral-mini-copy {
  margin: 12px 0 14px;
  text-align: left;
  color: var(--text-mid);
  font-size: 12.5px;
  line-height: 1.5;
}

.referral-dashboard-link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  text-decoration: none;
}

.referral-gold-cta {
  overflow: hidden;
  min-height: 46px;
  border: 1px solid rgba(255, 238, 170, 0.48);
  background: linear-gradient(115deg, #8d5b0a 0%, #f7b633 18%, #fff0a6 38%, #d99315 58%, #ffcf5c 78%, #7a4a05 100%);
  background-size: 220% auto;
  color: #180f03;
  box-shadow: 0 10px 28px rgba(255, 177, 46, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
  animation: referral-gold-button 3.2s ease-in-out infinite;
}

.referral-gold-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  width: 42px;
  left: -70px;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: referral-button-sweep 2.8s ease-in-out infinite;
}

.referral-gold-cta:hover {
  color: #100a02;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 190, 68, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

@keyframes referral-card-shine {
  0%, 55%, 100% { transform: translateX(-120%); }
  72% { transform: translateX(120%); }
}

@keyframes referral-gold-button {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes referral-button-sweep {
  0%, 45% { left: -70px; }
  72%, 100% { left: calc(100% + 70px); }
}

@media (prefers-reduced-motion: reduce) {
  .referral-profile-box::before,
  .referral-gold-cta,
  .referral-gold-cta::after {
    animation: none;
  }
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

.legal-page {
  min-height: 100vh;
  padding: 80px 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 97, 0, 0.14), transparent 42%),
    var(--bg);
}

.legal-back-link {
  display: block;
  width: fit-content;
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.legal-back-link:hover {
  color: var(--orange-hi);
}

.legal-card {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 97, 0, 0.1), transparent 44%),
    rgba(20, 21, 24, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.legal-card h1 {
  margin: 8px 0 10px;
  color: var(--text);
  font: 900 clamp(34px, 6vw, 54px) var(--font-title);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--text);
  font-size: 18px;
}

.legal-card p {
  margin: 0;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
}

.legal-card a {
  color: var(--orange-hi);
}

/* ── Google login & subscription UI additions ── */
.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.google-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.header-user-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px 4px 6px;
  margin-right: 6px;
  cursor: pointer;
}
.header-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.header-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.header-logout-btn {
  background: transparent;
  border: none;
  color: var(--text-mid);
  font-size: 16px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
}
.header-logout-btn:hover {
  color: var(--orange);
}
.checkout-guest-warning {
  background: rgba(255, 97, 0, 0.05);
  border: 1px solid rgba(255, 97, 0, 0.15);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.checkout-guest-warning p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 16px;
}
.checkout-user-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.checkout-user-badge img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 97, 0, 0.35);
}
.checkout-user-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-user-badge strong {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.checkout-user-badge span {
  font-size: 12px;
  color: var(--text-mid);
}
.checkout-plan-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 97, 0, 0.06);
  border: 1px solid rgba(255, 97, 0, 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 14px;
}
.checkout-plan-summary span {
  color: var(--text-mid);
}
.checkout-plan-summary strong {
  color: var(--orange-hi);
  font-weight: 700;
}
.account-chooser-panel {
  max-width: 380px;
}
.google-chooser-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
}
.google-logo-full {
  margin-bottom: 12px;
}
.google-chooser-header h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.google-chooser-header p {
  font-size: 13px;
  color: var(--text-mid);
}
.google-accounts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.google-account-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}
.google-account-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hi);
  transform: translateY(-1px);
}
.google-account-btn img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.google-account-btn div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.google-account-btn strong {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
}
.google-account-btn span {
  font-size: 11.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   Enhancements: Animations, Testimonials, FAQ, CRO improvements
   ========================================================================== */

/* ── Header entry animation ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes header-drop {
    from { opacity: 0; transform: translateX(-50%) translateY(-14px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  .site-header {
    animation: header-drop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
  }
}

/* ── Hero entry animations ── */
@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-enter {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-animate {
    opacity: 0;
    animation: hero-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-animate-1 { animation-delay: 0.15s; }
  .hero-animate-2 { animation-delay: 0.28s; }
  .hero-animate-3 { animation-delay: 0.42s; }
  .hero-animate-4 { animation-delay: 0.56s; }
  .hero-animate-5 { animation-delay: 0.68s; }
  .hero-animate-6 { animation-delay: 0.8s; }
}

/* ── Scroll-triggered animations ── */
@media (prefers-reduced-motion: no-preference) {
  [data-animate="slide-up"],
  [data-animate="fade"] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  }
  [data-animate="slide-up"] { transform: translateY(26px); }
  [data-animate="fade"]     { transform: none; }

  [data-animate="slide-up"].is-visible,
  [data-animate="fade"].is-visible {
    opacity: 1;
    transform: none;
  }

  [data-delay="1"] { transition-delay: 0.08s; }
  [data-delay="2"] { transition-delay: 0.17s; }
  [data-delay="3"] { transition-delay: 0.26s; }
  [data-delay="4"] { transition-delay: 0.35s; }
  [data-delay="5"] { transition-delay: 0.44s; }
}

/* ── Gradient hero text ── */
.gradient-text {
  background: linear-gradient(130deg, var(--orange) 0%, #ffaa5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Social proof enhancements ── */
.social-proof {
  flex-direction: row;
  justify-content: center;
  width: 100%;
  gap: 24px;
}
.social-text-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}
.social-stars {
  font-size: 12px;
  color: #f5a623;
  letter-spacing: 1px;
}
.social-stars span {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 4px;
}

.proof-quote {
  max-width: 470px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 97, 0, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 97, 0, 0.08), rgba(255, 255, 255, 0.025));
  text-align: left;
}

.proof-quote span {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-hi);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.proof-quote strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 540px) {
  .social-proof { flex-direction: column; gap: 10px; }
  .social-text-block { text-align: center; }
  .proof-quote { text-align: center; }
}

/* ── Feature list checkmarks ── */
.features-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.features-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── Pricing guarantee row ── */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.referral-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto 48px;
  padding: 32px 40px;
  border: 1px solid rgba(255, 176, 46, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 176, 46, 0.12), transparent 34%),
    rgba(255, 159, 31, 0.04);
}

.referral-strip-kicker {
  display: block;
  margin-bottom: 8px;
  color: #ffb02e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.referral-strip .referral-gold-headline {
  margin: 0 0 8px;
  background: linear-gradient(110deg, #fff7c6 0%, #ffd15a 22%, #ff9f1f 44%, #fff3a7 58%, #ffb02e 78%, #fff8cf 100%);
  background-size: 240% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: #ffd15a;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
}

.referral-strip-sub {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.btn-referral {
  flex-shrink: 0;
  padding: 12px 24px;
  border: 1px solid rgba(255, 176, 46, 0.35);
  border-radius: 8px;
  background: rgba(255, 176, 46, 0.08);
  color: #ffb02e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.btn-referral:hover {
  background: rgba(255, 176, 46, 0.15);
  border-color: rgba(255, 176, 46, 0.6);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .referral-strip {
    flex-direction: column;
    align-items: stretch;
    margin: 0 18px 40px;
    padding: 24px;
  }

  .btn-referral {
    width: 100%;
    text-align: center;
  }
}

/* ── Testimonials section ── */
.testimonials-section {
  padding: 56px 20px 46px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-hi);
}
.testimonial-author strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 11.5px;
  color: var(--text-dim);
}

/* ── FAQ section ── */
.faq-section {
  padding: 56px 20px 64px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.is-open {
  border-color: var(--border-hi);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.15s ease;
}
.faq-question:hover {
  color: var(--orange-hi);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-dim);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}
.faq-item.is-open .faq-answer {
  max-height: 340px;
}

.final-cta-section {
  margin: 0 0 48px;
  padding: 70px 20px;
  border-top: 1px solid rgba(255, 97, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 97, 0, 0.32), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  text-align: center;
}

.final-cta-section h2 {
  margin: 14px auto 12px;
  color: #fff;
  font: 900 clamp(32px, 5vw, 54px) var(--font-title);
  line-height: 1.02;
}

.final-cta-section p {
  max-width: 590px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta-section .btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff8a2b);
  color: #fff;
}

#sticky-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 24px;
  background: rgba(10, 10, 10, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
  pointer-events: none;
}

#sticky-cta-bar.visible {
  transform: translateY(0);
  pointer-events: auto;
}

#sticky-cta-bar span {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
}

.btn-sm {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 13px;
}

@media (max-width: 768px) {
  #sticky-cta-bar {
    display: none !important;
  }
}

/* ── Premium motion upgrade ── */
@media (prefers-reduced-motion: no-preference) {
  .hero-animate.fade-up {
    animation: none;
  }

  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .fade-up.visible,
  .fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .liquid-glow {
    animation: breathe 12s ease-in-out infinite alternate, glow-pulse 4s ease-in-out infinite;
  }

  @keyframes glow-pulse {
    0%, 100% { opacity: 0.56; }
    50% { opacity: 1; }
  }

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

  .plugin-window.visible,
  .plugin-window.is-visible,
  .hero-video-shell.visible,
  .hero-video-shell.is-visible {
    animation: panel-float 4.8s ease-in-out infinite;
  }

  @keyframes founder-glow {
    0%, 100% {
      box-shadow: 0 24px 58px rgba(255, 166, 36, 0.11), 0 0 20px rgba(242, 100, 25, 0.18);
    }
    50% {
      box-shadow: 0 28px 70px rgba(255, 166, 36, 0.20), 0 0 42px rgba(242, 100, 25, 0.42);
    }
  }

  .lifetime-deal-card {
    animation: founder-glow 2.7s ease-in-out infinite;
  }
}

.tool-card,
.pricing-card,
.testimonial-card,
.purchase-steps-grid article,
.plugin-card-small,
.plugin-card-large,
.proof-quote,
.faq-item {
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.tool-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.purchase-steps-grid article:hover,
.plugin-card-small:hover,
.plugin-card-large:hover,
.proof-quote:hover,
.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 97, 0, 0.32);
  box-shadow: 0 14px 44px rgba(242, 100, 25, 0.15), 0 20px 54px rgba(0, 0, 0, 0.22);
}

.btn-primary {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(242, 100, 25, 0.45);
}

.btn-primary:active {
  transform: scale(0.98);
}

.hero-secondary-link {
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero-secondary-link:hover {
  transform: translateY(-1px);
}

.faq-item {
  will-change: transform;
}

.faq-answer {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
  opacity: 1;
}

.faq-question {
  transition: color 0.18s ease, background 0.18s ease;
}

.faq-question:hover {
  background: rgba(255, 97, 0, 0.035);
}

.founder-badge {
  box-shadow: 0 0 18px rgba(255, 196, 77, 0.25);
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  .fade-up {
    transform: translateY(15px);
  }

  @keyframes panel-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-animate,
  .fade-up,
  .fade-up.visible,
  .fade-up.is-visible,
  [data-animate],
  [data-animate].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    padding: 8px 10px;
    border-radius: 20px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: center;
  }

  .brand {
    min-width: 0;
    font-size: 15px;
    gap: 8px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
  }

  .header-actions {
    min-width: 0;
    justify-content: end;
    gap: 6px;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .header-actions > .btn-primary {
    display: none !important;
  }

  .google-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    white-space: nowrap;
    border-radius: 50%;
    font-size: 0;
  }

  .header-user-profile {
    width: 34px;
    height: 34px;
    justify-content: center;
    gap: 0;
    margin-right: 0;
    padding: 4px;
    border-radius: 18px;
  }

  .header-user-avatar {
    width: 28px;
    height: 28px;
  }

  .header-user-name {
    display: none;
  }

  .header-logout-btn {
    display: none;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: clamp(26px, 10vw, 42px);
    width: 100%;
    padding-top: 2px;
    min-height: 24px;
  }

  .nav-links a {
    font-size: 12.5px;
  }

  .hero-section {
    min-height: auto;
    padding: 132px 18px 46px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .platform-pill {
    margin-bottom: 18px;
  }

  .hero-title {
    font-size: clamp(32px, 9.4vw, 36px);
    line-height: 1.03;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.55;
    max-width: 340px;
    margin-bottom: 12px;
  }

  .hero-trial-line {
    max-width: 330px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero-buttons .btn {
    min-height: 44px;
    padding-inline: 18px;
  }

  .hero-secondary-link {
    font-size: 13px;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 8px;
    font-size: 11px;
    letter-spacing: 0.07em;
    margin-bottom: 24px;
  }

  .hero-video-shell {
    width: 100%;
    border-radius: 16px;
  }

  .hero-video-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
  }

  .hero-video-topline strong {
    white-space: normal;
    line-height: 1.35;
  }

  .hero-video-controls {
    grid-template-columns: 1fr 1fr;
  }

  .hero-video-controls button {
    min-height: 40px;
    padding: 9px 6px;
  }

  .social-proof {
    padding: 30px 22px;
  }

  .social-text {
    line-height: 1.55;
  }

  .social-stars {
    line-height: 1.45;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2 {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.08;
  }

  .section-header p {
    font-size: 15px;
    line-height: 1.55;
  }

  .plugin-preview-section {
    padding-top: 62px;
  }

  .plugin-window {
    padding: 10px;
    border-radius: 18px;
  }

  .plugin-tabs {
    margin-inline: -2px;
    padding: 6px 2px 8px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .plugin-tabs button {
    min-width: 104px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
  }

  .plugin-card-large {
    padding: 18px;
    min-height: 0;
  }

  .plugin-visual-stage {
    min-height: 0;
  }

  .tool-card {
    padding: 20px;
    gap: 12px;
  }

  .tool-head {
    gap: 12px;
  }

  .tool-icon {
    width: 40px;
    height: 40px;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 14px; padding: 16px 18px; }
  .faq-answer p { padding: 0 18px 16px; }

  .download-options {
    grid-template-columns: 1fr;
  }

  .download-option {
    min-height: 130px;
  }

  #sticky-cta-bar {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .nav-links {
    gap: 20px;
  }

  .google-btn {
    padding: 8px 10px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 310px;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

.site-help-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  min-width: 78px;
  height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 97, 0, 0.96), rgba(255, 170, 64, 0.9));
  box-shadow: 0 16px 42px rgba(255, 97, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.site-help-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(255, 97, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-help-modal {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: none;
  place-items: center;
  padding: 22px;
}

.site-help-modal.is-open {
  display: grid;
}

.site-help-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
}

.site-help-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 97, 0, 0.32);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 97, 0, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(27, 22, 21, 0.98), rgba(12, 12, 14, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  color: #fff;
}

.site-help-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.site-help-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-help-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.site-help-panel p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.site-help-form {
  display: grid;
  gap: 14px;
}

.site-help-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-help-form input,
.site-help-form select,
.site-help-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  padding: 13px 14px;
  text-transform: none;
}

.site-help-form textarea {
  resize: vertical;
}

.site-help-form option {
  background: #171312;
  color: #fff;
}

.site-help-form input:focus,
.site-help-form select:focus,
.site-help-form textarea:focus {
  border-color: rgba(255, 97, 0, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 97, 0, 0.12);
}

.site-help-status {
  min-height: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
