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

:root {
  --bg: #07080d;
  --ink: #f7f4ff;
  --soft: #c8c3da;
  --muted: #8f88a8;
  --line: rgba(255,255,255,0.11);
  --panel: #11131b;
  --panel-2: #171827;
  --violet: #8b5cf6;
  --violet-2: #a78bfa;
  --pink: #f472b6;
  --cyan: #60a5fa;
  --green: #5cf6c8;
  --shadow: 0 26px 84px rgba(0,0,0,0.45);
  --radius: 24px;
  --display: "Archivo Black", Impact, sans-serif;
  --sans: "Manrope", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(139,92,246,0.26), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(96,165,250,0.11), transparent 26%),
    radial-gradient(circle at 92% 9%, rgba(244,114,182,0.15), transparent 28%),
    linear-gradient(180deg, #07080d 0%, #0b0c13 45%, #07080d 100%);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
}

a { color: inherit; }

.is-hidden {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(167,139,250,0.14);
  background:
    radial-gradient(circle at 9% 0%, rgba(139,92,246,0.22), transparent 32%),
    radial-gradient(circle at 91% 0%, rgba(244,114,182,0.12), transparent 30%),
    linear-gradient(90deg, rgba(8,9,16,0.76), rgba(18,14,30,0.72), rgba(8,9,16,0.78));
  box-shadow: 0 16px 54px rgba(0,0,0,0.26), inset 0 -1px 0 rgba(255,255,255,0.035);
  backdrop-filter: blur(22px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 12px 34px rgba(139,92,246,0.25);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.brand-copy span {
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 34px rgba(0,0,0,0.18);
}

.nav a {
  color: var(--soft);
  min-height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.075);
}

.nav a.nav-login {
  color: #fff;
  background: rgba(139,92,246,0.24);
  box-shadow: inset 0 0 0 1px rgba(167,139,250,0.30), 0 10px 26px rgba(139,92,246,0.15);
}

.nav a.nav-login:hover {
  background: rgba(139,92,246,0.25);
  box-shadow: inset 0 0 0 1px rgba(167,139,250,0.34);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.055);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.btn.primary {
  color: #fff;
  border-color: var(--violet);
  background: linear-gradient(135deg, var(--violet), #7c3aed);
  box-shadow: 0 16px 46px rgba(139,92,246,0.28);
}

.btn.primary:hover { box-shadow: 0 22px 60px rgba(139,92,246,0.36); }

.btn.ghost {
  color: var(--soft);
  background: transparent;
}

.mobile-label {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .topbar {
    animation: topbarSettle 0.64s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .motion-reveal-ready .reveal-item {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.992);
    filter: blur(5px);
    transition:
      opacity 0.82s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1),
      filter 0.82s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
    transition-delay: calc(var(--reveal-index, 0) * 56ms);
    will-change: opacity, transform, filter;
    backface-visibility: hidden;
  }

  .motion-reveal-ready .hero-copy > .reveal-item {
    transform: translate3d(-10px, 14px, 0) scale(0.995);
  }

  .motion-reveal-ready .motion-flow.reveal-item,
  .motion-reveal-ready .image-mosaic > .reveal-item {
    transform: translate3d(0, 22px, 0) scale(0.988);
  }

  .motion-reveal-ready .model-card.reveal-item,
  .motion-reveal-ready .asset-lane.reveal-item,
  .motion-reveal-ready .mini-price.reveal-item,
  .motion-reveal-ready .motion-faq-card.reveal-item {
    transform: translate3d(0, 20px, 0) scale(0.986);
  }

  .motion-reveal-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }

  @keyframes topbarSettle {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.announcement {
  display: flex;
  justify-content: center;
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--violet-2);
  background: rgba(139,92,246,0.10);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.92fr);
  gap: clamp(30px, 4.5vw, 70px);
  align-items: center;
  width: min(1420px, 100%);
  min-height: calc(100svh - 160px);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 70px) clamp(18px, 5vw, 72px) clamp(48px, 6vw, 76px);
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(139,92,246,0.34);
  border-radius: 999px;
  color: var(--violet-2);
  background: rgba(139,92,246,0.12);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet-2);
  box-shadow: 0 0 0 7px rgba(139,92,246,0.16);
}

h1, h2, h3, p { margin-top: 0; }

figure { margin: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(46px, 5.55vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--violet-2), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.56;
  font-weight: 800;
}

.model-rail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
}

.model-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255,255,255,0.055);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.model-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-2), var(--pink));
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 10px;
}

.metric {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-auto-rows: minmax(190px, 1fr);
  gap: 14px;
  min-height: 560px;
}

.showcase-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.showcase-card video,
.product-media video,
.example video,
.render-thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card video,
.product-media video,
.example video {
  transform: scale(1.01);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img) center / cover no-repeat;
  filter: saturate(1.03) contrast(1.02);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.82));
}

.showcase-card.main {
  grid-row: span 2;
  width: auto;
  aspect-ratio: auto;
}

.showcase-card.side {
  width: auto;
  aspect-ratio: auto;
}

.showcase-card.small {
  width: auto;
  aspect-ratio: auto;
}

.card-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.card-label b {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.card-label span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 900;
}

.floating-panel {
  position: relative;
  grid-column: 1 / -1;
  z-index: 4;
  width: 74%;
  justify-self: end;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  background: rgba(13,15,24,0.86);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.render-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.render-thumb {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--img) center / cover no-repeat;
  overflow: hidden;
}

.render-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.render-copy b {
  display: block;
  font-size: 14px;
}

.render-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.progress {
  position: relative;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
}

.progress::before {
  content: "";
  position: absolute;
  inset: 0 28% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--pink));
}

section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.kicker {
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2 {
  max-width: 790px;
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-head p,
.section-copy {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 800;
}

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

.product-card,
.step,
.price-card,
.faq-card,
.auth-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    var(--panel);
}

.product-card {
  min-height: 430px;
  overflow: hidden;
}

.product-media {
  position: relative;
  min-height: 255px;
  background: var(--img) center / cover no-repeat;
  overflow: hidden;
}

.product-media.media-image {
  background-position: center;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.78));
}

.product-body {
  padding: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(139,92,246,0.86);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-body h3,
.step h3,
.price-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.product-body p,
.step p,
.price-card p,
.faq-card p,
.auth-card p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.example-wall {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 235px;
  gap: 14px;
}

.example {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 235px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #101018;
}

.example::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--img) center / cover no-repeat;
  transition: transform 0.45s ease;
}

.example::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.84));
}

.example:hover::before { transform: scale(1.05); }

.example.wide { grid-column: span 2; }
.example.tall { grid-row: span 2; }

.example-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 460px;
}

.example-copy h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.example-copy p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

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

.step {
  min-height: 240px;
  padding: 22px;
}

.step-num {
  color: var(--violet-2);
  font-family: var(--display);
  font-size: 48px;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-preview,
.library-preview {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(139,92,246,0.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    var(--panel);
  padding: 26px;
}

.pricing-preview h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.estimate-panel,
.billing-panel {
  position: relative;
  overflow: hidden;
}

.estimate-panel::before,
.billing-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(34,211,238,0.16), transparent 34%);
  opacity: 0.8;
}

.estimate-panel > *,
.billing-panel > * {
  position: relative;
  z-index: 1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.included-models-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(96,165,250,0.12), transparent 34%),
    radial-gradient(circle at 14% 0%, rgba(139,92,246,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.024)),
    rgba(12,14,22,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.included-models-copy {
  display: grid;
  gap: 10px;
}

.included-models-copy h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.included-models-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.included-model-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.included-model-list span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 48px;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 16px;
  color: #fff;
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
}

.included-model-list .model-logo {
  width: 23px;
  height: 23px;
  flex-basis: 23px;
}

.volume-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(247,244,255,0.62);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.volume-note span {
  color: #fff;
  font-weight: 900;
}

.volume-note p {
  margin: 0;
}

