:root {
  --bg-main: #000000;
  --bg-secondary: #070a10;
  --text-main: #f7fbff;
  --text-soft: rgba(229, 238, 255, 0.76);
  --text-muted: rgba(219, 228, 245, 0.58);
  --card: linear-gradient(180deg, rgba(15, 20, 34, 0.72), rgba(8, 11, 20, 0.56));
  --card-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(200, 160, 255, 0.14);
  --border-strong: rgba(255, 79, 216, 0.22);
  --green: #86e8ff;
  --mint: #7bd7ff;
  --cyan: #00d2ff;
  --purple: #9d50bb;
  --magenta: #ff4fd8;
  --orange: #f59e0b;
  --gradient-omni: linear-gradient(90deg, #00d2ff 0%, #9d50bb 52%, #ff4fd8 100%);
  --gradient-omni-soft: linear-gradient(
    135deg,
    rgba(0, 210, 255, 0.18),
    rgba(157, 80, 187, 0.16),
    rgba(255, 79, 216, 0.14)
  );
  --glass-fill: rgba(12, 8, 28, 0.42);
  --glass-blur: blur(22px) saturate(1.45);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 116px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #000000;
}

body::before {
  display: none;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.scene-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.scene-streak {
  position: absolute;
  left: -18%;
  width: 136%;
  height: 2px;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.7;
}

.scene-streak--cyan {
  top: 14%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 210, 255, 0.15) 18%, #00d2ff 50%, rgba(0, 210, 255, 0.15) 82%, transparent 100%);
  transform: rotate(-7deg);
  animation: streak-drift 16s ease-in-out infinite;
}

.scene-streak--magenta {
  top: 38%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 79, 216, 0.12) 20%, #ff4fd8 48%, #9d50bb 72%, transparent 100%);
  transform: rotate(5deg);
  animation: streak-drift 18s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.scene-streak--center {
  top: 6%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d2ff, #9d50bb, #ff4fd8, transparent);
  filter: blur(1px);
  animation: streak-pulse 11s ease-in-out infinite;
}

.scene-orb {
  display: none;
}

@keyframes streak-drift {
  0%,
  100% {
    transform: translateX(-6%) rotate(-7deg);
    opacity: 0.45;
  }

  50% {
    transform: translateX(10%) rotate(-4deg);
    opacity: 0.9;
  }
}

@keyframes streak-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.92);
  }

  50% {
    opacity: 0.95;
    transform: scaleX(1.04);
  }
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -20px) scale(1.08);
  }

  66% {
    transform: translate(-18px, 14px) scale(0.94);
  }
}

.site-header,
main,
.section,
.cookie-banner {
  position: relative;
  z-index: 2;
}

.ambient {
  display: none;
}

.ambient-a {
  top: 84px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: rgba(0, 210, 255, 0.14);
}

.ambient-b {
  top: 220px;
  right: 8%;
  width: 340px;
  height: 340px;
  background: rgba(157, 80, 187, 0.14);
}

.ambient-c {
  top: 1080px;
  left: 50%;
  width: 360px;
  height: 360px;
  background: rgba(255, 79, 216, 0.1);
  transform: translateX(-50%);
}

.site-header,
.section {
  width: var(--content-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  margin-top: 18px;
  background:
    linear-gradient(180deg, rgba(18, 12, 32, 0.72), rgba(8, 6, 16, 0.55)),
    rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(200, 160, 255, 0.16);
  border-radius: 20px;
  backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 44px rgba(0, 0, 0, 0.28);
}

.brand {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.top-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.top-nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #f8fbff;
  text-shadow: 0 0 16px rgba(70, 207, 255, 0.22);
}

.header-cta {
  padding: 11px 17px;
  border-radius: 999px;
  border: 1px solid rgba(126, 182, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(84, 126, 255, 0.26), rgba(70, 207, 255, 0.18)),
    rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 1px rgba(91, 126, 255, 0.06),
    0 14px 28px rgba(41, 92, 255, 0.18);
}

.header-cta-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-header__tools {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  justify-self: end;
  border: 1px solid rgba(164, 190, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 999px;
}

.section {
  padding: 40px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 42px;
  padding-top: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #7ee9ff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.marketplace-copy h2,
.cta-panel h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.1rem);
  max-width: 9.5ch;
}

.accent-text {
  background: var(--gradient-omni);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.18));
}

.hero-text,
.section-heading p,
.marketplace-copy p,
.cta-panel p,
.benefit-card p,
.step-card p,
.mock-card p,
.feature-label,
.prompt-card span {
  color: #f8fbff;
}

