/* ===== CSS Variables ===== */
:root {
  --background: 160 15% 4%;
  --foreground: 0 0% 98%;
  --muted: 160 10% 25%;
  --muted-foreground: 160 5% 55%;
  --primary: 72 100% 56%;
  --primary-foreground: 160 15% 4%;
  --secondary: 160 15% 12%;
  --border: 160 15% 18%;
  --card: 160 15% 8%;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, hsl(160 20% 3%) 0%, hsl(160 15% 6%) 50%, hsl(160 10% 4%) 100%);
  color: hsl(var(--foreground));
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Utilities ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-muted {
  color: hsl(var(--muted-foreground));
}

.text-white {
  color: hsl(var(--foreground));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-medium {
  font-weight: 500;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(82 100% 70%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsla(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(var(--border) / 0.5);
}

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

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: hsl(var(--foreground));
}

.logo:visited {
  color: hsl(var(--foreground));
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem; /* closer to app */
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--background)); /* dark icon on light bg */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.logo-text {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.025em;
}

.logo-scene {
  font-weight: 400;
  color: #cdff3e;

}

.logo-lore {
  font-weight: 700;
  color: hsl(var(--foreground));
}

/* ===== Navigation ===== */
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-hero {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(82 100% 50%) 100%);
  color: hsl(var(--primary-foreground));
  box-shadow: 0 4px 20px -4px hsla(var(--primary) / 0.5);
}

.btn-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px -4px hsla(var(--primary) / 0.6);
}

.btn-hero-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsla(var(--primary) / 0.3);
}

.btn-hero-outline:hover {
  background: hsla(var(--primary) / 0.1);
  border-color: hsla(var(--primary) / 0.5);
}

.btn-secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
  background: hsl(160 15% 15%);
}

/* ===== Hero Section ===== */
.hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-top: 3rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== FAQ Page ===== */
.faq-page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.faq-page-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: left;
}

.faq-page-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .faq-page-title {
    font-size: 3rem;
  }
}

.faq-page-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(var(--border)) 50%, transparent 100%);
  margin: 2rem 0;
}

.faq-page-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) {
  .faq-page-section-title {
    font-size: 1.5rem;
  }
}

.faq-page-question {
  font-size: 1rem;
  font-weight: 650;
  margin: 1.5rem 0 0.75rem;
  color: hsl(var(--foreground));
}

.faq-page-content p {
  margin: 0.75rem 0;
}

.faq-page-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
}

.faq-page-list li {
  margin: 0.35rem 0;
}

.faq-page-content .text-muted strong {
  color: hsl(var(--foreground));
  font-weight: 600;
}

```css
/* ===== Hero Slider ===== */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  overflow: hidden;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
}

/* Optional but recommended: prevent layout “jump” during track transform */
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s;
}

.slide.active {
  opacity: 1;
}

.slide-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .slide-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.slide-source {
  text-align: center;
}

.slide-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

/* --- Standardized 3:4 frames to eliminate height drift --- */
.slide-image {
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

/* Placeholder styling stays on placeholders only */
.slide-image.placeholder {
  background: linear-gradient(
    135deg,
    hsl(var(--secondary)) 0%,
    hsl(160 15% 15%) 100%
  );
}

/* Ensure real images fill the frame consistently */
.slide-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobile (default): 3:4 locked
   192 x 256 and 96 x 128 */
.slide-image.placeholder {
  width: 192px;
}

.slide-image.placeholder.small {
  width: 96px;
}

/* Tablet: slightly larger, still integer heights
   216 x 288 and 108 x 144 */
@media (min-width: 480px) {
  .slide-image.placeholder {
    width: 216px;
  }

  .slide-image.placeholder.small {
    width: 108px;
  }
}

/* Desktop: tuned to match your current scale, no fractional heights
   276 x 368 and 120 x 160 */
@media (min-width: 768px) {
  .slide-image.placeholder {
    width: 276px;
  }

  .slide-image.placeholder.small {
    width: 120px;
  }
}

.slide-arrow {
  color: hsl(var(--primary));
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .slide-arrow {
    transform: rotate(0);
  }
}

.slide-generated {
  text-align: center;
}

.generated-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .generated-grid {
    gap: 0.75rem;
  }
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--muted));
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.dot.active {
  background: hsl(var(--primary));
  width: 1.5rem;
  border-radius: 0.25rem;
}
```


/* ===== Section Styles ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(var(--border)) 50%, transparent 100%);
  margin-bottom: 6rem;
  margin-top: 6rem;

}

.section-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title.left {
  text-align: left;
}

.section-title.inline {
  display: inline;
  margin-left: 0.75rem;
}

.section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.section-footer {
  margin-top: 3rem;
}

.subsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

/* ===== Proof Section ===== */
.proof-text {
  margin-top: 3rem;
}

