@font-face {
  font-family: "Hanken Grotesk";
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
  src: url("public/fonts/hanken-grotesk/HankenGrotesk-VariableFont_wght.ttf")
    format("truetype");
}

@font-face {
  font-family: "Hanken Grotesk";
  font-display: swap;
  font-style: italic;
  font-weight: 100 900;
  src: url("public/fonts/hanken-grotesk/HankenGrotesk-Italic-VariableFont_wght.ttf")
    format("truetype");
}

:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --soft: #f5f2ee;
  --charcoal: #14110f;
  --line: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --orange: #ff4f22;
  --orange-dark: #db3718;
  --muted: rgba(17, 17, 17, 0.66);
  --muted-dark: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
  --max: 1180px;
  --wide: 1440px;
  font-size: 16px;
  scroll-behavior: auto;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  background: var(--black);
  opacity: 0;
  transition: opacity 180ms ease;
}

body.is-soft-jumping::before {
  opacity: 0.28;
}

.preview-locked {
  height: 100vh;
  overflow: hidden;
}

.preview-locked main {
  visibility: hidden;
}

.preview-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.86)),
    url("public/images/orange_blurry.png") center / cover;
  color: var(--white);
}

.preview-unlocked {
  height: auto;
  overflow: auto;
}

.preview-unlocked main {
  visibility: visible;
}

.preview-unlocked .preview-gate {
  display: none;
}

.preview-form {
  display: grid;
  width: min(100%, 420px);
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 5, 0.78);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.preview-logo {
  justify-self: center;
  width: min(280px, 70vw);
  filter: invert(1) drop-shadow(0 0 24px rgba(255, 255, 255, 0.34));
}

.preview-kicker {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-form h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.3rem);
  font-weight: 620;
  line-height: 0.96;
}

.preview-form label {
  display: grid;
  gap: 8px;
}

.preview-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preview-form input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  outline: none;
  padding: 10px 12px;
}

.preview-form input:focus {
  border-color: var(--orange);
}

.preview-error {
  min-height: 1.2em;
  margin: -4px 0 0;
  color: #ffb6a4;
  font-size: 0.92rem;
}

.preview-logout {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 5, 5, 0.72);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.preview-unlocked .preview-logout {
  display: block;
}

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

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

::selection {
  background: var(--orange);
  color: var(--white);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero::after,
.cinematic-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 79, 34, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.82));
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  width: 112%;
  margin-left: -6%;
  opacity: 0.62;
  filter: saturate(1.08) contrast(1.08);
}

.mobile-hero-bg {
  display: none;
}

.hero-panel {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  margin-right: -4.8vw;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);
}

.hero-panel:first-child {
  clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.hero-panel:last-child {
  margin-right: 0;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-panel-center {
  flex: 1.22 1 0;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero-panel:nth-child(2) img {
  animation-delay: -5s;
}

.hero-panel:nth-child(3) img {
  animation-delay: -9s;
}

.hero-panel:nth-child(4) img {
  animation-delay: -13s;
}

.hero-panel:nth-child(5) img {
  animation-delay: -16s;
}

.site-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 4vw, 56px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease,
    backdrop-filter 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.78);
  padding-top: 18px;
  padding-bottom: 18px;
  backdrop-filter: blur(16px);
}

.nav-logo {
  display: inline-flex;
  width: clamp(104px, 12vw, 160px);
  height: 46px;
  overflow: hidden;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-glow {
  filter:
    invert(1)
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.16));
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 680;
}

.nav-links {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a,
.site-footer a {
  transition: color 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.48);
  padding: 12px 20px;
  color: var(--white);
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.site-nav.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-nav.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 16px;
  left: 16px;
  z-index: 4;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 5, 0.94);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  visibility: hidden;
  backdrop-filter: blur(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 16px 10px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 640;
  text-align: center;
}

