:root {
  --bg: oklch(0.16 0.025 265);
  --surface: oklch(0.22 0.025 265 / 0.76);
  --surface-soft: oklch(0.27 0.026 265 / 0.62);
  --ink: oklch(0.97 0.006 265);
  --muted: oklch(0.76 0.018 265);
  --line: oklch(0.92 0.012 265 / 0.18);
  --primary: oklch(0.64 0.18 268);
  --primary-dark: oklch(0.55 0.17 268);
  --primary-soft: oklch(0.42 0.11 268 / 0.32);
  --accent: oklch(0.72 0.13 58);
  --accent-soft: oklch(0.52 0.1 58 / 0.2);
  --success: oklch(0.66 0.12 155);
  --shadow: 0 18px 46px oklch(0.05 0.02 265 / 0.34);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  font-family:
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 8%, oklch(0.42 0.11 38 / 0.2), transparent 28%),
    radial-gradient(circle at 10% 4%, oklch(0.36 0.13 268 / 0.22), transparent 34%),
    linear-gradient(180deg, oklch(0.13 0.025 265), var(--bg) 34%, oklch(0.18 0.02 265));
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 100vh;
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(0.28 0.07 268 / 0.18) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.28 0.07 268 / 0.14) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section,
.hero,
.cta-section,
.legal-page {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 18px;
}

.brand.small .brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--primary);
  overflow: hidden;
}

.shop-shape {
  position: absolute;
  left: 12px;
  top: 13px;
  width: 19px;
  height: 22px;
  border: 4px solid white;
  border-top-width: 8px;
}

.paper-plane {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 23px;
  height: 18px;
  background: white;
  clip-path: polygon(0 45%, 100% 0, 58% 100%, 44% 62%);
  transform: rotate(-12deg);
}

.brand-word {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.brand-word span:first-child {
  color: var(--primary);
}

.brand-word span:last-child {
  color: var(--accent);
}

.nav-links,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: oklch(0.88 0.012 265);
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: white;
}

.cinema-hero {
  position: relative;
  display: grid;
  min-height: min(880px, calc(100svh - 92px));
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto clamp(22px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, oklch(0.04 0.02 265 / 0.72), oklch(0.04 0.02 265 / 0.3)),
    url("job-cinema-poster.jpg") center / cover,
    oklch(0.1 0.02 265);
  box-shadow: 0 30px 90px oklch(0.03 0.02 265 / 0.5);
}

.cinema-video-stage,
.cinema-poster,
.cinema-video,
.cinema-scrim {
  position: absolute;
  inset: 0;
}

.cinema-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.72);
  transform: scale(1.03);
}

.cinema-video {
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.72);
  transform: scale(1.03);
  transition: opacity 900ms var(--ease-out), transform 7200ms linear;
}

.cinema-video.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.cinema-scrim {
  z-index: 2;
  background:
    linear-gradient(180deg, oklch(0.05 0.02 265 / 0.12), oklch(0.06 0.02 265 / 0.58)),
    linear-gradient(90deg, oklch(0.04 0.02 265 / 0.78), transparent 58%);
}

.cinema-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  gap: 16px;
  max-width: 620px;
  padding: clamp(26px, 5vw, 72px);
}

