/* Bitphoto Marketing Site — Design Tokens */
:root {
  --purple-primary: #8a4cff;
  --purple-deep: #4d22ff;
  --purple-light: #c66dff;
  --blue-mid: #5e5bff;
  --cyan-teal: #24e3c2;
  --pink-accent: #ff6ec7;
  --gold-accent: #ffd240;
  --surface: #ffffff;
  --background: #f7f5ff;
  --text-primary: #1a1a2e;
  --text-secondary: #6b6b8a;
  --border: #e8e4f5;
  --shadow-purple: rgba(77, 34, 255, 0.12);
  --shadow-soft: rgba(26, 26, 46, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --max-width: 1120px;
  --nav-height: 72px;

  /* Business tier (Pro / Enterprise) */
  --biz-bg: #f8fafc;
  --biz-surface: #ffffff;
  --biz-border: #e2e8f0;
  --biz-text: #0f172a;
  --biz-text-muted: #64748b;
  --biz-pro-accent: #2563eb;
  --biz-pro-dark: #1e3a5f;
  --biz-enterprise-accent: #475569;
  --biz-enterprise-dark: #0f172a;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--purple-deep);
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

p {
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--purple-primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: transparent;
}

.logo-icon--nav {
  width: 64px;
  height: 64px;
  border-radius: 12px;
}

.logo-wordmark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .logo-icon--nav {
    width: 52px;
    height: 52px;
  }

  .logo-wordmark {
    font-size: 1.25rem;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-anchor.active {
  background: rgba(138, 76, 255, 0.1);
  color: var(--purple-primary);
}

.nav-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(247, 245, 255, 0.98);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: white;
  box-shadow: 0 6px 20px rgba(138, 76, 255, 0.35);
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 8px 28px rgba(138, 76, 255, 0.45);
}

.btn-secondary {
  background: var(--surface);
  color: var(--purple-primary);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow-soft);
}

.btn-secondary:hover {
  color: var(--purple-deep);
  border-color: var(--purple-light);
}

.btn--disabled,
.btn--disabled:hover {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px var(--shadow-purple), 0 1px 3px var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.section {
  padding: clamp(1.75rem, 5vw, 3rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.section-header p {
  margin-top: 0.5rem;
  font-size: 1.0625rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-primary);
  margin-bottom: 0.5rem;
}

.hero {
  padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(198, 109, 255, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(36, 227, 194, 0.1) 0%, transparent 50%),
    var(--background);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-content h1 { margin-bottom: 1rem; }

.hero-content .subheadline {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 340px);
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(247,245,255,0.6));
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(77, 34, 255, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.phone-frame::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(138, 76, 255, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.phone-frame img {
  width: 100%;
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.feature-card {
  padding: 1.35rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9375rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-item img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-item h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.step-item p { font-size: 0.875rem; }

.result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .result-grid { grid-template-columns: repeat(3, 1fr); }
}

.result-card {
  padding: 1.5rem;
  text-align: center;
}

.result-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.result-label {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.result-label.human { background: rgba(36, 227, 194, 0.15); color: #0d9e87; }
.result-label.ai { background: rgba(138, 76, 255, 0.15); color: var(--purple-deep); }
.result-label.inconclusive { background: rgba(255, 210, 64, 0.2); color: #b8860b; }

.app-preview { text-align: center; }

.app-preview-screen {
  max-width: 400px;
  margin: 0 auto 0;
  padding: 2rem 1.5rem 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(247,245,255,0.5) 100%);
  border-radius: 1.5rem 1.5rem 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-preview-screen img {
  width: 120px;
  opacity: 0.9;
}

.app-nav-bar {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  max-width: 400px;
  margin: 0 auto;
  padding: 0.75rem 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0 0 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-top: none;
  box-shadow: 0 8px 32px var(--shadow-purple);
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.app-nav-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.app-nav-item.active { color: var(--purple-primary); }

.preview-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-style: italic;
}

.text-section {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.text-section p {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
}

.text-section p:last-child { margin-bottom: 0; }

.disclaimer-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(255, 210, 64, 0.08), rgba(138, 76, 255, 0.06));
  border: 1px solid rgba(255, 210, 64, 0.25);
  border-radius: var(--radius-xl);
  text-align: center;
}

.disclaimer-banner img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .disclaimer-banner {
    flex-direction: row;
    text-align: left;
  }
  .disclaimer-banner img { flex-shrink: 0; }
}

.credits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.credits-row img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.waitlist-section {
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(138, 76, 255, 0.12) 0%, transparent 60%), var(--background);
}

.waitlist-form {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(138, 76, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group .optional {
  font-weight: 400;
  color: var(--text-secondary);
}

.waitlist-form .btn { width: 100%; }

.support-ticket-form {
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem;
}

.support-ticket-form .btn {
  width: 100%;
}

.support-ticket-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.support-note,
.support-prototype-note {
  text-align: center;
  max-width: 480px;
  margin: 1.5rem auto 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.waitlist-status {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

.waitlist-status--success {
  background: rgba(36, 227, 194, 0.12);
  color: #0d9e87;
  border: 1px solid rgba(36, 227, 194, 0.3);
}

.waitlist-status--error {
  background: rgba(255, 59, 48, 0.08);
  color: #c41e14;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.waitlist-embed {
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.waitlist-iframe {
  width: 100%;
  min-height: 420px;
  border: none;
  display: block;
}

.cta-section { text-align: center; }

.cta-mascot {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.page-hero {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.25rem, 3vw, 2rem);
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(198, 109, 255, 0.14) 0%, transparent 60%), var(--background);
}

.page-hero p {
  margin-top: 0.75rem;
  font-size: 1.0625rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  padding: 2rem;
  position: relative;
}

.pricing-card.featured { border: 2px solid var(--purple-primary); }

/* ── Business tiers (Pro / Enterprise) ── */
.pricing-business-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.pricing-business-header__copy h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--biz-text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.pricing-business-header__copy p {
  font-size: 0.875rem;
  color: var(--biz-text-muted);
  margin: 0;
}

.pricing-grid--tiers {
  max-width: var(--max-width);
}

@media (min-width: 900px) {
  .pricing-grid--tiers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card--business {
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 16px rgba(15, 23, 42, 0.04);
  padding: 1.75rem;
}

.pricing-card--business::before {
  display: none;
}

.pricing-card--business-pro {
  border-top: 3px solid var(--biz-pro-accent);
}

.pricing-card--business-enterprise {
  border-top: 3px solid var(--biz-enterprise-dark);
  background: linear-gradient(180deg, #f1f5f9 0%, var(--biz-surface) 120px);
}

.pricing-card--business .pricing-card-logo {
  margin-bottom: 1rem;
}

.pricing-card--business h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--biz-text);
}

.pricing-card--business .pricing-price {
  color: var(--biz-text);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.pricing-card--business .pricing-tier-intro,
.pricing-card--business .pricing-features li {
  color: var(--biz-text-muted);
  font-size: 0.875rem;
}

.pricing-card--business .pricing-features li::before {
  content: '✓';
  color: var(--biz-pro-accent);
  font-weight: 600;
}

.pricing-card--business-enterprise .pricing-features li::before {
  color: var(--biz-enterprise-accent);
}

.pricing-badge--business {
  position: static;
  transform: none;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: var(--biz-pro-dark);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.pricing-badge--business-enterprise {
  background: var(--biz-enterprise-dark);
}

.pricing-card--business .btn-primary {
  background: var(--biz-pro-dark);
  border-color: var(--biz-pro-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pricing-card--business .btn-primary:hover {
  background: #163052;
  border-color: #163052;
}

.pricing-card--business-enterprise .btn-secondary {
  background: var(--biz-enterprise-dark);
  border-color: var(--biz-enterprise-dark);
  color: #fff;
}

.pricing-card--business-enterprise .btn-secondary:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

.flow-step--business {
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.flow-step--business .flow-step-num {
  color: var(--biz-text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.flow-step--business img,
.flow-step--business .business-tier-logo__icon {
  border-radius: 18%;
  margin: 0.5rem auto;
}

/* Store — business tier cards */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}

.store-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-card--business {
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.store-card--pro {
  border-top: 3px solid var(--biz-pro-accent);
}

.store-card--enterprise {
  border-top: 3px solid var(--biz-enterprise-dark);
  background: linear-gradient(180deg, #f1f5f9 0%, var(--biz-surface) 100px);
}

.store-card-media {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.5rem;
}

.store-card-media img {
  width: 56px;
  height: 56px;
  border-radius: 18%;
  object-fit: cover;
}

.store-card--business .store-card-media img {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.store-card--business h2 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--biz-text);
}

.store-card--business .store-tagline,
.store-card--business .store-features li {
  color: var(--biz-text-muted);
  font-size: 0.8125rem;
}

.store-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  background: rgba(138, 76, 255, 0.12);
  color: var(--purple-deep);
  align-self: flex-start;
}

.store-card--business .store-badge {
  background: #e2e8f0;
  color: var(--biz-text-muted);
}

.store-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.store-card--business .store-price {
  color: var(--biz-text);
  letter-spacing: -0.02em;
}

.store-features {
  list-style: none;
  margin: 0.5rem 0 1rem;
  flex: 1;
}

.store-features li {
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.store-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: 700;
}

.store-card--business .store-features li::before {
  color: var(--biz-pro-accent);
}

.store-card--enterprise .store-features li::before {
  color: var(--biz-enterprise-accent);
}

.store-card-actions {
  margin-top: auto;
}

.store-footnote,
.store-loading,
.store-error {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 2rem;
  text-align: center;
}

.store-banner {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.store-banner--success {
  border-color: rgba(36, 227, 194, 0.4);
}

.product-detail--business {
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
}

.product-detail--business .product-detail-media img {
  border-radius: 18%;
  max-width: 160px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.product-detail--business h1 {
  color: var(--biz-text);
  letter-spacing: -0.02em;
}

.product-detail--business .store-price {
  color: var(--biz-text);
}

.product-detail--business .store-tagline,
.product-detail--business p {
  color: var(--biz-text-muted);
}

.product-detail--business .store-badge {
  background: var(--biz-enterprise-dark);
  color: #fff;
}

.product-detail--pro .store-badge {
  background: var(--biz-pro-dark);
  color: #fff;
}

/* Platform business card */
.platform-card--business {
  background: var(--biz-surface);
  border: 1px solid var(--biz-border);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.platform-card--business .platform-status--pro {
  background: var(--biz-enterprise-dark);
  color: #fff;
}

.platform-card--business h3 {
  color: var(--biz-text);
  letter-spacing: -0.02em;
}

.platform-card--business p,
.platform-card--business .platform-list li {
  color: var(--biz-text-muted);
}

.platform-card--business .platform-list li::before {
  color: var(--biz-pro-accent);
}

.macos-section--business .section-label {
  color: var(--biz-text-muted);
  letter-spacing: 0.08em;
}

.macos-section--business .prototype-pill {
  background: #e2e8f0;
  color: var(--biz-text-muted);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.875rem;
  border-radius: var(--radius-pill);
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple-primary);
  margin-bottom: 1.5rem;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: 700;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.draft-banner {
  background: rgba(255, 210, 64, 0.15);
  border: 1px solid rgba(255, 210, 64, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: #8a6914;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}

.trust-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.trust-item h3 { margin-bottom: 0.375rem; }
.trust-item p { font-size: 0.9375rem; }

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}

.support-card { padding: 1.75rem; }
.support-card h3 { margin-bottom: 0.5rem; }
.support-card a { font-weight: 600; }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.site-disclaimer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.site-disclaimer p {
  margin: 0;
}

.site-disclaimer strong {
  font-weight: 600;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .tool-grid { grid-template-columns: repeat(5, 1fr); }
}

.tool-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.tool-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.tool-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
}

.tool-item .coming-soon {
  font-size: 0.6875rem;
  color: var(--purple-primary);
  font-weight: 600;
  margin-top: 0.25rem;
}

.action-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.action-card img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.5);
}

/* Live demo — iOS phone frame */
.section-demo {
  background:
    radial-gradient(ellipse 65% 55% at 75% 40%, rgba(138, 76, 255, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 15% 75%, rgba(36, 227, 194, 0.08) 0%, transparent 50%),
    rgba(255, 255, 255, 0.45);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr min(42%, 320px);
    gap: 3.5rem;
  }
}

.demo-copy h2 {
  margin-bottom: 0.75rem;
}

.demo-copy > p {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
}

.platform-badge--active {
  border-color: rgba(138, 76, 255, 0.35);
  background: rgba(138, 76, 255, 0.08);
  color: var(--purple-deep);
}

.platform-badge--soon {
  opacity: 0.85;
}

.platform-badge--live {
  border-color: rgba(138, 76, 255, 0.35);
  background: rgba(138, 76, 255, 0.08);
  color: var(--purple-deep);
  text-decoration: none;
}

.platform-badge--live:hover {
  border-color: rgba(138, 76, 255, 0.55);
}

.platform-badge--pro {
  border-color: rgba(138, 76, 255, 0.25);
  background: rgba(138, 76, 255, 0.05);
}

.platform-soon--live {
  color: var(--purple-deep);
}

.platform-soon--pro {
  color: var(--purple-deep);
}

.platform-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.platform-soon {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-left: 0.125rem;
}

.demo-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.demo-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(255, 210, 64, 0.35);
  animation: demo-pulse 2s ease-in-out infinite;
}

@keyframes demo-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.demo-status-dot--live {
  background: var(--cyan-teal);
  box-shadow: 0 0 0 3px rgba(36, 227, 194, 0.35);
  animation: none;
}

.demo-status--live {
  color: #0d9e87;
}

.device-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 300px;
}

.device-frame {
  width: 100%;
  padding: 0.75rem 0.625rem 0.5rem;
  background: linear-gradient(160deg, #2a2a3e 0%, #1a1a2e 100%);
  border-radius: 2.75rem;
  box-shadow:
    0 24px 64px rgba(77, 34, 255, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.device-notch {
  width: 96px;
  height: 24px;
  margin: 0 auto 0.5rem;
  background: #0d0d14;
  border-radius: 0 0 1rem 1rem;
}

.device-screen {
  aspect-ratio: 9 / 19.5;
  width: 100%;
  background: var(--background);
  border-radius: 1.75rem;
  overflow: hidden;
  position: relative;
}

.device-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(198, 109, 255, 0.15) 0%, transparent 55%),
    var(--background);
}

.device-placeholder picture,
.device-placeholder img {
  margin-bottom: 1rem;
  opacity: 0.85;
}

.device-placeholder-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.device-placeholder-sub {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.device-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--background);
}

.device-home-indicator {
  width: 96px;
  height: 4px;
  margin: 0.625rem auto 0.25rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
}

.device-caption {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

/* Fun & Games section */
.section-fun {
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(36, 227, 194, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 70%, rgba(255, 110, 199, 0.1) 0%, transparent 50%),
    var(--background);
}

.fun-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .fun-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.fun-content h2 {
  margin-bottom: 1rem;
}

.fun-content > p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

.fun-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.fun-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.fun-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--cyan-teal);
  font-size: 0.75rem;
}

.fun-visual {
  padding: 1.5rem;
  text-align: center;
}

.fun-visual > picture,
.fun-visual > picture img {
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.fun-visual-row {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.fun-visual-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Pricing */
.pricing-features li.pricing-note::before {
  content: '•';
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-flow {
  max-width: 900px;
  margin: 1.5rem auto 0;
  padding: 1.35rem 1.25rem;
  text-align: center;
}

.pricing-flow h3 {
  margin-bottom: 1rem;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0.75rem 0.5rem;
}

.flow-step {
  flex: 1 1 120px;
  max-width: 140px;
  text-align: center;
  padding: 0.75rem 0.5rem;
}

.flow-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(138, 76, 255, 0.15);
  color: var(--purple-primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.flow-step img,
.flow-step picture img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}

.flow-step p {
  font-size: 0.8125rem;
  line-height: 1.35;
}

.flow-ad-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 210, 64, 0.25), rgba(255, 149, 0, 0.15));
  border: 1.5px dashed rgba(255, 149, 0, 0.45);
  font-size: 0.875rem;
  font-weight: 700;
  color: #b8860b;
}

.flow-arrow {
  color: var(--purple-light);
  font-size: 1.25rem;
  font-weight: 300;
  align-self: center;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

.flow-footnote {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-style: italic;
}

@media (max-width: 639px) {
  .flow-arrow {
    display: none;
  }

  .flow-steps {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 200px;
  }
}

/* Wider app nav with 6 tabs */
.app-nav-bar {
  max-width: 440px;
}

.app-nav-item img,
.app-nav-item picture img {
  width: 36px;
  height: 36px;
}

.app-nav-item {
  font-size: 0.5625rem;
}

/* 4-column feature cards */
.batch-cards-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .batch-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .batch-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Batch processing section */
.section-batch {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(138, 76, 255, 0.1) 0%, transparent 55%),
    var(--background);
}

.batch-feature-row {
  margin-bottom: 2.5rem;
}

.batch-demo-wrap {
  max-width: 340px;
  margin: 0 auto;
}

.batch-demo-label {
  text-align: center;
  margin-bottom: 1.25rem;
}

.batch-demo-label p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.prototype-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 210, 64, 0.2);
  color: #8a6914;
  border: 1px solid rgba(255, 210, 64, 0.35);
}

.device-stage--batch {
  max-width: 320px;
}

.device-screen--scroll {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.batch-app-ui {
  padding: 0.75rem 0.625rem 1rem;
  min-height: 100%;
  background: var(--background);
}

.batch-app-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.batch-app-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.batch-app-job-note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.batch-app-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.batch-app-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-primary);
}

.batch-upload-zone,
.batch-add-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 0.625rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.625rem;
  transition: border-color 0.2s, background 0.2s;
}

.batch-upload-zone:hover,
.batch-upload-zone:focus,
.batch-add-zone:hover,
.batch-add-zone:focus {
  outline: none;
  border-color: var(--purple-light);
  background: rgba(138, 76, 255, 0.05);
}

.batch-upload-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.375rem;
  border-radius: 50%;
  background: rgba(138, 76, 255, 0.12);
  color: var(--purple-primary);
  font-size: 1.25rem;
  line-height: 32px;
  font-weight: 300;
}

.batch-upload-text {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.batch-upload-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
}

.batch-chip {
  font-size: 0.5625rem;
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-pill);
  background: rgba(138, 76, 255, 0.1);
  color: var(--purple-deep);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.batch-chip--more {
  background: rgba(26, 26, 46, 0.08);
  color: var(--text-secondary);
}

.batch-run-btn {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  border: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-deep));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.55;
  cursor: not-allowed;
}

.batch-report {
  border-top: 1px solid var(--border);
  padding-top: 0.625rem;
}

.batch-report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.batch-report-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.batch-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.7;
}

.batch-export-soon {
  font-size: 0.5625rem;
  text-transform: uppercase;
  color: var(--purple-primary);
}

.batch-report-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.batch-report-row {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.batch-thumb {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(198, 109, 255, 0.25), rgba(94, 91, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.batch-row-body {
  min-width: 0;
  flex: 1;
}

.batch-filename {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.2rem;
}

.batch-row-body .result-label {
  font-size: 0.5625rem;
  padding: 0.125rem 0.5rem;
  margin-bottom: 0.25rem;
}

.batch-row-note {
  font-size: 0.625rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.batch-safety-note {
  text-align: center;
  max-width: 560px;
  margin: 2rem auto 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (min-width: 900px) {
  .tool-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* Gooey premium layer */
.gooey-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gooey-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: gooey-float 18s ease-in-out infinite;
}

.gooey-blob--1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(198, 109, 255, 0.55), rgba(138, 76, 255, 0.15));
}

.gooey-blob--2 {
  width: 360px;
  height: 360px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, rgba(36, 227, 194, 0.4), rgba(94, 91, 255, 0.1));
  animation-delay: -6s;
}

.gooey-blob--3 {
  width: 280px;
  height: 280px;
  top: 45%;
  left: 55%;
  background: radial-gradient(circle, rgba(255, 110, 199, 0.35), rgba(255, 210, 64, 0.12));
  animation-delay: -12s;
}

@keyframes gooey-float {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  33% {
    transform: translate(24px, -18px) scale(1.06) rotate(8deg);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
  66% {
    transform: translate(-16px, 12px) scale(0.96) rotate(-6deg);
    border-radius: 30% 70% 50% 50% / 60% 30% 70% 40%;
  }
}

.gooey-card {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.gooey-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(77, 34, 255, 0.18), 0 4px 16px var(--shadow-soft);
}

body > *:not(.gooey-bg) {
  position: relative;
  z-index: 1;
}

.hero .phone-frame img,
.feature-card img {
  filter: drop-shadow(0 8px 16px rgba(138, 76, 255, 0.15));
}

/* ── Business tier (Pro & Enterprise) ── */
:root {
  --business-bg: #f8fafc;
  --business-surface: #ffffff;
  --business-border: #cbd5e1;
  --business-border-strong: #94a3b8;
  --business-text: #0f172a;
  --business-text-muted: #475569;
  --business-accent: #1e40af;
  --business-accent-soft: #3b82f6;
  --business-shadow: rgba(15, 23, 42, 0.08);
  --business-radius: 10px;
}

.tier--business {
  background: var(--business-surface);
  border: 1px solid var(--business-border);
  border-radius: var(--business-radius);
  box-shadow: 0 1px 3px var(--business-shadow), 0 4px 16px rgba(15, 23, 42, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tier--business:hover {
  transform: none;
  box-shadow: 0 2px 6px var(--business-shadow), 0 8px 24px rgba(15, 23, 42, 0.06);
}

.tier--business h2,
.tier--business h3,
.tier--business h1 {
  color: var(--business-text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.tier--business p,
.tier--business li {
  color: var(--business-text-muted);
}

.tier--business .pricing-price,
.tier--business .store-price {
  color: var(--business-text);
}

.tier--business .pricing-features li::before,
.tier--business .store-features li::before,
.tier--business .platform-list li::before {
  color: var(--business-accent-soft);
}

.tier--business .btn-primary {
  background: var(--business-text);
  color: #fff;
  box-shadow: none;
}

.tier--business .btn-primary:hover {
  background: #1e293b;
  color: #fff;
  transform: none;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.tier--business .btn-secondary {
  border-color: var(--business-border-strong);
  color: var(--business-text);
  background: transparent;
}

.tier--business .btn-secondary:hover {
  border-color: var(--business-text);
  color: var(--business-text);
  background: rgba(15, 23, 42, 0.04);
}

.tier-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.tier-logo--lg {
  width: 72px;
  height: 72px;
  border-radius: 14px;
}

.tier-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--business-text-muted);
  border: 1px solid var(--business-border);
}

.tier-badge--pro {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

.tier-badge--enterprise {
  background: #f8fafc;
  color: #334155;
  border-color: #cbd5e1;
}

/* Pricing — business cards */
.pricing-card.tier--business {
  padding: 2rem;
}

.pricing-card.tier--business .pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #f1f5f9;
  color: var(--business-text-muted);
  border: 1px solid var(--business-border);
  border-radius: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
}

.pricing-card.tier--business.pricing-card--pro {
  border-color: #94a3b8;
  border-width: 1.5px;
}

.pricing-card.tier--business.pricing-card--enterprise {
  border-color: #64748b;
  border-width: 1.5px;
}

.pricing-grid--tiers {
  max-width: 1120px;
}

@media (min-width: 900px) {
  .pricing-grid--tiers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-step--business .flow-step-num {
  background: #f1f5f9;
  color: var(--business-text-muted);
  border-radius: 4px;
  width: auto;
  height: auto;
  padding: 0.15rem 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.flow-step--business img,
.flow-step--business .tier-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
}

/* Section — business desktop */
.section--business {
  background: var(--business-bg);
}

.section--business .section-label {
  color: var(--business-text-muted);
  font-weight: 600;
}

.section--business .section-header h2 {
  color: var(--business-text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.business-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background: #f1f5f9;
  color: var(--business-text-muted);
  border: 1px solid var(--business-border);
}

.platform-card.tier--business .platform-status--pro {
  background: #f1f5f9;
  color: var(--business-text-muted);
  border-radius: 4px;
  letter-spacing: 0.06em;
}

.macos-hero-copy.tier--business {
  padding: 1.5rem;
}

.feature-card.tier--business {
  padding: 1.5rem;
}

.feature-card.tier--business h3 {
  font-size: 1.0625rem;
  font-weight: 600;
}

/* Store */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.store-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.store-card--featured {
  border: 2px solid var(--purple-primary);
}

.store-card.tier--business.store-card--featured {
  border: 1.5px solid #64748b;
}

.store-card-media img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.store-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(138, 76, 255, 0.12);
  color: var(--purple-deep);
}

.tier--business .store-badge {
  background: #f1f5f9;
  color: var(--business-text-muted);
  border-radius: 4px;
  border: 1px solid var(--business-border);
}

.store-card h2 {
  font-size: 1.25rem;
  margin: 0.25rem 0;
}

.store-card h2 a {
  color: var(--text-primary);
  text-decoration: none;
}

.store-card h2 a:hover {
  color: var(--purple-primary);
}

.tier--business h2 a:hover {
  color: var(--business-accent);
}

.store-price {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple-primary);
}

.store-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.store-features {
  list-style: none;
  margin: 0.5rem 0 1rem;
  flex-grow: 1;
}

.store-features li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.store-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: 700;
  font-size: 0.8125rem;
}

.store-card-actions {
  margin-top: auto;
}

.store-card-actions .btn {
  width: 100%;
}

.store-footnote,
.store-loading,
.store-error {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 2rem;
}

.store-banner {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
}

.store-banner--success {
  border-color: rgba(36, 227, 194, 0.4);
  background: rgba(36, 227, 194, 0.1);
  color: #0d9e87;
}

/* Product detail — business */
.product-detail.tier--business {
  padding: 2rem;
}

.product-detail.tier--business .product-detail-media img {
  border-radius: 14px;
  border: 1px solid var(--business-border);
  object-fit: contain;
  background: #f8fafc;
  padding: 1rem;
}
