:root {
  --ink: #f7f5ff;
  --muted: #aaa8ba;
  --night: #090a12;
  --panel: #11121d;
  --panel-raised: #171824;
  --line: #2b2c3c;
  --violet: #9d6cff;
  --magenta: #ef4fa6;
  --cyan: #70d8ff;
  --display: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  --body: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  --utility: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: var(--body);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 7%, rgba(157, 108, 255, .14), transparent 28rem),
    radial-gradient(circle at 12% 30%, rgba(239, 79, 166, .06), transparent 26rem),
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: auto, auto, 100% 56px;
  pointer-events: none;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.7vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}
h1 em {
  color: transparent;
  background: linear-gradient(100deg, #b78bff 8%, var(--magenta) 88%);
  background-clip: text;
  font-style: normal;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 68px;
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(9,10,18,.88);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.brand strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: -.02em; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a, .support-link { color: #c9c6d4; font-size: .83rem; font-weight: 700; }
.site-header nav a:hover, .support-link:hover { color: white; }
.support-link { justify-self: end; }

.hero, .workflow, .features, .export-section, .use-cases, .support-section {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}
.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  min-height: 610px;
  padding: 64px 0 54px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .feature-label {
  margin-bottom: 15px;
  color: #c9abff;
  font-family: var(--utility);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-lead, .section-heading > p, .export-copy > p {
  max-width: 620px;
  color: #cbc8d6;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.hero-lead { max-width: 510px; }
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  margin-top: 14px;
  padding: 12px 18px;
  border: 1px solid #b887ff;
  border-radius: 10px;
  background: var(--violet);
  color: white;
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 13px 28px rgba(157,108,255,.18);
}
.primary-action:hover { background: #b68aff; }
.hero-stage {
  position: relative;
  padding: 42px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(23,24,36,.9), rgba(12,13,22,.72));
}
.stage-label {
  position: absolute;
  top: 0;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: .7rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.stage-label span { width: 7px; height: 7px; border-radius: 50%; background: #67e3a5; box-shadow: 0 0 14px #67e3a5; }
.hero-shot {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #3c3d50;
  border-radius: 12px;
  background: #080910;
  box-shadow: 0 24px 54px rgba(0,0,0,.38);
  cursor: zoom-in;
}
.hero-shot img { width: 100%; aspect-ratio: 1.56; object-fit: contain; }
.stage-note { margin: 12px 0 0; color: #858394; font-family: var(--utility); font-size: .7rem; }

.workflow, .features, .export-section { padding-top: 90px; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.production-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.production-track::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--magenta), var(--cyan));
}
.production-track li { position: relative; z-index: 1; padding-right: 18px; }
.step-number {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 13px;
  place-items: center;
  border: 1px solid #665183;
  border-radius: 50%;
  background: var(--night);
  color: #d7c3ff;
  font-family: var(--utility);
  font-size: .68rem;
  font-weight: 900;
}
.production-track strong, .production-track small { display: block; }
.production-track strong { font-family: var(--display); font-size: 1.2rem; }
.production-track small { margin-top: 3px; color: var(--muted); }
.workspace-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(23,24,36,.96), rgba(15,16,27,.95));
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.workspace-preview button { padding: 0; border: 0; border-right: 1px solid var(--line); background: #080910; }
.workspace-preview img { width: 100%; max-height: 390px; object-fit: contain; }
.workspace-preview figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; }
.workspace-preview figcaption strong { font-family: var(--display); font-size: 1.2rem; line-height: 1.2; }
.workspace-preview figcaption span { margin-top: 9px; color: var(--muted); font-size: .9rem; }

.split-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; max-width: none; }
.split-heading > p { margin-bottom: 7px; }
.feature-grid { display: grid; grid-template-columns: 1.12fr .88fr .88fr; gap: 16px; }
.feature-card {
  display: flex;
  min-height: 565px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(24,25,39,.97), rgba(15,16,27,.95));
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}
.card-copy { min-height: 245px; padding: 26px; }
.card-copy p { color: #b9b6c5; }
.card-copy ul { display: grid; gap: 7px; margin: 17px 0 0; padding: 0; color: #d6d2df; font-size: .86rem; list-style: none; }
.card-copy li::before { content: "—"; margin-right: 8px; color: var(--magenta); }
.feature-label { display: block; margin-bottom: 13px; color: var(--cyan); }
.edit-card .feature-label { color: #c5a4ff; }
.audio-card .feature-label { color: #f29ac9; }
.vertical-shot {
  width: 100%;
  min-height: 0;
  flex: 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--line);
  background: #0b0c15;
}
.vertical-shot img { width: 100%; height: 100%; max-height: 340px; object-fit: contain; object-position: center top; }

.export-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.export-copy { max-width: 430px; }
.format-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.format-list span, .case-list span {
  padding: 7px 10px;
  border: 1px solid #393a4b;
  border-radius: 7px;
  color: #cecad9;
  font-family: var(--utility);
  font-size: .68rem;
}
.export-shots { display: grid; gap: 14px; }
.export-shots figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(23,24,36,.96), rgba(15,16,27,.95));
  box-shadow: 0 16px 38px rgba(0,0,0,.2);
}
.export-shots button { padding: 0; border: 0; border-right: 1px solid var(--line); background: #090a12; }
.export-shots img { width: 100%; max-height: 170px; object-fit: contain; }
.export-shots figcaption { display: flex; flex-direction: column; justify-content: center; padding: 18px; }
.export-shots figcaption strong { font-family: var(--display); font-size: 1.1rem; }
.export-shots figcaption span { margin-top: 5px; color: var(--muted); font-size: .8rem; }

.use-cases { padding-top: 105px; text-align: center; }
.use-cases h2 { max-width: 760px; margin-inline: auto; }
.case-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.case-list span { border-color: #4b3b64; background: rgba(157,108,255,.06); color: #d9c6ff; }
.support-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 70px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(157,108,255,.1), rgba(239,79,166,.055));
}
.support-section h2 { max-width: 720px; margin-bottom: 0; }
.support-section .primary-action { margin-top: 0; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.imprint-button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: #d5b8ff; cursor: pointer; }

.preview-trigger { color: inherit; cursor: zoom-in; }
.preview-trigger img { transition: transform 200ms ease, filter 200ms ease; }
.preview-trigger:hover img { transform: scale(1.012); filter: brightness(1.06); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(3,3,8,.9);
  backdrop-filter: blur(14px);
}
.modal-backdrop[hidden] { display: none; }
.modal-shell {
  position: relative;
  width: min(980px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-raised);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.image-modal { width: min(1480px, 100%); }
.image-modal h2 { padding-right: 50px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.image-modal img { width: 100%; max-height: calc(100vh - 150px); object-fit: contain; background: #080910; }
.imprint-modal { width: min(600px, 100%); }
.imprint-modal p { color: #d1cedb; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #20212e;
  color: white;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 720px; }
  .hero-stage { padding-left: 24px; }
  .stage-label { left: 24px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .bulk-card { grid-column: 1 / -1; min-height: 500px; }
  .export-section { grid-template-columns: 1fr; }
  .export-copy { max-width: 680px; }
}

@media (max-width: 720px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 60px; padding-inline: 14px; }
  .site-header nav { display: none; }
  .brand strong { font-size: .9rem; }
  .support-link { font-size: 0; }
  .support-link span { font-size: 1rem; }
  .hero, .workflow, .features, .export-section, .use-cases, .support-section { width: min(100% - 28px, 1180px); }
  .hero { gap: 42px; padding: 58px 0 44px; }
  h1 { font-size: clamp(2.9rem, 14vw, 4.35rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .hero-stage { padding: 38px 14px 15px; }
  .stage-label { top: 12px; left: 14px; }
  .workflow, .features, .export-section { padding-top: 68px; }
  .production-track { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .production-track::before { display: none; }
  .production-track li { padding-right: 0; }
  .workspace-preview { grid-template-columns: 1fr; }
  .workspace-preview button { border-right: 0; border-bottom: 1px solid var(--line); }
  .workspace-preview figcaption { padding: 20px; }
  .split-heading { grid-template-columns: 1fr; gap: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .bulk-card { grid-column: auto; }
  .feature-card { min-height: 520px; }
  .card-copy { min-height: auto; }
  .export-shots figure { grid-template-columns: 1fr; }
  .export-shots button { border-right: 0; border-bottom: 1px solid var(--line); }
  .export-shots figcaption { padding: 15px 18px; }
  .use-cases { padding-top: 80px; }
  .support-section { grid-template-columns: 1fr; margin-top: 74px; padding: 28px 0; }
  .support-section .primary-action { justify-self: start; }
  .site-footer { flex-direction: column; padding-inline: 14px; }
  .modal-backdrop { padding: 8px; }
  .modal-shell { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .preview-trigger img { transition: none; }
}
