@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  color-scheme: dark;
  --bg-primary: #0f1115;
  --bg-secondary: #1a1d24;
  --bg-tertiary: #252932;
  --accent-primary: #6366f1;
  --accent-secondary: #8b5cf6;
  --accent-tertiary: #ec4899;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(26, 29, 36, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --success: #10b981;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5), 0 4px 6px -2px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 28px rgba(99, 102, 241, 0.25);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background-color: #050608;
  background-image:
    radial-gradient(circle at 15% 14%, rgba(99, 102, 241, 0.16), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(236, 72, 153, 0.13), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(16, 185, 129, 0.08), transparent 34%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 72%);
}

button,
a {
  font: inherit;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--text-secondary);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: 0 clamp(18px, 4vw, 48px);
  border-bottom: 1px solid var(--border-color);
  background: rgba(3, 4, 7, 0.86);
  backdrop-filter: blur(20px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand,
.site-header a {
  color: var(--text-primary);
  text-decoration: none;
}

.brand {
  font-family: Outfit, Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: white;
  background: linear-gradient(135deg, #f230bd, #7c3aed 48%, #13c989);
  box-shadow: var(--shadow-glow);
}

.site-header nav {
  gap: 24px;
  justify-content: center;
  min-width: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

.header-login,
.header-register {
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.header-login {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
}

.header-register {
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: var(--shadow-lg);
}

.site-header nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-header nav a:hover {
  color: var(--text-primary);
}

.hero-section,
.market-strip,
.curation-section,
.proof-strip,
.demo-carousel-section,
.workflow-section,
.model-board-section,
.tool-hub-section,
.outcome-section,
.team-section,
.pipeline-section,
.sales-section,
.pricing-section,
.demo-band {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 138px 0 92px;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 112px 0 auto;
  height: 76vh;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(5,6,8,0) 0%, rgba(5,6,8,0.12) 48%, #050608 100%),
    radial-gradient(ellipse at center, rgba(255,255,255,0.08), transparent 62%);
}

.hero-orbit {
  position: absolute;
  inset: 120px 0 0;
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  width: clamp(140px, 18vw, 260px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.62);
  opacity: 0.86;
}

.orbit-card-a {
  left: 8vw;
  top: 8vh;
  transform: rotate(-5deg);
}

.orbit-card-b {
  right: 9vw;
  top: 7vh;
  transform: rotate(5deg);
}

.orbit-card-c {
  left: -28px;
  top: 36vh;
  width: clamp(160px, 21vw, 310px);
  transform: rotate(3deg);
}

.orbit-card-d {
  right: -18px;
  top: 38vh;
  width: clamp(160px, 21vw, 310px);
  transform: rotate(-4deg);
}

.orbit-card-e {
  left: 47%;
  top: 3vh;
  width: clamp(130px, 18vw, 250px);
  transform: translateX(-50%) rotate(1deg);
}

.hero-bg {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  background: rgba(12, 14, 20, 0.9);
  box-shadow: 0 36px 110px rgba(0,0,0,0.78), 0 0 62px rgba(139, 92, 246, 0.22);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 34%);
}

.hero-bg img,
.hero-bg video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  opacity: 0.94;
  background: #050608;
}

.hero-bg video {
  cursor: pointer;
}

.hero-video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-video-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 0;
  color: white;
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(14px);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hero-video-controls button:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(99, 102, 241, 0.72);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 40px));
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #c4b5fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent-tertiary);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.8);
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.85vw, 5.75rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0,0,0,0.9);
}

h2 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.buy-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-command {
  width: min(780px, 100%);
  min-height: 66px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(16, 18, 26, 0.82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-command span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: #c4b5fd;
  background: rgba(255, 255, 255, 0.07);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-command p {
  color: var(--text-primary);
  font-size: 0.92rem;
  text-align: left;
}

.hero-command button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0 14px;
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  cursor: pointer;
  font-weight: 800;
}

.btn-primary,
.btn-secondary,
.workflow-card button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.register-page {
  min-height: 100vh;
  padding: 132px 20px 72px;
}

.register-shell {
  width: min(1060px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.register-hero,
.register-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.2), transparent 42%),
    rgba(12, 14, 20, 0.86);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.register-hero {
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  overflow: hidden;
}

.register-hero h1 {
  margin-top: 16px;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}

.register-hero p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.06rem;
}

.register-preview {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.register-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.register-card {
  padding: clamp(24px, 4vw, 42px);
}

.register-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-bottom: 14px;
}

.register-steps {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.register-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.register-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  font-weight: 900;
}

.register-steps h3 {
  margin-bottom: 4px;
  font-size: 1.04rem;
}

