/* Requstrix Landing Page */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-ui);
  background: var(--landing-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(37, 99, 235, 0.35);
  color: var(--text-primary);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-info), var(--accent-export));
  z-index: 9999;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-lg);
  font-family: var(--font-ui);
  font-size: var(--text-md);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.btn-chrome {
  background: linear-gradient(135deg, var(--accent-export), #6d28d9);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-chrome:hover {
  background: linear-gradient(135deg, var(--accent-export-hover), #5b21b6);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-chrome:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
}

.btn-outline:hover {
  background: var(--bg-surface);
  border-color: var(--border-strong);
}

.btn-lg {
  padding: 14px 28px;
  font-size: var(--text-lg);
}

/* Navbar — sticky glass */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(11, 18, 32, 0.92);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  gap: var(--space-3);
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  min-width: 0;
  flex-shrink: 1;
}

.brand:hover {
  opacity: 0.85;
}

.brand-icon {
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.brand-text small {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Drawer header (mobile only) */
.nav-drawer-header {
  display: none;
}

.nav-drawer-close {
  background: transparent;
  border: 1px solid var(--border-default);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.nav-drawer-close:hover {
  background: var(--bg-surface);
  border-color: var(--border-strong);
  transform: rotate(90deg);
}

.nav-drawer-close:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--text-primary);
  text-decoration: none;
}

.nav-drawer-brand img {
  width: 28px;
  height: 28px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
}

.brand-text small {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.nav-links > a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-md);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}

.nav-links > a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-links > a:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.nav-cta-mobile {
  display: none;
}

.nav-cta-desktop {
  display: inline-flex;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--border-default);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  z-index: 101;
  transition: background 0.2s, border-color 0.2s, opacity 0.25s ease;
  flex-shrink: 0;
}

.nav-toggle.is-open {
  opacity: 0;
  pointer-events: none;
}

.nav-toggle:hover {
  background: var(--bg-surface);
  border-color: var(--border-strong);
}

.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.nav-toggle-bar {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              top 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
}

.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Drawer backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 98;
}

.nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.nav-locked {
  overflow: hidden;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-12) 0 var(--space-16);
}