.pricing-hero-section {
  padding-top: clamp(42px, 5vw, 72px);
  background:
    radial-gradient(circle at 52% 14%, rgba(139,92,246,0.18), transparent 32%),
    radial-gradient(circle at 80% 44%, rgba(34,211,238,0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 70%);
}

.pricing-hero-section .section-inner {
  width: min(1460px, 100%);
}

.pricing-title {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.pricing-title h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.pricing-title p {
  max-width: 610px;
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
  margin-top: 2px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.billing-option {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--soft);
  background: transparent;
  font: 900 14px/1 var(--sans);
  cursor: pointer;
}

.billing-option span {
  display: inline-block;
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #11131b;
  background: #c8a7ff;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.billing-option.is-active {
  color: #07080d;
  background: #fff;
}

.price-card {
  position: relative;
  min-height: 390px;
  padding: 22px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.022)),
    rgba(18,20,29,0.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.price-card.featured {
  border-color: rgba(167,139,250,0.62);
  background:
    radial-gradient(circle at 72% 0%, rgba(139,92,246,0.24), transparent 34%),
    linear-gradient(180deg, rgba(167,139,250,0.13), rgba(255,255,255,0.026)),
    rgba(19,20,31,0.96);
  box-shadow: 0 22px 60px rgba(88,58,190,0.14);
}

.plan-card > .pill {
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  color: #c8b7ff;
  border: 1px solid rgba(167,139,250,0.25);
  background: rgba(139,92,246,0.14);
  font-size: 10px;
}

.plan-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
}

.plan-badges .pill {
  min-height: 24px;
  padding: 0 9px;
  color: #c8b7ff;
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 999px;
  background: rgba(139,92,246,0.14);
  font-size: 10px;
}

.plan-save-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: #201028;
  background: linear-gradient(180deg, #e6c1ff, #cfa4ff);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 8px 24px rgba(197,144,255,0.16);
}

.plan-save-chip[hidden] {
  display: none;
}

.price {
  margin: 16px 0 3px;
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
}

.custom-price {
  display: flex;
  align-items: flex-end;
  min-height: 54px;
  font-size: 38px;
  letter-spacing: -0.055em;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.plan-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.credit-count {
  margin-top: 17px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,0.035);
  font-size: 15px;
  font-weight: 900;
}

.contact-card {
  background:
    radial-gradient(circle at 86% 0%, rgba(34,211,238,0.12), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    rgba(18,20,29,0.94);
}

.volume-card {
  border-color: rgba(255,255,255,0.09);
  background:
    radial-gradient(circle at 82% 2%, rgba(34,211,238,0.16), transparent 38%),
    radial-gradient(circle at 28% 8%, rgba(127,240,205,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    rgba(18,20,29,0.94);
}

.volume-card .credit-count {
  border-color: rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.035);
}

.contact-card .plan-note,
.contact-card p {
  transform: translateY(2px);
}

.contact-card .credit-count {
  margin-top: 18px;
}

.plan-card .features {
  flex: 1;
}

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

.features {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.features li {
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.features li::before {
  content: "✓";
  color: var(--violet-2);
  margin-right: 8px;
}

.credit-table {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.credit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  color: var(--soft);
  font-weight: 900;
}

.credit-row strong { color: #fff; }

.estimate-list,
.billing-checks {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.estimate-item,
.billing-checks div {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: rgba(7,8,13,0.48);
}

.estimate-item {
  grid-template-columns: minmax(90px, 0.34fr) minmax(0, 1fr);
  align-items: center;
}

.estimate-item span,
.billing-checks span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 900;
}

.estimate-item span {
  color: var(--violet-2);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.estimate-item strong,
.billing-checks b {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.credit-explainer-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(139,92,246,0.10), transparent 32%),
    radial-gradient(circle at 88% 22%, rgba(96,165,250,0.10), transparent 34%);
}

.credit-explainer {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  grid-template-areas:
    "copy flow"
    "rules flow";
  gap: 16px;
  align-items: stretch;
}

.credit-explainer-copy,
.credit-flow,
.credit-rules {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.023)),
    rgba(18,20,29,0.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.credit-explainer-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
}

.credit-explainer-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.credit-explainer-copy .btn {
  margin-top: 4px;
}

.credit-flow {
  grid-area: flow;
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 12%, rgba(96,165,250,0.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.022)),
    rgba(15,17,26,0.95);
}

.credit-flow article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num body";
  column-gap: 16px;
  row-gap: 6px;
  align-content: center;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  background: rgba(7,8,13,0.46);
}

.credit-flow article span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(139,92,246,0.88), rgba(96,165,250,0.48));
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.credit-flow h3 {
  grid-area: title;
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.credit-flow p {
  grid-area: body;
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.credit-rules {
  grid-area: rules;
  display: grid;
  gap: 8px;
  padding: 16px;
}

.credit-rules div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 13px;
  border-radius: 14px;
  background: rgba(7,8,13,0.36);
}

.credit-rules b {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.credit-rules span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-align: right;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.library-tile {
  min-height: 145px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--img) center / cover no-repeat;
}

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

.faq-card {
  padding: 20px;
}

.faq-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.auth-wrap {
  width: min(1100px, 100%);
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 30px;
  align-items: center;
  padding: clamp(42px, 6vw, 90px) clamp(18px, 5vw, 72px);
}

.auth-card {
  padding: 26px;
}

.auth-card form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: #fff;
  background: rgba(255,255,255,0.055);
  font: 800 15px/1 var(--sans);
  outline: none;
}

.field input:focus {
  border-color: rgba(139,92,246,0.64);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.14);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

@media (max-width: 1060px) {
  .split,
  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .included-models-panel {
    grid-template-columns: 1fr;
  }

  .credit-explainer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "flow"
      "rules";
  }

  .product-grid,
  .steps,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .showcase {
    min-height: 600px;
    max-width: 720px;
  }
}

@media (max-width: 740px) {
  body::before {
    background-size: 38px 38px;
  }

  .announcement {
    padding: 6px 12px;
    font-size: 9px;
    line-height: 1.3;
    letter-spacing: 0.045em;
  }

  .topbar {
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy span {
    display: none;
  }

  .nav-actions {
    gap: 0;
    margin-left: 0;
  }

  .btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .nav {
    display: flex;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav a {
    display: none;
  }

  .nav a.nav-pricing {
    display: inline-flex;
    min-height: 34px;
    padding: 0 7px;
    border: 0;
    background: transparent;
    color: rgba(247,244,255,0.74);
    font-size: 12px;
  }

  .nav-actions .ghost { display: none; }

  .nav-actions .primary {
    padding: 0 15px;
    box-shadow: 0 10px 30px rgba(139,92,246,0.22);
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding: 18px 14px 38px;
  }

  .showcase {
    order: -1;
    width: 100%;
    grid-template-columns: 1.08fr 0.92fr;
    grid-auto-rows: minmax(132px, 39vw);
    gap: 10px;
    min-height: 0;
    max-width: none;
  }

  .showcase-card {
    border-radius: 20px;
  }

  .showcase-card.main {
    grid-row: span 2;
  }

  .hero-copy {
    gap: 14px;
  }

  .eyebrow {
    max-width: 100%;
    min-height: 28px;
    padding: 0 10px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 6px rgba(139,92,246,0.14);
  }

  h1 {
    font-size: clamp(34px, 10.6vw, 48px);
    line-height: 0.97;
    letter-spacing: -0.04em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.42;
  }

  .model-rail {
    align-items: flex-start;
    max-width: none;
    padding: 7px;
    border-radius: 20px;
  }

  .model-chip {
    min-height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .model-chip::before {
    width: 7px;
    height: 7px;
  }

  .metric-row,
  .product-grid,
  .steps,
  .split,
  .price-grid,
  .included-model-list,
  .faq-grid,
  .section-head,
  .library-grid {
    grid-template-columns: 1fr;
  }

  .metric-row {
    display: none;
  }

  .card-label {
    left: 11px;
    right: 11px;
    bottom: 11px;
  }

  .card-label b {
    font-size: 14px;
  }

  .card-label span {
    font-size: 10px;
  }

  .floating-panel {
    display: none;
  }

  section {
    padding: 42px 14px;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 20px;
  }

  .pricing-title {
    justify-items: center;
    text-align: center;
    margin-bottom: 22px;
  }

  .pricing-title h1 {
    font-size: clamp(40px, 13vw, 56px);
    line-height: 0.98;
  }

  .pricing-title p {
    font-size: 15px;
  }

  .billing-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .billing-option {
    padding: 0 10px;
    font-size: 13px;
  }

  .billing-option span {
    display: none;
  }

  .kicker {
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .section-head p,
  .section-copy {
    font-size: 15px;
    line-height: 1.45;
  }

  .product-card {
    min-height: auto;
    border-radius: 20px;
  }

  .product-media {
    min-height: 210px;
  }

  .product-body {
    padding: 17px;
  }

  .product-body h3,
  .step h3,
  .price-card h3 {
    font-size: 22px;
  }

  .plan-card {
    min-height: auto;
    padding: 20px;
  }

  .included-models-panel {
    gap: 18px;
    margin-top: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .included-models-copy h2 {
    font-size: clamp(27px, 8vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .included-models-copy p {
    font-size: 13px;
    line-height: 1.48;
  }

  .included-model-list {
    gap: 8px;
  }

  .included-model-list span {
    min-height: 44px;
    padding: 9px 11px;
    font-size: 12px;
  }

  .credit-explainer-copy,
  .credit-flow,
  .credit-rules {
    border-radius: 20px;
  }

  .credit-explainer-copy {
    padding: 20px;
  }

  .credit-explainer-copy h2 {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.045em;
  }

  .credit-flow {
    padding: 12px;
  }

  .credit-flow article {
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
    min-height: auto;
    padding: 14px;
    border-radius: 16px;
  }

  .credit-flow article span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 12px;
  }

  .credit-flow h3 {
    font-size: 20px;
  }

  .credit-flow p {
    font-size: 13px;
  }

  .credit-rules {
    padding: 12px;
  }

  .credit-rules div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .credit-rules span {
    text-align: left;
  }

  .price {
    font-size: 44px;
  }

  .product-body p,
  .step p,
  .price-card p,
  .faq-card p,
  .auth-card p {
    font-size: 13px;
    line-height: 1.48;
  }

  .example-wall {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .example,
  .example.wide,
  .example.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 265px;
    padding: 15px;
    border-radius: 20px;
  }

  .example-copy h3 {
    font-size: 25px;
  }

  .step,
  .pricing-preview,
  .library-preview {
    border-radius: 20px;
    padding: 18px;
  }

  .step {
    min-height: auto;
  }

  .step-num {
    font-size: 38px;
  }

  .credit-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px;
  }

  .library-tile {
    min-height: 180px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .brand-copy span {
    display: none;
  }

  .nav-actions .primary {
    padding: 0 12px;
  }

  .showcase {
    grid-auto-rows: 132px;
  }

  .card-label {
    gap: 4px;
  }

  .card-label b {
    font-size: 13px;
  }

  .card-label span {
    font-size: 9px;
  }

  .model-rail {
    border-radius: 18px;
  }

  .model-chip {
    flex: 1 1 calc(50% - 8px);
  }

  .mobile-hide-chip {
    display: none;
  }
}

/* Motion landing v2 */
.motion-topbar {
  min-height: 74px;
  padding-inline: clamp(18px, 4vw, 64px);
}

.hero-v2 {
  position: relative;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  width: min(1500px, 100%);
  min-height: calc(100svh - 74px);
  padding-top: clamp(28px, 4.5vw, 62px);
  padding-bottom: clamp(34px, 4.5vw, 64px);
  isolation: isolate;
}

.hero-v2 h1 {
  max-width: 850px;
  font-size: clamp(44px, 4.55vw, 78px);
}

.motion-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.72fr);
  grid-template-rows: minmax(320px, 1fr) auto;
  gap: 14px;
  min-height: clamp(500px, 34vw, 610px);
  padding: clamp(16px, 2.2vw, 28px);
  border: 1px solid rgba(167,139,250,0.18);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(167,139,250,0.30), transparent 32%),
    radial-gradient(circle at 88% 75%, rgba(244,114,182,0.20), transparent 34%),
    linear-gradient(120deg, rgba(96,165,250,0.07), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    #0b0d15;
  box-shadow: 0 46px 140px rgba(0,0,0,0.54), 0 0 0 1px rgba(255,255,255,0.035) inset;
  isolation: isolate;
}

.motion-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 48%, #000, transparent 72%);
}

.flow-stage {
  position: relative;
  grid-row: span 2;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  overflow: hidden;
  background: #101018;
  box-shadow: 0 32px 92px rgba(0,0,0,0.48), 0 0 0 1px rgba(167,139,250,0.08) inset;
}

.flow-stage video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.flow-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.04) 46%, rgba(0,0,0,0.22)),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.78));
  z-index: 1;
  pointer-events: none;
}

.flow-stage::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.72), transparent);
  box-shadow: 0 0 26px rgba(167,139,250,0.48);
  pointer-events: none;
}

.stage-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.stage-label span,
.console-head span {
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-label b {
  color: #fff;
  font-size: clamp(23px, 2.4vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.stage-meter {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 118px;
  align-items: center;
  gap: 9px 11px;
  width: min(260px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(8,10,16,0.78);
  box-shadow: 0 20px 54px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.stage-meter span {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 900;
}

.stage-meter i {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}

.stage-meter i::before {
  content: "";
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

.flow-console {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0%, rgba(139,92,246,0.25), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(10,12,20,0.84);
  box-shadow: 0 24px 78px rgba(0,0,0,0.40);
}

.console-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.console-head strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-steps {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.console-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 2px 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
}

.console-step span {
  grid-row: span 2;
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}

.console-step b {
  color: #fff;
  font-size: 14px;
}

.console-step small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.console-thumbs {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.console-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  object-fit: cover;
  background: #101018;
}

.console-thumbs span {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  font-weight: 900;
}

.console-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(92,246,200,0.24);
  border-radius: 16px;
  background: rgba(92,246,200,0.07);
}

.console-note b {
  color: #fff;
  font-size: 14px;
}

.console-note span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.flow-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.02fr 0.88fr;
  gap: clamp(10px, 1.5vw, 18px);
  align-items: end;
  min-height: clamp(460px, 32vw, 570px);
}

.flow-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  overflow: hidden;
  background: #101018;
  box-shadow: 0 28px 84px rgba(0,0,0,0.46);
}

.flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 42%, rgba(0,0,0,0.78));
  pointer-events: none;
}

.flow-card img,
.flow-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flow-output img,
.flow-output video {
  object-position: left center;
}

.flow-source {
  height: 78%;
  align-self: center;
  transform: translateY(10px) rotate(-2deg);
}

.flow-motion {
  height: 100%;
  transform: translateY(-12px);
}

.flow-output {
  height: 84%;
  align-self: center;
  transform: translateY(34px) rotate(2deg);
}

.flow-status {
  position: relative;
  align-self: end;
  z-index: 6;
  width: min(410px, 100%);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 22px;
  background: rgba(10,12,20,0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.48);
}

.progress-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--violet);
  font-size: 12px;
  font-weight: 900;
}

.studio-hero {
  position: relative;
  min-height: clamp(500px, 37vw, 660px);
  isolation: isolate;
}

.studio-hero::before {
  content: "";
  position: absolute;
  inset: 7% 1% 3% 4%;
  z-index: -1;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at 68% 22%, rgba(244,114,182,0.24), transparent 28%),
    radial-gradient(circle at 20% 72%, rgba(139,92,246,0.28), transparent 32%),
    rgba(255,255,255,0.045);
  box-shadow: 0 40px 120px rgba(0,0,0,0.52);
}

.studio-hero-bg {
  position: absolute;
  inset: 0 5% 12% 19%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 34px;
  overflow: hidden;
  background: #11131b;
  box-shadow: 0 28px 94px rgba(0,0,0,0.44);
}

.studio-hero-bg img,
.studio-card img,
.proof-card img,
.image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.studio-hero-bg::after,
.studio-card::after,
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.72));
  pointer-events: none;
}

.studio-hero-bg img {
  filter: saturate(1.08) contrast(1.02);
}

.studio-hero-clean .studio-hero-bg {
  inset: 2% 0 7% 4%;
  border-radius: 36px;
}

.studio-hero-clean .studio-hero-bg img {
  object-position: 64% center;
}

.studio-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  overflow: hidden;
  background: #101018;
  box-shadow: 0 24px 80px rgba(0,0,0,0.48);
}

.studio-card video,
.proof-card video,
.image-mosaic video,
.model-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.source-card {
  left: 0;
  top: 10%;
  width: min(34%, 255px);
  aspect-ratio: 0.76;
}

.motion-card {
  right: 0;
  top: 17%;
  width: min(35%, 270px);
  aspect-ratio: 0.78;
}

.result-card {
  left: 16%;
  bottom: 0;
  width: min(38%, 300px);
  aspect-ratio: 0.76;
}

.studio-queue {
  position: absolute;
  right: 2%;
  bottom: 5%;
  width: min(46%, 360px);
}