.cinema-copy p {
  margin: 0;
  color: white;
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.cinema-copy .button {
  width: max-content;
  background: oklch(1 0 0 / 0.16);
  border: 1px solid oklch(1 0 0 / 0.22);
  backdrop-filter: blur(16px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(24px, 3.2vw, 54px);
  align-items: start;
  padding: clamp(8px, 1.6vw, 18px) 0 clamp(18px, 2.4vw, 30px);
  animation: page-rise 360ms var(--ease-out) both;
}

.hero-copy {
  display: grid;
  gap: 18px;
  padding-top: clamp(18px, 4vw, 74px);
}

.hero-label {
  width: max-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.85vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy > p:not(.hero-label):not(.trust-note) {
  max-width: 650px;
  font-size: 1.08rem;
}

.hero-actions,
.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition:
    background 170ms cubic-bezier(0.23, 1, 0.32, 1),
    color 170ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 190ms var(--ease-out),
    transform 170ms var(--ease-out);
  will-change: transform;
}

.button:active {
  transform: scale(0.97);
}

.button.primary {
  color: white;
  background: var(--primary);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  color: var(--primary);
  background: oklch(1 0 0 / 0.08);
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  background: var(--primary-soft);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: scale(1.035) translateY(-1px);
  }

  .button.primary:hover {
    box-shadow: 0 10px 18px oklch(0.25 0.18 270 / 0.22);
  }
}

.trust-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-preview,
.try-panel {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.try-panel {
  display: grid;
  gap: 24px;
  align-content: center;
  min-height: 440px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(180deg, oklch(0.3 0.035 265 / 0.72), oklch(0.18 0.025 265 / 0.78)),
    var(--surface);
  transition:
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
  will-change: transform;
}

.hero-animation-panel {
  min-height: 0;
  align-content: start;
  gap: 16px;
  padding: 12px 12px 22px;
}

.hero-animation-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, oklch(0.22 0.04 270), oklch(0.22 0.03 70)),
    var(--surface-soft);
  box-shadow: 0 24px 60px oklch(0.35 0.1 270 / 0.12);
}

.hero-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
}

.hero-animation-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-animation-shell.is-video-ready .hero-animation {
  opacity: 1;
}

.hero-animation-shell.is-fallback .hero-animation {
  display: none;
}

.product-mockup {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(220px, 1fr);
  grid-template-rows: auto 1fr;
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  color: var(--ink);
}

.product-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 16%, oklch(0.64 0.18 268 / 0.28), transparent 28%),
    radial-gradient(circle at 86% 20%, oklch(0.72 0.13 58 / 0.18), transparent 30%);
  pointer-events: none;
}

.mockup-top,
.mockup-lead-list,
.mockup-email {
  position: relative;
  border: 1px solid oklch(1 0 0 / 0.12);
  background: oklch(0.16 0.02 265 / 0.72);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.08);
  backdrop-filter: blur(18px);
}

.mockup-top {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 12px;
}

.mockup-top span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: oklch(0.72 0.13 58);
}

.mockup-top span:nth-child(2) {
  background: oklch(0.64 0.18 268);
}

.mockup-top span:nth-child(3) {
  background: oklch(0.66 0.12 155);
}

.mockup-lead-list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border-radius: 14px;
}

.mockup-lead-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 10px;
  background: oklch(1 0 0 / 0.07);
}

.mockup-lead-list strong {
  font-size: 0.92rem;
}

.mockup-lead-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.mockup-email {
  display: grid;
  gap: 12px;
  align-content: end;
  padding: 18px;
  border-radius: 14px;
}

.mockup-email span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.16);
}

.mockup-email span:first-child {
  width: 46%;
  background: var(--primary);
}

.mockup-email span:nth-child(2) {
  width: 72%;
}

.mockup-email span:nth-child(3) {
  width: 58%;
}

.mockup-email button {
  width: max-content;
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--primary);
  font: inherit;
  font-weight: 850;
}

.hero-product-copy {
  display: grid;
  gap: 12px;
  padding: 8px 12px 0;
}

.hero-product-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.2vw, 2.35rem);
  line-height: 1.04;
}

.hero-product-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.48;
  max-width: 66ch;
}

.try-panel .button {
  width: max-content;
  margin-left: 12px;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px;
}

.hero-proof-strip span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding-inline: 12px;
  font-size: clamp(0.74rem, 0.92vw, 0.9rem);
  text-align: center;
}

.try-checks {
  display: grid;
  gap: 10px;
  padding: 0 10px 10px;
}

.try-checks span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  font-weight: 750;
  transition:
    background 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--primary);
}

.preview-top div {
  display: flex;
  gap: 6px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 12px;
  padding-top: 14px;
}