.hero-text {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn,
.feature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover,
.feature-link:hover,
.btn:focus-visible,
.feature-link:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #f8fbff;
  border: 1px solid rgba(255, 79, 216, 0.24);
  background: var(--gradient-omni);
  box-shadow:
    0 0 24px rgba(0, 210, 255, 0.2),
    0 0 32px rgba(255, 79, 216, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(164, 190, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 28, 0.46);
  color: var(--text-main);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-market {
  color: #201404;
  background: linear-gradient(135deg, #ffd77c, var(--orange));
  box-shadow: 0 18px 40px rgba(245, 158, 11, 0.18);
}

.large {
  min-height: 54px;
  padding: 0 26px;
}

.hero-points {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.hero-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(70, 207, 255, 0.96), rgba(139, 92, 246, 0.92));
  box-shadow: 0 0 18px rgba(70, 207, 255, 0.55);
}

.hero-mockup {
  position: relative;
}

.mockup-window {
  position: relative;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid rgba(176, 194, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(9, 14, 25, 0.82), rgba(6, 9, 16, 0.76));
  backdrop-filter: blur(28px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(102, 132, 255, 0.05);
}

.mockup-window::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(70, 207, 255, 0.22),
    rgba(92, 121, 255, 0.1),
    rgba(139, 92, 246, 0.22)
  );
  z-index: -1;
  opacity: 0.9;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.search-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(164, 190, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 18, 30, 0.56);
  color: var(--text-soft);
  font-size: 0.92rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mockup-grid,
.feature-grid,
.prompt-grid {
  display: grid;
  gap: 16px;
}

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

.mock-card,
.benefit-card,
.feature-card,
.step-card,
.showcase-card,
.prompt-card,
.stat-card,
.cta-panel,
.marketplace-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 0 0 1px rgba(108, 134, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 26px 28px -24px rgba(70, 207, 255, 0.34),
    0 34px 52px -34px rgba(46, 110, 255, 0.28);
  backdrop-filter: blur(16px);
  isolation: isolate;
}

.mock-card > *,
.benefit-card > *,
.feature-card > *,
.step-card > *,
.showcase-card > *,
.prompt-card > *,
.marketplace-copy > * {
  position: relative;
  z-index: 1;
}

.mock-card::before,
.benefit-card::before,
.feature-card::before,
.step-card::before,
.showcase-card::before,
.prompt-card::before,
.marketplace-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: -12% auto auto -8%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(70, 207, 255, 0.16), rgba(70, 207, 255, 0.04) 42%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  opacity: 0.9;
}

.mock-card::after,
.benefit-card::after,
.feature-card::after,
.step-card::after,
.showcase-card::after,
.prompt-card::after,
.marketplace-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.visual-showcase {
  padding-top: 18px;
}

.product-story {
  padding-top: 6px;
}

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

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: 18px 18px 19px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(9, 13, 19, 0.92), rgba(5, 7, 11, 0.96)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(108, 134, 255, 0.03),
    0 16px 32px rgba(0, 0, 0, 0.14),
    0 24px 26px -24px rgba(70, 207, 255, 0.26),
    0 32px 44px -34px rgba(46, 110, 255, 0.22);
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(70, 207, 255, 0.72), rgba(100, 128, 255, 0.34), rgba(139, 92, 246, 0.2));
  opacity: 0.74;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

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

.story-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(154, 188, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(94, 131, 255, 0.22), rgba(70, 207, 255, 0.14)),
    rgba(9, 13, 24, 0.5);
  color: #f8fbff;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(70, 207, 255, 0.08);
}

.story-users .story-tag {
  border-color: rgba(70, 207, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.22), rgba(97, 123, 255, 0.14)),
    rgba(9, 13, 24, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(70, 207, 255, 0.12);
}

.story-authors .story-tag {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(96, 123, 255, 0.14)),
    rgba(13, 11, 26, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(139, 92, 246, 0.12);
}

.story-partners .story-tag {
  border-color: rgba(245, 158, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(255, 207, 120, 0.14)),
    rgba(24, 16, 10, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(245, 158, 11, 0.12);
}

.story-card h3 {
  margin: 0 0 9px;
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.story-card p {
  margin: 0;
  max-width: 34ch;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.52;
}

.story-users {
  background:
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(124, 255, 178, 0.06), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.story-authors {
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(84, 240, 255, 0.06), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.story-partners {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.1), transparent 30%),
    radial-gradient(circle at bottom right, rgba(84, 240, 255, 0.06), transparent 30%),
    rgba(255, 255, 255, 0.03);
}

.gallery-section {
  padding-top: 8px;
}

.gallery-heading {
  margin-bottom: 22px;
}

.gallery-shell {
  position: relative;
  overflow: hidden;
  padding: 2px;
  border: none;
  border-radius: 32px;
  background: var(--gradient-omni);
  box-shadow:
    0 0 40px rgba(0, 210, 255, 0.12),
    0 0 52px rgba(255, 79, 216, 0.1),
    0 28px 60px rgba(0, 0, 0, 0.35);
}

.gallery-shell::before,
.gallery-shell--beauty::before {
  display: none;
}

.gallery-topbar,
.gallery-inner {
  background: #000000;
}

.gallery-topbar {
  padding: 18px 20px 12px;
  margin-bottom: 0;
  border-radius: 30px 30px 0 0;
}

.gallery-inner {
  padding: 0 20px 20px;
  border-radius: 0 0 30px 30px;
}

.gallery-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.gallery-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(166, 190, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(11, 15, 27, 0.42);
  color: rgba(231, 238, 249, 0.74);
  font-size: 0.82rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 160, 255, 0.18);
  border-radius: 14px;
  background:
    var(--gradient-omni-soft),
    rgba(0, 0, 0, 0.72);
  color: var(--text-main);
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.gallery-btn:hover,
.gallery-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(118, 164, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(101, 130, 255, 0.16), rgba(70, 207, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(49, 93, 255, 0.16);
}

.gallery-track {
  position: relative;
  min-height: 560px;
}

.gallery-slide {
  display: none;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 20px;
  min-height: 560px;
  padding: 18px;
  border: 1px solid rgba(200, 160, 255, 0.14);
  border-radius: 28px;
  background: #000000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.gallery-slide.is-active {
  display: grid;
  border-color: rgba(0, 210, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.gallery-media {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(200, 160, 255, 0.14);
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.06);
}

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

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 8px 6px;
}

.gallery-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 160, 255, 0.2);
  background: rgba(0, 0, 0, 0.72);
  color: #f8fbff;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-copy h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 13ch;
  text-shadow: 0 14px 32px rgba(4, 8, 18, 0.62);
}

.gallery-copy p:not(.gallery-kicker) {
  margin: 0;
  max-width: 54ch;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.62;
  text-shadow: 0 8px 22px rgba(4, 8, 18, 0.44);
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.gallery-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(166, 190, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(11, 15, 27, 0.42);
  color: rgba(231, 238, 249, 0.78);
  font-size: 0.86rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.showcase-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
}

.showcase-copy p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.showcase-copy h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.06;
}

.showcase-wide h3 {
  max-width: 13ch;
}

.showcase-video {
  background:
    linear-gradient(180deg, rgba(6, 12, 16, 0.02), rgba(6, 12, 16, 0.62)),
    url("./assets/veo3.png"),
    rgba(255, 255, 255, 0.04);
}

.showcase-chat {
  background:
    linear-gradient(180deg, rgba(7, 8, 18, 0.02), rgba(7, 8, 18, 0.64)),
    url("./assets/gpt-54.png"),
    rgba(255, 255, 255, 0.04);
}

.showcase-image {
  background:
    linear-gradient(180deg, rgba(14, 10, 18, 0.02), rgba(14, 10, 18, 0.64)),
    url("./assets/seedream-4.png"),
    rgba(255, 255, 255, 0.04);
}

.mock-card {
  min-height: 138px;
  padding: 18px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
}

.mock-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(166, 190, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.2), rgba(70, 207, 255, 0.14)),
    rgba(8, 12, 21, 0.46);
  color: #f8fbff;
  font-size: 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card-veo3 .mock-tag,