.mobile-menu a:last-child:not(.mobile-menu-cta) {
  border-bottom: 0;
  color: var(--orange);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 12px;
  border: 1px solid rgba(255, 79, 34, 0.72);
  background: rgba(255, 79, 34, 0.08);
  color: var(--orange);
  font-weight: 720;
}

.mobile-menu .mobile-menu-cta {
  border-bottom: 1px solid rgba(255, 79, 34, 0.72);
  color: var(--orange);
}

.button {
  border: 1px solid transparent;
  padding: 15px 28px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

.button-ghost:hover,
.nav-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  text-transform: uppercase;
}

.button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  width: min(100%, var(--max));
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 104px) 22px clamp(62px, 7vw, 100px);
  text-align: center;
}

.hero-logo {
  width: min(70vw, 620px);
  height: clamp(116px, 14vw, 170px);
  margin-bottom: clamp(20px, 3vw, 34px);
  object-fit: cover;
  object-position: center;
}

.section-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-eyebrow {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.keep-together {
  white-space: nowrap;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.4vw, 4.45rem);
  font-weight: 660;
  line-height: 1.02;
}

.hero-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.section-pad {
  padding: clamp(84px, 9vw, 142px) clamp(22px, 4vw, 56px);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.cinematic-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.section-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.85) contrast(1.1);
}

.proposition {
  padding: clamp(86px, 10vw, 150px) clamp(22px, 4vw, 56px);
}

.proposition .section-inner {
  position: relative;
  z-index: 2;
}

.concept-section {
  padding: clamp(86px, 9vw, 136px) clamp(22px, 4vw, 56px);
}

.concept-section .section-bg-image {
  opacity: 0.38;
  filter: saturate(1.08) contrast(1.05);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.concept-copy {
  display: grid;
  gap: 22px;
}

.concept-copy h2 {
  margin-bottom: 4px;
}

.concept-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.04rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.concept-section .fusion-grid {
  grid-template-columns: minmax(0, 1fr) minmax(64px, 0.18fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
}

.concept-section .fusion-icon {
  width: clamp(92px, 9vw, 140px);
  margin-bottom: 22px;
}

.concept-section .fusion-item h3 {
  font-size: clamp(1.05rem, 1.42vw, 1.45rem);
}

.concept-section .fusion-item p {
  max-width: 340px;
  font-size: clamp(0.98rem, 1.08vw, 1.06rem);
  line-height: 1.5;
}

.proposition-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: clamp(54px, 6vw, 82px);
  text-align: center;
}

.proposition h2,
.section-heading h2,
  .intro h2,
  .value h2,
  .final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.25rem);
  font-weight: 660;
  line-height: 1.08;
}

.fusion-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(90px, 0.22fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}

.fusion-item {
  display: grid;
  justify-items: center;
  text-align: center;
}

.fusion-icon {
  width: clamp(118px, 13vw, 190px);
  margin-bottom: 30px;
}

.fusion-item h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 640;
  letter-spacing: 0.08em;
}

.fusion-item p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.06rem, 1.4vw, 1.25rem);
  line-height: 1.58;
}

.fusion-plus {
  position: relative;
  width: clamp(92px, 10vw, 142px);
  height: clamp(92px, 10vw, 142px);
  justify-self: center;
}

.plus-horizontal,
.plus-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%);
}

.plus-horizontal {
  width: 100%;
  height: 2px;
}

.plus-vertical {
  width: 2px;
  height: 100%;
}

.intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93), rgba(20, 17, 15, 0.86)),
    url("public/images/orange_blurry.png") center / cover;
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.intro-text {
  display: grid;
  gap: 24px;
  border-left: 2px solid var(--orange);
  padding-left: clamp(26px, 4vw, 52px);
}

.intro-text p,
.section-heading > p:not(.section-kicker),
.experience-copy p,
.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.62;
}

.intro .intro-text p {
  color: var(--muted-dark);
}