.preview-panel {
  min-height: 140px;
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.preview-panel.large {
  grid-row: span 2;
}

.preview-panel p {
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 800;
}

.preview-panel strong {
  display: block;
  font-size: 1.65rem;
}

.preview-panel > span,
.lead-line span {
  color: var(--muted);
  font-size: 0.9rem;
}

.lead-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.lead-line strong {
  font-size: 0.94rem;
}

.section {
  padding: clamp(18px, 2.5vw, 32px) 0;
}

.section:not(.faq-section) {
  position: relative;
}

.section:not(.faq-section)::before {
  content: "";
  position: absolute;
  inset: clamp(8px, 1.4vw, 16px) -18px;
  z-index: -1;
  border: 1px solid oklch(1 0 0 / 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, oklch(1 0 0 / 0.055), oklch(1 0 0 / 0.018)),
    radial-gradient(circle at 85% 18%, oklch(0.71 0.14 58 / 0.12), transparent 34%),
    radial-gradient(circle at 16% 2%, oklch(0.52 0.16 268 / 0.12), transparent 36%);
  box-shadow: 0 22px 70px oklch(0.03 0.02 265 / 0.24);
  backdrop-filter: blur(18px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.intro-section p,
.section-heading p {
  max-width: 720px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 800;
  transition:
    background 180ms var(--ease-out),
    color 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-grid,
.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

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

.price-card,
.feature-grid article,
.steps-list article,
.faq-list details,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.price-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  transition:
    border-color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    transform 220ms var(--ease-out);
  will-change: transform;
}

.price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, oklch(0.34 0.075 268 / 0.7), var(--surface));
}

.price {
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-stack {
  display: grid;
  gap: 8px;
}

.monthly-price {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: var(--primary-soft);
  font-weight: 850;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.steps-list article,
.feature-grid article {
  padding: 20px;
  transition:
    border-color 200ms var(--ease-out),
    background 200ms var(--ease-out),
    transform 200ms var(--ease-out);
  will-change: transform;
}

.steps-list span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 10px;
  color: white;
  background: var(--primary);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 18px 20px;
  transition:
    border-color 190ms var(--ease-out),
    background 190ms var(--ease-out),
    transform 190ms var(--ease-out);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 12px 0 0;
  animation: detail-open 180ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .try-panel:hover,
  .price-card:hover,
  .feature-grid article:hover,
  .steps-list article:hover,
  .faq-list details:hover {
    transform: scale(1.018) translateY(-2px);
  }

  .try-panel:hover,
  .price-card:hover {
    box-shadow: 0 14px 28px oklch(0.2 0.03 270 / 0.12);
  }

  .feature-grid article:hover,
  .steps-list article:hover,
  .faq-list details:hover {
    border-color: oklch(0.78 0.055 270);
    background: oklch(0.985 0.01 270);
  }

  .proof-strip span:hover,
  .try-checks span:hover {
    transform: scale(1.035);
  }

  .proof-strip span:hover {
    color: white;
    background: var(--primary);
  }
}

.cta-section {
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 16px;
  color: white;
  background:
    linear-gradient(135deg, oklch(0.48 0.14 268 / 0.92), oklch(0.35 0.08 265 / 0.92));
  border: 1px solid oklch(1 0 0 / 0.18);
  backdrop-filter: blur(18px);
}

.cta-section h2,
.cta-section p {
  color: white;
}

.cta-section p {
  margin-bottom: 0;
  opacity: 0.88;
}

.cta-section .button.primary {
  color: var(--primary);
  background: white;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 10px 0 0;
}

.legal-page {
  padding: 42px 0 80px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.legal-card {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 38px);
}

.legal-card section {
  display: grid;
  gap: 8px;
}

.legal-card h2 {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  max-width: 820px;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .intro-section,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 12px;
  }

  .hero {
    padding-top: 18px;
  }

  .cinema-hero {
    min-height: 76svh;
    width: min(100% - 28px, 1120px);
    border-radius: 14px;
  }

  .cinema-copy {
    padding: 24px;
  }

  .hero-animation-panel {
    order: -1;
  }

  .hero-animation-shell {
    aspect-ratio: 16 / 10;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

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

  .preview-panel.large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .section,
  .hero,
  .cta-section,
  .legal-page {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.45rem;
  }

  .nav-links,
  .site-footer nav {
    display: grid;
    gap: 10px;
  }

  .product-preview,
  .price-card,
  .feature-grid article,
  .steps-list article {
    border-radius: 12px;
  }
}

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

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

@keyframes page-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes detail-open {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
