/**
 * AutoFlow Studio - Product Suite Stylesheet
 * High-Converting Creator Studio Aesthetic (Claude / Anthropic Warm Luxury Palette)
 * Warm Obsidian (#141413), Terracotta (#D97757), Warm Amber (#E2B383), Editorial Ivory (#FAF9F5)
 */

:root {
  --bg-primary: #141413;
  --bg-surface: #181816;
  --bg-surface-elevated: #1f1e1b;
  --bg-card: rgba(31, 30, 27, 0.88);
  --bg-card-hover: rgba(38, 37, 34, 0.95);
  --border-subtle: rgba(245, 244, 239, 0.08);
  --border-card: rgba(226, 179, 131, 0.14);
  --border-glow: rgba(217, 119, 87, 0.35);
  
  --accent-color: #D97757;
  --accent-hover: #CC6B4B;
  --accent-dim: rgba(217, 119, 87, 0.14);
  --accent-glow: rgba(217, 119, 87, 0.35);

  --accent-amber: #E2B383;
  --accent-amber-glow: rgba(226, 179, 131, 0.25);

  /* Aliases mapped to Claude Terracotta */
  --accent-lime: #D97757;
  --accent-lime-hover: #CC6B4B;
  --accent-lime-dim: rgba(217, 119, 87, 0.14);
  --accent-lime-glow: rgba(217, 119, 87, 0.35);

  --accent-cyan: #E2B383;
  --accent-cyan-glow: rgba(226, 179, 131, 0.25);
  --accent-warm: #D97757;
  --accent-purple: #c084fc;
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  
  --text-primary: #FAF9F5;
  --text-secondary: #B1ADA1;
  --text-muted: #87867F;
  
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --font-editorial: "Newsreader", "Georgia", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(217, 119, 87, 0.09) 0%, transparent 45%),
    radial-gradient(rgba(245, 244, 239, 0.03) 1px, transparent 0);
  background-size: 100% 100%, 28px 28px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Backdrops */