.eyebrow {
  font-size: var(--text-sm);
  color: var(--accent-ai);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.hero h1 {
  font-size: var(--text-4xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 .highlight {
  color: var(--text-secondary);
  font-weight: 700;
}

.hero-sub {
  margin-top: var(--space-5);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

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

.trust-dot--green { background: var(--accent-start); }
.trust-dot--blue { background: var(--accent-info); }
.trust-dot--pink { background: var(--accent-pii); }

/* Hero visual — DevTools mockup */
.hero-visual {
  perspective: 1200px;
}

.browser-chrome {
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(37, 99, 235, 0.08);
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-visual:hover .browser-chrome {
  transform: rotateY(0) rotateX(0);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: #161b22;
  border-bottom: 1px solid var(--border-subtle);
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.browser-dot:nth-child(2) { background: #febc2e; }
.browser-dot:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  margin-left: var(--space-2);
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.devtools-tabs {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-muted);
}

.devtools-tabs .active {
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent-info);
  padding-bottom: 2px;
}

.panel-preview {
  font-size: 10px;
  background: var(--bg-base);
}

.pp-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 700;
  font-size: 11px;
}

.pp-logo {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.pp-header small {
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.pp-ai {
  margin-left: auto;
  color: var(--accent-ai);
  font-weight: 500;
  font-size: 10px;
}

.pp-toolbar {
  display: flex;
  gap: 4px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.pp-btn {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  border: 1px solid var(--border-default);
}

.pp-start { background: var(--accent-start); border-color: var(--accent-start); color: white; }
.pp-stop { color: #fca5a5; border-color: var(--accent-stop); }
.pp-export { background: var(--accent-export); border-color: var(--accent-export); color: white; font-weight: 600; }

.pp-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.pp-stats div {
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 4px 6px;
}

.pp-stats label {
  display: block;
  font-size: 8px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pp-stats strong {
  font-size: 11px;
}

.c-green { color: var(--accent-start); }
.c-pink { color: var(--accent-pii); }

.pp-body {
  display: flex;
  height: 180px;
}

.pp-list {
  width: 42%;
  border-right: 1px solid var(--border-subtle);
  padding: 4px;
}

.pp-row {
  padding: 4px 6px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
}

.pp-row.sel {
  background: rgba(37, 99, 235, 0.1);
  border-left: 2px solid var(--accent-info);
}

.pp-row .m {
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 600;
}

.pp-row .m.post { background: rgba(34,197,94,0.2); color: #86efac; }
.pp-row .m.get { background: rgba(59,130,246,0.2); color: #93c5fd; }

.pp-row .s {
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 8px;
}

.pp-row .s.ok { background: rgba(34,197,94,0.15); color: var(--status-2xx); }

.pill {
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.pill.slow { background: rgba(251,146,60,0.2); color: var(--accent-slow); }
.pill.pii { background: rgba(244,114,182,0.2); color: var(--accent-pii); }

.pp-inspector {
  flex: 1;
  padding: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-secondary);
  overflow: hidden;
}

.pp-inspector code {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.pp-inspector pre {
  white-space: pre-wrap;
  line-height: 1.5;
}

/* Section heads */
.section-head {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-head h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.section-head p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto;
}

/* Features */
.features-section {
  padding: var(--space-16) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.feature-card {
  background: var(--landing-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-4);
}

.feature-icon--purple { background: rgba(124, 58, 237, 0.12); }
.feature-icon--orange { background: rgba(251, 146, 60, 0.12); }
.feature-icon--pink { background: rgba(244, 114, 182, 0.12); }
.feature-icon--teal { background: rgba(20, 184, 166, 0.12); }
.feature-icon--blue { background: rgba(37, 99, 235, 0.12); }

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How it works */
.how-section {
  padding: var(--space-16) 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.5), transparent);
}

.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-4);
}

.step-card {
  flex: 1;
  max-width: 300px;
  background: var(--landing-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
}

.step-num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-md);
  margin-bottom: var(--space-4);
  color: var(--accent-info);
}

.step-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.step-card p {
  font-size: var(--text-md);
  color: var(--text-secondary);
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--text-muted);
  padding-top: var(--space-8);
}

/* Export */
.export-section {
  padding: var(--space-16) 0;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.export-copy h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.export-copy > p {
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
  line-height: 1.7;
}

.export-list {
  list-style: none;
}

.export-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-5);
  position: relative;
  color: var(--text-secondary);
  font-size: var(--text-md);
}

.export-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-start);
  font-weight: 700;
}

.export-list code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-export);
}

.zip-tree {
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.zip-root {
  font-weight: 600;
  color: var(--accent-export);
  margin-bottom: var(--space-2);
}

.zip-item, .zip-folder {
  color: var(--text-secondary);
}

.zip-folder {
  color: var(--text-primary);
  font-weight: 500;
}

.indent-1 { padding-left: var(--space-4); }
.indent-2 { padding-left: var(--space-8); }

.zip-opt {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 1px 6px;
  border-radius: var(--radius-full);
  margin-left: var(--space-2);
}

/* Trust */
.trust-section {
  padding: var(--space-16) 0;
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.trust-card {
  background: var(--landing-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.trust-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.trust-card p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-links {
  text-align: center;
}

.trust-links a {
  color: var(--accent-info);
  text-decoration: none;
  font-size: var(--text-md);
}

.trust-links a:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-section {
  padding: var(--space-16) 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  background: var(--landing-surface);
  overflow: hidden;
}

.faq-item summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--text-secondary);
  font-size: var(--text-md);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: var(--space-16) 0;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(37, 99, 235, 0.08));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-8);
}

.cta-inner h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.cta-inner p {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-10) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.footer-brand strong {
  display: block;
}

.footer-brand small {
  color: var(--text-muted);
  font-size: var(--text-xs);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-md);
}

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

.footer-meta {
  text-align: right;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-meta p {
  margin-bottom: var(--space-1);
}

.footer-meta a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--text-primary);
}

.copyright {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
}

/* Support / Buy Me a Coffee */
.support-section {
  padding: var(--space-12) 0 var(--space-8);
}

.support-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--space-10);
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 221, 0, 0.06), rgba(251, 146, 60, 0.04));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  overflow: hidden;
}

