:root {
  --bg: #000;
  --surface: #070707;
  --line: #464646;
  --line-strong: #6f6f6f;
  --text: rgb(219, 219, 219);
  --muted: #989898;
  --white: #fff;
  --success: #9be2bc;
  --danger: #ff8e8e;
  --container: min(1185px, calc(100vw - 80px));
  --content: min(980px, calc(100vw - 40px));
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

main {
  padding-top: 68px;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 90;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  opacity: 0.72;
  position: relative;
  transition: opacity 200ms var(--ease-smooth);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-smooth);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 147px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 380ms var(--ease-smooth), box-shadow 380ms var(--ease-smooth),
    background 220ms var(--ease-smooth), color 220ms var(--ease-smooth), border-color 220ms var(--ease-smooth);
}

.button:hover,
.button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-page main {
  padding-top: 0;
}

.home-page .site-header,
.home-page .social-rail,
.home-page .footer {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.56) 74%, #000 100%);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(var(--hero-scale, 1.05));
  transition: transform 220ms linear;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(728px, calc(100vw - 40px));
  text-align: center;
  margin-top: -2vh;
}

.hero-logo {
  width: clamp(190px, 25vw, 295px);
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: introLift 900ms 180ms var(--ease-smooth) forwards;
}

.hero-tagline {
  margin: 48px auto 0;
  font-size: clamp(18px, 1.75vw, 21px);
  line-height: 1.4;
  color: var(--text);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: introLift 900ms 360ms var(--ease-smooth) forwards;
}

.hero .button {
  margin-top: 108px;
  min-height: 41px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font-weight: 600;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: introLift 900ms 540ms var(--ease-smooth) forwards;
}

.hero .button:hover,
.hero .button:focus-visible {
  background: rgba(255, 255, 255, 0.86);
  border-color: transparent;
}

.section {
  position: relative;
}

.about-section {
  padding: 144px 0 96px;
}

.about-wrap {
  max-width: 655px;
  text-align: center;
}

.about-wrap h2 {
  margin: 0 0 46px;
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1.4;
}

.about-wrap p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.about-wrap p + p {
  margin-top: 28px;
}

.logos-strip {
  max-width: 764px;
  margin: 76px auto 0;
}

.features-stack {
  display: grid;
  width: 100%;
  margin: 0;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}

.split-feature:first-child {
  min-height: 600px;
}

.split-feature:first-child .split-media {
  min-height: 600px;
}

.split-feature.reverse .split-copy {
  order: 1;
  margin: 0 auto;
}

.split-feature.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: #000;
  line-height: 0;
}

.split-media > img,
.split-media > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-shift, 0px), 0) scale(var(--media-scale, 1.03));
  transition: transform 120ms linear, filter 260ms var(--ease-smooth);
  will-change: transform;
  transform-origin: center center;
}

.split-feature:hover .split-media:not(.ai-collage) > img,
.split-feature:hover .split-media:not(.ai-collage) > video {
  transform: translate3d(0, var(--media-shift, 0px), 0) scale(1.05);
  filter: saturate(1.04);
}

.ai-collage {
  background: #f4f4f2;
  isolation: isolate;
}

.ai-main {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: 50% 50%;
  transform: translate3d(0, var(--ai-bg-shift, 0px), 0) scale(var(--ai-bg-scale, 1));
  transition: transform 120ms linear;
  will-change: transform;
}

.split-copy {
  max-width: 490px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 58px 52px;
  margin: 0 auto;
}

.split-copy h3 {
  margin: 0;
  font-size: clamp(32px, 3vw, 38px);
  line-height: 1.4;
}

.split-copy p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
}

.talk-section {
  padding: 132px 0 146px;
}

.talk-wrap {
  width: var(--content);
  margin-inline: auto;
}

.talk-wrap h2 {
  margin: 0 0 84px;
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1.3;
  text-align: center;
}

.contact-form {
  width: min(732px, 100%);
  margin: 0 auto;
  border: 0;
  background: transparent;
  padding: 0;
}

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

.form-block {
  margin-top: 14px;
}

.form-bait {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

label {
  display: block;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 0 2px 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 220ms var(--ease-smooth), box-shadow 220ms var(--ease-smooth),
    color 220ms var(--ease-smooth);
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--line-strong);
  box-shadow: 0 7px 18px -16px rgba(255, 255, 255, 0.72);
}