.how {
  background: var(--black);
  color: var(--white);
}

.how .section-heading > p:not(.section-kicker) {
  color: var(--muted-dark);
}

.how .section-heading h2,
.work .section-heading h2 {
  color: var(--white);
}

.section-heading {
  display: grid;
  max-width: 850px;
  gap: 18px;
  margin-bottom: clamp(46px, 6vw, 82px);
}

.section-heading.center {
  justify-items: center;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
}

.system-image {
  min-height: clamp(420px, 48vw, 660px);
  overflow: hidden;
}

.system-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 900ms ease;
}

.system-image:hover img {
  transform: scale(1.025);
}

.system-list {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line-dark);
}

.system-beat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(28px, 4vw, 48px) 0;
}

.system-beat span {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 780;
}

.system-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.system-title img {
  width: 34px;
  height: 34px;
  opacity: 0.84;
  filter: invert(1);
}

.system-beat h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 660;
  line-height: 1.05;
}

.system-beat p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.58;
}

.themes {
  background: var(--white);
}

.theme-reel {
  position: relative;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  margin-left: -50vw;
  padding: 0 clamp(22px, 4vw, 56px);
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.theme-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: themeReel 68s linear infinite;
}

.theme-reel:hover .theme-track {
  animation-play-state: paused;
}

.theme-slide {
  position: relative;
  width: clamp(260px, 28vw, 430px);
  height: clamp(330px, 34vw, 520px);
  flex: 0 0 auto;
  margin: 0;
  background: var(--black);
  overflow: hidden;
}

.theme-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.theme-entertainment img {
  object-position: 88% center;
}

.theme-slide:hover img {
  transform: scale(1.035);
}

.theme-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.66));
}

.theme-slide figcaption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  font-weight: 660;
}

.work {
  background: var(--black);
  color: var(--white);
}

.work .section-heading h2 {
  max-width: 980px;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.experience {
  display: grid;
  align-content: start;
  gap: 24px;
}

.experience.reverse {
  grid-template-columns: 1fr;
}

.experience.reverse .experience-image {
  order: 0;
}

.experience-image {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.experience-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 800ms ease;
}

.experience-caricature .experience-image img {
  object-position: 47% center;
}

.experience:hover .experience-image img {
  transform: scale(1.035);
}

.experience-copy h3 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 660;
  line-height: 1.05;
}

.experience-copy p {
  color: var(--muted-dark);
}

.value {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.value::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(255, 79, 34, 0.18), transparent 28rem);
}

.value-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(1.05) contrast(1.08);
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.value-copy {
  display: grid;
  gap: 20px;
}

.value-copy p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

.performance-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 22px;
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.42);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.performance-panel::before {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 79, 34, 0.16), transparent 18rem),
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 48%, transparent 54% 100%);
  transform: translateX(-18%);
  animation: panelSweep 6.5s ease-in-out infinite;
}

.panel-topline,
.metric-grid {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.metric-card {
  display: grid;
  min-height: 146px;
  align-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  background: rgba(5, 5, 5, 0.58);
}

.metric-wide {
  grid-column: 1 / -1;
  min-height: 142px;
}

.metric-label {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 640;
  line-height: 1.08;
}

.metric-card em {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-style: normal;
  font-weight: 650;
}

.channel-card {
  gap: 18px;
}

.channel-bars {
  display: grid;
  gap: 14px;
}

.channel-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.channel-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.channel-row i {
  position: relative;
  display: block;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.channel-row i::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  content: "";
  background: linear-gradient(90deg, var(--orange), #ff8d45);
  transform: scaleX(0);
  transform-origin: left;
}

.channel-downloads i::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(154, 154, 154, 0.78));
}

.performance-panel.is-visible .channel-row i::before {
  animation: channelFill 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.performance-panel.is-visible .channel-row:nth-child(2) i::before {
  animation-delay: 110ms;
}

.performance-panel.is-visible .channel-row:nth-child(3) i::before {
  animation-delay: 220ms;
}

.performance-panel.is-visible .channel-row:nth-child(4) i::before {
  animation-delay: 330ms;
}

.bar-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 8px;
  height: 76px;
}