.section-content .bullet-list {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
}

.bullet-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px hsla(var(--primary) / 0.15);
}

.proof-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 2.5rem;
}

.proof-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.dot-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--primary));
}

/* ===== FAQ Section ===== */
.faq-list {
  margin-top: 3rem;
  display: grid;
  gap: 1.75rem;
}

.faq-item {
  text-align: left;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid hsla(var(--border) / 0.7);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.faq-answer {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 68ch;
}

.faq-more-link {
  display: inline-block;
  margin-top: 2rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 600;
}

.faq-more-link:hover {
  color: hsl(var(--foreground));
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ===== Split Sections ===== */
.split-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split-content {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.split-text {
  text-align: left;
}

.split-text .bullet-list {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.split-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}


.reel-preview {
  width: 100%;
  max-width: 560px;
}

.reel-preview-video {
  width: 100%;
  height: 100%;
  display: block;
}

.visual-placeholder {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 10;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.visual-placeholder-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 100% at 30% 0%, hsla(var(--primary) / 0.12), transparent 55%),
    linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(160 15% 10%) 100%);
}

.visual-placeholder-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: hsl(var(--muted-foreground));
}

/* ===== Concept Graphic (Photo → Frames → Video) ===== */
.concept-graphic {
  width: 100%;
  max-width: 460px;
  display: grid;
  grid-template-columns:
    minmax(130px, 170px)
    auto
    minmax(180px, 220px)
    auto
    minmax(120px, 150px);
  align-items: center;
  gap: 0.75rem;
}

.concept-col {
  display: grid;
  gap: 0.6rem;
}

.concept-photo,
.concept-video {
  justify-items: center;
}

.concept-frames .concept-label {
  text-align: left;
}

.concept-frames {
  justify-items: stretch;
}

.concept-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--muted-foreground));
  text-align: center;
  white-space: nowrap;
}

.concept-card {
  border-radius: 1rem;
  border: 1px solid hsla(var(--border) / 0.9);
  background: hsl(var(--card));
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}

.concept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 100% at 35% 0%, hsla(var(--primary) / 0.10), transparent 60%),
    linear-gradient(135deg, hsla(var(--primary) / 0.05), transparent 45%);
  pointer-events: none;
}

.concept-card-photo {
  aspect-ratio: 2 / 3;
  width: 100%;
  max-width: 170px;
}

.concept-card-video {
  aspect-ratio: 9 / 16;
  min-height: 170px;
  max-width: 150px;
  width: 100%;
  justify-self: center;
}

.concept-card-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 70% at 50% 100%, rgba(0,0,0,0.25), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.12), transparent 45%);
  pointer-events: none;
}

.concept-connector {
  width: 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: hsla(var(--muted-foreground) / 0.9);
}

.concept-arrow {
  width: 1.75rem;
  height: 2px;
  background: hsla(var(--border) / 0.9);
  position: relative;
  border-radius: 999px;
}

.concept-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid hsla(var(--border) / 0.95);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.frames-stack {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding-left: 1.1rem;
  max-width: 220px;
}

.frames-stack::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    hsla(var(--primary) / 0.0),
    hsla(var(--primary) / 0.35),
    hsla(var(--primary) / 0.0)
  );
  border-radius: 999px;
}

.frame-item {
  border-radius: 0.9rem;
  border: 1px solid hsla(var(--border) / 0.85);
  background: hsla(var(--secondary) / 0.9);
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  color: hsla(var(--muted-foreground) / 0.9);
  position: relative;
  min-height: 44px;
}

