:root {
  --bg: #0b0d12;
  --bg-alt: #121620;
  --bg-soft: #141a24;
  --card: #171c26;
  --card-alt: #1a2130;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #a2a9bd;
  --accent: #5ce1ff;
  --accent-2: #8b6cff;
  --accent-soft: rgba(92, 225, 255, 0.18);
  --shadow: 0 30px 80px rgba(5, 10, 20, 0.5);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1200px;
  --nav-height: 72px;
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(70% 120% at 20% 10%, rgba(128, 84, 255, 0.55) 0%, rgba(33, 20, 68, 0.25) 45%, transparent 70%),
    radial-gradient(80% 120% at 75% 15%, rgba(60, 164, 197, 0.45) 0%, rgba(10, 24, 38, 0.4) 48%, transparent 72%),
    linear-gradient(180deg, #0b0d12 0%, #090a11 28%, #07080d 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.landing-body {
  background-color: var(--bg);
}

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

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

button {
  font-family: inherit;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.landing {
  position: relative;
  overflow: hidden;
}

.landing::before,
.landing::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
}

.landing::before {
  top: -180px;
  right: -160px;
  background: rgba(92, 225, 255, 0.35);
}

.landing::after {
  bottom: -220px;
  left: -140px;
  background: rgba(139, 108, 255, 0.35);
}

.landing > * {
  position: relative;
  z-index: 1;
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 12, 18, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-nav.is-scrolled {
  background: rgba(10, 12, 18, 0.92);
  box-shadow: 0 20px 50px rgba(5, 10, 20, 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-height);
  position: relative;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 25px rgba(92, 225, 255, 0.4);
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}

.brand-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ae374;
  box-shadow: 0 0 8px rgba(58, 227, 116, 0.7);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__link {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav__link.is-active,
.nav__link:hover {
  color: var(--text);
}

.nav__cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(92, 225, 255, 0.25);
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.hero {
  min-height: 100vh;
  padding: 90px 0 60px;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  justify-items: center;
  width: min(1400px, 96%);
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}

.hero-band-image {
  margin-top: -50px;
}

.hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  /* gap: 18px; */
  white-space: nowrap;
}

.headline-mark-image {
  display: block;
  width: clamp(90px, 12vw, 150px);
  height: auto;
}

.headline-text {
  background: linear-gradient(120deg, #d3c4ff 0%, #a97bff 45%, #7dd8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 14px 35px rgba(120, 160, 255, 0.25);
}

.hero-band-image {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

.hero-sub {
  margin: 0;
  font-size: 1.1rem;
  color: #cfd6ee;
  max-width: 540px;
}

.hero-sub-strong {
  display: block;
  font-weight: 700;
  text-align: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(95, 214, 255, 0.95), rgba(150, 97, 255, 0.95), rgba(255, 117, 205, 0.95));
  color: #f7f4ff;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 50px rgba(138, 92, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 65px rgba(138, 92, 255, 0.45);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: #d2d9ef;
  font-size: 0.95rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust-icon {
  width: 18px;
  height: 18px;
  stroke: #6ff2c5;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(111, 242, 197, 0.35));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, rgba(92, 225, 255, 0.9), rgba(139, 108, 255, 0.9));
  color: #0b0d12;
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(92, 225, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(92, 225, 255, 0.35);
}

.hero-btn {
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 20px 60px rgba(148, 86, 255, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.hero__collage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.features {
  padding: 40px 0 110px;
  background: rgba(10, 12, 20, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.features__inner {
  width: min(1400px, 96%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.features__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.collage-card {
  position: relative;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(23, 28, 38, 0.9), rgba(26, 33, 48, 0.95));
  box-shadow: var(--shadow);
}

.collage-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(12, 16, 26, 0.7);
  aspect-ratio: 16 / 9;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s ease;
  will-change: transform;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  padding: 22px;
  height: 100%;
}

.feature-page {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(120% 120% at 10% 10%, rgba(114, 82, 255, 0.45), transparent 55%),
    radial-gradient(120% 120% at 90% 0%, rgba(70, 142, 214, 0.35), transparent 60%),
    linear-gradient(180deg, rgba(15, 16, 30, 0.95), rgba(10, 12, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(5, 10, 20, 0.4);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature-i2v {
  grid-template-columns: 1.05fr 1.15fr;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.feature-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.2) 0, transparent 2px),
    radial-gradient(1px 1px at 120px 90px, rgba(255, 255, 255, 0.18) 0, transparent 1px),
    radial-gradient(1.5px 1.5px at 200px 60px, rgba(255, 255, 255, 0.16) 0, transparent 1.5px);
  background-size: 240px 240px;
  opacity: 0.55;
  pointer-events: none;
}

.feature-page > * {
  position: relative;
  z-index: 1;
}

.feature-ui-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-i2v-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-top: -6px;
}

.feature-ui-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 16px 40px rgba(5, 10, 20, 0.35);
}

.feature-ui-image--primary {
  width: 68%;
}

.feature-ui-image--secondary {
  width: 56%;
  margin-left: 6%;
}

.feature-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(5, 10, 20, 0.35);
}

.feature-portrait--rounded {
  border-radius: 32px;
}

.feature-portrait--i2v {
  position: absolute;
  left: 40%;
  top: 56%;
  transform: translate(-35%, -45%);
  width: 26%;
  z-index: 2;
}

.feature-portrait-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-portrait--i2v .feature-portrait-video {
  object-position: top;
}

.feature-portrait-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.feature-copy h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: #d7c6ff;
}

.feature-i2v-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4.4rem);
  line-height: 1.05;
  background: linear-gradient(120deg, #d9c9ff 0%, #b07cff 45%, #79d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: right;
  padding-right: 50px;
}

.feature-i2v-right {
  margin-left: auto;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

.feature-copy-box {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(140, 116, 255, 0.5);
  background: rgba(30, 22, 54, 0.7);
  color: #d8def4;
  line-height: 1.5;
}

.feature-copy-box--i2v {
  border-color: rgba(155, 122, 255, 0.8);
}

.feature-t2i {
  grid-template-columns: 1.15fr 0.85fr;
}

.feature-t2i-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-t2i-dots {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}

.feature-dot {
  width: 18px;
  height: 18px;
  background: rgba(198, 168, 255, 0.9);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  box-shadow: 0 0 12px rgba(170, 128, 255, 0.5);
}

.feature-dot:nth-child(1) {
  background: rgba(230, 225, 255, 0.95);
}

.feature-dot:nth-child(2) {
  background: rgba(187, 140, 255, 0.85);
}

.feature-dot:nth-child(3) {
  background: rgba(146, 96, 255, 0.9);
}

.feature-t2i-image {
  width: 82%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 18px 45px rgba(5, 10, 20, 0.35);
}

.feature-t2i-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-t2i-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  background: linear-gradient(120deg, #d9c9ff 0%, #b07cff 45%, #79d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-copy-box--t2i {
  border-radius: 24px;
  border-color: rgba(155, 122, 255, 0.7);
  background: rgba(28, 20, 52, 0.75);
}

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

.feature-c2i-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-c2i-title-wrap {
  position: relative;
}

.feature-c2i-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: #e2c9ff;
}

.feature-c2i-dots {
  position: absolute;
  top: -6px;
  right: -56px;
  display: flex;
  gap: 8px;
}

.feature-copy-box--c2i {
  border-radius: 22px;
  border-color: rgba(155, 122, 255, 0.7);
  background: rgba(28, 20, 52, 0.75);
  width: 80%;
}

.feature-c2i-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-c2i-ring {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 10px solid rgba(116, 88, 255, 0.35);
  border-top-color: rgba(116, 88, 255, 0.7);
  border-right-color: rgba(116, 88, 255, 0.7);
  box-shadow: 0 0 40px rgba(116, 88, 255, 0.25);
  pointer-events: none;
}

.feature-c2i-image {
  width: 70%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 18px 45px rgba(5, 10, 20, 0.35);
  position: relative;
  z-index: 1;
}

.feature-tts {
  grid-template-columns: 1fr 1fr;
}

.feature-tts-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-tts-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  color: #e2c9ff;
}

.feature-copy-box--tts {
  border-radius: 26px;
  border-color: rgba(155, 122, 255, 0.7);
  background: rgba(28, 20, 52, 0.75);
}

.feature-tts-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.feature-tts-dots {
  display: flex;
  gap: 8px;
}

.feature-tts-image {
  width: 85%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 18px 45px rgba(5, 10, 20, 0.35);
}

.feature-ingest {
  grid-template-columns: 1.05fr 0.95fr;
}

.feature-ingest-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.feature-ingest-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: #e2c9ff;
}

.feature-copy-box--ingest {
  border-radius: 26px;
  border-color: rgba(155, 122, 255, 0.7);
  background: rgba(28, 20, 52, 0.75);
}

.feature-ingest-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.feature-ingest-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 0;
  box-shadow: 0 18px 45px rgba(5, 10, 20, 0.35);
}

.feature-ingest-dots {
  display: flex;
  gap: 8px;
  padding-left: 12px;
}

.feature-voice {
  grid-template-columns: 1.2fr 0.8fr;
}

.feature-copy-slide {
  grid-template-columns: 1fr 1fr;
}

.feature-voice-panel {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 20, 0.82);
}

.feature-voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.feature-copy-panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 20, 0.82);
}

