:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #0d1118;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: #131924;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f8fafc;
  --muted: #a7b0bf;
  --teal: #2dd4bf;
  --cyan: #67e8f9;
  --violet: #a78bfa;
  --amber: #fbbf24;
  --green: #86efac;
  --danger: #fca5a5;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% -10%, rgba(45, 212, 191, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(139, 92, 246, 0.15), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #05070a;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #f8fafc, #dbeafe);
  color: #07090d;
  box-shadow: 0 12px 40px rgba(103, 232, 249, 0.13);
}

.button.primary:hover {
  background: #fff;
}

.button.large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 0.98rem;
}

.hero {
  position: relative;
  padding: 94px 0 58px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  top: 3rem;
  left: 50%;
  z-index: -1;
  width: min(900px, 90vw);
  height: 460px;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.12);
  filter: blur(90px);
}

.hero-copy {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.065);
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 1.02;
  letter-spacing: -0.067em;
  font-weight: 950;
  overflow: visible;
}

h1 span,
.gradient-text {
  background: linear-gradient(90deg, #fff, #c4b5fd 48%, #67e8f9);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 760px;
  margin: 0 auto;
  color: #b8c0ce;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
  margin-top: 30px;
}

.microcopy {
  margin-top: 14px;
  color: #87909e;
  font-size: 0.78rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.proof-pill {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c8ced8;
  font-size: 0.78rem;
  font-weight: 750;
}

.showcase {
  position: relative;
  max-width: 1260px;
  margin: 56px auto 0;
  padding: 1px;
  border-radius: 26px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.25), rgba(167, 139, 250, 0.3), rgba(45, 212, 191, 0.18));
  box-shadow: var(--shadow);
}

.showcase > img {
  width: 100%;
  border-radius: 25px;
  background: #090b10;
}

.showcase-caption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.76);
  color: #d8dee8;
  font-size: 0.72rem;
  backdrop-filter: blur(10px);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.demo-studio {
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: left;
}

.demo-surface {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 25px;
  background:
    radial-gradient(circle at 75% 18%, rgba(103, 232, 249, 0.09), transparent 24rem),
    radial-gradient(circle at 18% 78%, rgba(167, 139, 250, 0.12), transparent 25rem),
    #090c12;
}

.demo-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.demo-heading-copy {
  max-width: 720px;
}

.demo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.9);
}

.demo-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.demo-heading h2 span {
  color: #a7f3d0;
}

.demo-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.demo-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.demo-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce3ec;
  font-size: 0.7rem;
  font-weight: 850;
  white-space: nowrap;
}

.demo-layout {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(260px, 320px) minmax(260px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 2.8vw, 34px);
}

.demo-source-card,
.demo-results,
.demo-output-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.demo-source-card,
.demo-results {
  padding: 18px;
  border-radius: 20px;
}

.demo-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  color: #7f8998;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-card-topline span:first-child {
  color: #dce3ec;
}

.demo-source-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #020306;
  aspect-ratio: 16 / 9;
}

.demo-source-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-source-media video {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #020305;
}

.demo-source-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(2, 3, 6, 0.5), transparent 52%);
}

.demo-source-play {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(3, 5, 8, 0.7);
  color: white;
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.demo-source-time {
  position: absolute;
  right: 8px;
  bottom: 7px;
  z-index: 2;
  padding: 3px 6px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.72);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
}

.demo-source-name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 13px 1px 18px;
}

.demo-source-name strong {
  font-size: 0.88rem;
}

.demo-source-name span {
  color: #7f8998;
  font-size: 0.69rem;
  white-space: nowrap;
}

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

.demo-analysis li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
}

.demo-analysis li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 9px;
  background: rgba(103, 232, 249, 0.07);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 950;
}

.demo-analysis div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.demo-analysis strong {
  color: #dce3ec;
  font-size: 0.76rem;
}

.demo-analysis small {
  color: #7f8998;
  font-size: 0.68rem;
}

.demo-phone-stage {
  min-width: 0;
}

.demo-conversion-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #7f8998;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-conversion-label i {
  color: var(--teal);
  font-size: 1rem;
  font-style: normal;
}

