@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0d1b2a;
  --panel: #112236;
  --panel-2: #0f2035;
  --line: #1e3a52;
  --line-strong: #067f8a;
  --ink: #d6e4f0;
  --muted: #8faabe;
  --faint: #5f7d92;
  --accent: #00e5c7;
  --accent-2: #56ccf2;
  --blue: #2557d6;
  --warn: #ffb020;
  --shadow: 0 26px 60px rgba(0, 0, 0, .42);
  --radius: 8px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(0, 229, 199, .16), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(37, 87, 214, .18), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #0d1b2a 58%, #07111f 100%);
  color: var(--ink);
}

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

.ico {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.ico-sm {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(7, 17, 31, .86);
  border-bottom: 1px solid rgba(86, 204, 242, .16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(86, 204, 242, .34);
  border-radius: var(--radius);
  color: #8defff;
  background: rgba(15, 32, 53, .9);
  font-weight: 700;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 154px);
  display: grid;
  grid-template-columns: minmax(420px, .78fr) minmax(520px, 1fr);
  gap: clamp(26px, 4vw, 52px);
  align-items: center;
  padding: 48px 0 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(46px, 6.3vw, 78px);
  line-height: .94;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
}

.btn.primary {
  color: #03111b;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 34px rgba(0, 229, 199, .18);
}

.btn.secondary {
  color: #8defff;
  background: rgba(17, 34, 54, .82);
  border-color: rgba(86, 204, 242, .35);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.proof-strip span,
.product-stage span,
.feature-index,
.workflow span {
  color: var(--muted);
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 34, 54, .84);
  border: 1px solid rgba(86, 204, 242, .16);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip .ico-sm {
  color: var(--accent);
}

.product-stage,
.video-shell,
.feature-band,
.agency-section,
.plans-section,
.final-cta {
  border: 1px solid rgba(86, 204, 242, .2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 34, 54, .93), rgba(13, 27, 42, .94));
  box-shadow: var(--shadow);
}

.product-stage {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: auto 34px -90px auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 229, 199, .2), transparent 68%);
  pointer-events: none;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(86, 204, 242, .16);
  background: rgba(7, 17, 31, .72);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(143, 170, 190, .44);
}

.browser-bar strong {
  margin-left: 8px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.studio-mock {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding: 14px;
}

.mock-sidebar,
.mock-table,
.mock-brief {
  border: 1px solid rgba(86, 204, 242, .14);
  border-radius: var(--radius);
  background: rgba(15, 32, 53, .78);
}

.mock-sidebar {
  min-height: 390px;
  padding: 14px;
}

.mock-label,
.mock-stats span {
  color: var(--faint);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mock-sidebar > strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 18px;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.mock-pill.high {
  color: #00f0a8;
  background: rgba(0, 229, 199, .13);
}

.mock-video {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(86, 204, 242, .12);
  border-radius: var(--radius);
  background: rgba(17, 34, 54, .76);
}

.mock-video.selected {
  border-color: rgba(0, 229, 199, .62);
  background: rgba(0, 229, 199, .08);
}

.mock-video span,
.mock-video b {
  display: block;
}

.mock-video span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.mock-video b {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
}

.mock-table {
  min-height: 250px;
  padding: 12px;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-stats div {
  min-height: 72px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(7, 17, 31, .54);
  border: 1px solid rgba(86, 204, 242, .12);
}

.mock-stats strong {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 20px;
}

.stat-score {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 8px;
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--pct) * 1%), rgba(143, 170, 190, .16) 0);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #0d1b2a;
}

.score-ring strong,
.score-ring small {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.score-ring strong {
  margin-top: 0;
  font-size: 15px;
  line-height: 1;
}

.score-ring small {
  display: block;
  color: var(--faint);
  font-size: 8px;
  font-weight: 800;
}

.clip-row {
  display: grid;
  grid-template-columns: 54px 86px 76px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px;
  border-top: 1px solid rgba(86, 204, 242, .14);
}

.clip-row.selected {
  margin-inline: -12px;
  padding-inline: 12px;
  background: rgba(0, 229, 199, .16);
  border-left: 3px solid var(--accent);
}

.clip-row b {
  color: var(--accent);
}

.clip-row span {
  justify-self: start;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 229, 199, .1);
  font-size: 11px;
  font-weight: 800;
}

.clip-row strong {
  color: #76e8ff;
}

.clip-row em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.28;
}

.mock-brief {
  grid-column: 2;
  margin-top: -132px;
  margin-left: 76px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .28);
}

.mock-brief h3 {
  margin-top: 8px;
}

.mock-brief p {
  color: var(--muted);
  line-height: 1.5;
}

.mock-actions {
  display: flex;
  gap: 8px;
}

.mock-actions span {
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #8defff;
  background: rgba(37, 87, 214, .22);
  font-size: 12px;
  font-weight: 800;
}

.visual-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 44px;
}

.visual-flow article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(86, 204, 242, .18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 34, 54, .92), rgba(15, 32, 53, .72));
}

.visual-flow article::after {
  content: "";
  position: absolute;
  inset: auto -40px -52px auto;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(0, 229, 199, .18);
  border-radius: 999px;
}

