:root {
  --background-primary: #000000;
  --background-secondary: #0f0f0f;
  --background-third: #1b1b1b;
  --background-forth: #363636;
  --background-alpha-primary: rgba(255, 255, 255, 0.08);
  --background-alpha-hover: rgba(255, 255, 255, 0.16);
  --background-alpha-disabled: rgba(255, 255, 255, 0.04);
  --text-white-primary: #ffffff;
  --text-white-secondary: rgba(255, 255, 255, 0.6);
  --text-white-third: rgba(255, 255, 255, 0.4);
  --text-dark-primary: #000000;
  --success: #4ac97e;
  --error: #d0302f;
  --warning: #e26f20;
  --credit: #ffd147;
  --border-primary: rgba(255, 255, 255, 0.12);
  --border-secondary: rgba(255, 255, 255, 0.06);
  --button-primary-normal: #f2f2f2;
  --button-primary-hover: #dadada;
  --button-secondary-normal: rgba(255, 255, 255, 0.08);
  --button-secondary-hover: rgba(255, 255, 255, 0.16);
  --gradient-create: linear-gradient(90deg, #ffa052 0%, #e046a4 45%, #6851eb 100%);
  --font-app: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-amount: "Inconsolata", "Inter", system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.15, 0.75, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% 0%, rgba(104, 81, 235, 0.18), transparent 34rem),
    var(--background-primary);
  color: var(--text-white-primary);
  font-family: var(--font-app);
  font-size: 14px;
  line-height: 19px;
}

body::before {
  content: "";
  position: fixed;
  inset: 56px 0 auto;
  height: 1px;
  background: var(--gradient-create);
  opacity: 0.5;
  pointer-events: none;
  z-index: 30;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 1px solid var(--text-white-primary);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 56px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--border-primary);
  backdrop-filter: blur(32px);
}

.brand,
.desktop-nav,
.hero-actions,
.hero-stats,
.segment-tabs,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  white-space: nowrap;
}

.brand b {
  font-weight: 700;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--gradient-create);
}

.desktop-nav {
  gap: 24px;
  color: var(--text-white-secondary);
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a,
.header-cta,
.btn,
.tab {
  transition: background 160ms var(--ease-smooth), color 160ms var(--ease-smooth), transform 160ms var(--ease-smooth);
}

.desktop-nav a:hover {
  color: var(--text-white-primary);
}

.header-cta,
.btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.header-cta,
.btn-secondary {
  background: var(--button-secondary-normal);
  color: var(--text-white-primary);
  border: 1px solid var(--border-secondary);
  backdrop-filter: blur(32px);
}

.header-cta:hover,
.btn-secondary:hover {
  background: var(--button-secondary-hover);
}

.btn-gradient {
  background: var(--gradient-create);
  color: var(--text-white-primary);
}

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

main {
  overflow: hidden;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: 48px;
  align-items: center;
  padding-top: 64px;
}

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.04;
  font-weight: 700;
}

.hero-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--text-white-secondary);
  font-size: 18px;
  line-height: 28px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  gap: 12px;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

.hero-stats div {
  min-width: 132px;
  padding: 16px;
  border: 1px solid var(--border-secondary);
  border-radius: 16px;
  background: var(--background-alpha-primary);
  backdrop-filter: blur(32px);
}

.hero-stats dt {
  font-family: var(--font-amount);
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--text-white-third);
  font-size: 12px;
  line-height: 17px;
}

.hero-panel {
  position: relative;
  padding: 1px;
  border-radius: 24px;
  background: var(--gradient-create);
}

.batch-console {
  padding: 20px;
  border-radius: 23px;
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid var(--border-primary);
  backdrop-filter: blur(32px);
}

.console-top {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}

.console-top span {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--background-alpha-hover);
}

.console-top span:first-child {
  background: var(--warning);
}

.console-top span:nth-child(2) {
  background: var(--credit);
}