.demo-phone {
  position: relative;
  width: min(100%, 310px);
  margin-inline: auto;
  overflow: hidden;
  border: 7px solid #202734;
  border-radius: 38px;
  background: #030406;
  aspect-ratio: 9 / 16;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 60px rgba(45, 212, 191, 0.08);
}

.demo-phone::before {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 8;
  width: 62px;
  height: 18px;
  content: "";
  transform: translateX(-50%);
  border-radius: 999px;
  background: #05070a;
}

.demo-phone video {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #020305;
  cursor: pointer;
}

.demo-phone-status {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 15px 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.55rem;
  font-weight: 850;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.demo-phone-format {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 5, 8, 0.62);
  color: #a7f3d0;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.demo-caption {
  position: absolute;
  left: 50%;
  bottom: 17%;
  z-index: 5;
  width: auto;
  max-width: 88%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px 5px;
  transform: translateX(-50%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: white;
  font-family: 'Arial Black', Impact, sans-serif;
  font-size: clamp(0.78rem, 1.35vw, 1rem);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 0 #000, 2px 0 0 #000, -2px 0 0 #000, 0 0 12px rgba(0, 0, 0, 0.82);
}

.demo-caption span {
  padding: 1px 2px;
  border-radius: 4px;
  transition: color 150ms ease, transform 150ms ease;
}

.demo-caption .is-current {
  transform: translateY(-2px) scale(1.08);
  color: #a3ff12;
  text-shadow: 0 4px 0 #000, 2px 0 0 #000, -2px 0 0 #000, 0 0 12px rgba(0, 0, 0, 0.82);
}

.demo-video-error {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 7;
  width: 82%;
  margin: 0;
  transform: translate(-50%, -50%);
  padding: 14px;
  border: 1px solid rgba(252, 165, 165, 0.3);
  border-radius: 12px;
  background: rgba(12, 5, 7, 0.88);
  color: #fecaca;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(9px);
}

.demo-video-error[hidden] {
  display: none;
}

.demo-phone.has-error .demo-play,
.demo-phone.has-error .demo-caption {
  display: none;
}

.demo-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(4, 7, 10, 0.72);
  color: white;
  cursor: pointer;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.demo-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: rgba(4, 7, 10, 0.9);
}

.demo-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid white;
}

.demo-phone.is-playing .demo-play {
  opacity: 0;
}

.demo-phone.is-playing:hover .demo-play,
.demo-phone.is-playing .demo-play:focus-visible {
  opacity: 1;
}

.demo-phone.is-playing .demo-play span {
  width: 14px;
  height: 17px;
  margin-left: 0;
  border: 0;
  border-inline: 4px solid white;
}

.demo-player-bottom {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  z-index: 6;
  padding: 9px 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(2, 3, 5, 0.72);
  backdrop-filter: blur(8px);
}

.demo-player-bottom input {
  width: 100%;
  height: 20px;
  display: block;
  margin: -5px 0 1px;
  accent-color: var(--teal);
  cursor: pointer;
}

.demo-player-bottom div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #dce3ec;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.demo-player-bottom div span:last-child {
  color: #86efac;
}

.demo-results {
  min-width: 0;
}

.demo-clips {
  display: grid;
  gap: 9px;
}