.bar-chart span {
  display: block;
  height: var(--h);
  min-height: 12px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 255, 255, 0.7));
  transform: scaleY(0.12);
  transform-origin: bottom;
}

.performance-panel.is-visible .bar-chart span {
  animation: barRise 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.performance-panel.is-visible .bar-chart span:nth-child(2) {
  animation-delay: 120ms;
}

.performance-panel.is-visible .bar-chart span:nth-child(3) {
  animation-delay: 240ms;
}

.performance-panel.is-visible .bar-chart span:nth-child(4) {
  animation-delay: 360ms;
}

.pulse-ring {
  position: relative;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 78%, rgba(255, 255, 255, 0.12) 78% 100%);
  justify-self: end;
}

.pulse-ring::before {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #0a0a0a;
  content: "";
}

.pulse-ring span {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 79, 34, 0.52);
  border-radius: 50%;
  animation: metricPulse 2.2s ease-out infinite;
}

.line-chart {
  width: 100%;
  height: 104px;
  overflow: visible;
}

.chart-grid {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  filter: drop-shadow(0 0 10px rgba(255, 79, 34, 0.36));
}

.performance-panel.is-visible .chart-line {
  animation: drawLine 2.2s cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.insight-card {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  align-items: end;
}

.insight-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.insight-tiles span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
}

.performance-panel.is-visible .insight-tiles span {
  animation: tileGlow 3.6s ease-in-out infinite;
}

.performance-panel.is-visible .insight-tiles span:nth-child(2) {
  animation-delay: 300ms;
}

.performance-panel.is-visible .insight-tiles span:nth-child(3) {
  animation-delay: 600ms;
}

.performance-panel.is-visible .insight-tiles span:nth-child(4) {
  animation-delay: 900ms;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 79, 34, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(5, 5, 5, 0.98), rgba(20, 17, 15, 0.96)),
    var(--black);
  color: var(--white);
  padding: clamp(64px, 8vw, 110px) clamp(22px, 4vw, 56px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-copy ul {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.45;
}

.contact-copy li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 5, 5, 0.74);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.demo-form label {
  display: grid;
  gap: 8px;
}

.form-hidden {
  display: none;
}

.demo-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  min-height: 48px;
  padding: 12px 0;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.demo-form textarea {
  min-height: 112px;
  resize: vertical;
}

.demo-form select {
  background-color: rgba(255, 255, 255, 0.04);
  color-scheme: dark;
}

.demo-form option {
  background: #111111;
  color: #ffffff;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--orange);
  background: transparent;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.demo-form .button-dark {
  background: var(--orange);
  color: var(--white);
}

.demo-form .button-dark:hover {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(22px, 4vw, 56px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.social-links {
  display: flex;
  gap: 18px;
  justify-self: start;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.social-links img {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.site-footer p {
  justify-self: center;
  margin-bottom: 0;
  text-align: center;
}

.footer-concept {
  display: grid;
  justify-items: end;
  justify-self: end;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  line-height: 1;
  transition: opacity 180ms ease;
}

.footer-concept:hover {
  opacity: 0.72;
}

.footer-concept span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.footer-concept img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  filter: invert(1);
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.84)),
    url("public/images/orange_blurry.png") center / cover;
  color: var(--white);
  text-align: center;
}

.success-panel {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 620px;
}

.success-logo img {
  width: min(320px, 72vw);
  filter: invert(1) drop-shadow(0 0 22px rgba(255, 255, 255, 0.35));
}

.success-panel h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 650;
}

.success-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.reveal {
  transform: translateY(26px);
  opacity: 0;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes slowDrift {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-1.4%);
  }
}