.support-glow {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 221, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.support-copy {
  position: relative;
  z-index: 1;
}

.support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 221, 0, 0.08);
  border: 1px solid rgba(255, 221, 0, 0.25);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.support-copy h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.support-highlight {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.support-copy > p {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.support-cta {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.btn-bmc {
  background: #FFDD00;
  color: #0f172a;
  border-color: #FFDD00;
  font-weight: 700;
  gap: 8px;
}

.btn-bmc:hover {
  background: #ffd400;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 221, 0, 0.28);
}

.bmc-icon {
  font-size: 18px;
}

.support-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.support-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-start);
  box-shadow: 0 0 8px rgba(22, 163, 74, 0.6);
}

.support-sep {
  color: var(--border-default);
}

/* Coffee cup visual */
.support-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coffee-cup {
  position: relative;
  width: 220px;
}

.cup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cup-body {
  width: 140px;
  height: 128px;
  background: linear-gradient(180deg, var(--bg-surface), var(--bg-base));
  border: 1px solid var(--border-default);
  border-radius: 8px 8px 70px 70px / 8px 8px 60px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 -8px 0 rgba(0, 0, 0, 0.3);
}

.cup-body::before {
  content: '';
  position: absolute;
  right: -28px;
  top: 24px;
  width: 36px;
  height: 50px;
  border: 6px solid var(--border-default);
  border-left: none;
  border-radius: 0 30px 30px 0;
}

.cup-emoji {
  font-size: 56px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.cup-saucer {
  width: 180px;
  height: 14px;
  background: linear-gradient(180deg, var(--border-default), var(--bg-surface));
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: var(--shadow-md);
}

.steam {
  position: absolute;
  bottom: 75%;
  width: 6px;
  height: 32px;
  background: linear-gradient(to top, rgba(255, 221, 0, 0.45), transparent);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0;
  animation: steam 3s ease-in-out infinite;
}

.steam-1 { left: calc(50% - 32px); animation-delay: 0s; }
.steam-2 { left: calc(50% - 3px); animation-delay: 0.7s; }
.steam-3 { left: calc(50% + 22px); animation-delay: 1.4s; }

@keyframes steam {
  0%   { opacity: 0; transform: translateY(12px) scale(0.8); }
  30%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-42px) scale(1.2); }
}

.tip-pills {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.tip-pill {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-raised);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  transition: transform 0.15s, border-color 0.2s;
}

.tip-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 221, 0, 0.4);
}

.tip-pill.active {
  background: rgba(255, 221, 0, 0.12);
  border-color: rgba(255, 221, 0, 0.45);
  color: #fbbf24;
  font-weight: 700;
}

/* ============================================
   LEGAL PAGES (privacy.html, terms.html)
   ============================================ */

.legal-hero {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.legal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.legal-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.legal-breadcrumb a:hover {
  color: var(--text-primary);
}

.legal-breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}

.legal-hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.legal-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: var(--space-5);
}

.legal-lede {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.legal-lede a {
  color: var(--accent-info);
  text-decoration: none;
}

.legal-lede a:hover {
  text-decoration: underline;
}

.legal-section {
  padding: var(--space-6) 0 var(--space-10);
}

.legal-tldr {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.08), var(--landing-surface));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
}

.legal-tldr h2 {
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-info);
  margin-bottom: var(--space-4);
}

.legal-tldr ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.legal-tldr li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-tldr li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-start);
  font-weight: 700;
}

.legal-tldr li strong {
  color: var(--text-primary);
}

.legal-article {
  max-width: 760px;
  margin: 0 auto;
  background: var(--landing-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
}

.legal-article h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: var(--space-10) 0 var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
  scroll-margin-top: 80px;
}

.legal-article h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-article p,
.legal-article li {
  color: var(--text-secondary);
  font-size: var(--text-md);
  line-height: 1.75;
}

.legal-article p {
  margin-bottom: var(--space-4);
}

.legal-article ul {
  margin: 0 0 var(--space-4) var(--space-5);
  padding: 0;
  display: grid;
  gap: var(--space-2);
}

.legal-article li {
  list-style: disc;
}