.card-s1 .mock-tag {
  border-color: rgba(70, 207, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.24), rgba(96, 123, 255, 0.16)),
    rgba(8, 12, 21, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(70, 207, 255, 0.12);
}

.card-seed3 .mock-tag {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.26), rgba(96, 123, 255, 0.14)),
    rgba(13, 11, 26, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(139, 92, 246, 0.12);
}

.card-seed4 .mock-tag,
.card-market .mock-tag {
  border-color: rgba(245, 158, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(255, 207, 120, 0.14)),
    rgba(22, 15, 10, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(245, 158, 11, 0.12);
}

.card-gpt .mock-tag,
.card-chain .mock-tag {
  border-color: rgba(108, 123, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.24), rgba(139, 92, 246, 0.16)),
    rgba(10, 11, 26, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(96, 123, 255, 0.12);
}

.mock-card h3,
.benefit-card h3,
.feature-card h3,
.step-card h3,
.prompt-card h3 {
  margin: 0 0 8px;
  text-shadow: 0 12px 28px rgba(4, 8, 18, 0.58);
}

.benefit-card h3 {
  font-size: 1.32rem;
  line-height: 1.08;
}

.step-card h3 {
  font-size: 1.6rem;
  line-height: 1.08;
  max-width: 11ch;
}

.card-veo3,
.feature-veo3 {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.1), rgba(8, 16, 18, 0.56)),
    url("./assets/veo3.png"),
    radial-gradient(circle at top right, rgba(124, 255, 178, 0.2), transparent 44%),
    radial-gradient(circle at bottom left, rgba(84, 240, 255, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-s1,
.feature-s1 {
  background:
    linear-gradient(180deg, rgba(7, 14, 18, 0.08), rgba(7, 14, 18, 0.56)),
    url("./assets/s1-veo.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.22), transparent 40%),
    radial-gradient(circle at bottom right, rgba(124, 255, 178, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-seed3,
.feature-seed3 {
  background:
    linear-gradient(180deg, rgba(13, 10, 20, 0.08), rgba(13, 10, 20, 0.58)),
    url("./assets/seedream-3.png"),
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.26), transparent 42%),
    radial-gradient(circle at bottom right, rgba(84, 240, 255, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-seed4,
.feature-seed4 {
  background:
    linear-gradient(180deg, rgba(20, 12, 7, 0.06), rgba(20, 12, 7, 0.56)),
    url("./assets/seedream-4.png"),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 42%),
    radial-gradient(circle at bottom left, rgba(255, 218, 122, 0.14), transparent 56%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-gpt,
.feature-gpt {
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.1), rgba(9, 11, 18, 0.56)),
    url("./assets/gpt-52.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 52%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.mock-card.card-gpt:nth-of-type(6),
.feature-card.feature-gpt:nth-of-type(6) {
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.1), rgba(9, 11, 18, 0.56)),
    url("./assets/gpt-54.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.18), transparent 52%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-chain,
.feature-chain {
  background:
    linear-gradient(180deg, rgba(7, 15, 14, 0.08), rgba(7, 15, 14, 0.58)),
    url("./assets/chains.png"),
    radial-gradient(circle at top right, rgba(124, 255, 178, 0.18), transparent 48%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

.card-market,
.feature-market,
.marketplace-panel {
  background:
    linear-gradient(180deg, rgba(20, 12, 7, 0.08), rgba(20, 12, 7, 0.56)),
    url("./assets/marketplace.png"),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255, 217, 124, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
}

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

.benefit-card {
  padding: 22px 20px;
  border-radius: 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(108, 134, 255, 0.03),
    0 22px 42px rgba(0, 0, 0, 0.22),
    0 26px 28px -24px rgba(70, 207, 255, 0.34),
    0 34px 46px -34px rgba(46, 110, 255, 0.24);
}

.benefit-templates {
  background:
    linear-gradient(180deg, rgba(7, 15, 14, 0.04), rgba(7, 15, 14, 0.72)),
    url("./assets/chains.png"),
    radial-gradient(circle at top right, rgba(124, 255, 178, 0.22), transparent 36%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
}

.benefit-speed {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.02), rgba(8, 16, 18, 0.68)),
    url("./assets/s1-veo.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.24), transparent 36%),
    radial-gradient(circle at bottom right, rgba(124, 255, 178, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.05);
  background-position: 60% center;
}

.benefit-market {
  background:
    linear-gradient(180deg, rgba(20, 12, 7, 0.08), rgba(20, 12, 7, 0.72)),
    url("./assets/marketplace.png"),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.24), transparent 38%),
    radial-gradient(circle at bottom left, rgba(255, 217, 124, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.05);
  background-position: 54% center;
}

.benefit-easy {
  background:
    linear-gradient(180deg, rgba(13, 10, 20, 0.04), rgba(13, 10, 20, 0.7)),
    url("./assets/seedream-3.png"),
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.24), transparent 36%),
    radial-gradient(circle at bottom right, rgba(84, 240, 255, 0.12), transparent 50%),
    rgba(255, 255, 255, 0.05);
  background-position: 58% center;
}

.benefit-multi {
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.08), rgba(9, 11, 18, 0.72)),
    url("./assets/gpt-52.png"),
    radial-gradient(circle at top right, rgba(84, 240, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(139, 92, 246, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.05);
  background-position: 62% center;
}

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  border: 1px solid rgba(166, 190, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 14, 24, 0.56);
  font-size: 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 30px rgba(5, 7, 11, 0.28),
    0 0 20px rgba(70, 207, 255, 0.08);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.marketplace-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.section-heading p {
  max-width: 720px;
  margin: 0;
}

.narrow {
  text-align: center;
}

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

.feature-card {
  display: flex;
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  flex-direction: column;
  justify-content: space-between;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(108, 134, 255, 0.03),
    0 22px 42px rgba(0, 0, 0, 0.22),
    0 28px 30px -24px rgba(70, 207, 255, 0.38),
    0 38px 50px -34px rgba(46, 110, 255, 0.26);
}

.feature-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(166, 190, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.2), rgba(70, 207, 255, 0.14)),
    rgba(9, 13, 22, 0.46);
  color: #f8fbff;
  font-size: 0.82rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 8px 22px rgba(4, 8, 18, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(70, 207, 255, 0.08);
}

.feature-link {
  align-self: flex-start;
  border: 1px solid rgba(166, 190, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.2), rgba(70, 207, 255, 0.14)),
    rgba(8, 12, 21, 0.46);
  color: #f8fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 20px rgba(70, 207, 255, 0.08);
}

.feature-link:hover,
.feature-link:focus-visible {
  border-color: rgba(154, 188, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 22px rgba(70, 207, 255, 0.14),
    0 14px 28px rgba(37, 78, 255, 0.16);
}

.feature-veo3 .feature-label,
.feature-s1 .feature-label,
.feature-veo3 .feature-link,
.feature-s1 .feature-link {
  border-color: rgba(70, 207, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.24), rgba(96, 123, 255, 0.16)),
    rgba(9, 13, 22, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(70, 207, 255, 0.12);
}

.feature-seed3 .feature-label,
.feature-seed3 .feature-link {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(96, 123, 255, 0.14)),
    rgba(13, 11, 24, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(139, 92, 246, 0.12);
}

.feature-seed4 .feature-label,
.feature-seed4 .feature-link,
.feature-market .feature-label,
.feature-market .feature-link {
  border-color: rgba(245, 158, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(255, 207, 120, 0.14)),
    rgba(24, 16, 10, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(245, 158, 11, 0.12);
}

.feature-gpt .feature-label,
.feature-gpt .feature-link,
.feature-chain .feature-label,
.feature-chain .feature-link {
  border-color: rgba(154, 188, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.24), rgba(139, 92, 246, 0.16)),
    rgba(10, 11, 26, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(96, 123, 255, 0.12);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 76px;
  left: calc(16.66% + 44px);
  right: calc(16.66% + 44px);
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
}

.step-card {
  min-height: 230px;
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(108, 134, 255, 0.03),
    0 22px 42px rgba(0, 0, 0, 0.22),
    0 28px 30px -24px rgba(70, 207, 255, 0.3),
    0 36px 48px -34px rgba(46, 110, 255, 0.22);
}

.step-template {
  background:
    linear-gradient(180deg, rgba(7, 15, 14, 0.02), rgba(7, 15, 14, 0.68)),
    url("./assets/chains.png"),
    radial-gradient(circle at top right, rgba(124, 255, 178, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(84, 240, 255, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.05);
}

.step-input {
  background:
    linear-gradient(180deg, rgba(14, 10, 18, 0.02), rgba(14, 10, 18, 0.66)),
    url("./assets/seedream-4.png"),
    radial-gradient(circle at top center, rgba(139, 92, 246, 0.22), transparent 36%),
    radial-gradient(circle at bottom right, rgba(84, 240, 255, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.05);
  background-position: 50% 34%;
}

.step-result {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.02), rgba(8, 16, 18, 0.66)),
    url("./assets/veo3.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(124, 255, 178, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.05);
}

.step-template::after,
.step-input::after,
.step-result::after {
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25) 100%);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(166, 190, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(97, 123, 255, 0.3), rgba(70, 207, 255, 0.22)),
    rgba(255, 255, 255, 0.04);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 26px rgba(36, 76, 255, 0.16);
}

.marketplace-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 28px;
  padding: 30px;
  border-radius: 30px;
}

.marketplace-eyebrow {
  color: #ffcf78;
}

.stats-row {
  display: flex;
  gap: 14px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.stat-card {
  min-width: 150px;
  padding: 18px 20px;
  border-radius: 20px;
}

.stat-card strong,
.prompt-card strong {
  display: block;
  font-size: 1.6rem;
}

.stat-card span {
  color: var(--text-soft);
}

.prompt-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.prompt-card {
  min-height: 180px;
  padding: 20px;
  border-radius: 22px;
}

.prompt-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.08), rgba(8, 16, 18, 0.64)),
    url("./assets/veo3.png"),
    radial-gradient(circle at top left, rgba(84, 240, 255, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.06);
  background-position: center;
  background-size: cover;
}

.prompt-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(13, 10, 20, 0.08), rgba(13, 10, 20, 0.64)),
    url("./assets/seedream-3.png"),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.06);
  background-position: center;
  background-size: cover;
}

.prompt-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(7, 15, 14, 0.08), rgba(7, 15, 14, 0.64)),
    url("./assets/chains.png"),
    radial-gradient(circle at bottom left, rgba(124, 255, 178, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.06);
  background-position: center;
  background-size: cover;
}

.prompt-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(20, 12, 7, 0.08), rgba(20, 12, 7, 0.64)),
    url("./assets/marketplace.png"),
    radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.06);
  background-position: center;
  background-size: cover;
}