.feature-copy-panel h3 {
  margin: 12px 0 8px;
  font-size: 1.4rem;
  color: #f1edff;
}

.feature-copy-panel p {
  margin: 0;
  color: #cfd6ee;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 16, 26, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 225, 255, 0.5);
}

.carousel-icon {
  width: 18px;
  height: 18px;
  stroke: #dce4ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.collage-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #d7def3;
  background: rgb(53 53 84 / 62%);
  border: 1px solid rgba(33, 37, 63, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.collage-video {
  width: 220px;
  top: 0;
  left: 40px;
}

.video-frame {
  margin-top: 12px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(92, 225, 255, 0.25), rgba(139, 108, 255, 0.3));
}

.video-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 60%);
}

.video-overlay {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 12px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.video-progress span {
  display: block;
  width: 70%;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}

.collage-voice {
  width: 260px;
  left: 0;
  bottom: 140px;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 54px;
  margin-top: 12px;
}

.waveform span {
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 255, 255, 0.3));
  animation: wave 1.8s ease-in-out infinite;
}

.waveform span:nth-child(odd) {
  height: 28px;
  animation-delay: 0.2s;
}

.waveform span:nth-child(even) {
  height: 42px;
  animation-delay: 0.6s;
}

.waveform span:nth-child(3n) {
  height: 34px;
  animation-delay: 0.4s;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.play-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(92, 225, 255, 0.6);
}