.legal-article a {
  color: var(--accent-info);
  text-decoration: none;
  border-bottom: 1px dotted rgba(37, 99, 235, 0.5);
  transition: border-color 0.15s, color 0.15s;
}

.legal-article a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.legal-article strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-article em {
  color: var(--text-primary);
  font-style: italic;
}

.legal-article code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--accent-export);
}

/* ============================================
   DONATE PAGE
   ============================================ */

.donate-hero {
  padding: var(--space-12) 0 var(--space-8);
  text-align: center;
}

.donate-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.donate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fbbf24;
  background: rgba(255, 221, 0, 0.08);
  border: 1px solid rgba(255, 221, 0, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.04em;
}

.donate-hero h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.donate-hero h1 .highlight {
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.donate-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

/* Methods grid */
.donate-section {
  padding: var(--space-8) 0 var(--space-12);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-8);
  align-items: stretch;
}

/* QR card */
.qr-card {
  background: linear-gradient(160deg, rgba(255, 221, 0, 0.06), var(--landing-surface));
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-header {
  margin-bottom: var(--space-5);
}

.qr-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent-start);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
}

.qr-card h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.qr-frame {
  position: relative;
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 18px;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 221, 0, 0.15);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-md);
}

.qr-image.qr-fallback {
  background: repeating-conic-gradient(#0f172a 0% 25%, #1e293b 0% 50%) 50% / 16px 16px;
  position: relative;
}

.qr-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border: 4px solid #fff;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: contain;
  color: white;
  box-shadow: var(--shadow-md);
}

.qr-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid #fbbf24;
}
.qr-corner--tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: var(--radius-md); }
.qr-corner--tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: var(--radius-md); }
.qr-corner--bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: var(--radius-md); }
.qr-corner--br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: var(--radius-md); }

.qr-help {
  color: var(--text-secondary);
  font-size: var(--text-md);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.qr-apps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

.qr-app {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-raised);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* Methods card */
.methods-card {
  background: var(--landing-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}

.methods-tabs {
  display: flex;
  gap: var(--space-1);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4px;
  margin-bottom: var(--space-6);
}

.methods-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.methods-tab:hover {
  color: var(--text-primary);
}

.methods-tab.active {
  background: var(--bg-surface);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.methods-tab:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.methods-panel {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
}

.methods-panel.active {
  display: flex;
}

.methods-title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.methods-desc {
  color: var(--text-secondary);
  font-size: var(--text-md);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.methods-cta {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.methods-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--border-subtle);
  margin-top: var(--space-2);
}

.methods-note a {
  color: var(--accent-info);
  text-decoration: none;
}

.methods-note a:hover {
  text-decoration: underline;
}

.methods-note code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--accent-export);
}

/* Copy row */
.copy-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3);
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.copy-row:hover {
  border-color: var(--border-default);
}

.copy-label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.copy-value {
  font-family: var(--font-mono);
  font-size: var(--text-md);
  color: var(--text-primary);
  background: none;
  word-break: break-all;
}

.copy-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

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

.copy-btn.copied {
  background: var(--accent-start);
  border-color: var(--accent-start);
  color: white;
}

.copy-btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

/* Tiers */
.tiers-section {
  padding: var(--space-12) 0;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.tier-card {
  position: relative;
  background: var(--landing-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.tier-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-default);
}

.tier-card--featured {
  border-color: rgba(255, 221, 0, 0.4);
  background: linear-gradient(160deg, rgba(255, 221, 0, 0.08), var(--landing-surface));
  box-shadow: 0 0 40px rgba(255, 221, 0, 0.08);
}

.tier-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  color: #0f172a;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.tier-emoji {
  font-size: 40px;
  margin-bottom: var(--space-3);
}

.tier-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.tier-price {
  font-family: var(--font-mono);
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(90deg, #fbbf24, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-3);
}

.tier-card p {
  color: var(--text-secondary);
  font-size: var(--text-md);
  line-height: 1.6;
  margin-bottom: var(--space-5);
  min-height: 48px;
}

/* Toast */
.copy-toast {
  position: fixed;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 10000;
}

.copy-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.copy-toast::before {
  content: '✓';
  color: var(--accent-start);
  margin-right: 8px;
  font-weight: 700;
}

/* Support / Buy Me a Coffee */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