.visual-flow article::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 68px;
  font-weight: 800;
  color: rgba(86, 204, 242, .07);
  line-height: 1;
  pointer-events: none;
}

.visual-flow h3,
.visual-flow p {
  position: relative;
}

.flow-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: #03111b;
  background: var(--accent);
  font-weight: 900;
}

.visual-flow p {
  color: var(--muted);
  line-height: 1.5;
}

.media-section,
.split-section {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: 78px 0;
}

.section-copy p,
.text-stack p,
.feature-grid p,
.plan-grid p,
.before-after p {
  color: var(--muted);
  line-height: 1.65;
}

.media-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.media-stats div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(17, 34, 54, .78);
  border: 1px solid rgba(86, 204, 242, .16);
}

.media-stats strong,
.media-stats span {
  display: block;
}

.media-stats strong {
  color: var(--accent);
  font-size: 24px;
}

.media-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.video-shell {
  padding: 12px;
  background: linear-gradient(180deg, rgba(17, 34, 54, .94), rgba(7, 17, 31, .96));
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #000;
}

.split-section {
  border-top: 1px solid rgba(86, 204, 242, .14);
  border-bottom: 1px solid rgba(86, 204, 242, .14);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.before-after article {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(86, 204, 242, .16);
  background: rgba(15, 32, 53, .74);
}

.before-after article:last-child {
  border-color: rgba(0, 229, 199, .38);
  background: linear-gradient(180deg, rgba(0, 229, 199, .1), rgba(15, 32, 53, .78));
}

.before-after span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(143, 170, 190, .12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after article:last-child span {
  color: var(--accent);
  background: rgba(0, 229, 199, .12);
}

.duration-bar {
  height: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(143, 170, 190, .14);
  overflow: hidden;
}

.duration-bar i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 176, 32, .55);
}

.duration-bar.accent i {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.before-after strong {
  display: block;
  font-family: "Space Grotesk", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.08;
}

.feature-band,
.agency-section,
.plans-section,
.final-cta {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 40px);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.feature-grid article,
.plan-grid article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(86, 204, 242, .14);
  background: rgba(15, 32, 53, .72);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  inset: auto -34px -38px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(0, 229, 199, .06);
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(0, 229, 199, .1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 28px;
}

.workflow div {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(0, 229, 199, .08);
  border: 1px solid rgba(0, 229, 199, .22);
}

.workflow div:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  color: rgba(0, 229, 199, .5);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.workflow strong,
.workflow span {
  display: block;
}

.wf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(0, 229, 199, .14);
}

.wf-icon .ico {
  width: 19px;
  height: 19px;
}

.workflow strong {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 18px;
}

.workflow span {
  line-height: 1.5;
}

@media (max-width: 980px) {
  .workflow div::after {
    display: none;
  }
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.plan-grid .featured {
  border-color: rgba(0, 229, 199, .42);
  background: linear-gradient(180deg, rgba(0, 229, 199, .1), rgba(15, 32, 53, .84));
}

.plan-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  line-height: 1.4;
}

.plan-list .ico-sm {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}

.demo-section {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
  margin: 34px 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(86, 204, 242, .2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(17, 34, 54, .93), rgba(13, 27, 42, .94));
  box-shadow: var(--shadow);
}

.demo-lede {
  margin-top: 14px;
  font-size: 17px;
}

.demo-next {
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(86, 204, 242, .16);
  background: rgba(7, 17, 31, .5);
}

.demo-next-title {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(86, 204, 242, .18);
  background: rgba(7, 17, 31, .48);
}

.demo-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.demo-form .req {
  color: var(--warn);
}

.demo-form input,
.demo-form select {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid rgba(86, 204, 242, .22);
  background: rgba(13, 27, 42, .9);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.demo-form input:focus,
.demo-form select:focus {
  outline: none;
  border-color: rgba(0, 229, 199, .6);
  box-shadow: 0 0 0 3px rgba(0, 229, 199, .16);
}

.demo-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.demo-form-footer .btn {
  gap: 8px;
}

.demo-trust {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
}

.demo-trust .ico-sm {
  color: var(--accent);
}

.demo-status {
  margin: 0;
  min-height: 18px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

.demo-status.success {
  color: #4ade80;
}

.demo-status.error {
  color: #ff6b81;
}

.final-cta {
  text-align: center;
  margin-bottom: 72px;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--faint);
  border-top: 1px solid rgba(86, 204, 242, .14);
  background: rgba(7, 17, 31, .72);
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .media-section,
  .split-section,
  .demo-section {
    grid-template-columns: 1fr;
  }

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

  .product-stage {
    max-width: 760px;
    justify-self: center;
  }

  .feature-grid,
  .workflow,
  .visual-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  main {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    width: 146px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .studio-mock,
  .mock-stats,
  .media-stats,
  .before-after,
  .feature-grid,
  .visual-flow,
  .workflow,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    min-height: auto;
  }

  .mock-brief {
    grid-column: auto;
    margin: 0;
  }

  .clip-row {
    grid-template-columns: 48px 1fr 70px;
  }

  .demo-form-row {
    grid-template-columns: 1fr;
  }

  .clip-row em {
    grid-column: 1 / -1;
  }

  .media-section,
  .split-section {
    padding: 52px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