.register-actions,
.register-note {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.register-note {
  margin-top: 18px;
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.demo-carousel-section {
  margin-top: -8vh;
}

.demo-carousel {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.52fr);
  grid-template-areas:
    "video playlist"
    "copy playlist";
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.18), transparent 42%),
    rgba(12, 14, 20, 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.demo-video-shell {
  grid-area: video;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: #050608;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.5);
}

.demo-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #050608;
}

.demo-playlist {
  grid-area: playlist;
  display: grid;
  gap: 10px;
}

.demo-playlist button,
.demo-carousel-controls button {
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: var(--transition);
}

.demo-playlist button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  text-align: left;
}

.demo-playlist button:hover,
.demo-playlist button.active {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.16);
  transform: translateY(-2px);
}

.demo-playlist span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: #d9ff2f;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.demo-playlist strong,
.demo-playlist small {
  display: block;
}

.demo-playlist strong {
  font-size: 0.98rem;
}

.demo-playlist small {
  color: var(--text-secondary);
  font-weight: 700;
}

.demo-carousel-copy {
  grid-area: copy;
  padding: 8px 6px 2px;
}

.demo-carousel-copy h3 {
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.demo-carousel-copy > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.demo-carousel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.demo-carousel-controls button {
  min-height: 42px;
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-weight: 800;
}

.demo-carousel-controls button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(700px, 100%);
  margin-top: 36px;
}

.hero-metrics div {
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(26, 29, 36, 0.58);
  backdrop-filter: blur(12px);
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 44px));
  margin-top: 44px;
}

.stage-badge {
  position: absolute;
  z-index: 3;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  padding: 0 14px;
  color: #050608;
  background: #d9ff2f;
  box-shadow: 0 16px 40px rgba(0,0,0,0.38);
  font-size: 0.8rem;
  font-weight: 900;
}

.stage-badge-left {
  left: -24px;
  top: 32%;
  transform: rotate(-5deg);
}

.stage-badge-right {
  right: -26px;
  bottom: 20%;
  color: white;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
  transform: rotate(4deg);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 4px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.35rem;
}

.hero-metrics span {
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.proof-strip,
.workflow-section,
.model-board-section,
.tool-hub-section,
.outcome-section,
.team-section,
.pipeline-section,
.sales-section,
.pricing-section {
  padding-block: 96px;
}

.market-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: -18px;
  padding: 18px 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  background: rgba(26, 29, 36, 0.55);
  backdrop-filter: blur(16px);
}

.market-strip p {
  color: var(--text-secondary);
  font-weight: 700;
}

.market-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.market-strip span,
.card-kicker,
.pipeline-grid span,
.curation-steps span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: var(--radius-full);
  color: #c4b5fd;
  background: rgba(99, 102, 241, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.market-strip span {
  padding: 6px 10px;
}

.curation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
  padding-block: 92px 72px;
}

.curation-copy p {
  max-width: 660px;
  line-height: 1.75;
}

.curation-steps {
  display: grid;
  gap: 14px;
}

.curation-steps article,
.pipeline-grid article {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: rgba(26, 29, 36, 0.62);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.curation-steps article {
  padding: 22px;
}

.curation-steps span,
.pipeline-grid span {
  margin-bottom: 14px;
  padding: 5px 9px;
}

.proof-strip,
.sales-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 42px;
  align-items: start;
}

.proof-copy,
.sales-copy {
  position: sticky;
  top: 110px;
}

.proof-copy p,
.sales-copy p,
.pricing-panel p {
  max-width: 640px;
  line-height: 1.75;
}

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

figure,
.workflow-card,
.benefit-list div,
.pricing-panel,
.modal-panel {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

figure {
  margin: 0;
  overflow: hidden;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

figcaption {
  padding: 13px 16px 15px;
  color: var(--text-secondary);
  font-size: 0.86rem;
  font-weight: 700;
}

.featured-shot {
  transform: none;
}

.content-showcase {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.content-showcase > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--glass-border);
}

.showcase-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-notes article {
  padding: 22px;
  background: rgba(12, 14, 20, 0.82);
}

.showcase-notes span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d9ff2f;
  font-size: 0.78rem;
  font-weight: 900;
}

.showcase-notes h3 {
  margin-bottom: 8px;
}

.showcase-notes p {
  color: var(--text-secondary);
  line-height: 1.62;
}

.demo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(236, 72, 153, 0.08)),
    rgba(26, 29, 36, 0.62);
  backdrop-filter: blur(16px);
}

.demo-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3.1vw, 2.8rem);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading-row p {
  max-width: 620px;
  line-height: 1.75;
}

.section-heading-row .btn-secondary {
  width: fit-content;
  justify-self: end;
}