.collage-image {
  width: 260px;
  right: 0;
  top: 40px;
}

.image-frame {
  margin-top: 12px;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(139, 108, 255, 0.25));
  position: relative;
  overflow: hidden;
}

.image-shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2), transparent 55%);
}

.image-caption {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.collage-text {
  width: 280px;
  right: 30px;
  bottom: 0;
}

.text-tag {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent);
}

.hero__badges {
  position: relative;
  justify-content: center;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 18, 26, 0.8);
  font-size: 0.8rem;
  color: var(--muted);
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
}

.pill.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.proof-bar {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(15, 18, 26, 0.6);
}

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

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.proof-label {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.info-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
}

.info-card h3 {
  margin-top: 0;
  font-family: var(--font-display);
}

.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.system {
  background: rgba(15, 18, 26, 0.5);
}

.system__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.system-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 12px;
}

.system-list li {
  padding-left: 20px;
  position: relative;
}

.system-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.system__visual {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(26, 33, 48, 0.9), rgba(18, 22, 32, 0.95));
  overflow: hidden;
}

.system-lines {
  width: 100%;
  height: 100%;
  stroke: rgba(92, 225, 255, 0.35);
  stroke-width: 1.4;
}

.system-node {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.system-node.core {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  background: rgba(92, 225, 255, 0.2);
  border-color: rgba(92, 225, 255, 0.4);
}

.system-node.n1 { top: 14%; left: 12%; }
.system-node.n2 { top: 14%; right: 12%; }
.system-node.n3 { bottom: 22%; left: 10%; }
.system-node.n4 { bottom: 20%; right: 12%; }
.system-node.n5 { bottom: 6%; left: 50%; transform: translateX(-50%); }

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

.template-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card-alt);
  display: grid;
  gap: 12px;
}