.partner-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(166, 190, 255, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.14), rgba(5, 7, 11, 0.58)),
    url("./assets/marketplace.png"),
    radial-gradient(circle at top left, rgba(70, 207, 255, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 90px rgba(0, 0, 0, 0.28);
}

.partner-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.18) 40%, transparent 100%);
  pointer-events: none;
}

.partner-copy,
.partner-grid {
  position: relative;
  z-index: 1;
}

.partner-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.partner-eyebrow {
  color: var(--cyan);
}

.partner-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.1vw, 2.95rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.partner-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.58;
}

.partner-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.partner-metric,
.partner-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(166, 190, 255, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 20, 36, 0.66), rgba(8, 12, 20, 0.52)),
    rgba(8, 12, 20, 0.56);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(108, 134, 255, 0.03),
    0 24px 28px -24px rgba(70, 207, 255, 0.3),
    0 34px 48px -34px rgba(46, 110, 255, 0.24);
}

.partner-metric {
  padding: 16px 16px 15px;
}

.partner-metric strong {
  display: block;
  font-size: 1.58rem;
  line-height: 1;
}

.partner-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.4;
  font-size: 0.9rem;
}

.partner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.partner-note {
  margin: 2px 0 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.partner-card {
  min-height: 172px;
  padding: 18px;
  background-position: center;
  background-size: cover;
}

.partner-card span,
.partner-card h3 {
  position: relative;
  z-index: 1;
}

.partner-card span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(166, 190, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.22), rgba(70, 207, 255, 0.14)),
    rgba(9, 13, 22, 0.46);
  color: #f8fbff;
  font-size: 0.76rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(70, 207, 255, 0.08);
}