.model-board {
  display: grid;
  grid-template-columns: 1.25fr 0.58fr 0.58fr;
  grid-auto-rows: minmax(150px, auto);
  gap: 16px;
}

.model-name-board {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.45fr));
}

.model-tile,
.model-stat,
.tool-grid article,
.outcome-grid article,
.team-grid article {
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.model-tile {
  position: relative;
  min-height: 190px;
}

.model-tile img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  object-position: top center;
}

.model-tile::after,
.outcome-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3, 4, 7, 0.78), transparent 55%);
}

.model-tile div,
.outcome-grid article div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.model-tile span {
  display: inline-flex;
  margin-bottom: 6px;
  color: #d9ff2f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-tile h3,
.outcome-grid h3 {
  margin-bottom: 5px;
}

.tile-large {
  grid-row: span 2;
}

.tile-large img {
  min-height: 410px;
}

.model-stat {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.model-stat strong {
  display: block;
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.model-stat span {
  color: var(--text-secondary);
  font-weight: 800;
}

.model-chip-list {
  grid-column: span 2;
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.22), transparent 40%),
    var(--glass-bg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.model-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.tool-grid article {
  transition: var(--transition);
}

.tool-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
}

.tool-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.tool-grid h3,
.tool-grid p {
  padding-inline: 20px;
}

.tool-grid h3 {
  margin-top: 18px;
}

.tool-grid p {
  min-height: 92px;
  padding-bottom: 22px;
  line-height: 1.62;
}

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

.outcome-grid article {
  position: relative;
  min-height: 340px;
}

.outcome-grid img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: top center;
}

.outcome-grid p {
  color: rgba(248, 250, 252, 0.76);
}

.outcome-copy-grid article {
  min-height: 220px;
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.outcome-copy-grid article::after {
  display: none;
}

.outcome-copy-grid article div {
  position: static;
}

.outcome-copy-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: #d9ff2f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outcome-copy-grid .wide-outcome {
  min-height: 220px;
}

.wide-outcome {
  grid-column: 1 / -1;
  min-height: 310px;
}

.wide-outcome img {
  min-height: 310px;
}

.team-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: #111214;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
}

.team-section > div:first-child p {
  max-width: 560px;
  line-height: 1.75;
}

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

.team-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.team-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d9ff2f;
  font-weight: 900;
}

.workflow-section > h2 {
  max-width: 900px;
}

.section-lede {
  max-width: 760px;
  margin-top: 2px;
  line-height: 1.75;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.workflow-card {
  overflow: hidden;
  transition: var(--transition);
}

.workflow-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.45);
}

.workflow-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.workflow-card div {
  padding: 22px;
}

.card-kicker {
  margin-bottom: 12px;
  padding: 5px 9px;
}

.workflow-card p {
  min-height: 78px;
  line-height: 1.6;
}

.workflow-card button {
  width: 100%;
  margin-top: 18px;
  color: white;
  background: rgba(99, 102, 241, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.42);
}

.workflow-card button:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.pipeline-section {
  padding-top: 48px;
}

.pipeline-section h2 {
  max-width: 960px;
}

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

.pipeline-grid article {
  min-height: 260px;
  padding: 22px;
}

.pipeline-grid h3 {
  font-size: 1.12rem;
}

.pipeline-grid p {
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-list div {
  padding: 24px;
}

.benefit-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #c4b5fd;
  font-weight: 800;
}

.pricing-section {
  display: grid;
  place-items: center;
  padding-bottom: 120px;
}

.pricing-panel {
  width: min(820px, 100%);
  padding: clamp(28px, 6vw, 54px);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(236, 72, 153, 0.09)),
    var(--glass-bg);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  margin-top: 24px;
}

.price {
  font-family: Outfit, Inter, sans-serif;
  color: var(--text-primary);
  font-size: clamp(3.3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
}

.price-note {
  padding-bottom: 10px;
  color: var(--text-secondary);
  font-weight: 700;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.demo-modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.76);
  backdrop-filter: blur(12px);
}