@keyframes themeReel {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.72;
  }

  50% {
    transform: translateX(14%);
    opacity: 1;
  }
}

@keyframes barRise {
  from {
    transform: scaleY(0.12);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes metricPulse {
  0% {
    transform: scale(0.88);
    opacity: 0.75;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes channelFill {
  to {
    transform: scaleX(1);
  }
}

@keyframes tileGlow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
  }

  45% {
    border-color: rgba(255, 79, 34, 0.42);
    background: rgba(255, 79, 34, 0.1);
  }
}

@media (min-width: 1001px) {
  html {
    scroll-snap-type: y proximity;
  }

  .hero,
  .proposition,
  .how,
  .themes,
  .value,
  .final-cta {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .proposition,
  .how,
  .themes,
  .value,
  .final-cta {
    display: grid;
    align-items: center;
  }

  .work {
    min-height: 100svh;
    scroll-snap-align: start;
  }
}

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

  .nav-cta {
    display: none;
  }

  .nav-logo {
    width: clamp(132px, 24vw, 160px);
  }

  .menu-toggle {
    display: block;
  }

  .hero-bg {
    display: none;
  }

  .mobile-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    width: 110%;
    margin-left: -5%;
    opacity: 0.68;
    filter: saturate(1.08) contrast(1.08);
  }

  .hero-panel {
    margin-right: -8vw;
  }

  .mobile-hero-bg .hero-panel:first-child img {
    object-position: 74% center;
  }

  .mobile-hero-bg .hero-panel:last-child img {
    object-position: 48% center;
  }

  .fusion-grid,
  .concept-grid,
  .intro-grid,
  .system-grid,
  .experience,
  .experience.reverse,
  .experience-list,
  .value-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience.reverse .experience-image {
    order: 0;
  }

  .system-image {
    min-height: 420px;
  }

  .value-copy {
    position: static;
  }

  .performance-panel {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .site-footer p,
  .footer-concept,
  .social-links {
    justify-self: center;
    text-align: center;
  }

  .footer-concept {
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-concept img {
    width: 118px;
    height: 72px;
  }
}

@media (max-width: 680px) {
  .site-nav {
    justify-content: center;
    gap: 10px;
    padding: 16px 18px;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 136px;
    height: 42px;
  }

  .menu-toggle {
    margin-left: auto;
    display: block;
    order: 2;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-logo {
    width: min(78vw, 360px);
    height: clamp(96px, 25vw, 132px);
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .hero-text {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .fusion-grid {
    gap: 38px;
  }

  .concept-copy h2 {
    font-size: clamp(1.72rem, 8vw, 2.22rem);
  }

  .concept-section {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .concept-copy {
    text-align: left;
  }

  .concept-copy p {
    max-width: none;
  }

  .fusion-plus {
    width: 78px;
    height: 78px;
  }

  .intro-text {
    border-left: 0;
    border-top: 2px solid var(--orange);
    padding-top: 26px;
    padding-left: 0;
  }

  .system-image {
    min-height: 360px;
  }

  .system-beat {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .theme-slide {
    width: 78vw;
    height: 360px;
  }

  .metric-grid,
  .insight-card,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .metric-wide {
    min-height: 150px;
  }

  .channel-row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

  .channel-row span {
    font-size: 0.86rem;
  }

  .panel-topline {
    flex-direction: column;
    gap: 8px;
  }

  .pulse-ring {
    justify-self: start;
  }

  .form-wide {
    grid-column: auto;
  }

  .social-links {
    align-items: center;
    justify-content: center;
    gap: 22px;
  }
}

@media (max-width: 680px) and (hover: none) and (pointer: coarse) {
  .theme-reel {
    overflow-x: auto;
    padding-right: 18px;
    padding-left: 18px;
    mask-image: none;
    scrollbar-width: none;
  }

  .theme-reel::-webkit-scrollbar {
    display: none;
  }

  .theme-track {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}