.model-showcase {
  padding-top: clamp(54px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent),
    rgba(2,6,12,0.72);
}

.compact-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.see-all {
  white-space: nowrap;
}

.model-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.model-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) 116px;
  min-height: 332px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.055);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.model-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 24px);
  min-height: 34px;
  padding: 5px 11px 5px 7px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(7,8,13,0.62);
  box-shadow: 0 12px 32px rgba(0,0,0,0.36);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.model-card-badge .model-logo {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
  border-radius: 8px;
}

.model-card:hover {
  transform: translateY(-4px);
  border-color: rgba(167,139,250,0.44);
  background: rgba(255,255,255,0.075);
}

.model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.model-card > div {
  min-width: 0;
  min-height: 116px;
  padding: 15px;
}

.model-card h3 {
  min-height: 42px;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.model-card p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.proof-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(139,92,246,0.13), transparent 30%),
    radial-gradient(circle at 82% 68%, rgba(244,114,182,0.11), transparent 34%);
}

.proof-split {
  grid-template-columns: minmax(320px, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
}

.proof-copy {
  display: grid;
  gap: 18px;
}

.tight-table {
  max-width: 520px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-auto-rows: 255px;
  gap: 14px;
}

.proof-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  overflow: hidden;
  background: #101018;
  min-height: 0;
}

.proof-card.tall-card {
  grid-row: span 2;
}

.image-lab-section {
  background: rgba(1,5,10,0.58);
}

.image-lab {
  display: grid;
  grid-template-columns: minmax(360px, 0.68fr) minmax(560px, 1.32fr);
  gap: 28px;
  align-items: center;
}

.image-lab-copy {
  display: grid;
  gap: 18px;
}

.image-lab-copy h2 {
  max-width: 560px;
  font-size: clamp(38px, 4.5vw, 64px);
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(205px, 13.5vw, 232px);
  gap: 12px;
}

.image-mosaic > * {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  background: #101018;
  min-width: 0;
}

.image-mosaic .wide-shot {
  grid-column: span 3;
  grid-row: auto;
  height: 100%;
}

.image-mosaic .studio-shot {
  object-position: center 54%;
}

.image-mosaic .source-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.58fr);
  align-items: center;
  gap: 18px;
  padding: 18px;
  isolation: isolate;
}

.image-mosaic .source-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("./assets/source-car-creator-web.jpg") center / cover no-repeat;
  filter: blur(20px) saturate(0.94) brightness(0.55);
  transform: scale(1.08);
}

.image-mosaic .source-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.12) 44%, rgba(0,0,0,0.58)),
    radial-gradient(circle at 68% 46%, rgba(139,92,246,0.22), transparent 36%);
}

.image-mosaic .source-frame figcaption {
  display: grid;
  gap: 8px;
  max-width: 330px;
  padding-left: 6px;
}

.image-mosaic .source-frame figcaption span {
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-mosaic .source-frame figcaption b {
  color: #fff;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.image-mosaic .source-frame img {
  width: 100%;
  height: calc(100% - 4px);
  margin-left: auto;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 42%;
  box-shadow: 0 18px 54px rgba(0,0,0,0.42);
}

.image-mosaic .source-shot {
  object-position: center 24%;
}

.image-mosaic .result-shot {
  object-position: center 30%;
}

.image-mosaic .motion-shot {
  object-position: center 33%;
}

.asset-mix-section {
  background:
    radial-gradient(circle at 15% 18%, rgba(96,165,250,0.11), transparent 32%),
    radial-gradient(circle at 82% 74%, rgba(139,92,246,0.13), transparent 35%),
    rgba(3,7,14,0.72);
}

.asset-mix-section .compact-head {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  align-items: end;
}

.asset-mix-section .compact-head p {
  max-width: 560px;
}

.asset-lanes {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.asset-lane {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  overflow: hidden;
  background: #101018;
}

.asset-lane.large-lane {
  grid-row: span 2;
}

.asset-lane img,
.asset-lane video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.asset-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 35%, rgba(0,0,0,0.82));
  pointer-events: none;
}

.pricing-band {
  background:
    radial-gradient(circle at 75% 18%, rgba(139,92,246,0.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.mini-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-price,
.account-strip {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    var(--panel);
}

.mini-price {
  min-height: 210px;
  padding: 22px;
}

.mini-price.featured {
  border-color: rgba(139,92,246,0.5);
  background:
    radial-gradient(circle at 88% 14%, rgba(244,114,182,0.24), transparent 38%),
    linear-gradient(180deg, rgba(139,92,246,0.26), rgba(255,255,255,0.03)),
    var(--panel-2);
}

.mini-price h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.mini-price h3 small {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.mini-price p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.mini-price-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.mini-price-link::after {
  content: "→";
  margin-left: 8px;
  color: var(--violet-2);
}

.account-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 24px;
}

.account-strip h3 {
  max-width: none;
  margin: 7px 0 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.account-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.motion-faq-section {
  padding-top: clamp(48px, 6vw, 82px);
  background:
    radial-gradient(circle at 18% 16%, rgba(96,165,250,0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 70%);
}

.motion-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.motion-faq-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025)),
    rgba(13,15,24,0.78);
}

.motion-faq-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.motion-faq-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 800;
}

.auth-wrap {
  width: min(1280px, 100%);
  grid-template-columns: minmax(340px, 0.7fr) minmax(460px, 0.9fr);
}

.auth-main {
  display: grid;
  gap: 24px;
}

.auth-card {
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(139,92,246,0.2), transparent 36%);
  pointer-events: none;
}

.auth-card > * {
  position: relative;
}

.oauth-stack {
  display: grid;
  gap: 10px;
  margin: 20px 0 18px;
}

.oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  background: rgba(0,0,0,0.28);
  font-weight: 900;
  text-decoration: none;
}

.auth-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.auth-visual {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  background: #101018;
}

.auth-visual img,
.auth-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.82));
}

.auth-visual-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.auth-visual-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 62px);
}

.auth-wrap {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(390px, 0.72fr) minmax(540px, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.auth-main {
  width: min(580px, 100%);
  margin: auto;
  padding: clamp(34px, 5vw, 72px) clamp(22px, 5vw, 76px);
  gap: 18px;
}

.auth-copy h1 {
  max-width: 560px;
  font-size: clamp(40px, 3.8vw, 60px);
  line-height: 0.98;
}

.auth-copy .lead {
  max-width: 530px;
}

.auth-card {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(10,12,19,0.86);
  box-shadow: 0 28px 90px rgba(0,0,0,0.32);
}

.auth-card .btn {
  width: 100%;
}

.auth-card form {
  gap: 10px;
  margin-top: 14px;
}

.auth-card .field input {
  min-height: 44px;
}

.auth-card .oauth-stack {
  margin: 14px 0;
}

.auth-visual {
  display: grid;
  place-items: center;
  min-height: auto;
  height: calc(100svh - 74px);
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  padding: clamp(30px, 5vw, 76px);
  background:
    radial-gradient(circle at 28% 20%, rgba(139,92,246,0.28), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(244,114,182,0.16), transparent 34%),
    #080a12;
}

.auth-visual-board::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 42px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
}

.auth-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(110px, 16vh, 165px);
  gap: 12px;
  width: min(740px, 100%);
  transform: rotate(-1.2deg);
}

.auth-board img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 24px 70px rgba(0,0,0,0.36);
}

.auth-board .auth-board-wide {
  grid-column: 1 / 7;
  grid-row: span 2;
}

.auth-board img:nth-child(2) {
  grid-column: 1 / 4;
}

.auth-board img:nth-child(3) {
  grid-column: 4 / 7;
}

.auth-board img:nth-child(4) {
  grid-column: 2 / 6;
}

.auth-board-library img:nth-child(4) {
  object-position: center 30%;
}

.auth-visual-copy {
  bottom: clamp(22px, 4vw, 56px);
  left: clamp(22px, 4vw, 56px);
  right: clamp(22px, 4vw, 56px);
  width: min(560px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  background: rgba(7,8,13,0.72);
  box-shadow: 0 20px 60px rgba(0,0,0,0.38);
  backdrop-filter: blur(18px);
}

.auth-visual-copy h2 {
  max-width: 480px;
  margin-top: 8px;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.register-page {
  overflow: hidden;
}

.register-page .auth-wrap {
  height: calc(100svh - 65px);
  min-height: calc(100svh - 65px);
  grid-template-columns: minmax(390px, 0.68fr) minmax(560px, 1fr);
}

.register-page .auth-main {
  align-content: center;
  gap: 14px;
  padding-top: clamp(18px, 3vh, 34px);
  padding-bottom: clamp(18px, 3vh, 34px);
}

.register-page .auth-copy {
  display: grid;
  gap: 12px;
}

.register-page .auth-copy h1 {
  max-width: 500px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 0.98;
}

.register-page .auth-copy .lead {
  max-width: 470px;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.42;
}

.register-page .auth-card {
  padding: 18px 20px 19px;
  border-radius: 24px;
}

.register-page .auth-card h2 {
  margin: 8px 0 6px;
  font-size: clamp(33px, 3.1vw, 46px);
  line-height: 0.98;
}

.register-page .auth-card p {
  font-size: 13px;
  line-height: 1.42;
}

.register-page .auth-card .oauth-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.register-page .oauth-btn {
  min-height: 42px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}

.register-page .auth-card form {
  gap: 8px;
  margin-top: 10px;
}

.register-page .field {
  gap: 5px;
}

.register-page .field input {
  min-height: 42px;
  border-radius: 13px;
}

.register-page .auth-card .btn {
  min-height: 44px;
}

.register-page .auth-note {
  margin-top: 9px;
  font-size: 12px;
}

.auth-visual-register {
  padding: clamp(24px, 4vw, 58px);
}

.auth-visual-register::after {
  display: none;
}

.register-page .auth-visual-copy {
  display: none;
}

.register-studio {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: calc(100svh - 185px);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 34px;
  overflow: hidden;
  background: #0d0f18;
  box-shadow: 0 34px 105px rgba(0,0,0,0.48);
}

.register-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,8,13,0.2), transparent 38%),
    linear-gradient(180deg, transparent 48%, rgba(7,8,13,0.82));
  pointer-events: none;
}

.register-studio > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.register-glass-panel {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 7px;
  width: min(430px, calc(100% - 40px));
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  background: rgba(7,8,13,0.62);
  backdrop-filter: blur(18px);
}