.demo-clip {
  position: relative;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 11px;
  padding: 7px 9px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.demo-clip:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.demo-clip.is-selected {
  border-color: rgba(45, 212, 191, 0.5);
  background: linear-gradient(105deg, rgba(45, 212, 191, 0.11), rgba(103, 232, 249, 0.035));
  box-shadow: inset 3px 0 0 var(--teal);
}

.demo-clip img {
  width: 48px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  background: #020305;
}

.demo-clip-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.demo-clip-copy strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-clip-copy small {
  margin-top: 3px;
  color: #8d97a6;
  font-size: 0.64rem;
}

.demo-clip-copy em {
  margin-top: 4px;
  color: #a7f3d0;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.demo-clip-score {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 9px;
  background: rgba(167, 139, 250, 0.09);
  color: #ddd6fe;
  font-size: 0.67rem;
  font-weight: 950;
}

.demo-output-card {
  margin-top: 12px;
  padding: 15px;
  border-radius: 15px;
}

.demo-output-label {
  margin-bottom: 5px;
  color: var(--violet);
  font-size: 0.63rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-output-card > strong {
  display: block;
  font-size: 0.88rem;
}

.demo-output-card > p {
  margin: 5px 0 11px;
  color: #8d97a6;
  font-size: 0.71rem;
  line-height: 1.45;
}

.demo-output-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.demo-output-stats span {
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  color: #7f8998;
  font-size: 0.61rem;
}

.demo-output-stats b {
  color: #dce3ec;
}

.demo-transcript {
  margin-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 9px;
}

.demo-transcript summary {
  color: #bac3cf;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
}

.demo-transcript p {
  margin: 8px 0 0;
  color: #8d97a6;
  font-size: 0.68rem;
  line-height: 1.5;
}

.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-footer p {
  max-width: 760px;
  margin: 0;
  color: #7f8998;
  font-size: 0.72rem;
  line-height: 1.5;
}

.demo-footer .button {
  flex: 0 0 auto;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.alt {
  border-block: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.018);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-head p,
.legal-intro {
  color: var(--muted);
  font-size: 1.03rem;
}

.steps,
.feature-grid,
.pricing-grid,
.trust-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

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

.step,
.feature-card,
.trust-card,
.contact-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 10px;
  background: rgba(103, 232, 249, 0.08);
  color: var(--cyan);
  font-weight: 950;
}

.step h3,
.feature-card h3,
.trust-card h3,
.contact-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.step p,
.feature-card p,
.trust-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.feature-grid,
.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 1px solid rgba(167, 139, 250, 0.24);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.13), rgba(45, 212, 191, 0.07));
  color: #ddd6fe;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.demo-note {
  margin-top: 16px;
  color: #8993a2;
  font-size: 0.8rem;
  text-align: center;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #0d121a;
}

.price-card.popular {
  border-color: rgba(167, 139, 250, 0.48);
  background:
    radial-gradient(circle at 50% 0, rgba(124, 58, 237, 0.22), transparent 16rem),
    #11131c;
  box-shadow: 0 28px 90px rgba(88, 28, 135, 0.16);
}

.popular-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.14);
  color: #ddd6fe;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  color: #d8dee8;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price {
  margin: 14px 0 22px;
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.price small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0;
}

.feature-list {
  min-height: 178px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 23px;
  color: #c6ceda;
  font-size: 0.87rem;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 950;
}

.price-card .button {
  width: 100%;
}

.pricing-note {
  margin: 20px auto 0;
  color: #8993a2;
  font-size: 0.8rem;
  text-align: center;
}

.trust-card strong {
  color: var(--green);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list details {
  margin: 10px 0;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.faq-list summary {
  padding: 18px 30px 18px 0;
  cursor: pointer;
  font-weight: 850;
}

.faq-list details p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border: 1px solid rgba(167, 139, 250, 0.27);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 15%, rgba(45, 212, 191, 0.18), transparent 22rem),
    radial-gradient(circle at 10% 90%, rgba(124, 58, 237, 0.2), transparent 24rem),
    #11151e;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 760px;
  margin-inline: auto;
}

.cta-panel p {
  max-width: 650px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  margin: 8px 0 0;
  color: #7f8896;
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.legal-hero {
  padding: 72px 0 34px;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}

.legal-meta {
  color: #7f8998;
  font-size: 0.78rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 64px;
  align-items: start;
  padding: 20px 0 92px;
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.legal-content section {
  margin-bottom: 42px;
  scroll-margin-top: 110px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  color: #b1bac8;
  font-size: 0.93rem;
}

.legal-content li {
  margin: 8px 0;
}

.legal-content a,
.contact-card a {
  color: var(--cyan);
  font-weight: 700;
}

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 16px;
  background: rgba(103, 232, 249, 0.055);
  color: #cbd5e1;
  font-size: 0.87rem;
}

.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0 42px;
}

.contact-card .button {
  margin-top: 20px;
}