.console-top span:nth-child(3) {
  background: var(--success);
}

.product-url,
.variant-grid div,
.output-stack article,
.workflow-steps article,
.capability-grid article,
.question-grid article,
.pilot-card,
.pricing-card,
.success-grid article,
.fit-grid article,
.faq-list details,
.sample-grid article,
.final-cta {
  border: 1px solid var(--border-secondary);
  background: var(--background-alpha-primary);
}

.product-url {
  padding: 14px 16px;
  border-radius: 16px;
}

.product-url span,
.variant-grid span,
.output-stack small,
.workflow-steps span,
.fine-print,
.disclaimer {
  color: var(--text-white-third);
  font-size: 12px;
  line-height: 17px;
}

.product-url strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.variant-grid div {
  min-height: 72px;
  padding: 12px;
  border-radius: 12px;
}

.variant-grid b {
  display: block;
  margin-top: 8px;
}

.batch-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.batch-flow span {
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--background-third);
  font-size: 12px;
  font-weight: 700;
}

.batch-flow i {
  height: 1px;
  background: var(--border-primary);
}

.output-stack {
  display: grid;
  gap: 10px;
}

.output-stack article {
  min-height: 76px;
  padding: 14px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: center;
}

.output-stack span,
.icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--background-alpha-hover);
  color: var(--text-white-primary);
  font-family: var(--font-amount);
  font-size: 12px;
  font-weight: 700;
}

.output-stack strong,
.output-stack small {
  grid-column: 2;
}

.video-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 36px;
  align-items: center;
  padding-top: 0;
}

.tutorial-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  background: var(--background-secondary);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.16;
  font-weight: 700;
}

.section-heading p:last-child,
.final-cta p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-white-secondary);
  font-size: 16px;
  line-height: 23px;
}

.capability-grid,
.question-grid,
.workflow-steps,
.pilot-grid,
.fit-grid,
.success-grid,
.sample-grid {
  display: grid;
  gap: 16px;
}

.question-grid {
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid {
  grid-template-columns: repeat(4, 1fr);
}

.capability-grid article,
.question-grid article,
.workflow-steps article,
.pilot-card,
.pricing-card,
.success-grid article,
.fit-grid article,
.faq-list details,
.sample-grid article {
  border-radius: 16px;
}

.question-grid article {
  min-height: 176px;
  padding: 20px;
}

.capability-grid article {
  min-height: 238px;
  padding: 20px;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.capability-grid h3,
.workflow-steps h3,
.fit-grid h3,
.sample-grid h3 {
  margin-top: 18px;
}

.capability-grid p,
.question-grid p,
.workflow-steps p,
.segment-panel p,
.success-grid p,
.sample-grid p,
.pricing-card p {
  margin: 10px 0 0;
  color: var(--text-white-secondary);
}

.workflow-steps {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-steps article {
  padding: 24px;
}

.workflow-steps span {
  font-family: var(--font-amount);
  font-weight: 700;
  color: var(--credit);
}

.segment-tabs {
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  white-space: nowrap;
  cursor: pointer;
  background: var(--button-secondary-normal);
  color: var(--text-white-secondary);
}

.tab:hover,
.tab.is-active {
  background: var(--button-secondary-hover);
  color: var(--text-white-primary);
}

.segment-panel {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-primary);
  background: var(--background-secondary);
}

.segment-panel img,
.sample-grid img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-secondary);
  object-fit: cover;
}

.segment-panel img {
  aspect-ratio: 16 / 10;
}

.segment-panel ul,
.fit-grid ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.segment-panel li,
.fit-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--text-white-secondary);
}

.segment-panel li::before,
.fit-grid li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--success);
}

.pilot-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.success-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
}

.pilot-card,
.pricing-card,
.success-grid article,
.fit-grid article {
  padding: 24px;
}