.template-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.template-card p {
  color: var(--muted);
  margin: 0;
}

.template-meta {
  display: flex;
  gap: 8px;
}

.template-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--muted);
}

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

.testimonial-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(20, 24, 34, 0.9);
  display: grid;
  gap: 18px;
}

.quote {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.name {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.result {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(92, 225, 255, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.pricing {
  background: rgba(15, 18, 26, 0.6);
}

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

.pricing-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--card);
  display: grid;
  gap: 20px;
}

.pricing-card.featured {
  border-color: rgba(92, 225, 255, 0.5);
  box-shadow: 0 30px 80px rgba(92, 225, 255, 0.15);
}

.pricing-header h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  font-size: 2rem;
  font-family: var(--font-display);
}

.price small {
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "-";
  color: var(--accent);
  margin-right: 8px;
}

.cta-final {
  padding-bottom: 120px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(92, 225, 255, 0.12), rgba(139, 108, 255, 0.18));
  box-shadow: 0 30px 70px rgba(5, 10, 20, 0.45);
}

.cta-panel h2 {
  font-family: var(--font-display);
  margin: 0 0 10px;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 60px 0 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.95);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  color: var(--muted);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
}

.footer-title {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.footer-link {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

[data-section] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.6);
  }
  50% {
    transform: scaleY(1);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .system__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav__menu {
    position: absolute;
    top: 100%;
    right: 4%;
    left: 4%;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 14, 20, 0.95);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav__menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__toggle {
    display: inline-flex;
  }

  .hero__grid {
    gap: 32px;
  }

  .collage-carousel {
    aspect-ratio: auto;
  }

  .feature-page {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    height: auto;
    overflow: visible;
  }

  .feature-voice {
    grid-template-columns: 1fr;
  }

  .feature-t2i-right {
    align-items: center;
    text-align: center;
  }

  .feature-t2i-image {
    width: 100%;
  }

  .feature-c2i-title-wrap {
    text-align: center;
  }

  .feature-c2i-dots {
    position: static;
    justify-content: center;
    margin-top: 8px;
  }

  .feature-c2i-right {
    width: 100%;
  }

  .feature-c2i-ring {
    width: 140%;
    height: 140%;
    right: -20%;
  }

  .feature-c2i-image {
    width: 80%;
  }

  .feature-tts-right {
    align-items: center;
  }

  .feature-tts-image {
    width: 100%;
  }

  .feature-ingest-left {
    align-items: center;
    text-align: center;
  }

  .feature-ingest-right {
    align-items: center;
  }

  .feature-ingest-dots {
    padding-left: 0;
  }

  .feature-portrait {
    max-width: 280px;
    margin: 0 auto;
  }

  .feature-portrait--i2v {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 52%;
    max-width: 230px;
    margin: 0;
  }

  .feature-ui-image--primary,
  .feature-ui-image--secondary {
    width: 100%;
    margin-left: 0;
  }

  .feature-i2v-left {
    align-items: center;
  }

  .feature-ui-image {
    max-width: 280px;
  }

  .feature-ui-image--secondary {
    width: 82%;
  }

  .feature-i2v-right {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .feature-i2v-title {
    text-align: center;
    padding-right: 0;
  }

  .carousel-track,
  .carousel-slide {
    height: auto;
  }

  .card-grid,
  .templates-grid,
  .testimonials-grid,
  .pricing-grid,
  .footer__grid,
  .proof-bar__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .hero {
    padding-top: 70px;
  }

  .hero-headline {
    font-size: clamp(2rem, 7vw, 3rem);
    letter-spacing: 0.05em;
  }

  .headline-mark-image {
    width: clamp(72px, 22vw, 120px);
  }

  .hero-cta {
    width: 100%;
  }

  .hero-trust {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