textarea {
  min-height: 95px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 28px;
}

.checkbox-row input[type="checkbox"] {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  padding: 0;
}

.checkbox-row label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.checkbox-row a {
  text-decoration: underline;
}

.form-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-actions .button[disabled] {
  opacity: 0.52;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.status {
  font-size: 13px;
  color: var(--muted);
  width: 100%;
  text-align: center;
}

.status.ok {
  color: var(--success);
}

.status.err {
  color: var(--danger);
}

.page-hero {
  padding: 74px 0 38px;
}

.page-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8c8c8;
}

.page-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
}

.page-subtitle {
  margin-top: 24px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.poster-wrap {
  margin-top: 40px;
  overflow: hidden;
}

.section-shell {
  padding: 80px 0;
}

.section,
.content-slab {
  padding: 80px 0;
}

.content-slab {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.content-slab h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.2;
  text-align: center;
}

.content-slab p {
  margin: 0;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
}

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

.stat {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050505;
  padding: 30px 18px 24px;
  text-align: center;
  transition: transform 380ms var(--ease-smooth), border-color 380ms var(--ease-smooth),
    background-color 380ms var(--ease-smooth);
}

.stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
  background: #0a0a0a;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  background: #090909;
}

.gallery img {
  min-height: 220px;
  object-fit: cover;
  transition: transform 700ms var(--ease-smooth);
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.jasper-page .page-kicker,
.jasper-page .page-title,
.jasper-page .page-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.jasper-page .page-kicker {
  margin-bottom: 18px;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
}

.jasper-page .page-title {
  max-width: 690px;
  font-size: clamp(2.2rem, 4.8vw, 56px);
}

.jasper-page .page-subtitle {
  max-width: 620px;
  margin-top: 30px;
  font-size: 18px;
}

.jasper-page .actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.jasper-page .poster-wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.terms-page .page-hero {
  padding-bottom: 10px;
}

.terms-page .page-kicker {
  display: none;
}

.terms-page .page-title {
  max-width: 620px;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.6;
}

.terms-page .page-subtitle {
  margin-top: 6px;
  font-size: 16px;
}

.legal {
  max-width: 620px;
  margin: 0 auto;
}

.legal h2 {
  margin: 20px 0 6px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0;
}

.legal p,
.legal li {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text);
}

.legal ul,
.legal ol {
  margin: 0;
  padding-left: 18px;
}

.scroll-fade {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 1150ms cubic-bezier(0.2, 0.65, 0.22, 1), transform 1150ms cubic-bezier(0.2, 0.65, 0.22, 1);
  will-change: opacity, transform;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes introLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1100px) {
  :root {
    --container: min(1185px, calc(100vw - 44px));
  }

  .split-copy {
    margin: 0 auto;
    padding: 48px 30px;
  }

  .split-feature.reverse .split-copy {
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .about-section {
    padding: 110px 0 90px;
  }

  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-feature.reverse .split-copy,
  .split-copy {
    margin: 0;
    max-width: none;
    padding: 42px 24px 56px;
    align-items: flex-start;
    text-align: left;
  }

  .split-feature.reverse .split-copy {
    order: 2;
  }

  .split-feature.reverse .split-media {
    order: 1;
  }

  .split-media {
    min-height: 340px;
  }

  .split-feature:first-child,
  .split-feature:first-child .split-media {
    min-height: 340px;
  }

  .talk-wrap h2 {
    margin-bottom: 52px;
  }

  .form-row,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .content-slab,
  .talk-wrap {
    width: min(980px, calc(100vw - 40px));
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  main {
    padding-top: 62px;
  }

  .header-row {
    min-height: 62px;
  }

  .site-nav {
    top: 62px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    margin-top: -6vh;
  }

  .hero-tagline {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero .button {
    margin-top: 42px;
    min-width: 112px;
    min-height: 34px;
    font-size: 12px;
  }

  .about-wrap h2,
  .split-copy h3 {
    font-size: 30px;
  }

  .split-copy p,
  .about-wrap p {
    font-size: 14px;
    line-height: 1.7;
  }

  .talk-section {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  label {
    font-size: 14px;
  }

  .checkbox-row label {
    font-size: 12px;
  }

  .form-actions {
    margin-top: 24px;
  }

  .page-hero {
    padding-top: 56px;
  }

  .page-subtitle {
    font-size: 15px;
  }

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

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