.pilot-equation {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pilot-equation span,
.pilot-equation strong {
  min-height: 76px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  background: var(--background-third);
  color: var(--text-white-secondary);
}

.pilot-equation b,
.pilot-equation strong {
  color: var(--text-white-primary);
  font-family: var(--font-amount);
  font-size: 24px;
  line-height: 32px;
}

.timeline {
  margin: 0;
  padding-left: 20px;
  color: var(--text-white-secondary);
}

.timeline li + li {
  margin-top: 10px;
}

.timeline b {
  color: var(--text-white-primary);
}

.price-table {
  margin: 20px 0 14px;
  border: 1px solid var(--border-primary);
  border-radius: 12px;
  overflow: hidden;
}

.price-table div {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
}

.price-table div + div {
  border-top: 1px solid var(--border-secondary);
}

.price-table span,
.price-table b {
  padding: 12px;
  min-width: 0;
}

.price-table span:not(:first-child),
.price-table b:not(:first-child) {
  font-family: var(--font-amount);
  color: var(--text-white-primary);
}

.price-table b {
  background: var(--background-third);
}

.fit-grid {
  grid-template-columns: repeat(2, 1fr);
}

.fit-watch li::before {
  background: var(--warning);
}

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

.sample-grid article {
  padding: 14px;
}

.sample-grid img {
  aspect-ratio: 16 / 11;
}

.sample-grid h3 {
  margin-left: 2px;
}

.sample-grid p {
  margin-left: 2px;
  font-size: 12px;
  line-height: 17px;
}

.disclaimer {
  margin: 16px 0 0;
}

.sample-filter {
  display: flex;
  gap: 8px;
  margin: 24px 0 16px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.sample-tab {
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  background: var(--button-secondary-normal);
  color: var(--text-white-secondary);
  transition: background 160ms var(--ease-smooth), color 160ms var(--ease-smooth);
}

.sample-tab:hover,
.sample-tab.is-active {
  background: var(--button-secondary-hover);
  color: var(--text-white-primary);
}

.sample-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sample-video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border-secondary);
  border-radius: 16px;
  background: var(--background-alpha-primary);
}

.sample-video-card.is-hidden {
  display: none;
}

.sample-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 420px;
  object-fit: cover;
  background: var(--background-secondary);
  border-bottom: 1px solid var(--border-secondary);
}

.sample-video-card div {
  padding: 14px;
}

.sample-video-card span {
  color: var(--text-white-third);
  font-size: 12px;
  line-height: 17px;
  font-weight: 700;
}

.sample-video-card h3 {
  margin-top: 6px;
}

.sample-video-card p {
  margin: 6px 0 0;
  color: var(--text-white-secondary);
  font-size: 12px;
  line-height: 17px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 18px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 700;
}

.faq-list summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--background-alpha-primary);
  color: var(--text-white-secondary);
  flex: 0 0 auto;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 0 18px;
  max-width: 760px;
  color: var(--text-white-secondary);
}

.final-cta {
  margin-bottom: 80px;
  padding: 48px;
  border-radius: 24px;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border-secondary);
  color: var(--text-white-third);
  font-size: 12px;
  line-height: 17px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .video-band,
  .segment-panel,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .capability-grid,
  .question-grid,
  .workflow-steps,
  .success-grid,
  .sample-grid,
  .sample-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading.compact {
    margin-bottom: 12px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0 16px;
  }

  .brand {
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
    padding: 64px 0;
  }

  .hero {
    padding-top: 48px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 23px;
  }

  .hero-stats div {
    min-width: calc(50% - 6px);
  }

  .variant-grid,
  .capability-grid,
  .question-grid,
  .workflow-steps,
  .fit-grid,
  .success-grid,
  .sample-grid,
  .sample-video-grid,
  .pilot-equation {
    grid-template-columns: 1fr;
  }

  .batch-flow {
    grid-template-columns: 1fr;
  }

  .batch-flow i {
    display: none;
  }

  .final-cta {
    padding: 28px;
  }

  .site-footer {
    width: min(100% - 32px, 1180px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