.modal-panel {
  position: relative;
  width: min(880px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  padding: 26px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.6rem;
}

.modal-media {
  overflow: hidden;
  margin: 20px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
}

.modal-media img,
.modal-media video {
  width: 100%;
  max-height: 56vh;
  object-fit: contain;
}

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

  .register-shell {
    grid-template-columns: 1fr;
  }

  .register-hero {
    min-height: auto;
  }

  .hero-section {
    min-height: auto;
    padding-top: 114px;
  }

  .orbit-card {
    opacity: 0.48;
  }

  .orbit-card-a,
  .orbit-card-b {
    top: 9vh;
  }

  .orbit-card-c,
  .orbit-card-d {
    top: 45vh;
  }

  .proof-strip,
  .curation-section,
  .sales-section,
  .section-heading-row,
  .demo-carousel,
  .model-board,
  .tool-grid,
  .outcome-grid,
  .team-section,
  .team-grid,
  .pipeline-grid,
  .workflow-grid,
  .showcase-notes {
    grid-template-columns: 1fr;
  }

  .tile-large,
  .wide-outcome {
    grid-column: auto;
    grid-row: auto;
  }

  .model-chip-list {
    grid-column: auto;
  }

  .section-heading-row .btn-secondary {
    justify-self: start;
  }

  .proof-copy,
  .sales-copy {
    position: static;
  }

  .demo-band {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .demo-carousel {
    grid-template-areas:
      "video"
      "copy"
      "playlist";
  }

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

  .market-strip div {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .hero-section,
  .market-strip,
  .curation-section,
  .proof-strip,
  .demo-carousel-section,
  .workflow-section,
  .model-board-section,
  .tool-hub-section,
  .outcome-section,
  .team-section,
  .pipeline-section,
  .sales-section,
  .pricing-section,
  .demo-band {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    max-width: 360px;
    margin-bottom: 16px;
    font-size: clamp(2.72rem, 13.5vw, 3.95rem);
    line-height: 0.88;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.65rem);
    line-height: 1.02;
  }

  h3 {
    font-size: 1.08rem;
  }

  p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .site-header {
    height: 72px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
    padding-inline: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .header-login,
  .header-register {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.76rem;
  }

  .hero-section {
    padding-top: 94px;
    padding-bottom: 48px;
    place-items: start center;
  }

  .hero-section::before {
    inset: 84px 0 auto;
    height: 56vh;
  }

  .hero-inner {
    width: min(100% - 30px, 420px);
  }

  .hero-copy {
    max-width: 360px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero-actions,
  .buy-actions,
  .modal-actions {
    flex-direction: column;
  }

  .hero-command {
    grid-template-columns: 34px minmax(0, 1fr);
    margin-top: 20px;
    padding: 10px;
  }

  .hero-command p {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero-command button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-metrics div {
    min-height: 0;
    padding: 12px 14px;
    text-align: left;
  }

  .hero-stage {
    width: min(100% - 28px, 560px);
    margin-top: 24px;
  }

  .stage-badge {
    display: none;
  }

  .orbit-card {
    width: 128px;
    border-radius: 14px;
    opacity: 0.34;
  }

  .orbit-card-a {
    left: -58px;
    top: 10vh;
  }

  .orbit-card-b {
    right: -64px;
    top: 10vh;
  }

  .orbit-card-c,
  .orbit-card-d,
  .orbit-card-e {
    display: none;
  }

  .hero-metrics strong {
    font-size: 1.08rem;
  }

  .hero-metrics span {
    font-size: 0.82rem;
  }

  .demo-carousel-section {
    margin-top: 0;
  }

  .proof-strip,
  .workflow-section,
  .model-board-section,
  .tool-hub-section,
  .outcome-section,
  .team-section,
  .pipeline-section,
  .sales-section,
  .pricing-section {
    padding-block: 58px;
  }

  .curation-section {
    padding-block: 52px;
  }

  .demo-band {
    padding: 20px;
  }

  .section-heading-row {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-heading-row p,
  .curation-copy p,
  .proof-copy p,
  .sales-copy p,
  .team-section > div:first-child p {
    max-width: none;
  }

  .demo-carousel,
  .model-board,
  .content-showcase,
  .team-grid article,
  .pipeline-grid article,
  .benefit-list div,
  .pricing-panel {
    border-radius: 18px;
  }

  .demo-carousel {
    padding: 10px;
    gap: 12px;
  }

  .demo-playlist button {
    min-height: 70px;
    padding: 12px;
  }

  .demo-playlist span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .demo-carousel-copy h3 {
    font-size: 1.35rem;
  }

  .curation-steps,
  .benefit-list {
    gap: 12px;
  }

  .curation-steps article,
  .showcase-notes article,
  .tool-grid article,
  .outcome-grid article,
  .team-grid article,
  .pipeline-grid article,
  .benefit-list div {
    min-height: 0;
    padding: 17px;
  }

  .team-section {
    gap: 20px;
  }

  .pipeline-section {
    padding-top: 34px;
  }

  .pipeline-grid {
    margin-top: 22px;
  }

  .price {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .register-page {
    padding-top: 102px;
  }

  .register-actions .btn-primary,
  .register-actions .btn-secondary {
    width: 100%;
  }

  .modal-panel {
    padding: 22px;
  }
}