.partner-card-referral span {
  border-color: rgba(70, 207, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.22), rgba(96, 123, 255, 0.14)),
    rgba(9, 13, 22, 0.46);
}

.partner-card-bloggers span {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(96, 123, 255, 0.14)),
    rgba(13, 11, 24, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(139, 92, 246, 0.1);
}

.partner-card-integration span {
  border-color: rgba(70, 207, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.24), rgba(96, 123, 255, 0.16)),
    rgba(9, 13, 22, 0.46);
}

.partner-card-business span {
  border-color: rgba(245, 158, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.24), rgba(255, 207, 120, 0.14)),
    rgba(24, 16, 10, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(245, 158, 11, 0.1);
}

.prompt-card span {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin-bottom: 12px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(166, 190, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(96, 123, 255, 0.2), rgba(70, 207, 255, 0.14)),
    rgba(9, 13, 22, 0.46);
  color: #f8fbff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(70, 207, 255, 0.08);
}

.prompt-card:nth-child(1) span {
  border-color: rgba(70, 207, 255, 0.26);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.24), rgba(96, 123, 255, 0.14)),
    rgba(9, 13, 22, 0.46);
}

.prompt-card:nth-child(2) span,
.prompt-card:nth-child(4) span {
  border-color: rgba(139, 92, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.24), rgba(96, 123, 255, 0.14)),
    rgba(13, 11, 24, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(139, 92, 246, 0.1);
}

.prompt-card:nth-child(3) span {
  border-color: rgba(70, 207, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(70, 207, 255, 0.2), rgba(139, 92, 246, 0.16)),
    rgba(9, 13, 22, 0.46);
}

.partner-card h3 {
  margin: 0;
  max-width: 14ch;
  font-size: 1.18rem;
  line-height: 1.1;
  text-shadow: 0 12px 28px rgba(4, 8, 18, 0.58);
}

.partner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.mock-card.card-veo3,
.feature-card.feature-veo3,
.benefit-card.benefit-speed,
.partner-card.partner-card-bloggers,
.gallery-slide.is-active .gallery-media {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 210, 255, 0.1);
}

.partner-card-referral {
  background:
    linear-gradient(180deg, rgba(8, 14, 24, 0.04), rgba(8, 14, 24, 0.58)),
    url("./assets/gpt-52.png"),
    radial-gradient(circle at top left, rgba(70, 207, 255, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
}

.partner-card-bloggers {
  background:
    linear-gradient(180deg, rgba(13, 10, 20, 0.04), rgba(13, 10, 20, 0.56)),
    url("./assets/seedream-3.png"),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 38%),
    rgba(255, 255, 255, 0.05);
  background-position: 56% center;
}

.partner-card-integration {
  background:
    linear-gradient(180deg, rgba(8, 16, 18, 0.04), rgba(8, 16, 18, 0.56)),
    url("./assets/veo3.png"),
    radial-gradient(circle at bottom left, rgba(84, 240, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.05);
  background-position: center;
}

.partner-card-business {
  background:
    linear-gradient(180deg, rgba(20, 12, 7, 0.05), rgba(20, 12, 7, 0.58)),
    url("./assets/marketplace.png"),
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.05);
  background-position: 60% center;
}

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

.cta-panel {
  padding: 34px 28px;
  border-radius: 32px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.06), rgba(5, 7, 11, 0.66)),
    url("./assets/gpt-54.png"),
    radial-gradient(circle at 18% 80%, rgba(70, 207, 255, 0.18), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(96, 123, 255, 0.2), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(10, 16, 22, 0.96), rgba(5, 7, 11, 0.92)),
    rgba(255, 255, 255, 0.06);
  background-position: center 32%;
  background-size: cover;
}

.cta-panel::after {
  display: none;
}

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

.cta-panel p {
  max-width: 760px;
  margin: 18px auto 0;
}

.cta-panel h2 {
  max-width: 10.5ch;
  margin-inline: auto;
  text-shadow: 0 14px 38px rgba(5, 7, 11, 0.34);
}

.cta-note {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
}

.legal-footer {
  padding-top: 10px;
  padding-bottom: 48px;
}

.legal-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-footer-copy,
.legal-links {
  min-width: 0;
}

.legal-footer-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(247, 251, 255, 0.9);
}

.legal-footer-copy p {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
}

.legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(231, 238, 249, 0.72);
  font-size: 0.83rem;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--text-main);
  border-color: rgba(118, 164, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.cookie-banner[hidden],
.cookie-banner.is-dismissed {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 16px;
  z-index: 9999;
  display: grid;
  pointer-events: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(620px, calc(100vw - 20px));
  padding: 10px 12px;
  border: 1px solid rgba(166, 190, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(14, 19, 32, 0.9), rgba(8, 11, 20, 0.88)),
    rgba(7, 10, 16, 0.9);
  backdrop-filter: blur(22px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.26);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.84rem;
  line-height: 1.2;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  pointer-events: auto;
}

.cookie-banner__actions .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.84rem;
}