.register-glass-panel span {
  color: var(--violet-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.register-glass-panel strong {
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

@media (max-width: 1260px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .motion-flow {
    width: min(980px, 100%);
    margin: 0 auto;
  }

  .studio-hero {
    width: min(900px, 100%);
    margin: 0 auto;
  }

  .model-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .model-card {
    grid-template-rows: minmax(240px, 1fr) 116px;
    min-height: 360px;
  }

  .auth-wrap {
    grid-template-columns: minmax(360px, 0.82fr) minmax(460px, 1fr);
  }

  .auth-visual {
    padding: 30px;
  }

  .auth-board {
    grid-auto-rows: clamp(102px, 14vh, 145px);
  }

  .register-page .auth-wrap {
    grid-template-columns: minmax(350px, 0.7fr) minmax(480px, 1fr);
  }

  .register-page .auth-copy h1 {
    font-size: clamp(32px, 3vw, 44px);
  }

  .register-page .auth-card .oauth-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .proof-split,
  .image-lab {
    grid-template-columns: 1fr;
  }

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

  .image-mosaic .wide-shot {
    grid-column: span 2;
  }

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

  .asset-lane.large-lane {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 1060px) {
  .auth-wrap {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .auth-main {
    width: min(640px, 100%);
    margin: 0 auto;
    padding: 34px 18px 46px;
  }

  .auth-copy h1 {
    font-size: clamp(38px, 9vw, 54px);
  }

  .auth-visual {
    display: none;
  }

  .register-page {
    overflow-y: auto;
  }

  .register-page .auth-wrap {
    height: auto;
    min-height: calc(100svh - 58px);
  }

  .register-page .auth-main {
    padding-top: 20px;
    padding-bottom: 22px;
  }
}

@media (max-width: 740px) {
  .motion-topbar {
    min-height: 58px;
  }

  .hero-v2 {
    padding: 16px 14px 38px;
  }

  .hero-v2 .hero-copy {
    order: 1;
  }

  .motion-flow {
    order: 2;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    padding: 10px;
    border-radius: 24px;
    margin-bottom: 4px;
  }

  .flow-stage {
    grid-row: auto;
    min-height: 300px;
    border-radius: 18px;
  }

  .stage-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .stage-label b {
    font-size: 24px;
  }

  .stage-meter {
    display: none;
  }

  .flow-console {
    display: none;
  }

  .flow-grid {
    grid-template-columns: 0.8fr 1fr 0.84fr;
    gap: 8px;
    min-height: 345px;
  }

  .flow-card {
    border-radius: 18px;
  }

  .flow-source {
    height: 78%;
    transform: translateY(2px) rotate(-2deg);
  }

  .flow-motion {
    transform: translateY(-5px);
  }

  .flow-output {
    height: 80%;
    transform: translateY(20px) rotate(2deg);
  }

  .flow-status {
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    padding: 11px;
    border-radius: 18px;
  }

  .flow-status .render-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .flow-status .render-thumb {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .progress-pill {
    min-width: 46px;
    min-height: 30px;
    font-size: 11px;
  }

  .studio-hero {
    order: 1;
    min-height: 390px;
    margin-bottom: 4px;
  }

  .studio-hero::before {
    inset: 6% 0 6% 0;
    border-radius: 24px;
  }

  .studio-hero-bg {
    inset: 0 0 20% 18%;
    border-radius: 22px;
  }

  .studio-hero-clean .studio-hero-bg {
    inset: 0;
  }

  .studio-hero-clean .studio-hero-bg img {
    object-position: 55% center;
  }

  .source-card {
    left: 0;
    top: 9%;
    width: 38%;
    border-radius: 18px;
  }

  .motion-card {
    right: 0;
    top: 16%;
    width: 38%;
    border-radius: 18px;
  }


  .result-card {
    left: 20%;
    bottom: 0;
    width: 43%;
    border-radius: 18px;
  }

  .studio-queue {
    display: none;
  }

  .hero-v2 h1 {
    font-size: clamp(36px, 11.2vw, 50px);
  }

  .compact-head {
    grid-template-columns: 1fr;
  }

  .see-all {
    width: fit-content;
  }

  .model-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  .model-card {
    flex: 0 0 70vw;
    grid-template-rows: 260px;
    min-height: 260px;
    scroll-snap-align: start;
  }

  .model-card > div {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .proof-card.tall-card {
    grid-column: span 2;
    grid-row: auto;
  }

  .image-mosaic {
    grid-auto-rows: 150px;
  }

  .image-mosaic .motion-shot {
    grid-column: span 2;
  }

  .image-mosaic .source-frame {
    grid-template-columns: minmax(0, 0.85fr) minmax(160px, 0.7fr);
    gap: 12px;
    padding: 12px;
  }

  .image-mosaic .source-frame figcaption b {
    font-size: 24px;
  }

  .asset-mix-section .compact-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .asset-mix-section .compact-head h2 {
    max-width: 420px;
    font-size: clamp(38px, 12vw, 56px);
    line-height: 0.98;
  }

  .asset-mix-section .compact-head p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.45;
  }

  .asset-lanes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 0;
  }

  .asset-lane,
  .asset-lane.large-lane {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    min-height: 235px;
  }

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

  .mini-price-grid,
  .account-strip {
    grid-template-columns: 1fr;
  }

  .mini-price-grid {
    display: grid;
  }

  .account-strip {
    display: grid;
  }

  .account-strip h3 {
    white-space: normal;
  }

  .account-actions {
    justify-content: stretch;
  }

  .account-actions .btn {
    flex: 1;
  }

  .auth-wrap {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .register-page .auth-main {
    padding: 16px 14px 18px;
    gap: 12px;
  }

  .register-page .auth-copy {
    gap: 9px;
  }

  .register-page .auth-copy h1 {
    max-width: 340px;
    font-size: clamp(31px, 9vw, 40px);
  }

  .register-page .auth-copy .lead {
    display: none;
  }

  .register-page .auth-card {
    padding: 16px;
    border-radius: 22px;
  }

  .register-page .auth-card h2 {
    font-size: clamp(31px, 9vw, 38px);
  }

  .register-page .auth-card .oauth-stack {
    grid-template-columns: 1fr;
    margin: 10px 0;
  }

  .register-page .oauth-btn,
  .register-page .field input,
  .register-page .auth-card .btn {
    min-height: 41px;
  }
}

@media (max-width: 430px) {
  .motion-flow {
    min-height: auto;
  }

  .flow-grid {
    min-height: 308px;
  }

  .flow-status .render-copy span {
    display: none;
  }

  .studio-hero {
    min-height: 350px;
  }

  .model-card {
    flex-basis: 78vw;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .proof-card.tall-card {
    grid-column: auto;
    min-height: 245px;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .image-mosaic .wide-shot,
  .image-mosaic .motion-shot {
    grid-column: auto;
  }

  .image-mosaic .source-frame {
    grid-template-columns: 1fr;
    min-height: 280px;
  }

  .image-mosaic .source-frame figcaption {
    align-self: end;
    z-index: 2;
    max-width: 260px;
  }

  .image-mosaic .source-frame img {
    position: absolute;
    inset: 12px 12px auto auto;
    width: 48%;
    height: 55%;
  }

  .asset-mix-section .compact-head h2 {
    max-width: 330px;
    font-size: clamp(34px, 11.5vw, 44px);
  }

  .asset-mix-section .compact-head p {
    max-width: 330px;
  }

  .asset-lane,
  .asset-lane.large-lane {
    min-height: 220px;
  }

  .motion-faq-grid {
    grid-template-columns: 1fr;
  }

  .motion-faq-card {
    min-height: auto;
  }
}

.auth-clean-page {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 42%, rgba(92,246,200,0.08), transparent 31%),
    radial-gradient(circle at 25% 28%, rgba(139,92,246,0.10), transparent 34%),
    #050609;
}

.auth-clean-page .topbar {
  display: none;
}

.auth-clean-page .auth-wrap {
  width: 100%;
  max-width: none;
  height: 100svh;
  min-height: 620px;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 0.98fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.auth-clean-page .auth-main {
  width: min(448px, calc(100% - 48px));
  margin: auto;
  padding: 24px 0;
  gap: 22px;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: #fff;
  text-decoration: none;
}

.auth-brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 14px 34px rgba(139,92,246,0.24);
}

.auth-brand strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.auth-clean-page .auth-copy {
  display: grid;
  gap: 7px;
}

.auth-clean-page .auth-copy .eyebrow,
.auth-clean-page .auth-card .pill,
.auth-clean-page .auth-card h2,
.auth-clean-page .auth-card > p {
  display: none;
}

.auth-clean-page .auth-copy h1 {
  max-width: 440px;
  font-family: var(--sans);
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  text-transform: none;
}

.auth-clean-page .auth-copy .lead {
  max-width: 420px;
  color: rgba(247,244,255,0.58);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.auth-clean-page .auth-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.auth-clean-page .auth-card::before {
  display: none;
}

.auth-clean-page .auth-card .oauth-stack {
  gap: 12px;
  margin: 0 0 18px;
}

.auth-clean-page .oauth-btn {
  min-height: 52px;
  border-radius: 999px;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.96);
  color: #07080d;
  font-size: 15px;
  gap: 10px;
}

.auth-clean-page .oauth-btn.google-oauth {
  border-color: rgba(92,246,200,0.28);
  background:
    radial-gradient(circle at 12% 50%, rgba(92,246,200,0.18), transparent 24%),
    rgba(255,255,255,0.96);
}

.google-mark {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.auth-clean-page .oauth-btn + .oauth-btn {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.auth-clean-page .oauth-btn.is-disabled {
  opacity: 0.46;
  pointer-events: none;
}

.auth-divider {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
  color: rgba(247,244,255,0.38);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.auth-divider span {
  position: relative;
  padding: 0 12px;
  background: #050609;
}

.auth-clean-page .auth-card form {
  gap: 12px;
  margin-top: 0;
}

.auth-clean-page .field {
  gap: 7px;
}

.auth-clean-page .field label {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: rgba(247,244,255,0.62);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.auth-clean-page .field input {
  min-height: 54px;
  border-radius: 13px;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.065);
}

.auth-clean-page .field input::placeholder {
  color: rgba(247,244,255,0.46);
}

.auth-clean-page .auth-card .btn.primary {
  min-height: 52px;
  margin-top: 2px;
  color: #07080d;
  border-color: #fff;
  background: #fff;
  box-shadow: none;
}

.auth-text-action {
  width: fit-content;
  min-height: 0;
  margin: -2px 0 2px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(92,246,200,0.86);
  font: 800 12px/1.2 var(--sans);
  text-align: right;
  cursor: pointer;
}

.auth-text-action:disabled {
  opacity: 0.56;
  cursor: default;
}

.auth-action-card {
  display: grid;
  gap: 16px;
}

.auth-action-form {
  display: grid;
  gap: 12px;
}

.auth-action-form[hidden] {
  display: none;
}

.auth-clean-page .auth-note {
  margin: 14px 0 0;
  color: rgba(247,244,255,0.42);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.auth-switch {
  margin: 16px 0 0;
  color: rgba(247,244,255,0.48);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.auth-switch a {
  color: var(--green);
  text-decoration: none;
}

.auth-clean-page .auth-visual {
  display: grid;
  place-items: center;
  height: 100svh;
  min-height: 620px;
  padding: clamp(42px, 8vw, 120px);
  border-left: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 48% 42%, rgba(139,92,246,0.17), transparent 34%),
    radial-gradient(circle at 72% 32%, rgba(96,165,250,0.10), transparent 30%),
    radial-gradient(circle at 64% 76%, rgba(244,114,182,0.08), transparent 38%),
    rgba(0,0,0,0.10);
}

.auth-clean-page .auth-visual::after,
.auth-clean-page .auth-visual-board::before {
  display: none;
}

.auth-side-inner {
  display: grid;
  gap: 24px;
  width: min(520px, 100%);
}

.auth-side-inner h2 {
  max-width: 520px;
  font-family: var(--sans);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.auth-side-inner p {
  max-width: 460px;
  margin: 0;
  color: rgba(247,244,255,0.58);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
}

.auth-model-title {
  margin-top: 16px;
  color: rgba(247,244,255,0.42);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.auth-model-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  max-width: 470px;
  margin-top: 0;
}

.auth-model-list span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(247,244,255,0.55);
  font-size: 13px;
  font-weight: 900;
}

.model-logo {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.model-logo::before,
.model-logo::after {
  content: "";
  position: absolute;
}

.logo-kling::before {
  width: 16px;
  height: 16px;
  border: 5px solid rgba(247,244,255,0.82);
  border-right-color: rgba(96,165,250,0.72);
  border-radius: 50%;
  transform: rotate(-32deg);
}

.logo-sora::before,
.logo-sora::after {
  width: 11px;
  height: 13px;
  border-radius: 50%;
  background: rgba(247,244,255,0.80);
}

.logo-sora::before {
  left: 5px;
}

.logo-sora::after {
  right: 5px;
}

.logo-veo::before,
.logo-nano::before {
  width: 17px;
  height: 17px;
  background: rgba(247,244,255,0.78);
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.logo-nano::before {
  background: linear-gradient(135deg, rgba(247,244,255,0.82), rgba(167,139,250,0.72));
}

.logo-seedream::before {
  left: 6px;
  bottom: 5px;
  width: 4px;
  height: 13px;
  border-radius: 3px;
  background: #60a5fa;
  box-shadow: 6px -4px 0 #5cf6c8, 12px -8px 0 #8b5cf6;
}

.model-card-badge .logo-seedream {
  transform: translate(-3px, 3px) scale(0.9);
}

.logo-wan::before {
  width: 17px;
  height: 17px;
  border-radius: 6px;
  background: conic-gradient(from 20deg, #8b5cf6, #60a5fa, #f472b6, #8b5cf6);
  clip-path: polygon(50% 0, 62% 34%, 98% 36%, 69% 57%, 80% 94%, 50% 72%, 20% 94%, 31% 57%, 2% 36%, 38% 34%);
}

@media (max-height: 780px) and (min-width: 1061px) {
  .auth-clean-page .auth-main {
    gap: 16px;
  }

  .auth-clean-page .auth-copy h1 {
    font-size: 36px;
  }

  .auth-clean-page .auth-copy .lead {
    font-size: 14px;
  }

  .auth-clean-page .oauth-btn,
  .auth-clean-page .field input,
  .auth-clean-page .auth-card .btn.primary {
    min-height: 46px;
  }

  .auth-clean-page .auth-card .oauth-stack,
  .auth-divider {
    margin-bottom: 12px;
  }

  .auth-clean-page .auth-card form {
    gap: 9px;
  }

  .auth-clean-page .auth-note,
  .auth-switch {
    margin-top: 10px;
  }
}

@media (max-width: 1060px) {
  .auth-clean-page {
    overflow-y: auto;
  }

  .auth-clean-page .auth-wrap {
    height: auto;
    min-height: 100svh;
    grid-template-columns: 1fr;
  }

  .auth-clean-page .auth-main {
    width: min(350px, calc(100vw - 40px));
    padding: 28px 0;
  }

  .auth-clean-page .auth-visual {
    display: none;
  }
}

@media (max-width: 430px) {
  .auth-clean-page .auth-main {
    width: min(350px, calc(100vw - 40px));
    max-width: 350px;
    margin: auto;
    padding-right: 0;
    padding-left: 0;
    gap: 18px;
  }

  .auth-clean-page .auth-card,
  .auth-clean-page .auth-card form,
  .auth-clean-page .oauth-stack,
  .auth-clean-page .oauth-btn,
  .auth-clean-page .field,
  .auth-clean-page .field input,
  .auth-clean-page .auth-card .btn.primary {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .auth-clean-page .auth-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .auth-clean-page .auth-note {
    text-align: left;
  }
}

/* Provider marks shared by landing, pricing, login, and register. */
.model-logo,
.model-mark {
  position: relative;
  overflow: hidden;
}

.model-logo::before,
.model-logo::after,
.model-mark::before,
.model-mark::after {
  content: "";
  position: absolute;
  display: block;
}

.logo-kling::before,
.model-mark.kling::before {
  inset: 3px;
  background: center / contain no-repeat url("./assets/kling-logo-mark.png?v=20260521-kling-logo2");
}

.logo-kling::after,
.model-mark.kling::after {
  display: none;
}

.logo-seedream::before,
.model-mark.seedream::before,
.model-mark.seedance::before {
  left: 6px;
  bottom: 5px;
  width: 4px;
  height: 13px;
  border-radius: 4px;
  background: #4c8dff;
  box-shadow: 6px -4px 0 #8b5cf6, 12px 2px 0 #5cf6c8;
}

.logo-nano::before,
.logo-veo::before,
.model-mark.nano::before,
.model-mark.veo::before {
  width: 17px;
  height: 17px;
  background: #fff;
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
}

.logo-sora::before,
.model-mark.sora::before {
  width: 19px;
  height: 15px;
  border-radius: 9px 9px 8px 8px;
  background: #fff;
}

.logo-sora::after,
.model-mark.sora::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #171924;
  box-shadow: 8px 0 0 #171924;
  transform: translateX(-4px);
}

.logo-wan::before,
.model-mark.wan::before {
  width: 19px;
  height: 19px;
  background: conic-gradient(from 18deg, #5cf6c8, #4c8dff 30%, #8b5cf6 62%, #fff 78%, #5cf6c8);
  clip-path: polygon(50% 0, 61% 31%, 95% 18%, 79% 50%, 100% 79%, 64% 69%, 50% 100%, 36% 69%, 0 79%, 21% 50%, 5% 18%, 39% 31%);
}

.logo-wan::after,
.model-mark.wan::after {
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(50% 0, 61% 31%, 95% 18%, 79% 50%, 100% 79%, 64% 69%, 50% 100%, 36% 69%, 0 79%, 21% 50%, 5% 18%, 39% 31%);
}

/* Asset-backed provider marks. Keep this last so older shape rules cannot stack. */
.model-logo,
.model-mark {
  --provider-logo: none;
  background: #11131b !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.logo-kling,
.model-mark.kling {
  --provider-logo: url("./assets/kling-logo-mark.png?v=20260521-provider-assets1");
}

.logo-seedream,
.logo-seedance,
.model-mark.seedream,
.model-mark.seedance {
  --provider-logo: url("./assets/model-seed.svg?v=20260521-provider-assets1");
}

.logo-nano,
.model-mark.nano {
  --provider-logo: url("./assets/model-nano.svg?v=20260521-provider-assets1");
}

.logo-veo,
.model-mark.veo {
  --provider-logo: url("./assets/model-veo.svg?v=20260521-provider-assets1");
}

.logo-sora,
.model-mark.sora {
  --provider-logo: url("./assets/model-sora.svg?v=20260521-provider-assets1");
}

.logo-wan,
.model-mark.wan {
  --provider-logo: url("./assets/model-wan.svg?v=20260521-provider-assets1");
}

.logo-gpt,
.model-mark.gpt {
  --provider-logo: url("./assets/model-gpt.svg?v=20260523-openai3");
}

.logo-kling::before,
.logo-seedream::before,
.logo-seedance::before,
.logo-nano::before,
.logo-veo::before,
.logo-sora::before,
.logo-wan::before,
.logo-gpt::before,
.model-mark.kling::before,
.model-mark.seedream::before,
.model-mark.seedance::before,
.model-mark.nano::before,
.model-mark.veo::before,
.model-mark.sora::before,
.model-mark.wan::before,
.model-mark.gpt::before {
  inset: 3px !important;
  width: auto !important;
  height: auto !important;
  left: 3px !important;
  right: 3px !important;
  top: 3px !important;
  bottom: 3px !important;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  box-shadow: none !important;
  transform: none !important;
  background: center / contain no-repeat var(--provider-logo) !important;
}

.logo-kling::after,
.logo-seedream::after,
.logo-seedance::after,
.logo-nano::after,
.logo-veo::after,
.logo-sora::after,
.logo-wan::after,
.logo-gpt::after,
.model-mark::after {
  display: none !important;
  content: "" !important;
}

/* Public pricing layout correction */
.pricing-hero-section .pricing-title {
  justify-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.pricing-hero-section .pricing-title .billing-toggle {
  justify-self: center !important;
}

.price-card.featured .plan-badges {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  width: 100% !important;
}

.price-card.featured .plan-badges .pill,
.price-card.featured .plan-save-chip {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 24px !important;
  padding: 0 9px !important;
  border-radius: 999px !important;
  font-family: var(--mono) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.price-card.featured .plan-badges .pill {
  color: #fff !important;
  border: 1px solid rgba(167,139,250,0.35) !important;
  background: rgba(139,92,246,0.58) !important;
}

.price-card.featured .plan-save-chip {
  margin-left: auto !important;
  color: #201028 !important;
  border: 0 !important;
  background: linear-gradient(180deg, #e6c1ff, #cfa4ff) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 8px 24px rgba(197,144,255,0.16) !important;
}

.price-card.featured .plan-save-chip[hidden] {
  display: none !important;
}


/* LANDING-EST-V1 */
/* Landing mini-price: credits + img/clip estimate */
.mini-price-meta {
  margin: 14px 0 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mini-price-meta > b {
  display: block;
  margin-bottom: 9px;
  font: 800 15px/1 "Manrope", sans-serif;
  color: #fff;
  letter-spacing: -.01em;
}
.mpm-row, .credit-est {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.mpm-row > span, .credit-est > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: 700 12px/1 "Manrope", sans-serif;
  color: rgba(209,202,226,.72);
}
.ce-ico {
  width: 15px;
  height: 15px;
  flex: none;
  color: #a78bfa;
  opacity: .9;
}
/* Pricing page: estimate under the credit-count box */
.credit-est {
  margin: 10px 2px 0;
}
.price-card .credit-est > span { color: rgba(209,202,226,.78); }


/* PRICING-POLISH-V1 */
/* /pricing — unify credits + img/clips into one elevated value block */
.price-card .credit-count {
  margin: 18px 0 0;
  padding: 13px 14px 10px;
  border: 1px solid rgba(167,139,250,.28);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  font-size: 15px;
  background: linear-gradient(180deg, rgba(139,92,246,.12), rgba(255,255,255,.02));
}
.price-card .credit-est {
  margin: 0 0 2px;
  padding: 11px 14px 12px;
  border: 1px solid rgba(167,139,250,.28);
  border-top: 1px solid rgba(167,139,250,.14);
  border-radius: 0 0 13px 13px;
  background: rgba(139,92,246,.05);
  gap: 18px;
}
.price-card .credit-est > span {
  font: 800 12.5px/1 "Manrope", sans-serif;
  color: rgba(236,231,250,.92);
}
.price-card .credit-est .ce-ico { color: #a78bfa; opacity: 1; width: 16px; height: 16px; }
.price-card.featured .credit-count,
.price-card.featured .credit-est { border-color: rgba(167,139,250,.42); }

/* Tame the feature bullets into scannable supporting detail */
.price-card .features { margin: 16px 0 20px; gap: 8px; }
.price-card .features li {
  font-size: 12px;
  font-weight: 700;
  color: rgba(209,202,226,.6);
  letter-spacing: -.005em;
}
.price-card .features li::before { color: rgba(167,139,250,.7); margin-right: 7px; }

/* Card hover lift */
.price-card.plan-card {
  transition: transform 240ms cubic-bezier(.2,.7,.3,1), border-color 220ms ease, box-shadow 240ms ease;
}
.price-card.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 22px 54px rgba(0,0,0,.42);
}
.price-card.featured:hover { box-shadow: 0 28px 66px rgba(88,58,190,.32); }

/* Homepage mini-price — light touch only (it's a redirect teaser) */
.mini-price {
  transition: transform 220ms cubic-bezier(.2,.7,.3,1), border-color 220ms ease;
}
.mini-price:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.16); }
.mini-price-meta > b { color: #fff; }
.mpm-row .ce-ico { color: #a78bfa; opacity: 1; }


/* PRICING-FLOW-V1 */
/* Trust strip (replaces the wordy credit explainer) */
.trust-strip-section { padding: 6px 0 0; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-item {
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.022);
  transition: border-color 200ms ease, transform 200ms ease;
}
.trust-item:hover { border-color: rgba(167,139,250,.3); transform: translateY(-2px); }
.trust-ico {
  flex: none;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #a78bfa;
  background: rgba(139,92,246,.12);
}
.trust-ico svg { width: 20px; height: 20px; display: block; }
.trust-item strong {
  display: block;
  font: 800 14px/1.2 "Manrope", sans-serif;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.trust-item p {
  margin: 0;
  font: 500 12px/1.45 "Manrope", sans-serif;
  color: rgba(209,202,226,.6);
}
@media (max-width: 980px) { .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .trust-strip { grid-template-columns: 1fr; } }

/* Closing CTA */
.final-cta-section { padding: 18px 0 44px; }
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  padding: 34px 38px;
  border: 1px solid rgba(167,139,250,.3);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 0%, rgba(139,92,246,.22), transparent 52%),
    linear-gradient(180deg, rgba(167,139,250,.1), rgba(255,255,255,.02)),
    rgba(19,20,31,.96);
  box-shadow: 0 24px 60px rgba(88,58,190,.18);
}
.final-cta-copy h2 {
  margin: 0 0 6px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.035em;
  color: #fff;
}
.final-cta-copy p { margin: 0; color: rgba(209,202,226,.72); font-size: 14.5px; }
.final-cta-actions { display: flex; gap: 10px; flex: none; }
@media (max-width: 620px) {
  .final-cta { padding: 26px 24px; }
  .final-cta-actions { width: 100%; }
  .final-cta-actions .btn { flex: 1; }
}

/* PRICING-FLOW-V2 — tighten lower-funnel rhythm, kill band seams, debloat type */
/* The base `section` rule adds up to 112px top+bottom padding + a border-top seam.
   Override it on the lower funnel so the trust strip, FAQ and CTA read as one canvas. */
.trust-strip-section,
.motion-faq-section,
.final-cta-section { border-top: 0; background: none; }

.pricing-hero-section { padding-bottom: clamp(22px, 2.6vw, 34px); }
.trust-strip-section  { padding: clamp(22px, 2.8vw, 34px) clamp(18px, 5vw, 72px) 0; }
.motion-faq-section   { padding: clamp(42px, 5vw, 62px) clamp(18px, 5vw, 72px) clamp(30px, 3.4vw, 44px); }
.final-cta-section    { padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 6.5vw, 84px); }

/* Trust cards: fuller surface, brighter copy — stop reading as empty placeholders */
.trust-strip { gap: 16px; }
.trust-item {
  align-items: flex-start;
  padding: 20px 20px 22px;
  border-color: rgba(255,255,255,.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.016)),
    rgba(16,17,27,.72);
}
.trust-item strong { font-size: 14.5px; }
.trust-item p { color: rgba(209,202,226,.74); font-size: 12.5px; line-height: 1.5; }
.trust-ico { width: 42px; height: 42px; border-radius: 12px; }

/* FAQ: kill the oversized 72px headline, tighten the card grid */
.motion-faq-section h2 { font-size: clamp(28px, 3.2vw, 44px); line-height: 1.02; letter-spacing: -.04em; }
.motion-faq-section .section-head { align-items: end; margin-bottom: 22px; }
.motion-faq-section .section-copy { font-size: 15px; font-weight: 700; }
.motion-faq-card { min-height: 0; padding: 22px 22px 24px; border-radius: 18px; }
.motion-faq-card h3 { font-size: 18px; margin-bottom: 9px; letter-spacing: -.03em; }
.motion-faq-card p { font-size: 13.5px; font-weight: 600; color: rgba(209,202,226,.74); }

/* Closing CTA: constrain width + add presence so it is not a stretched-thin bar */
.final-cta {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 30px 38px;
}
.final-cta-copy h2 { font-size: clamp(22px, 2.1vw, 30px); }
.final-cta-copy p { font-size: 14px; }


/* PRICING-FLOW-V5 — polish the longer layout to the Wallaura vibe (premium panels, violet accents, depth) */

/* Soft depth glow behind the region so it is not a flat void */
.trust-strip-section { position: relative; }
.trust-strip-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: min(1100px, 94%);
  height: 560px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 58% 50% at 50% 28%, rgba(139,92,246,.1), transparent 70%);
}
.trust-strip-section .section-inner { position: relative; z-index: 1; }

/* Trust cards: premium panel surface matching the price cards, gradient icon tiles, hover lift */
.trust-strip { gap: 16px; }
.trust-item {
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.trust-item:hover {
  transform: translateY(-3px);
  border-color: rgba(167,139,250,.42);
  box-shadow: 0 18px 42px rgba(88,58,190,.22), inset 0 1px 0 rgba(255,255,255,.06);
}
.trust-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet-2), var(--violet));
  box-shadow: 0 8px 20px rgba(124,58,237,.38);
}
.trust-ico svg { width: 21px; height: 21px; }
.trust-item strong { font-size: 15px; color: #fff; margin-bottom: 5px; letter-spacing: -.02em; }
.trust-item p { color: var(--soft); font-size: 13px; line-height: 1.5; font-weight: 600; }

/* FAQ cards: same premium surface, brighter copy, hover */
.motion-faq-card {
  min-height: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform 220ms ease, border-color 220ms ease;
}
.motion-faq-card:hover { transform: translateY(-3px); border-color: rgba(167,139,250,.38); }
.motion-faq-card h3 { font-size: 18px; margin-bottom: 11px; color: #fff; letter-spacing: -.03em; line-height: 1.15; }
.motion-faq-card p { color: var(--soft); font-size: 13.5px; line-height: 1.55; font-weight: 600; }

/* Closing CTA: Wallaura panel + glow bloom for real presence */
.final-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(167,139,250,.34);
  background:
    radial-gradient(circle at 90% -20%, rgba(139,92,246,.32), transparent 56%),
    linear-gradient(180deg, rgba(167,139,250,.1), rgba(255,255,255,.02)),
    var(--panel);
  box-shadow: 0 30px 70px rgba(88,58,190,.24);
}
.final-cta::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(167,139,250,.26), transparent 70%);
}
.final-cta-copy, .final-cta-actions { position: relative; z-index: 1; }


/* PRICING-FLOW-V6 — CTA full content width + more separation above it */
.final-cta-section { padding-top: clamp(34px, 4vw, 58px); }
.final-cta {
  width: 100%;
  margin: 0;
  padding: 40px 46px;
}
.final-cta-copy h2 { font-size: clamp(25px, 2.3vw, 34px); }
@media (max-width: 620px) {
  .final-cta { padding: 28px 24px; }
}


/* PRICING-FLOW-V7 — comprehensive lower-funnel redesign */

/* 1. Tight section rhythm — kill the black void gaps */
.pricing-hero-section { padding-bottom: clamp(24px, 2.8vw, 36px); }
.trust-strip-section  { padding: clamp(20px, 2.4vw, 30px) clamp(18px, 5vw, 72px) clamp(30px, 3.4vw, 44px); }
.motion-faq-section   { padding: clamp(36px, 4.2vw, 56px) clamp(18px, 5vw, 72px) clamp(32px, 3.8vw, 50px); }
.final-cta-section    { padding: clamp(24px, 2.8vw, 36px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 90px); }

/* 2. FAQ header — drop the awkward side float, clean single-column stacked */
.motion-faq-section .section-head {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.motion-faq-section .section-head h2 { font-size: clamp(26px, 3vw, 42px); letter-spacing: -.042em; }
.motion-faq-section .section-copy {
  font-size: 14px;
  font-weight: 700;
  color: rgba(200,195,218,.6);
  max-width: 560px;
}

/* 3. FAQ 2×2 grid — visually distinct from the 4-col trust row above */
.motion-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.motion-faq-card {
  padding: 28px 26px 30px;
  border-radius: 20px;
}
.motion-faq-card h3 { font-size: 20px; line-height: 1.18; margin-bottom: 12px; }
.motion-faq-card p  { font-size: 14px; line-height: 1.58; }
@media (max-width: 640px) { .motion-faq-grid { grid-template-columns: 1fr; } }

/* 4. CTA — make it a real moment: tall, big type, strong presence */
.final-cta {
  padding: 56px 56px;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  background:
    radial-gradient(ellipse 80% 120% at 98% 110%, rgba(139,92,246,.45), transparent 55%),
    radial-gradient(ellipse 60% 90% at 2% -20%, rgba(96,165,250,.16), transparent 52%),
    linear-gradient(180deg, rgba(167,139,250,.12), rgba(255,255,255,.025)),
    var(--panel);
  border-color: rgba(167,139,250,.38);
  box-shadow: 0 36px 80px rgba(88,58,190,.28), inset 0 1px 0 rgba(255,255,255,.07);
}
.final-cta::after {
  right: -80px;
  bottom: -80px;
  top: auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,.22), transparent 68%);
}
.final-cta-copy { max-width: 640px; }
.final-cta-copy h2 {
  font-size: clamp(32px, 3.6vw, 54px);
  letter-spacing: -.048em;
  line-height: 1.0;
  margin-bottom: 10px;
}
.final-cta-copy p { font-size: 16px; color: rgba(209,202,226,.8); }
.final-cta-actions { gap: 12px; }
.final-cta-actions .btn { padding: 0 28px; height: 46px; font-size: 15px; }
@media (max-width: 620px) {
  .final-cta { padding: 36px 28px; }
  .final-cta-copy h2 { font-size: clamp(26px, 8vw, 38px); }
}


/* PRICING-FLOW-V8 — trust cards match hero width + sit tight below model access panel */

/* Match the wider section-inner used by the pricing hero so cards align edge-to-edge */
.trust-strip-section .section-inner {
  width: min(1460px, 100%);
}

/* Bring trust strip up tight against the model access panel */
.pricing-hero-section { padding-bottom: 8px !important; }
.trust-strip-section  { padding-top: 16px !important; }

/* AUTH-NAV-STATE — kill the logged-out -> logged-in nav flash (FOUC).
   data-auth is set pre-paint in <head> from a localStorage hint, then
   reconciled by public-auth.js against /motion/api/session. */
.nav-cta .cta-out { display: contents; }
.nav-cta .cta-in { display: none; }
html[data-auth="signed-in"] .nav-cta .cta-out { display: none; }
html[data-auth="signed-in"] .nav-cta .cta-in { display: contents; }
html[data-auth="signed-in"] .nav-login { display: none; }

/* LANDING-CONVERT-V1 — fast reveal (no ghost page) + hero CTA */
/* The old reveal hid sections behind a 0.82s blur fade with long stagger; scrollers saw blank panels. */
@media (prefers-reduced-motion: no-preference) {
  .motion-reveal-ready .reveal-item {
    filter: none;
    transform: translate3d(0, 10px, 0);
    transition:
      opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
      transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
    transition-delay: calc(var(--reveal-index, 0) * 22ms);
  }
  .motion-reveal-ready .hero-copy > .reveal-item,
  .motion-reveal-ready .motion-flow.reveal-item,
  .motion-reveal-ready .image-mosaic > .reveal-item,
  .motion-reveal-ready .model-card.reveal-item,
  .motion-reveal-ready .asset-lane.reveal-item,
  .motion-reveal-ready .mini-price.reveal-item,
  .motion-reveal-ready .motion-faq-card.reveal-item {
    transform: translate3d(0, 12px, 0);
    filter: none;
  }
  .motion-reveal-ready .reveal-item.is-visible { transform: translate3d(0, 0, 0); filter: none; }
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 4px 0 6px; }
.hero-actions .btn { height: 48px; padding: 0 26px; font-size: 15.5px; display: inline-flex; align-items: center; gap: 9px; }
.hero-actions .hero-cta { box-shadow: 0 14px 38px rgba(124, 58, 237, 0.42); }
.hero-actions .hero-cta i { font-style: normal; transition: transform 0.18s ease; }
.hero-actions .hero-cta:hover i { transform: translateX(3px); }
.hero-actions small { flex-basis: 100%; color: rgba(200, 195, 218, 0.55); font-size: 12.5px; font-weight: 700; }
@media (max-width: 640px) { .hero-actions .btn { flex: 1; justify-content: center; } }

/* LANDING-CONVERT-V2 — reveal animates position only; content is never hidden */
@media (prefers-reduced-motion: no-preference) {
  .motion-reveal-ready .reveal-item { opacity: 1; }
  .motion-reveal-ready .reveal-item.is-visible { opacity: 1; }
}


/* LANDING-DESIGN-V1 — visible elevation: gradient headline, marquee, card glow, aurora washes */

/* Headline: gradient keyword + tighter cinematic feel */
.hero-copy h1 .h1-grad {
  font-style: normal;
  background: linear-gradient(100deg, #a78bfa 0%, #ec4899 55%, #f59e0b 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(167, 139, 250, 0.35));
}

/* Hero atmosphere: deeper aurora bloom behind copy + mock */
.hero.hero-v2 { position: relative; overflow: hidden; }
.hero.hero-v2::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 50% at 18% 28%, rgba(139, 92, 246, 0.22), transparent 62%),
    radial-gradient(ellipse 36% 44% at 82% 62%, rgba(236, 72, 153, 0.10), transparent 60%),
    radial-gradient(ellipse 30% 36% at 60% 10%, rgba(34, 211, 238, 0.07), transparent 55%);
  animation: heroAurora 14s ease-in-out infinite alternate;
}
.hero.hero-v2 > * { position: relative; }
@keyframes heroAurora {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

/* Model marquee — infinite scrolling strip */
.model-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(167, 139, 250, 0.14);
  border-bottom: 1px solid rgba(167, 139, 250, 0.14);
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.07), rgba(236, 72, 153, 0.045), rgba(139, 92, 246, 0.07));
  padding: 13px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track span {
  color: rgba(233, 229, 245, 0.82);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-track i { color: #a78bfa; font-style: normal; font-size: 11px; opacity: 0.8; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Model cards: cinematic hover — media zoom + violet edge glow */
.model-card { position: relative; overflow: hidden; transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease; }
.model-card video, .model-card img { transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); }
.model-card:hover { transform: translateY(-6px); border-color: rgba(167, 139, 250, 0.55); box-shadow: 0 24px 54px rgba(88, 58, 190, 0.34); }
.model-card:hover video, .model-card:hover img { transform: scale(1.045); }
.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 20, 0.55));
  opacity: 0;
  transition: opacity 0.28s ease;
}
.model-card:hover::after { opacity: 1; }

/* Section aurora washes so the page is not one flat black slab */
.model-showcase { background: radial-gradient(ellipse 60% 46% at 50% 0%, rgba(139, 92, 246, 0.07), transparent 64%); }
.asset-mix-section { background: radial-gradient(ellipse 52% 44% at 12% 18%, rgba(34, 211, 238, 0.05), transparent 60%); }
.pricing-band { background: radial-gradient(ellipse 56% 50% at 88% 8%, rgba(236, 72, 153, 0.055), transparent 62%); }
.image-lab-section { background: radial-gradient(ellipse 54% 46% at 22% 0%, rgba(139, 92, 246, 0.065), transparent 60%); }

/* Section kickers: gradient tick for rhythm */
.section-head .kicker, .compact-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.section-head .kicker::before, .compact-head .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #a78bfa, #ec4899);
}

/* LANDING-DESIGN-V2 — lower page: featured ribbon, mosaic hovers, landing CTA band */
.mini-price.featured {
  position: relative;
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.25), 0 22px 52px rgba(88, 58, 190, 0.26);
  background:
    radial-gradient(circle at 85% 0%, rgba(139, 92, 246, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    var(--panel);
}
.mini-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 13px;
  border-radius: 999px;
  background: linear-gradient(100deg, #8b5cf6, #ec4899);
  color: #fff;
  font: 800 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.45);
}

/* Mosaic + toolkit tiles: same living hover as model cards */
.image-mosaic > * , .asset-lane {
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
}
.image-mosaic > *:hover, .asset-lane:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: 0 20px 46px rgba(88, 58, 190, 0.3);
}
.image-mosaic img, .image-mosaic video, .asset-lane img, .asset-lane video { transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); }
.image-mosaic > *:hover img, .image-mosaic > *:hover video, .asset-lane:hover img, .asset-lane:hover video { transform: scale(1.04); }

/* Landing closing CTA band (reuses pricing .final-cta styles; landing tweaks) */
.final-cta-section { padding: clamp(26px, 3vw, 44px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 90px); border-top: 0; background: none; }

/* PRICING-DESIGN-V1 — ribbon on featured card + toggle save hint */
.price-card.featured { position: relative; overflow: visible; }
.price-card.featured .mini-ribbon { top: -12px; }
.billing-option .bo-save { font-style: normal; margin-left: 6px; font-size: 10px; color: #4ade80; font-weight: 800; letter-spacing: 0.02em; }

/* gradient keyword works anywhere, not just the hero */
.h1-grad {
  font-style: normal;
  background: linear-gradient(100deg, #a78bfa 0%, #ec4899 55%, #f59e0b 110%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(167, 139, 250, 0.35));
}


/* VALUE-BANNER-V1 — price-leadership strip with shimmer */
.value-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 18px;
  padding: 15px 22px;
  border-radius: 16px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background:
    linear-gradient(100deg, rgba(139, 92, 246, 0.16), rgba(236, 72, 153, 0.10) 55%, rgba(245, 158, 11, 0.08)),
    rgba(16, 14, 26, 0.85);
  overflow: hidden;
}
.value-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-18deg);
  animation: vbShine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes vbShine { 0% { left: -160px; } 55% { left: 110%; } 100% { left: 110%; } }
.vb-flame {
  flex: none;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.45);
}
.vb-copy { display: grid; gap: 2px; min-width: 0; }
.vb-copy b { color: #fff; font-size: 15px; letter-spacing: -0.015em; }
.vb-copy span { color: rgba(220, 214, 238, 0.72); font-size: 12.5px; font-weight: 700; }
.vb-chip {
  flex: none;
  margin-left: auto;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.1);
  color: #86efac;
  font: 800 11px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .value-banner { flex-wrap: wrap; }
  .vb-chip { margin-left: 0; }
}

/* Featured pricing card: subtle scale presence on desktop */
@media (min-width: 980px) {
  .price-card.featured { transform: scale(1.025); }
  .price-card.featured:hover { transform: scale(1.025) translateY(-4px); }
}

/* PRICE-STATS-V1 — replaces the value banner: three big gradient stats, no box */
.value-banner { display: none; }
.price-stats { display: grid; justify-items: center; gap: 14px; margin: 4px 0 30px; }
.ps-kicker {
  color: var(--violet-2);
  font: 800 11.5px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ps-row { display: flex; align-items: center; gap: clamp(22px, 4vw, 52px); }
.ps-row > i { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, rgba(167,139,250,.4), transparent); }
.ps-stat { display: grid; justify-items: center; gap: 4px; }
.ps-stat b {
  font-family: var(--sans);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(100deg, #a78bfa, #ec4899 60%, #f59e0b 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ps-stat span {
  color: rgba(200, 195, 218, 0.62);
  font: 700 12px/1 var(--sans);
  letter-spacing: 0.02em;
}
@media (max-width: 560px) { .ps-row { gap: 18px; } .ps-row > i { height: 30px; } }

/* HERO-RAILS-V1 — symmetric vertical accent lines framing the hero */
.hero.hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 4%, rgba(167, 139, 250, 0.34) 22%, rgba(167, 139, 250, 0.34) 78%, transparent 96%) left 80px top / 1px 100% no-repeat,
    linear-gradient(180deg, transparent 4%, rgba(167, 139, 250, 0.34) 22%, rgba(167, 139, 250, 0.34) 78%, transparent 96%) right 80px top / 1px 100% no-repeat;
}
@media (max-width: 900px) { .hero.hero-v2::after { background: none; } }

/* HERO-RAILS-V1 removed — misread; kill the extra lines */
.hero.hero-v2::after { content: none; }
/* price-stats removed from markup; safety hide */
.price-stats { display: none; }

/* BG-SYMMETRY-V1 — mirror the top-left violet glow on the right so the
   54px grid overlay reads evenly on both sides of the hero */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(139,92,246,0.26), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(139,92,246,0.22), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(96,165,250,0.11), transparent 26%),
    radial-gradient(circle at 92% 9%, rgba(244,114,182,0.15), transparent 28%),
    linear-gradient(180deg, #07080d 0%, #0b0c13 45%, #07080d 100%);
}

/* EDGE-VIGNETTE-V1 — symmetric dark edges so the right matches the left frame */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(7, 8, 13, 0.78) 0,
    transparent 95px,
    transparent calc(100% - 95px),
    rgba(7, 8, 13, 0.78) 100%);
}
@media (max-width: 900px) { body::after { content: none; } }