.contact-address {
  color: var(--cyan);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

:focus-visible {
  outline: 3px solid rgba(103, 232, 249, 0.7);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .demo-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .demo-badges {
    justify-content: flex-start;
  }

  .demo-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
  }

  .demo-source-card {
    grid-column: 1;
  }

  .demo-phone-stage {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .demo-results {
    grid-column: 1;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .feature-list {
    min-height: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .site-header {
    position: relative;
  }

  .nav {
    min-height: 66px;
  }

  .nav-actions .button:first-child {
    display: none;
  }

  .nav-actions .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

  .nav-actions .button.primary {
    font-size: 0;
  }

  .nav-actions .button.primary::after {
    content: "Essayer";
    font-size: 0.8rem;
  }

  .brand {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero-actions .button {
    width: 100%;
  }

  .showcase {
    margin-top: 42px;
    border-radius: 22px;
  }

  .demo-surface {
    padding: 20px 16px;
    border-radius: 21px;
  }

  .demo-heading {
    margin-bottom: 25px;
  }

  .demo-heading h2 {
    font-size: clamp(1.9rem, 10vw, 2.65rem);
  }

  .demo-heading p {
    font-size: 0.88rem;
  }

  .demo-badges {
    gap: 6px;
  }

  .demo-badges span {
    font-size: 0.63rem;
  }

  .demo-layout {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
  }

  .demo-source-card,
  .demo-results {
    width: 100%;
  }

  .demo-source-card {
    order: 1;
  }

  .demo-phone-stage {
    width: 100%;
    order: 2;
  }

  .demo-results {
    order: 3;
    overflow: hidden;
  }

  .demo-phone {
    width: min(78vw, 310px);
  }

  .demo-caption {
    font-size: clamp(0.69rem, 3.6vw, 0.9rem);
  }

  .demo-clips {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 2px 2px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .demo-clip {
    min-width: min(82%, 280px);
    flex: 0 0 min(82%, 280px);
    scroll-snap-align: start;
  }

  .demo-clip:hover {
    transform: translateY(-1px);
  }

  .demo-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-footer .button {
    width: 100%;
  }

  .showcase-caption {
    position: static;
    max-width: none;
    margin: 10px;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .steps,
  .feature-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .step-number,
  .feature-icon {
    margin-bottom: 22px;
  }

  .cta-panel {
    padding: 40px 22px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* ── ClipFactory visual system ─────────────────────────────────────────── */
:root {
  --bg: #080a0e;
  --bg-soft: #0d1118;
  --surface: #111720;
  --surface-raised: #151d28;
  --line: rgba(226, 232, 240, .12);
  --line-strong: rgba(94, 234, 212, .34);
  --text: #f8fafc;
  --muted: #aab4c2;
  --teal: #2dd4bf;
  --teal-strong: #14b8a6;
  --violet: #a78bfa;
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, .24);
  --shadow-card: 0 10px 32px rgba(0, 0, 0, .18);
  --radius-card: 18px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.site-header {
  border-bottom-color: rgba(226, 232, 240, .1);
  background: rgba(8, 10, 14, .88);
}

.nav { min-height: 78px; }
.brand { font-weight: 750; }
.brand img { filter: drop-shadow(0 7px 18px rgba(45, 212, 191, .16)); }
.nav-links { gap: 20px; }
.nav-links a { font-size: .84rem; transition: color 160ms ease, transform 160ms ease; }
.nav-links a:hover { transform: translateY(-1px); color: var(--teal); }

.button {
  min-height: 46px;
  border-radius: 11px;
  border-color: var(--line);
  background: rgba(255, 255, 255, .045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.button.primary {
  background: var(--teal);
  color: #06201d;
  box-shadow: 0 10px 28px rgba(20, 184, 166, .18);
}
.button.primary:hover { background: #5eead4; }

.hero { padding: 88px 0 64px; }
.hero::after { background: rgba(45, 212, 191, .09); filter: blur(110px); }
.hero-copy { max-width: 820px; }
.hero-copy {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: 8px;
}
.eyebrow, .kicker { color: var(--teal); letter-spacing: .12em; }
.hero h1, .section-head h2, .cta-panel h2 { letter-spacing: -.045em; }
.hero h1 span {
  display: inline;
  background: linear-gradient(120deg, #f8fafc 0%, #99f6e4 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-lead { max-width: 700px; color: var(--muted); font-size: 1.04rem; }
.microcopy { color: #8995a5; }
.proof-pill { border-color: var(--line); background: rgba(255, 255, 255, .035); }

.section { padding: 88px 0; }
.section.alt { background: rgba(255, 255, 255, .018); border-block: 1px solid rgba(226, 232, 240, .055); }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); }

.showcase, .step, .feature-card, .trust-card, .price-card, .cta-panel, .faq-list details {
  border-color: var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.showcase { box-shadow: var(--shadow-soft); }
.showcase { clear: both; display: block; }
.step, .feature-card, .trust-card, .price-card { background: var(--surface); }
.step:hover, .feature-card:hover, .trust-card:hover, .price-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}
.step, .feature-card, .trust-card, .price-card { transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.feature-icon, .step-number { background: rgba(45, 212, 191, .11); border-color: rgba(94, 234, 212, .22); color: var(--teal); }
.price-card.popular { border-color: rgba(94, 234, 212, .55); box-shadow: 0 18px 60px rgba(20, 184, 166, .12); }
.popular-label { background: var(--teal); color: #06201d; }
.faq-list details { background: var(--surface); }
.faq-list details[open] { border-color: var(--line-strong); }
.site-footer { border-top-color: var(--line); background: #07090c; }
.footer-copy { color: #8995a5; }

/* Keep demo media inside its own frame even when browser defaults or cached
   styles apply before the full stylesheet is ready. */
.demo-source-media,
.demo-phone {
  position: relative !important;
  overflow: hidden !important;
}
.demo-source-media {
  min-height: 180px;
  aspect-ratio: 16 / 9;
}
.demo-phone {
  isolation: isolate;
}
.demo-source-media video,
.demo-phone video {
  position: absolute !important;
  inset: 0 !important;
  max-width: none;
}

@media (max-width: 680px) {
  .site-header { position:sticky; }
  .hero { padding: 74px 0 46px; }
  .section { padding: 58px 0; }
  .hero-lead { font-size: .96rem; }
  .nav { gap: 12px; }
  .nav-actions .button:first-child { display:inline-flex; }
  .nav-actions .button { min-height:44px; padding-inline:11px; }
  .nav-actions .button.primary { font-size:.78rem; }
  .nav-actions .button.primary::after { content:none; }
}

@media (max-width: 430px) {
  .brand span { display:none; }
  .nav { justify-content:space-between; }
}

/* Final product polish: quieter surfaces, clearer actions and more breathing room. */
body {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.008em;
}
.site-header {
  background: rgba(8, 10, 14, 0.76);
  backdrop-filter: blur(18px) saturate(145%);
}
.nav {
  min-height: 76px;
}
.nav-links a {
  color: #aab4c2;
  font-weight: 650;
}
.nav-links a:hover {
  color: #e6fffb;
}
.button {
  border-color: rgba(226, 232, 240, 0.14);
  font-weight: 720;
}
.button.primary {
  background: linear-gradient(135deg, #2dd4bf, #3dd8c7);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.22);
}
.button.primary:hover {
  background: linear-gradient(135deg, #5eead4, #46e6d4);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.3);
}
.hero {
  padding-top: clamp(76px, 9vw, 118px);
  padding-bottom: 78px;
}
.hero-copy {
  max-width: 900px;
}
.hero h1 {
  font-weight: 820;
  text-wrap: balance;
}
.hero-lead {
  line-height: 1.7;
}
.hero-actions {
  margin-top: 34px;
}
.proof-row {
  gap: 8px;
}
.proof-pill {
  color: #cbd5e1;
  font-weight: 650;
}
.showcase {
  border-color: rgba(226, 232, 240, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}
.demo-surface {
  background:
    radial-gradient(circle at 78% 16%, rgba(45, 212, 191, 0.1), transparent 24rem),
    radial-gradient(circle at 14% 80%, rgba(167, 139, 250, 0.1), transparent 25rem),
    #0b1017;
}
.section {
  padding-block: clamp(76px, 9vw, 116px);
}
.section-head p,
.feature-card p,
.step p,
.trust-card p,
.price-card p {
  line-height: 1.7;
}
.step, .feature-card, .trust-card, .price-card {
  background: linear-gradient(145deg, rgba(24, 31, 41, 0.95), rgba(14, 19, 27, 0.95));
}
.step:hover, .feature-card:hover, .trust-card:hover, .price-card:hover {
  transform: translateY(-3px);
}
.feature-icon, .step-number {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 22px rgba(20,184,166,.1);
}
.site-footer {
  padding-top: 42px;
}

@media (max-width: 680px) {
  .hero { padding-top: 68px; padding-bottom: 58px; }
  .hero h1 { text-wrap: initial; }
  .section { padding-block: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