.frame-item::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: hsla(var(--primary) / 0.8);
  box-shadow: 0 0 0 3px hsla(var(--primary) / 0.12);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-play::before {
  content: "";
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  background: hsla(var(--secondary) / 0.5);
  border: 1px solid hsla(var(--border) / 0.8);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.video-play::after {
  content: "";
  position: absolute;
  margin-left: 0.18rem;
  border-left: 12px solid hsla(var(--primary) / 0.65);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.video-toggle {
  position: relative;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.video-toggle-btn::before {
  content: "";
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 999px;
  background: hsla(var(--secondary) / 0.6);
  border: 1px solid hsla(var(--border) / 0.85);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.video-toggle-btn::after {
  content: "";
  position: absolute;
  margin-left: 0.2rem;
  border-left: 14px solid hsla(var(--primary) / 0.75);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-toggle video {
  display: none;
}

.video-toggle.is-loading video {
  display: block;
}

.video-toggle.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.video-toggle.is-playing video {
  display: block;
}

.video-wave {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14%;
  height: 8px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(
      90deg,
      hsla(var(--primary) / 0.0) 0 6px,
      hsla(var(--primary) / 0.28) 6px 10px
    );
  opacity: 0.25;
  filter: blur(0.1px);
  pointer-events: none;
}

.concept-caption {
  max-width: 56ch;
  text-align: center;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 980px) {
  .concept-graphic {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  .concept-connector {
    width: auto;
    height: 2.25rem;
    justify-self: center;
  }

  .concept-arrow {
    width: 2px;
    height: 2.25rem;
  }

  .concept-arrow::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid hsla(var(--border) / 0.95);
    border-bottom: 0;
  }

  .concept-label {
    white-space: normal;
  }

  .frames-stack {
    width: min(440px, 100%);
  }
}

/* ===== How It Works Section ===== */
.steps-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.step-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  background: hsla(var(--primary) / 0.1);
  border: 1px solid hsla(var(--primary) / 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== Control Section ===== */
.features-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
}

.feature-text {
  font-weight: 400;
}

/* ===== Motion Section ===== */
.motion-content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media (min-width: 768px) {
  .motion-content {
    flex-direction: row;
  }
}

.motion-icon {
  width: 6rem;
  height: 6rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.motion-text {
  text-align: center;
}

@media (min-width: 768px) {
  .motion-text {
    text-align: left;
  }
}

/* ===== Speed Section ===== */
.speed-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* ===== Pricing Section ===== */
.credits-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.credits-table {
  max-width: 32rem;
  margin: 0 auto;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
}

.credits-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

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

.credits-row.header {
  background: hsla(var(--border) / 0.5);
  font-weight: 600;
  font-size: 0.875rem;
}

.credits-row.highlight {
  background: hsla(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.credits-row span:first-child {
  font-weight: 500;
}

.credits-row span:last-child {
  text-align: left;
  color: hsl(var(--muted-foreground));
}

.credits-row.header span:last-child,
.credits-row.highlight span:last-child {
  color: inherit;
}

/* ===== Pricing Cards ===== */
.pricing-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

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

.pricing-card {
  position: relative;
  padding: 2rem;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.popular {
  box-shadow: none;
  border-color: hsla(var(--primary) / 0.6);
}


.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-credits {
  font-size: 0.875rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

.pricing-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  flex-grow: 1;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ===== Pricing Benefits ===== */
.pricing-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.pricing-plan {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.pricing-note {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.pricing-note.highlight {
  color: hsl(var(--primary));
  font-weight: 600;
}


/* ===== No Tricks ===== */
.no-tricks {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
}

.no-tricks-section .no-tricks {
  margin-top: 0;
  margin-bottom: 4rem;
}

.no-tricks-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: 1rem 0 1.5rem;
  color: hsl(var(--muted-foreground));
}

.tagline {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* ===== Footer ===== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

.copyright {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* --- Motion Section --- */

.motion-section {
  position: relative;
}

.motion-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.motion-caption {
  max-width: 48ch;
}

.motion-content {
  display: grid;
  grid-template-columns: minmax(280px, 460px) 1fr;
  align-items: center;
  gap: 48px;
}

/* Positioning section video */
.positioning-video-wrap {
  margin: 2.25rem 0 1.75rem;
  display: flex;
  justify-content: center;
}

.positioning-video-frame {
  max-width: 860px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsla(var(--border) / 0.9);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.positioning-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 640px) {
  .positioning-video-frame {
    max-width: 100%;
  }
}

/* Make the "No editing skills required" video much larger on desktop */
@media (min-width: 900px) {
  .anyone-section .split-content {
    grid-template-columns: 1fr 1.6fr;
  }

  .anyone-section .split-visual {
    align-items: stretch;
  }

  .anyone-section .positioning-video-wrap {
    width: 100%;
    margin: 0.75rem 0;
    justify-content: flex-start;
  }

  .anyone-section .positioning-video-frame {
    width: 100%;
    max-width: 960px;
  }
}

/* Left visual container */
.motion-visual {
  position: relative;
  width: 100%;
  max-width: 420px;        /* keeps it elegant */
  aspect-ratio: 9 / 16;
  max-height: 360px;       /* 👈 THIS is the key line */
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 14, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}


.motion-video,
.motion-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 👈 key line */
}



/* A subtle cinematic overlay so it sits nicely on dark UI */
.motion-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 45%);
}

/* Poster fallback image (hidden by default; shown for reduced motion / no autoplay cases) */
.motion-poster {
  display: none;
  width: 100%;
  height: auto;
}

/* Respect reduced motion: show poster, hide autoplay video */
@media (prefers-reduced-motion: reduce) {
  .motion-video {
    display: none;
  }
  .motion-poster {
    display: block;
  }
}

/* Responsive */
@media (max-width: 980px) {
  .motion-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .motion-visual-wrap {
    max-width: 640px;
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .motion-visual {
    max-width: 640px;
  }
}