.ambient-glow {
  position: fixed;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 87, 0.18) 0%, rgba(226, 179, 131, 0.1) 45%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-secondary {
  position: absolute;
  top: 1900px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 20, 19, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 179, 131, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

header.navbar.container {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(20, 20, 19, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 179, 131, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-box {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #181816;
  border: 1px solid rgba(226, 179, 131, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(217, 119, 87, 0.25);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(217, 119, 87, 0.45);
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D97757 0%, #E2B383 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  box-shadow: 0 0 16px rgba(217, 119, 87, 0.35);
}

.brand-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #FAF9F5 40%, #E2B383 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title-gradient {
  background: linear-gradient(135deg, #D97757 0%, #E2B383 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Chrome Store & Edge Store Conversion Elements (Claude Editorial Style) */
.btn-chrome-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: #FAF9F5;
  padding: 8px 18px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(217, 119, 87, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-chrome-store:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 22px rgba(217, 119, 87, 0.55);
  transform: translateY(-2px);
  color: #FAF9F5;
}

.browser-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: currentColor;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 13px;
  color: #94a3b8;
}

.trust-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
}

.trust-text strong {
  color: #f8fafc;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-switch-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 3px 5px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 3px 8px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  background: rgba(217, 119, 87, 0.2);
  color: var(--accent-amber);
  box-shadow: 0 0 10px rgba(217, 119, 87, 0.25);
}

.lang-div {
  color: rgba(255, 255, 255, 0.15);
  font-size: 10px;
}

/* Kinetic Animated Headline */
.kinetic-word {
  display: inline-block;
  position: relative;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #FAF9F5 15%, #E2B383 55%, #D97757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(217, 119, 87, 0.4);
}

.kinetic-word.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.kinetic-word.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Vector SVG Icon System */
.web-icon {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.web-icon-sm {
  width: 12px;
  height: 12px;
}

.web-icon-lg {
  width: 20px;
  height: 20px;
}

.web-icon-xl {
  width: 26px;
  height: 26px;
}

/* Buttons (High-Impact AutoPlayLabs Tactile Pills) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.btn-glow {
  background: var(--accent-color);
  color: #FAF9F5;
  font-weight: 700;
  border: 1px solid var(--accent-color);
  box-shadow: 0 4px 18px rgba(217, 119, 87, 0.35);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(217, 119, 87, 0.6);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #FAF9F5;
}

.btn-secondary {
  background: rgba(245, 244, 239, 0.05);
  color: #FAF9F5;
  border: 1px solid rgba(226, 179, 131, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(245, 244, 239, 0.1);
  border-color: var(--accent-color);
  color: #FAF9F5;
  transform: translateY(-1px);
}

.btn-emerald {
  background: #10b981;
  color: #060709;
  font-weight: 800;
  border: 1px solid #10b981;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(16, 185, 129, 0.6);
  background: #34d399;
}

/* Hero Section */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(217, 119, 87, 0.12);
  border: 1px solid rgba(217, 119, 87, 0.35);
  font-size: 11.5px;
  color: #E2B383;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D97757;
  box-shadow: 0 0 10px #D97757;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #FAF9F5 15%, #E2B383 55%, #D97757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto 32px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.browser-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.browser-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ==========================================================================
   Hero Interactive Studio Mockup (1:1 with Extension & Canvas)
   ========================================================================== */
.hero-mockup-wrapper {
  margin-top: 48px;
  background: linear-gradient(180deg, rgba(22, 27, 40, 0.6) 0%, rgba(10, 13, 20, 0.95) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(217, 119, 87, 0.2);
}

.mockup-inner {
  border-radius: 12px;
  overflow: hidden;
  background: #090a0f;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(14, 18, 28, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.circle-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-url-box {
  margin-left: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-url-box .url-lock {
  color: #10b981;
  font-size: 10px;
}

/* Studio Split Grid: Google Flow Canvas on Left + Docked Extension on Right */
.mockup-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 420px);
  min-height: 480px;
  text-align: left;
}

/* Left: Simulated Google Flow Canvas */
.mockup-canvas-area {
  padding: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(14, 20, 32, 0.8) 0%, #06070a 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 70px -15px rgba(0, 0, 0, 0.9), 0 0 50px rgba(217, 119, 87, 0.2);
}

.canvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.canvas-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 10px;
  border-radius: 9999px;
  font-weight: 600;
}

.canvas-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  flex-grow: 1;
}

.canvas-card {
  background: rgba(18, 22, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.canvas-card:hover {
  border-color: rgba(217, 119, 87, 0.4);
  transform: translateY(-2px);
}

.canvas-card.active-gen {
  border-color: rgba(217, 119, 87, 0.5);
  box-shadow: 0 0 20px rgba(217, 119, 87, 0.2);
}

.card-media-preview {
  height: 125px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-media-preview.video-preview {
  background: #07090e;
}

.card-media-preview.image-preview {
  background: #021a14;
}

/* ==========================================================================
   Veo 3.1 Live Creation Motion & Viewport Simulation
   ========================================================================== */
.veo-live-card {
  border-color: rgba(217, 119, 87, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 87, 0.2);
}

.veo-generation-viewport {
  position: relative;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  background: #06080d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
}

/* 1. Realistic moving cinematic video background (Camera pan & zoom drift) */
.veo-animated-backdrop {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: 
    radial-gradient(ellipse at 40% 50%, rgba(217, 119, 87, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(226, 179, 131, 0.2) 0%, transparent 55%),
    linear-gradient(135deg, #181716 0%, #141413 50%, #201e1c 100%);
  background-size: cover;
  animation: veo-drift 14s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes veo-drift {
  0% {
    transform: scale(1) translate(0, 0) rotate(0deg);
  }
  50% {
    transform: scale(1.1) translate(-3%, -2%) rotate(0.8deg);
  }
  100% {
    transform: scale(1.05) translate(2%, 3%) rotate(-0.5deg);
  }
}

/* 2. Latent noise micro-dot grid */
.veo-latent-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 2;
}

/* 3. Laser scanline denoising beam (Sweeps back & forth) */
.veo-laser-scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #D97757 40%, #FAF9F5 50%, #D97757 60%, transparent 100%);
  box-shadow: 0 0 16px 4px rgba(217, 119, 87, 0.7), 0 0 30px rgba(217, 119, 87, 0.4);
  animation: veo-laser-sweep 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes veo-laser-sweep {
  0% {
    left: -5%;
    opacity: 0.3;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 105%;
    opacity: 0.3;
  }
}

/* 4. Real-time HUD badges */
.veo-viewport-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.veo-live-indicator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #D97757;
  box-shadow: 0 0 8px #D97757;
  margin-right: 4px;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.veo-res-badge {
  font-size: 8.5px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(0, 0, 0, 0.65);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.04em;
}

/* 5. Motion Vector Equalizer Bars */
.veo-motion-vectors {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  margin-bottom: 2px;
}

.veo-motion-vectors span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: #D97757;
  box-shadow: 0 0 6px rgba(217, 119, 87, 0.4);
  animation: motion-bar 1.2s ease-in-out infinite alternate;
}

.veo-motion-vectors span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.veo-motion-vectors span:nth-child(2) { height: 75%; animation-delay: 0.3s; }
.veo-motion-vectors span:nth-child(3) { height: 100%; animation-delay: 0.5s; }
.veo-motion-vectors span:nth-child(4) { height: 50%; animation-delay: 0.2s; }
.veo-motion-vectors span:nth-child(5) { height: 85%; animation-delay: 0.4s; }
.veo-motion-vectors span:nth-child(6) { height: 60%; animation-delay: 0.15s; }
.veo-motion-vectors span:nth-child(7) { height: 95%; animation-delay: 0.35s; }
.veo-motion-vectors span:nth-child(8) { height: 45%; animation-delay: 0.25s; }

@keyframes motion-bar {
  0% { transform: scaleY(0.3); opacity: 0.6; }
  100% { transform: scaleY(1); opacity: 1; }
}

.veo-viewport-bottombar {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.veo-step-info {
  display: flex;
  justify-content: space-between;
  font-size: 9.5px;
  font-family: var(--font-mono);
}

.veo-step-label {
  color: #94a3af;
  font-weight: 500;
}

.veo-step-val {
  color: #E2B383;
  font-weight: 700;
}

.veo-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.veo-progress-fill {
  width: 93%;
  height: 100%;
  background: linear-gradient(90deg, #D97757, #E2B383);
  border-radius: 2px;
  box-shadow: 0 0 8px #D97757;
  animation: progress-pulse 2s ease-in-out infinite alternate;
}

@keyframes progress-pulse {
  0% { opacity: 0.85; width: 90%; }
  100% { opacity: 1; width: 95%; }
}

/* Card 2: Imagen 3 Viewport */
.imagen-viewport {
  position: relative;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  background: #03140d;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 10px;
}

.imagen-animated-backdrop {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: 
    radial-gradient(circle at 60% 40%, rgba(16, 185, 129, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(217, 119, 87, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, #022c22 0%, #064e3b 50%, #021a14 100%);
  animation: veo-drift 18s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

.imagen-sparkle-marker {
  position: relative;
  z-index: 4;
  font-size: 24px;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
  animation: pulse-dot 2s infinite ease-in-out;
}

/* ==========================================================================
   Model Ecosystem Section Styles
   ========================================================================== */
.models-ecosystem-section {
  padding: 70px 0 30px;
}

.models-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.model-spec-card {
  background: rgba(18, 20, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.model-spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.4);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 87, 0.15);
}

.model-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.model-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.model-spec-card:hover .model-logo-box {
  border-color: rgba(217, 119, 87, 0.4);
}

.model-svg {
  width: 28px;
  height: 28px;
}

.model-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.model-tag-badge {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}

.badge-veo {
  background: rgba(217, 119, 87, 0.15);
  color: #E2B383;
  border: 1px solid rgba(217, 119, 87, 0.35);
}

.badge-imagen {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-gemini {
  background: rgba(192, 132, 252, 0.15);
  color: #c084fc;
  border: 1px solid rgba(192, 132, 252, 0.3);
}

.badge-synthid {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-veo2 {
  background: rgba(129, 140, 248, 0.15);
  color: #818cf8;
  border: 1px solid rgba(129, 140, 248, 0.3);
}

.model-name {
  font-size: 15px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.01em;
}

.model-arch-info {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: #94a3b8;
}

.model-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.model-specs-list {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10.5px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.spec-k {
  color: #64748b;
  font-weight: 500;
}

.spec-v {
  color: #cbd5e1;
  font-weight: 600;
  font-family: var(--font-mono);
  text-align: right;
}

.card-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.card-badge {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-title {
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
  line-height: 1.3;
}

.card-prompt-preview {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 8px;
}

.card-download-tag {
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Right: FlowCraft AI Extension Studio Docked Replica */
.mockup-extension-sidepanel {
  background: #090a0f;
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.ext-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 12px;
}

.ext-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ext-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #D97757 0%, #E2B383 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 0 10px rgba(217, 119, 87, 0.4);
}

.ext-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.ext-sub {
  font-size: 9px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.ext-tier-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(217, 119, 87, 0.15);
  color: #E2B383;
  border: 1px solid rgba(217, 119, 87, 0.35);
}

.ext-status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #94a3b8;
  background: rgba(18, 22, 34, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.ext-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

/* Dual Mode Buttons */
.ext-mode-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: #020617;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.ext-mode-btn {
  padding: 6px 10px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.2s;
}

.ext-mode-btn.active {
  background: rgba(217, 119, 87, 0.18);
  color: #E2B383;
  border: 1px solid rgba(217, 119, 87, 0.45);
  box-shadow: 0 0 10px rgba(217, 119, 87, 0.25);
}

/* Controls row */
.ext-controls-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  margin-bottom: 12px;
}

.ext-control-col label {
  display: block;
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}

.ext-select {
  width: 100%;
  background: #0f121a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 5px 8px;
  color: #f1f5f9;
  font-size: 11px;
  outline: none;
}

/* Quick Chips */
.ext-chips-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.ext-chips-label {
  font-size: 9.5px;
  color: #64748b;
  font-weight: 600;
}

.ext-chip {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.2s;
}

.ext-chip:hover {
  background: rgba(217, 119, 87, 0.15);
  border-color: rgba(217, 119, 87, 0.4);
  color: #E2B383;
}

/* Textarea */
.ext-textarea-wrapper {
  position: relative;
  margin-bottom: 12px;
}

.ext-textarea {
  width: 100%;
  height: 80px;
  background: #0a0d14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  color: #f1f5f9;
  resize: none;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ext-textarea:focus {
  border-color: #D97757;
  box-shadow: 0 0 10px rgba(217, 119, 87, 0.25);
}

.ext-prompt-count {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  background: rgba(0, 0, 0, 0.6);
  padding: 1px 5px;
  border-radius: 3px;
}

/* Action Button */
.ext-btn-start {
  width: 100%;
  height: 38px;
  background: linear-gradient(135deg, #D97757 0%, #CC6B4B 50%, #C15F3D 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 8px;
  color: #FAF9F5;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(217, 119, 87, 0.4);
  transition: all 0.2s ease;
  margin-bottom: 10px;
}

.ext-btn-start:hover {
  box-shadow: 0 6px 24px rgba(217, 119, 87, 0.65);
  transform: translateY(-1px);
}

/* 4-Step Execution HUD */
.ext-hud {
  background: rgba(14, 18, 28, 0.95);
  border: 1px solid rgba(217, 119, 87, 0.35);
  border-radius: 8px;
  padding: 10px;
}

.ext-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  color: #E2B383;
  margin-bottom: 8px;
}

.ext-hud-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.ext-hud-step-node {
  background: #060910;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 4px 2px;
  text-align: center;
  font-size: 8.5px;
  color: #64748b;
  font-weight: 600;
  transition: all 0.3s;
}

.ext-hud-step-node.active {
  background: rgba(217, 119, 87, 0.25);
  border-color: #D97757;
  color: #E2B383;
  box-shadow: 0 0 8px rgba(217, 119, 87, 0.4);
}

.ext-hud-step-node.done {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  color: #10b981;
}

/* ==========================================================================
   Bento Grid Section
   ========================================================================== */
.bento-section {
  padding: 80px 0;
}

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

.section-tag {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #f8fafc;
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 119, 87, 0.2);
}

.bento-span-2 {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(217, 119, 87, 0.12);
  border: 1px solid rgba(217, 119, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--accent-amber);
}

.bento-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f8fafc;
}

.bento-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Comparison Section
   ========================================================================== */
.comparison-section {
  padding: 80px 0;
}

.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

th, td {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  background: rgba(14, 18, 28, 0.95);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14.5px;
}

th.highlight, td.highlight {
  background: rgba(217, 119, 87, 0.08);
}

.badge-winner {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

/* ==========================================================================
   ROI Calculator Section
   ========================================================================== */
.roi-section {
  padding: 50px 0;
  background: rgba(14, 18, 28, 0.6);
  border-radius: 20px;
  border: 1px solid var(--border-card);
  margin-bottom: 70px;
}

.roi-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 10px 36px;
  align-items: center;
}

.slider-group {
  margin-top: 22px;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent-color);
  cursor: pointer;
  height: 6px;
  background: #1e293b;
  border-radius: 4px;
}

.roi-stats-card {
  background: rgba(6, 9, 15, 0.85);
  border: 1px solid rgba(217, 119, 87, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.roi-stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent-emerald);
  margin-bottom: 4px;
}

/* ==========================================================================
   Cloudflare Global Infrastructure Showcase
   ========================================================================== */
.cf-showcase-box {
  background: linear-gradient(135deg, rgba(14, 18, 28, 0.95) 0%, rgba(6, 8, 14, 0.98) 100%);
  border: 1px solid rgba(217, 119, 87, 0.35);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 0 35px rgba(217, 119, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 60px 0;
}

/* ==========================================================================
   Pricing Section & Cards
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-label {
  font-size: 13.5px;
  color: var(--text-secondary);
  cursor: pointer;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: #131926;
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-card);
}

.toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-cyan);
  transition: transform 0.25s;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.save-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  transition: all 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 119, 87, 0.4);
}

.price-card.featured {
  border-color: rgba(217, 119, 87, 0.55);
  background: linear-gradient(180deg, rgba(28, 26, 24, 0.95) 0%, rgba(20, 19, 18, 0.9) 100%);
  box-shadow: 0 0 35px rgba(217, 119, 87, 0.25);
  transform: scale(1.03);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #D97757 0%, #CC6B4B 100%);
  color: #FAF9F5;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.4);
}

.plan-name {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 22px;
  min-height: 38px;
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 22px;
}

.currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
}

.amount {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.period {
  font-size: 13.5px;
  color: var(--text-muted);
}

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

.features-list li {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.check-icon {
  color: var(--accent-emerald);
  font-weight: 800;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 60px 0 90px;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-card);
  padding: 18px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}

.faq-answer {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle-icon {
  font-size: 18px;
  color: var(--accent-cyan);
  transition: transform 0.2s;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   Stripe Checkout & License Modal
   ========================================================================== */
.fc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 4, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.fc-modal-overlay.active {
  display: flex;
}

.fc-modal-content {
  background: #181716;
  border: 1px solid rgba(217, 119, 87, 0.4);
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(217, 119, 87, 0.25);
  position: relative;
}

.fc-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
}

.fc-modal-close:hover {
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.main-footer {
  border-top: 1px solid var(--border-card);
  padding: 60px 0 30px;
  background: #040508;
  color: var(--text-secondary);
  font-size: 12.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  color: var(--text-muted);
}

/* ==========================================================================
   Simulator Grid & Responsive
   ========================================================================== */
.sim-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  margin-top: 30px;
}

@media (max-width: 1080px) {
  .mockup-grid { grid-template-columns: 1fr; }
  .mockup-canvas-area { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .sim-grid-container { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero h1 { font-size: 38px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .pricing-cards { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .roi-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .showcase-slide { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Claude-Style Marquee Ticker Ribbon
   ========================================================================== */
.marquee-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(217, 119, 87, 0.04);
  border-top: 1px solid rgba(217, 119, 87, 0.18);
  border-bottom: 1px solid rgba(217, 119, 87, 0.18);
  padding: 14px 0;
  margin: 36px 0 48px;
  position: relative;
}

.marquee-ticker-wrap::before,
.marquee-ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #141413 0%, transparent 100%);
}

.marquee-ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #141413 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FAF9F5;
  white-space: nowrap;
}

.marquee-asterisk {
  color: var(--accent-color);
  font-size: 14px;
  text-shadow: 0 0 10px rgba(217, 119, 87, 0.6);
}

/* ==========================================================================
   Interactive Video Showcase Carousel (AutoPlayLabs Aesthetic)
   ========================================================================== */
.showcase-section {
  padding: 80px 0;
  position: relative;
}

.showcase-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.showcase-carousel-container {
  position: relative;
  background: #181816;
  border: 1px solid rgba(226, 179, 131, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(217, 119, 87, 0.12);
}

.showcase-slides-wrapper {
  position: relative;
  min-height: 480px;
}

.showcase-slide {
  display: none;
  grid-template-columns: 1.4fr 1fr;
  min-height: 480px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-slide.active {
  display: grid;
  opacity: 1;
}

.showcase-media-box {
  position: relative;
  overflow: hidden;
  background: #121211;
  border-right: 1px solid rgba(226, 179, 131, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.showcase-video-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9) contrast(1.1);
}

.showcase-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, transparent 30%, rgba(20, 20, 19, 0.75) 100%);
  z-index: 2;
}

.showcase-viewport-hud {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.showcase-badge-model {
  background: rgba(20, 20, 19, 0.75);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.showcase-badge-meta {
  background: rgba(20, 20, 19, 0.65);
  border: 1px solid rgba(226, 179, 131, 0.18);
  color: #FAF9F5;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.showcase-live-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #D97757 50%, transparent 100%);
  box-shadow: 0 0 12px #D97757;
  animation: scanline-sweep 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes scanline-sweep {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.showcase-content-box {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(11, 14, 20, 0.95);
}

.showcase-slide-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 12px;
}

.showcase-slide-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  color: #f8fafc;
  margin-bottom: 14px;
}

.showcase-slide-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 24px;
}

.showcase-prompt-box {
  background: rgba(6, 7, 9, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 24px;
}

.showcase-prompt-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--accent-lime);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  display: block;
}

.showcase-prompt-text {
  font-size: 12px;
  font-family: var(--font-mono);
  color: #cbd5e1;
  line-height: 1.45;
}

.showcase-stats-row {
  display: flex;
  gap: 24px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.showcase-stat-label {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Carousel Nav Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(6, 7, 9, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-indicators {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent-lime);
  transform: scale(1.25);
  box-shadow: 0 0 8px var(--accent-lime);
}

.carousel-nav-btns {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 16px;
}

.carousel-btn:hover {
  background: var(--accent-color);
  color: #FAF9F5;
  border-color: var(--accent-color);
}

/* ==========================================================================
   Creator Testimonials Grid / Carousel (Claude Editorial Style)
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 119, 87, 0.04) 0%, transparent 60%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: rgba(31, 30, 27, 0.9);
  border: 1px solid rgba(226, 179, 131, 0.14);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(217, 119, 87, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 119, 87, 0.15);
}

.testimonial-metric-pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-color);
  background: rgba(217, 119, 87, 0.12);
  border: 1px solid rgba(217, 119, 87, 0.28);
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.testimonial-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 24px;
  flex-grow: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid var(--accent-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
}

.testimonial-author-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #f8fafc;
}

.testimonial-author-title {
  font-size: 11px;
  color: #64748b;
}