@media (max-width: 1180px) {
  .benefits-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gallery-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gallery-track {
    min-height: 0;
  }

  .gallery-media img {
    aspect-ratio: 3 / 4;
  }

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

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

  .showcase-wide {
    grid-column: 1 / -1;
  }

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

  .partner-copy h2 {
    max-width: 14ch;
  }

  .legal-links {
    gap: 8px;
  }
}

@media (max-width: 960px) {
  :root {
    --content-width: min(1240px, calc(100vw - 32px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-header__tools {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .header-cta-mobile {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-self: auto;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(5, 7, 11, 0.92);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 14px;
  }

  .site-header.menu-open .top-nav {
    display: flex;
  }

  .hero,
  .marketplace-panel,
  .partner-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

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

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

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

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

  .steps-grid::before {
    display: none;
  }

  .partner-metrics {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    grid-template-columns: 1fr;
    width: min(640px, calc(100vw - 20px));
    transform: translateX(-50%);
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
    margin-top: 10px;
    top: 10px;
  }

  .header-cta {
    display: none;
  }

  .model-promo.section {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .model-promo__frame {
    border-radius: 22px;
    box-shadow:
      0 0 32px rgba(0, 210, 255, 0.14),
      0 0 40px rgba(255, 79, 216, 0.1);
  }

  .model-promo__inner {
    border-radius: 20px;
  }

  .model-promo__video.is-front {
    max-height: 38vh;
    width: 100%;
    object-fit: cover;
  }

  .hero.section {
    padding-top: 10px;
    padding-bottom: 24px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-stack {
    gap: 16px;
  }

  .hero-lead .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(1.95rem, 8.8vw, 2.55rem);
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .section {
    padding: 32px 0;
  }

  .mockup-grid,
  .prompt-grid,
  .partner-grid,
  .benefits-row,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-shell,
  .gallery-slide {
    padding: 16px;
  }

  .gallery-copy h3 {
    max-width: 14ch;
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .feature-link {
    width: 100%;
  }

  .marketplace-panel,
  .partner-panel,
  .cta-panel,
  .mockup-window {
    padding: 22px;
  }

  .partner-actions {
    flex-direction: column;
  }

  .cookie-banner__actions,
  .legal-links {
    width: 100%;
  }

  .legal-links {
    gap: 8px;
  }

  .legal-links a {
    min-height: 32px;
    font-size: 0.8rem;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* —— Restored layout (2026-05-24) —— */

.brand-a {
  color: #f8fbff;
}

.brand-b {
  background: var(--gradient-omni);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.model-promo {
  padding-top: 18px;
}

.model-promo__frame {
  position: relative;
  padding: 2px;
  border-radius: 30px;
  background: var(--gradient-omni);
  box-shadow:
    0 0 48px rgba(0, 210, 255, 0.18),
    0 0 64px rgba(255, 79, 216, 0.14),
    0 28px 70px rgba(0, 0, 0, 0.34);
}

.model-promo__inner {
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 28px;
  background: #000000;
}

.model-promo__stage {
  position: relative;
  background: #000000;
}

.model-promo__waves {
  display: none;
}

.neuro-wave {
  position: absolute;
  left: -15%;
  width: 130%;
  height: min(28vw, 160px);
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.65;
}

.neuro-wave--1 {
  top: 8%;
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.45), rgba(157, 80, 187, 0.5), transparent);
  animation: neuro-flow 9s ease-in-out infinite;
}

.neuro-wave--2 {
  top: 38%;
  background: linear-gradient(90deg, transparent, rgba(157, 80, 187, 0.5), rgba(255, 79, 216, 0.4), transparent);
  animation: neuro-flow 11s ease-in-out infinite reverse;
  animation-delay: -4s;
}

.neuro-wave--3 {
  bottom: 4%;
  height: min(22vw, 120px);
  background: linear-gradient(90deg, transparent, rgba(0, 210, 255, 0.35), rgba(0, 210, 255, 0.2), transparent);
  animation: neuro-flow 13s ease-in-out infinite;
  animation-delay: -7s;
}

.neuro-line {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 2px;
  border-radius: 999px;
  opacity: 0.75;
  filter: blur(0.4px);
}

.neuro-line--a {
  top: 22%;
  background: linear-gradient(90deg, transparent, #00d2ff, #9d50bb, transparent);
  animation: neuro-line-drift 7s ease-in-out infinite;
}

.neuro-line--b {
  top: 58%;
  background: linear-gradient(90deg, transparent, #9d50bb, #ff4fd8, transparent);
  animation: neuro-line-drift 8.5s ease-in-out infinite reverse;
  animation-delay: -3s;
}

@keyframes neuro-flow {
  0%,
  100% {
    transform: translateX(-14%) scaleY(0.9) rotate(-2deg);
    opacity: 0.4;
  }

  50% {
    transform: translateX(14%) scaleY(1.12) rotate(2deg);
    opacity: 0.85;
  }
}

@keyframes neuro-line-drift {
  0%,
  100% {
    transform: translateX(-8%) scaleX(0.94);
    opacity: 0.35;
  }

  50% {
    transform: translateX(10%) scaleX(1.06);
    opacity: 1;
  }
}

.model-promo__video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  background: #000000;
}

.model-promo__video.is-front {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.model-promo__video:not(.is-front) {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.model-promo__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(20px, 4vw, 36px);
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(5, 7, 11, 0.55) 38%, rgba(5, 7, 11, 0.88) 100%);
}

.model-promo__overlay h2 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.model-promo__text {
  max-width: 56ch;
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.model-promo__dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.model-promo__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.model-promo__dot.is-active {
  background: var(--gradient-omni);
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.45);
}

.hero {
  display: block;
  padding-top: 48px;
}

.hero-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
}

.hero-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-benefits {
  min-width: 0;
  align-self: center;
}

.benefits-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.benefits-row.benefits-row--stack {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  gap: 10px;
}

.benefits-panel .benefit-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  flex-direction: unset;
  justify-content: unset;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(200, 160, 255, 0.22);
  background:
    var(--gradient-omni-soft),
    var(--glass-fill);
  backdrop-filter: var(--glass-blur);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(0, 210, 255, 0.06),
    0 0 28px rgba(255, 79, 216, 0.05);
  background-image: none;
}

.benefits-panel .benefit-card::before,
.benefits-panel .benefit-card::after {
  display: none;
}

.benefits-panel .benefit-card.benefit-templates {
  border-color: rgba(0, 210, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(0, 210, 255, 0.1);
}

.benefits-panel .benefit-card.benefit-speed {
  border-color: rgba(157, 80, 187, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(157, 80, 187, 0.1);
}

.benefits-panel .benefit-card.benefit-market {
  border-color: rgba(255, 180, 90, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(245, 158, 11, 0.08);
}

.benefits-panel .benefit-card.benefit-easy {
  border-color: rgba(255, 79, 216, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 24px rgba(255, 79, 216, 0.08);
}

.benefits-panel .benefit-card.benefit-multi {
  border-color: rgba(0, 210, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 22px rgba(157, 80, 187, 0.08),
    0 0 26px rgba(0, 210, 255, 0.06);
}

.benefits-panel .benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(200, 160, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(0, 210, 255, 0.14), rgba(157, 80, 187, 0.12)),
    rgba(8, 4, 18, 0.5);
  font-size: 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(0, 210, 255, 0.1);
}

.benefits-panel .benefit-card__copy {
  min-width: 0;
}

.benefits-panel .benefit-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
}

.benefits-panel .benefit-card p {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.feature-stack {
  display: grid;
  gap: 34px;
}

.feature-row {
  display: grid;
  gap: 18px;
}

.feature-row-heading {
  display: grid;
  gap: 8px;
}

.feature-row-heading h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
}

.feature-row-heading p {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
  line-height: 1.55;
}

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

.feature-card.has-card-video {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0;
  border: 1px solid rgba(200, 160, 255, 0.2);
  background: #000000;
}

.feature-card.has-card-video::before,
.feature-card.has-card-video::after {
  display: none;
}

.feature-card.has-card-video .card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.feature-card.has-card-video > :not(.card-video) {
  position: relative;
  z-index: 1;
}

.feature-card.has-card-video .feature-label,
.feature-card.has-card-video .feature-link {
  margin-left: 20px;
  margin-right: 20px;
}

.feature-card.has-card-video .feature-label {
  margin-top: 20px;
}

.feature-card.has-card-video .feature-link--model {
  margin: auto 20px 20px;
  margin-top: 14px;
  align-self: flex-start;
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.marketplace-section .marketplace-panel {
  align-items: stretch;
  border: 1px solid rgba(200, 160, 255, 0.22);
  background:
    var(--gradient-omni-soft),
    rgba(0, 0, 0, 0.88) !important;
  background-image: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 40px rgba(0, 210, 255, 0.1),
    0 0 48px rgba(255, 79, 216, 0.08),
    0 28px 60px rgba(0, 0, 0, 0.35);
}

.marketplace-section .marketplace-panel::before,
.marketplace-section .marketplace-panel::after {
  display: none;
}

.marketplace-section .marketplace-eyebrow {
  color: #7ee9ff;
}

.marketplace-showcase {
  display: flex;
  min-width: 0;
  align-items: stretch;
}

.marketplace-showcase .prompt-grid {
  flex: 1;
  width: 100%;
  min-height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.marketplace-copy .highlights {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.marketplace-copy .highlights li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.5;
}

.marketplace-copy .highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(70, 207, 255, 0.96), rgba(139, 92, 246, 0.92));
  box-shadow: 0 0 14px rgba(70, 207, 255, 0.45);
  transform: translateY(-50%);
}

.prompt-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 255, 0.16);
  background: rgba(0, 0, 0, 0.55) !important;
}

.prompt-card:nth-child(1),
.prompt-card:nth-child(2),
.prompt-card:nth-child(3),
.prompt-card:nth-child(4) {
  background: rgba(0, 0, 0, 0.55) !important;
  background-image: none !important;
}

.prompt-card::before,
.prompt-card::after {
  display: none;
}

.prompt-card__media {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 148px;
  overflow: hidden;
  background: #000000;
}

.prompt-card__media .card-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  object-position: center center;
  background: #000000;
}

.prompt-card > span,
.prompt-card > h3,
.prompt-card > p {
  padding: 0 18px;
}

.prompt-card > p {
  padding-bottom: 18px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.prompt-card > span {
  padding-top: 4px;
}

.prompt-card > h3 {
  margin: 0;
  font-size: 1.02rem;
}

.partner-showcase {
  position: relative;
  z-index: 1;
}

.partner-card {
  display: grid;
  gap: 0;
  min-height: 0;
  padding: 0;
  background: transparent !important;
}

.partner-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
}

.partner-card > span,
.partner-card > h3 {
  padding: 0 16px;
}

.partner-card > span {
  margin: 14px 16px 0;
}

.partner-card > h3 {
  margin: 0;
  padding-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.gallery-inner {
  position: relative;
}

.gallery-pills button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(200, 160, 255, 0.18);
  border-radius: 999px;
  background:
    var(--gradient-omni-soft),
    rgba(0, 0, 0, 0.72);
  color: rgba(231, 238, 249, 0.82);
  font-size: 0.82rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-pills button.is-active {
  border-color: rgba(0, 210, 255, 0.32);
  color: #f8fbff;
  background:
    linear-gradient(135deg, rgba(0, 210, 255, 0.2), rgba(157, 80, 187, 0.16)),
    rgba(0, 0, 0, 0.8);
}

@media (max-width: 1180px) {
  .feature-row-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .benefits-row.benefits-row--stack {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .hero-stack {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-lead {
    justify-content: flex-start;
  }

  .model-promo__overlay h2 {
    max-width: none;
  }

}

@media (max-width: 680px) {
  .feature-row-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps & ecosystem — neutral outline + soft glow */
.steps-section .steps-grid::before {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.steps-section .step-card,
.steps-section .step-template,
.steps-section .step-input,
.steps-section .step-result {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 24px rgba(255, 255, 255, 0.04);
}

.steps-section .step-card {
  min-height: 220px;
  padding: 24px;
  justify-content: flex-start;
  background: transparent !important;
  background-image: none !important;
  backdrop-filter: none;
}

.steps-section .step-card::before,
.steps-section .step-card::after {
  display: none;
}

.steps-section .step-number {
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(255, 255, 255, 0.05);
}

.steps-section .step-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.steps-section .step-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.product-story .story-card,
.product-story .story-users,
.product-story .story-authors,
.product-story .story-partners {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent !important;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 24px rgba(255, 255, 255, 0.04);
}

.product-story .story-card::before {
  display: none;
}

.product-story .story-card::after {
  display: none;
}

.product-story .story-tag,
.product-story .story-users .story-tag,
.product-story .story-authors .story-tag,
.product-story .story-partners .story-tag {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(255, 255, 255, 0.04);
}

.product-story .story-card h3 {
  max-width: none;
  font-size: 1.05rem;
}

.product-story .story-card p {
  max-width: none;
}

/* Partners — neutral outline + glow only */
.partner-section .partner-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent !important;
  background-image: none !important;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 32px rgba(255, 255, 255, 0.04);
}

.partner-section .partner-panel::after {
  display: none;
}

.partner-section .partner-metric,
.partner-section .partner-card,
.partner-section .partner-card-referral,
.partner-section .partner-card-bloggers,
.partner-section .partner-card-integration,
.partner-section .partner-card-business {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent !important;
  background-image: none !important;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 24px rgba(255, 255, 255, 0.04);
}

.partner-section .partner-card::after {
  display: none;
}

.partner-section .partner-card span {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(255, 255, 255, 0.04);
}

.partner-section .partner-card h3 {
  text-shadow: none;
}

/* Final CTA — video background */
.final-cta .cta-panel.has-cta-video {
  min-height: clamp(280px, 42vw, 420px);
  padding: clamp(28px, 5vw, 42px) 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #000000 !important;
  background-image: none !important;
  backdrop-filter: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 32px rgba(255, 255, 255, 0.04);
}

.final-cta .cta-panel.has-cta-video::before {
  display: none;
}

.final-cta .cta-panel__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000000;
}

.final-cta .cta-panel.has-cta-video > :not(.cta-panel__video) {
  position: relative;
  z-index: 1;
}

.final-cta .cta-panel.has-cta-video h2,
.final-cta .cta-panel.has-cta-video p,
.final-cta .cta-panel.has-cta-video .eyebrow,
.final-cta .cta-panel.has-cta-video .cta-note {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

/* ── Bonus banner (before features) ── */

.bonus-banner-section {
  padding-top: 0;
  padding-bottom: 0;
}

.bonus-banner {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bonus-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 150, 255, 0.18), 0 0 32px rgba(180, 100, 255, 0.12);
}

.bonus-banner__desktop {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-banner__mobile {
  display: none;
  position: relative;
}

.bonus-banner__mobile img {
  display: block;
  width: 100%;
  height: auto;
}

.bonus-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.bonus-banner__badge {
  align-self: flex-start;
  padding: 4px 14px;
  margin-bottom: 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bonus-banner__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.bonus-banner__sub {
  margin: 6px 0 0;
  font-size: 0.85rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 680px) {
  .bonus-banner {
    border-radius: 16px;
  }

  .bonus-banner__desktop {
    display: none;
  }

  .bonus-banner__mobile {
    display: block;
  }
}

/* ── Mobile gallery carousel ── */

.gallery-mobile {
  display: none;
}

@media (max-width: 680px) {
  .gallery-shell {
    display: none;
  }

  .gallery-mobile {
    display: block;
  }

  .gallery-mobile__track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .gallery-mobile__track::-webkit-scrollbar {
    display: none;
  }

  .gallery-mobile__card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .gallery-mobile__card:active {
    transform: scale(0.97);
  }

  .gallery-mobile__card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .gallery-mobile__card span {
    display: block;
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
  }
}

.partner-banner-wrap {
  margin-top: 40px;
}

@media (max-width: 680px) {
  .partner-banner-wrap {
    margin-top: 28px;
  }
}

/* ── Feature cards with images (model buttons) ── */

.feature-card.feature-card--img {
  display: block;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card.feature-card--img:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow:
    0 12px 36px rgba(0, 150, 255, 0.18),
    0 0 24px rgba(180, 100, 255, 0.12);
}

.feature-card.feature-card--img:active {
  transform: scale(0.98);
}

.feature-card.feature-card--img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ── Partner modal ── */

.partner-modal[hidden] {
  display: none !important;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.partner-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.partner-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 20, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(100, 80, 255, 0.1);
}

.partner-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.partner-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.partner-modal__dialog h2 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  color: #fff;
}

.partner-modal__sub {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.partner-form__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partner-form__label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.partner-form__label small {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
}

.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: rgba(0, 210, 255, 0.45);
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.partner-form__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.partner-form__fieldset legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.partner-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.partner-form__checks label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.partner-form__checks input[type="checkbox"] {
  accent-color: #6366f1;
  width: 16px;
  height: 16px;
}

.partner-form__submit {
  margin-top: 6px;
  width: 100%;
}

.partner-form__success {
  text-align: center;
  padding: 30px 0;
}

.partner-form__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #10b981);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}

.partner-form__success h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: #fff;
}

.partner-form__success p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 680px) {
  .partner-modal__dialog {
    padding: 24px 20px;
    border-radius: 18px;
  }
}

/* ── Section hero images (marketplace & partner showcase) ── */

.marketplace-hero-img,
.partner-hero-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 18px;
}

.marketplace-hero-img img,
.partner-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* ── Section banners (full-width promo strips) ── */

.section-banner {
  margin-top: 36px;
}

.section-banner__link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-banner__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 150, 255, 0.18), 0 0 32px rgba(180, 100, 255, 0.12);
}

.section-banner__link img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@media (max-width: 680px) {
  .section-banner {
    margin-top: 24px;
  }

  .section-banner__link,
  .section-banner__link img,
  .marketplace-hero-img,
  .marketplace-hero-img img,
  .partner-hero-img,
  .partner-hero-img img {
    border-radius: 14px;
  }
}