/* PRICE-LINE-V1 — value message as one clean line, big gradient numbers, no box */
.price-stats { display: none; }
.price-line {
  margin: 2px 0 26px;
  text-align: center;
  color: rgba(214, 208, 232, 0.78);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.price-line span { color: #a78bfa; margin-right: 2px; }
.price-line b {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(100deg, #a78bfa, #ec4899 60%, #f59e0b 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0 1px;
}

/* EDGE-BLEND-V1 — no hard boundary line: grid fades out near both edges,
   vignette gets a wide smooth ramp. Both sides now blend like the right did. */
body::before {
  mask-image:
    linear-gradient(to bottom, #000 0%, transparent 76%),
    linear-gradient(to right, transparent 0, #000 170px, #000 calc(100% - 170px), transparent 100%);
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, transparent 76%),
    linear-gradient(to right, transparent 0, #000 170px, #000 calc(100% - 170px), transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
body::after {
  background: linear-gradient(90deg,
    rgba(7, 8, 13, 0.72) 0,
    rgba(7, 8, 13, 0.3) 70px,
    transparent 170px,
    transparent calc(100% - 170px),
    rgba(7, 8, 13, 0.3) calc(100% - 70px),
    rgba(7, 8, 13, 0.72) 100%);
}

/* BG-CLEAN-V1 — symmetric background, no edge tricks at all.
   Removes the vignette + grid edge-mask experiments and replaces the
   asymmetric top-left glow with mirrored glows, so neither side can
   show a boundary line. */
body::after { content: none; }
body::before {
  mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 76%);
  mask-composite: add;
  -webkit-mask-composite: source-over;
}
body {
  background:
    radial-gradient(ellipse 52% 34% at 50% 4%, rgba(139, 92, 246, 0.21), transparent 70%),
    radial-gradient(circle at 10% 12%, rgba(139, 92, 246, 0.16), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(139, 92, 246, 0.16), transparent 32%),
    radial-gradient(circle at 80% 22%, rgba(244, 114, 182, 0.08), transparent 28%),
    linear-gradient(180deg, #07080d 0%, #0b0c13 45%, #07080d 100%);
}

/* AURORA-REMOVE-V1 — the hero aurora was clipped by the hero box, creating the
   vertical seam at the container edge (visible on the left, faint on the right).
   Body-level symmetric glows already provide the color; remove the clipped layer. */
.hero.hero-v2::before { content: none; }


/* MAXOUT-V1 — final consumer polish: living CTA, footer, details */

/* Smooth anchor scrolling + brand selection color */
html { scroll-behavior: smooth; }
::selection { background: rgba(139, 92, 246, 0.45); color: #fff; }

/* Primary CTAs feel alive: gradient drift + soft glow breathing */
.hero-actions .hero-cta, .final-cta-actions .btn.primary {
  background: linear-gradient(110deg, #8b5cf6, #7c3aed 45%, #a855f7 90%);
  background-size: 180% 100%;
  animation: ctaDrift 5s ease-in-out infinite alternate;
}
@keyframes ctaDrift {
  from { background-position: 0% 0; box-shadow: 0 14px 38px rgba(124, 58, 237, 0.38); }
  to { background-position: 100% 0; box-shadow: 0 16px 46px rgba(168, 85, 247, 0.5); }
}
@media (prefers-reduced-motion: reduce) { .hero-actions .hero-cta, .final-cta-actions .btn.primary { animation: none; } }

/* Pricing card checkmarks: violet, crisp */
.price-card .features li::before { color: #a78bfa; font-weight: 900; }

/* Focus rings on brand color (keyboard users) */
a:focus-visible, button:focus-visible { outline: 2px solid rgba(167, 139, 250, 0.8); outline-offset: 2px; border-radius: 6px; }

/* Footer v2 — real footer instead of a bare strip */
.footer.footer-v2 {
  display: block;
  padding: clamp(36px, 5vw, 56px) clamp(18px, 5vw, 72px) 26px;
  border-top: 1px solid rgba(167, 139, 250, 0.14);
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  width: min(1320px, 100%);
  margin: 0 auto 30px;
}
.footer-brand { max-width: 320px; display: grid; gap: 10px; align-content: start; }
.footer-logo { color: #fff; font-weight: 900; font-size: 17px; letter-spacing: -0.02em; }
.footer-brand p { margin: 0; color: rgba(200, 195, 218, 0.6); font-size: 13px; line-height: 1.55; }
.footer-cols { display: flex; gap: clamp(34px, 6vw, 86px); flex-wrap: wrap; }
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer-col b { color: rgba(233, 229, 245, 0.9); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.footer-col a { color: rgba(200, 195, 218, 0.62); font-size: 13.5px; text-decoration: none; transition: color 0.15s ease; }
.footer-col a:hover { color: #cdb9ff; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(200, 195, 218, 0.45);
  font-size: 12px;
}

/* SOURCE-MAP-V1 — mosaic tiles map to the section promise with label chips */
.image-mosaic figure.mini-source { position: relative; margin: 0; overflow: hidden; }
.image-mosaic figure.mini-source img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-source figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(10, 8, 18, 0.72);
  backdrop-filter: blur(8px);
  color: #ece8f8;
  font: 800 11px/1 var(--sans);
  letter-spacing: 0.02em;
}

/* TOPUP-STRIP-V1 — surface top-up packs on the public pricing page */
.topup-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(139, 92, 246, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(14, 13, 23, 0.6);
}
.topup-copy { display: grid; gap: 3px; }
.topup-copy b { color: #fff; font-size: 15px; letter-spacing: -0.015em; }
.topup-copy span { color: rgba(206, 200, 224, 0.62); font-size: 12.5px; font-weight: 700; }
.topup-chips { display: flex; gap: 9px; flex-wrap: wrap; }
.topup-chip {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 76px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.16s ease, transform 0.16s ease;
}
.topup-chip:hover { border-color: rgba(167, 139, 250, 0.5); transform: translateY(-2px); }
.topup-chip b { color: #fff; font-size: 14.5px; line-height: 1; }
.topup-chip i { font-style: normal; color: #a78bfa; font: 800 11.5px/1 var(--mono); }
.topup-chip.popular { border-color: rgba(167, 139, 250, 0.5); background: rgba(139, 92, 246, 0.1); }
.topup-chip.popular::after {
  content: "Best value";
  position: absolute;
  top: -8px;
  right: -6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: linear-gradient(100deg, #8b5cf6, #ec4899);
  color: #fff;
  font: 800 8.5px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 760px) { .topup-strip { justify-content: center; text-align: center; } }

/* PRICING-TIDY-V1 — harmonize type scale under the plan cards */
/* Top-up strip: bigger, balanced */
.topup-strip { padding: 20px 26px; gap: 26px; }
.topup-copy { gap: 4px; }
.topup-copy b { font-size: 17px; }
.topup-copy span { font-size: 13px; }
.topup-chips { gap: 10px; }
.topup-chip { min-width: 86px; padding: 11px 16px; gap: 3px; }
.topup-chip b { font-size: 16px; }
.topup-chip i { font-size: 12px; }

/* Included-models panel: calm the shouting headline to match siblings */
.included-models-panel { padding: 26px; }
.included-models-copy h2 { font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -0.04em; }
.included-models-copy p { font-size: 13.5px; font-weight: 600; color: rgba(206, 200, 224, 0.66); }
.included-model-list > * { font-size: 14px; }

/* Trust strip: match the same scale */
.trust-item strong { font-size: 16px; }
.trust-item p { font-size: 13px; color: rgba(206, 200, 224, 0.68); }
.trust-item { padding: 22px; }

/* PRICING-TIDY-V2 — toggle save-text contrast + kill the featured-card scale lift */
.billing-option.is-active .bo-save { color: #0b7a44; }
@media (min-width: 980px) {
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
}


/* PRICING-TIDY-V3 — save pill, top-up callout, section life */

/* Save tag is its own tinted pill — readable on dark AND on the white active pill */
.billing-option .bo-save {
  display: inline-block;
  background: rgba(74, 222, 128, 0.14);
  color: #4ade80;
  padding: 3px 8px;
  border-radius: 999px;
  margin-left: 7px;
  line-height: 1.1;
}
.billing-option.is-active .bo-save {
  background: rgba(21, 128, 61, 0.16);
  color: #15803d;
}

/* Top-up strip reads as a violet callout, chips are clickable */
.topup-strip {
  border: 1px solid rgba(167, 139, 250, 0.22);
  background: linear-gradient(120deg, rgba(139, 92, 246, 0.10), rgba(18, 14, 32, 0.55) 55%);
}
a.topup-chip {
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}
a.topup-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.55);
  background: rgba(139, 92, 246, 0.12);
}
a.topup-chip.popular { border-color: rgba(192, 132, 252, 0.6); }

/* "On every plan" tag in the included-models panel */
.every-plan-tag {
  display: inline-block;
  width: fit-content;
  margin: 8px 0 2px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: rgba(74, 222, 128, 0.08);
  color: #6ee7a0;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.included-model-list span { transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease; }
.included-model-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.45);
  background: rgba(139, 92, 246, 0.12);
}

/* Trust + FAQ cards respond on hover */
.trust-item { transition: transform 0.18s ease, border-color 0.18s ease; }
.trust-item:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, 0.35); }
.motion-faq-card { transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease; }
.motion-faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(139, 92, 246, 0.06);
}

/* Final CTA microcopy */
.final-cta-note {
  margin: 14px 0 0;
  color: rgba(200, 195, 218, 0.55);
  font-size: 13px;
  letter-spacing: 0.01em;
}


/* PRICING-TIDY-V4 — top-up strip hierarchy + readable chips */
.topup-strip {
  padding: 22px 28px;
  gap: 28px;
}
.topup-kicker {
  display: inline-block;
  width: fit-content;
  color: #b9a4ff;
  font: 800 11px/1 var(--mono, ui-monospace);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.topup-copy b {
  color: #fff;
  font-size: clamp(18px, 1.6vw, 21px) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.topup-copy .topup-sub {
  color: rgba(206, 200, 224, 0.72) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45;
  max-width: 42ch;
}
/* chips: number + unit + price, roomier */
.topup-chips { gap: 11px; }
a.topup-chip {
  min-width: 96px;
  padding: 13px 16px 11px;
  gap: 1px;
}
a.topup-chip b { font-size: 18px !important; letter-spacing: -0.02em; }
a.topup-chip u {
  text-decoration: none;
  color: rgba(206, 200, 224, 0.5);
  font: 700 9.5px/1 var(--mono, ui-monospace);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
a.topup-chip i { font-size: 13px !important; margin-top: 3px; }
a.topup-chip.popular b { color: #fff; }
a.topup-chip.popular i { color: #c084fc; }


/* PRICING-TIDY-V5 — align lower sections to the pricing-hero width (1460) */
.trust-strip-section .section-inner,
.motion-faq-section .section-inner,
.final-cta-section .section-inner { width: min(1460px, 100%); }


/* MADE-SHOWCASE-V1 — "your credits turn into this" gallery above FAQ */
.made-section { padding: clamp(26px, 3vw, 44px) clamp(18px, 5vw, 72px) 0; }
.made-section .section-inner { width: min(1460px, 100%); margin: 0 auto; }
.made-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.made-head h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.042em;
  line-height: 1.02;
  color: #fff;
}
.made-sub {
  margin: 0 0 6px;
  color: rgba(206, 200, 224, 0.66);
  font-size: 15px;
  font-weight: 700;
}
.made-sub b { color: #c0a9ff; }
.made-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.made-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}
.made-tile img, .made-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.made-tile:hover img, .made-tile:hover video { transform: scale(1.045); }
.made-tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 34px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(5, 4, 10, 0.9));
  display: grid;
  gap: 3px;
}
.made-tile figcaption b { color: #fff; font-size: 13.5px; letter-spacing: -0.01em; }
.made-tile figcaption span { color: rgba(206, 200, 224, 0.68); font: 700 10.5px/1.2 var(--mono, ui-monospace); letter-spacing: 0.04em; text-transform: uppercase; }
.made-tile .made-live {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(5, 4, 10, 0.62);
  backdrop-filter: blur(6px);
  color: #fff;
  font: 800 9.5px/1 var(--mono, ui-monospace);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.made-tile .made-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: madePulse 1.6s ease-in-out infinite;
}
@keyframes madePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (max-width: 980px) {
  .made-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .made-tile { min-width: 56vw; scroll-snap-align: center; }
}
@media (max-width: 560px) { .made-tile { min-width: 70vw; } }


/* FAQ-V2 — icon chips + subtle per-card accent tints */
.motion-faq-card { position: relative; overflow: hidden; }

/* icon badge top-right */
.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  margin-bottom: 16px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.22);
  color: #b09eff;
  flex-shrink: 0;
}
.faq-icon svg { width: 17px; height: 17px; }

/* per-card accent line at top */
.motion-faq-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  border-radius: 2px 2px 0 0;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.motion-faq-card:hover::before { opacity: 1; }

.faq-card-credits::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.faq-card-cancel::before  { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.faq-card-start::before   { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.faq-card-expire::before  { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.faq-card-post::before    { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
.faq-card-models::before  { background: linear-gradient(90deg, #8b5cf6, #06b6d4); }

/* icon tint matches accent */
.faq-card-cancel  .faq-icon { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.22); color: #6ee7b7; }
.faq-card-start   .faq-icon { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.22); color: #fbbf24; }
.faq-card-expire  .faq-icon { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.22); color: #93c5fd; }
.faq-card-post    .faq-icon { background: rgba(236,72,153,.12); border-color: rgba(236,72,153,.22); color: #f9a8d4; }
.faq-card-models  .faq-icon { background: rgba(6,182,212,.12); border-color: rgba(6,182,212,.22); color: #67e8f9; }


/* FAQ-V3 — clean numbered editorial, no icon boxes */
/* reset V2 icon stuff */
.faq-icon { display: none; }
.motion-faq-card::before { display: none !important; }

/* css counter numbering */
.motion-faq-grid { counter-reset: faq; }
.motion-faq-card { counter-increment: faq; padding: 26px 28px 28px; }
.motion-faq-card::after {
  content: "0" counter(faq);
  position: absolute;
  top: 22px; right: 22px;
  color: rgba(167, 139, 250, 0.25);
  font: 800 12px/1 var(--mono, ui-monospace);
  letter-spacing: 0.1em;
}
.motion-faq-card h3 {
  font-size: 17px !important;
  line-height: 1.22 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.025em !important;
  color: #fff !important;
  padding-right: 28px;
}
.motion-faq-card p {
  font-size: 13.5px !important;
  color: rgba(200, 195, 218, 0.64) !important;
  line-height: 1.5 !important;
}
.motion-faq-card:hover {
  border-color: rgba(167, 139, 250, 0.3) !important;
  background: rgba(139, 92, 246, 0.06) !important;
  transform: none !important;
}
.motion-faq-card:hover::after { color: rgba(167, 139, 250, 0.55); }


/* SPACING-V1 — more breathing room above the gallery */
.made-section { padding-top: clamp(52px, 5.5vw, 76px) !important; }


/* SPACING-V2 — kill the inherited section border-top seam on the gallery */
.made-section { border-top: 0 !important; background: none !important; }


/* PUBLIC-MOBILE-V1 — landing source-builder reference-frame hero: stack text over a full-width
   image on mobile (was a 2-col grid clamped to a ~150px row, clipping the heading). */
@media (max-width: 760px) {
  .image-mosaic .source-frame {
    grid-column: 1 / -1 !important;
    grid-row: span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    height: 100% !important;
    gap: 14px !important;
    padding: 18px !important;
  }
  .image-mosaic .source-frame figcaption {
    max-width: none !important;
    flex: 0 0 auto !important;
    padding-left: 0 !important;
  }
  .image-mosaic .source-frame figcaption b { font-size: 26px !important; line-height: 1.04 !important; }
  .image-mosaic .source-frame img {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 150px !important;
    margin: 0 !important;
  }
}


/* PUBLIC-MOBILE-V2 — pricing top-up chips: center the wrapped rows so 3+2 isn't left-lopsided */
@media (max-width: 760px) {
  .topup-strip .topup-chips { justify-content: center !important; gap: 9px !important; }
  .topup-strip a.topup-chip, .topup-strip .topup-chip { min-width: 100px !important; }
}


/* PUBLIC-MOBILE-V3 — source-frame hero: image FILLS the tile (was height:auto -> short at narrow
   widths, leaving empty blurred space). Also keep the hero tile a sensible height on phones. */
@media (max-width: 760px) {
  .image-mosaic { grid-auto-rows: 168px !important; }
  .image-mosaic .source-frame img {
    flex: 1 1 0 !important;
    height: 100% !important;
    min-height: 0 !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center 42% !important;
  }
}


/* PUBLIC-MOBILE-V4 — source-frame hero becomes a clean image card: full-bleed image with the
   title overlaid on a top-down scrim (always readable over the busy neon). Replaces V1/V3 stack. */
@media (max-width: 760px) {
  .image-mosaic .source-frame {
    display: block !important;
    position: relative !important;
    grid-column: 1 / -1 !important;
    grid-row: span 2 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .image-mosaic .source-frame img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center 52% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .image-mosaic .source-frame figcaption {
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    z-index: 3 !important;
    display: grid !important;
    gap: 7px !important;
    max-width: none !important;
    padding: 17px 18px 40px !important;
    margin: 0 !important;
    background: linear-gradient(180deg, rgba(6,4,14,0.92) 0%, rgba(6,4,14,0.55) 52%, transparent 100%) !important;
  }
  .image-mosaic .source-frame figcaption span { color: #c4b5fd !important; }
  .image-mosaic .source-frame figcaption b {
    font-size: 25px !important;
    line-height: 1.06 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,0.5) !important;
  }
}


/* CREATOR-PILL-V1 — the Creator tier pill lives in .plan-badges; keep it outlined to match
   the Starter/Studio/Business pills (was inheriting the featured solid-violet style). */
.price-card.featured .plan-badges {
  justify-content: flex-start !important;
  gap: 8px !important;
}
.price-card.featured .plan-badges .pill {
  color: #c8b7ff !important;
  border: 1px solid rgba(167,139,250,0.3) !important;
  background: rgba(139,92,246,0.18) !important;
}
.price-card.featured .plan-save-chip { margin-left: auto !important; }
/* HERO-EYEBROW-V3: text-only eyebrow, gradient on "Lowest price", tucked close to the H1. */
.hero-copy .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  gap: 7px;
  margin: 0 0 -13px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #b6aadf;
  font: 800 13.5px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}
.hero-copy .hero-eyebrow .he-spark {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  font-size: 13px;
  line-height: 1;
  background: linear-gradient(95deg, #5ef0c0, #b79cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .hero-eyebrow .he-price {
  font-weight: 900;
  background: linear-gradient(95deg, #5ef0c0 0%, #7cc7ff 48%, #b79cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .hero-eyebrow b { font-weight: 900; }
@media (max-width: 760px) {
  .hero-copy .hero-eyebrow {
    margin-bottom: -9px;
    font-size: 12px;
    white-space: normal;
  }
}

/* LP28 marketing polish (2026-06-16): hero microcopy contrast + billing toggle hover */
.hero-actions small { color: rgba(200, 195, 218, 0.72); }
.billing-option:not(.is-active):hover { color: #fff; background: rgba(255, 255, 255, 0.06); }

/* HERO-SEAM-REMOVE-V1 - drop the centered before/after divider line over the hero clip */
.flow-stage::before { display: none; }
