/* =============================================
   2414ai — Main Stylesheet
   ============================================= */

:root {
  --dark:        #1D1D1D;
  --darker:      #111111;
  --gray:        #636363;
  --mid-gray:    #AEAEAE;
  --light-gray:  #d9d9d9;
  --teal:        #0BA5D0;
  --white:       #ffffff;
  --ease-main:   cubic-bezier(0.9, 0.1, 0.1, 0.9);
  --ease-smooth: cubic-bezier(0, 0, 0, 1);
}

/* =============================================
   BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 1vw;
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { display: block; max-width: 100%; }
button { cursor: none; background: none; border: none; padding: 0; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }

/* Hide scrollbar */
::-webkit-scrollbar { display: none; }
* { scrollbar-width: none; }

/* =============================================
   CURSOR
   ============================================= */

.cursor-follow {
  position: fixed;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

/* =============================================
   PAGE TRANSITION OVERLAYS
   ============================================= */

.transition-overlay-ct {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  display: flex;
}

.transition-overlay {
  flex: 1;
  background: var(--darker);
  height: 0;
  position: absolute;
  bottom: 0;
  width: 33.334%;
}

.o-1 { left: 0; }
.o-2 { left: 33.334%; }
.o-3 { left: 66.667%; }

/* =============================================
   QUICKBAR
   ============================================= */

.quickbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9001;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
}

.quickbar-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* =============================================
   SITE HEADER
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: padding 0.4s var(--ease-smooth);
}

html.fixed .site-header { padding-top: 0.9rem; padding-bottom: 0.9rem; }

.nav-left { display: flex; justify-content: flex-start; }
.nav-right { display: flex; justify-content: flex-end; }
.nav-left ul, .nav-right ul { display: flex; gap: 2.5rem; }

.site-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.site-logo-center.logo-visible {
  opacity: 1;
  pointer-events: auto;
}

.header-logo-img {
  height: 2.4rem;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease-smooth);
}

html.fixed .header-logo-img { height: 2rem; }

.desktop-nav ul,
nav ul.desktop-nav { display: flex; gap: 2.5rem; }

nav ul.desktop-nav a,
.desktop-nav ul a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

nav ul.desktop-nav a:hover,
.desktop-nav ul a:hover { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 0.45rem;
  z-index: 2;
  cursor: pointer;
}

.ham-line {
  display: block;
  width: 1.6rem;
  height: 1px;
  background: var(--white);
  transition: transform 0.4s var(--ease-main), opacity 0.3s ease;
  transform-origin: left center;
}

html.open-navi .ham-line:first-child { transform: rotate(45deg); }
html.open-navi .ham-line:last-child  { transform: rotate(-45deg); }

/* =============================================
   MOBILE NAV
   ============================================= */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--darker);
  z-index: 90;
  display: flex;
  align-items: center;
  padding: 3rem;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.7s var(--ease-main);
}

html.open-navi .mobile-nav-overlay {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-nav-inner ul { display: flex; flex-direction: column; gap: 1rem; }

.mobile-link {
  font-size: 12vw;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  display: block;
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--teal); }

/* =============================================
   CONTAINER
   ============================================= */

.container {
  width: 100%;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 5rem;
}

/* =============================================
   HEADER WORDMARK
   ============================================= */

.site-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--white);
  mix-blend-mode: difference;
}

/* =============================================
   HERO SECTION
   ============================================= */

.sec-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.unicorn-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.unicorn { width: 100%; height: 100%; }
.unicorn canvas { width: 100% !important; height: 100% !important; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 3rem 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Large logo in hero */
.hero-logo-wrap {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: 55vw;
  max-width: 820px;
  min-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0;
  transform: scale(1.05);
  will-change: transform, opacity;
}

.hero-passion {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 3.5vw;
  font-weight: 700;
  color: var(--white);
  margin-left: 0.3rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1.5rem);
}

.hero-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(1.5rem);
}

/* =============================================
   MARQUEE TICKER
   ============================================= */

.marquee-section {
  background: var(--darker);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  white-space: nowrap;
}

.marquee-track .dot { color: var(--teal); font-size: 1rem; }

/* =============================================
   DRIFT TEXT SECTION
   ============================================= */

.sec-drift {
  padding: 12rem 0;
  overflow: hidden;
}

.drift-inner {
  padding: 0 5rem;
}

.drift-line {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 6.5vw;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
  white-space: nowrap;
  will-change: transform;
}

.drift-line + .drift-line { margin-top: 0.3rem; }

/* =============================================
   DRIFT CANVAS BREAK
   ============================================= */

.sec-drift-canvas {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.sec-drift-canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 28, 0.45);
  pointer-events: none;
  z-index: 1;
}

.drift-canvas-inner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.drift-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stars-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #0d1b3e 0%, #020510 100%);
  overflow: hidden;
}

.stars-layer {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
}

@keyframes drift-stars {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.stars-small  { animation: drift-stars 120s linear infinite; }
.stars-medium { animation: drift-stars 80s  linear infinite; }
.stars-large  { animation: drift-stars 50s  linear infinite; }

.drift-text-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.drift-canvas-inner .unicorn,
.drift-canvas-inner .unicorn canvas {
  width: 100%;
  height: 100%;
}

/* =============================================
   CLAIM STATEMENT SECTION
   ============================================= */

.sec-claim {
  padding: 14rem 0 12rem;
  background: var(--dark);
  overflow: hidden;
}

.claim-inner {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 5rem;
  text-align: center;
}

.claim-row {
  margin-bottom: 2rem;
}

.claim-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.claim-heading {
  font-size: 7.5vw;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  overflow: hidden;
}

.claim-heading .split-line {
  display: block;
}

.claim-accent {
  font-style: italic;
  color: var(--mid-gray);
}

.claim-sub {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--mid-gray);
  max-width: 44rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* =============================================
   STATS SECTION
   ============================================= */

.sec-stats {
  padding: 0;
  background: transparent;
  position: relative;
  width: 100%;
}

/* ── Workflows section ───────────────────────── */
.sec-workflows {
  padding: 3.5rem 0;
  background: var(--darker);
  width: 100%;
}

.workflows-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.workflows-headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.workflows-subline {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.workflows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.workflows-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px rgba(255,255,255,0.04);
}

.workflow-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.workflow-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
  margin-bottom: 0.9rem;
  opacity: 0.7;
}

.workflow-icon svg {
  width: 100%;
  height: 100%;
}

.workflow-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.workflow-body {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .workflows-grid { grid-template-columns: 1fr; }
}

.stats-deco-line { display: none; }

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 4rem;
}

.stat-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}

.stat-block.stat-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-block:nth-child(1) { transition-delay: 0.1s; }
.stat-block:nth-child(3) { transition-delay: 0.25s; }
.stat-block:nth-child(5) { transition-delay: 0.4s; }

.stat-big-num {
  font-size: 14vw;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 0.75rem;
}

.teal-accent {
  color: var(--teal);
  font-size: 0.65em;
}

.stat-big-label {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid-gray);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 14rem;
}

.stats-divider {
  width: 1px;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stats-divider-inner {
  width: 1px;
  height: 0;
  background: rgba(255,255,255,0.15);
  transition: none;
}

/* =============================================
   SHUTTER TRANSITION
   ============================================= */

.transition-sec {
  position: relative;
  z-index: 50;
  /* height set by JS */
}

.trans-ct {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  pointer-events: none;
  overflow: hidden;
}

.shutter {
  flex: 1;
  height: 100%;
  background: var(--light-gray);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Reveal variant — shutters start closed, open to show content behind */
.ts-reveal .trans-reveal-bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--darker);
  overflow: hidden;
}

.ts-reveal .trans-ct {
  margin-top: -100vh;
  z-index: 2;
}

.ts-process-bg {
  background: var(--darker) !important;
}

.ts-reveal .shutter {
  transform: scaleX(1);
  transform-origin: right;
}

/* =============================================
   USP PINNED SECTION
   ============================================= */

.sec-usp {
  background: var(--dark);
}

.sec-usp-inner {
  /* height set by JS — 400vh */
}

.sec-usp-scroll {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.usp-lines-ct {
  position: absolute;
  left: 9rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.usp-line {
  width: 1px;
  height: 0;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}

.usp-line-inner {
  width: 1px;
  height: 0;
  background: var(--teal);
}

.usp-texts-ct {
  position: relative;
  text-align: center;
  overflow: hidden;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-ct {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 8vw;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}

.usp-ct span {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  will-change: transform, opacity;
}

.usp-ct .usp-space { width: 0.35em; }

/* =============================================
   PROCESS STEP CAROUSEL
   ============================================= */

.sec-process {
  background: var(--darker);
}

.process-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.process-video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 18, 0.72);
  pointer-events: none;
}

.process-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.steps-vh-wrapper {
  position: relative;
  z-index: 1;
  /* height set by JS — 400vh */
}

.steps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5rem;
  overflow: hidden;
}

.steps-header {
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.5rem;
  text-align: center;
}

.steps-stage {
  display: grid;
  grid-template-columns: 8rem 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.step-slot {
  position: relative;
  height: 8rem;
  overflow: hidden;
}

.number-slot { height: 6rem; }

.step-number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--teal);
  line-height: 1;
}

.step-number:not(.sn-1) { transform: translateY(100%); opacity: 0; }

.name-slot { height: 8rem; }

.step-name-text {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 5vw;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.step-name-text:not(.st-1) { transform: translateY(100%); opacity: 0; }

.steps-progress-bar {
  margin-top: 2rem;
  height: 1px;
  background: rgba(255,255,255,0.1);
  width: 100%;
  max-width: 30rem;
}

.steps-progress-inner {
  height: 100%;
  width: 0%;
  background: var(--teal);
}

.desc-slot { height: auto; min-height: 10rem; }

.step-desc {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 40rem;
}

.step-desc p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid-gray);
}

.step-desc:not(.sd-1) { transform: translateY(100%); opacity: 0; }

/* =============================================
   SERVICES SECTION
   ============================================= */

.sec-services {
  padding: 10rem 0;
  background: var(--dark);
}

.services-header {
  margin-bottom: 6rem;
  text-align: center;
}

.services-headline {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line-inner {
  display: block;
  transform: translateY(110%);
}

.services-list { display: flex; flex-direction: column; }

.service-item { overflow: hidden; }

.service-item-inner {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  opacity: 0;
  transform: translateY(3rem);
}

.service-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
}

.service-num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--teal);
  padding-top: 0.4rem;
}

.service-name {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--mid-gray);
  max-width: 40rem;
}

/* =============================================
   WORD FADE SECTION
   ============================================= */

.sec-word-fade {
  padding: 12rem 0;
  background: var(--darker);
}

.word-fade-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 3.5vw;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-align: center;
}

.word-fade-text .word {
  display: inline-block;
  opacity: 0.2;
  transition: none;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.sec-contact {
  padding: 12rem 0;
  background: var(--dark);
}

.contact-header {
  text-align: center;
  max-width: 58rem;
  margin: 0 auto 6rem;
}

.contact-headline {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.contact-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.contact-form-wrap {
  max-width: 72rem;
  margin: 0 auto;
}

.contact-email a {
  font-size: 1rem;
  color: var(--teal);
  border-bottom: 1px solid rgba(27,140,181,0.3);
  padding-bottom: 0.1rem;
  transition: border-color 0.3s ease;
}

.contact-email a:hover { border-color: var(--teal); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--teal); }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray); }

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.privacy-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--gray);
  cursor: pointer;
}

.privacy-check input { accent-color: var(--teal); }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: var(--teal);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover { background: #1a7fa6; transform: translateY(-2px); }

.btn-submit-arrow { transition: transform 0.3s ease; }
.btn-submit:hover .btn-submit-arrow { transform: translateX(4px); }

.form-sent {
  display: none;
  padding: 1rem;
  background: rgba(27,140,181,0.1);
  border: 1px solid rgba(27,140,181,0.3);
  border-radius: 4px;
  color: var(--teal);
  font-size: 0.85rem;
}

.form-sent.active { display: block; }

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--darker);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 1.4rem;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-logo:hover img { opacity: 1; }

.footer-nav ul { display: flex; gap: 2rem; }

.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--white); }

.footer-copy { font-size: 0.7rem; color: var(--gray); }

/* =============================================
   ABOUT SECTION — centered
   ============================================= */

.sec-about {
  padding: 12rem 0 10rem;
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

.about-ghost-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  font-size: 28vw;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  will-change: transform;
}

.about-center {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
}

.about-headline {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.about-center .about-body {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.about-banner-wrap {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  margin-top: 7rem;
}

.about-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) grayscale(0.2);
}

.about-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem 0 10rem;
}

.about-divider {
  width: 1px;
  height: 5rem;
  background: rgba(255,255,255,0.1);
  margin: 0 6rem;
  flex-shrink: 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(1.5rem);
}

.about-tags {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gray);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.tag.teal { border-color: var(--teal); color: var(--teal); }

.about-stats {
  display: flex;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.about-stat { display: flex; flex-direction: column; gap: 0.4rem; }

.stat-num {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.teal-accent { color: var(--teal); }

/* =============================================
   INDUSTRIES SECTION
   ============================================= */

.sec-industries {
  padding: 10rem 0;
  background: var(--dark);
}

.industries-headline {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
  text-align: center;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.industry-card {
  opacity: 0;
  transform: translateY(2.5rem);
  cursor: none;
}

.industry-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  aspect-ratio: 3/2;
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) grayscale(0.3);
  transform: scale(1.08);
  transition: transform 0.6s var(--ease-smooth), filter 0.4s ease;
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.6) 0%, transparent 60%);
}

.industry-card:hover .industry-img {
  transform: scale(1.03);
  filter: brightness(0.75) grayscale(0.1);
}

.industry-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.industry-info p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--mid-gray);
}

/* =============================================
   FULL-WIDTH IMAGE BREAK
   ============================================= */

.sec-image-break {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.image-break-bg-wrap {
  position: absolute;
  inset: -20%;
  z-index: 0;
}

.image-break-canvas-wrap {
  inset: 0;
}

.image-break-canvas-wrap .unicorn,
.image-break-canvas-wrap .unicorn canvas {
  width: 100%;
  height: 100%;
}

.image-break-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.25) grayscale(0.4);
}

.image-break-overlay--dark {
  background: rgba(17,17,17,0.55);
}

/* ─── Canvas divider ──────────────────────── */

.sec-canvas-divider {
  position: relative;
  height: 45vh;
  overflow: hidden;
}

.canvas-divider-inner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.canvas-divider-inner .unicorn,
.canvas-divider-inner .unicorn canvas {
  width: 100%;
  height: 100%;
}

.canvas-divider-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 3rem 5rem;
  background: linear-gradient(to top, rgba(17,17,17,0.7) 0%, transparent 60%);
}

.canvas-divider-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: rgba(17,17,17,0.3);
}

.image-break-quote {
  text-align: center;
  margin: 0;
}

.image-break-quote .split-line {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 4vw;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  display: block;
  overflow: hidden;
}

/* =============================================
   MEDIA QUERIES
   ============================================= */

@media (max-width: 1200px) {
  html { font-size: 1.3vw; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-stage { grid-template-columns: 6rem 1fr 1fr; gap: 2.5rem; }
  .step-name-text { font-size: 4vw; }
}

@media (max-width: 900px) {
  html { font-size: 1.6vw; }
  .container { padding: 0 2.5rem; }
  .hero-content { padding-bottom: 5rem; }
  .contact-headline { font-size: 3.5rem; }
  .steps-stage { grid-template-columns: 1fr; gap: 1.5rem; }
  .steps-sticky { padding: 2rem 2.5rem; }
  .about-headline { font-size: 3.5rem; }
  .about-banner-wrap { height: 40vh; }
  .about-stats-row { gap: 0; }
  .about-divider { margin: 0 3rem; }
  .industries-headline { font-size: 3.5rem; }
  .image-break-quote .split-line { font-size: 5vw; }
}

@media (max-width: 759px) {
  html { font-size: clamp(14px, 4vw, 18px); }

  body { cursor: auto; }
  button { cursor: auto; }
  .cursor-follow { display: none; }

  .site-header { padding: 1.5rem 1.5rem; grid-template-columns: 1fr auto 1fr; }
  .container { padding: 0 1.5rem; }

  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; justify-content: flex-end; grid-column: 3; grid-row: 1; justify-self: end; }

  .hero-logo-img { width: 72vw; min-width: 200px; }
  .hero-passion { font-size: 6vw; }
  .hero-content { padding: 0 1.5rem 4rem; }

  .drift-inner { padding: 0 1.5rem; }
  .drift-line { font-size: 10vw; white-space: normal; }

  .ts-reveal .trans-reveal-bg { position: relative; height: auto; min-height: unset; }
  .sec-workflows { padding: 4rem 0; }
  .usp-lines-ct { display: none; }

  .sec-claim { padding: 8rem 0 7rem; }
  .claim-inner { padding: 0 1.5rem; max-width: 100%; }
  .claim-heading { font-size: 13vw; }
  .claim-sub { font-size: 1.1rem; }

  .sec-stats { padding: 0; }
  .stats-inner { flex-direction: column; padding: 0 1.5rem; gap: 0; }
  .stat-block { padding: 2.5rem 1.5rem; }
  .stat-big-num { font-size: 28vw; }
  .stats-divider { width: 4rem; height: 1px; }
  .stats-divider-inner { width: 100%; height: 1px !important; background: rgba(255,255,255,0.12); }

  .sec-drift    { padding: 7rem 0; }
  .sec-about    { padding: 7rem 0 0; }
  .sec-services { padding: 7rem 0; }
  .sec-industries { padding: 7rem 0; }
  .sec-contact  { padding: 7rem 0; }
  .sec-word-fade { padding: 7rem 0; }

  .about-headline  { font-size: 2.8rem; }
  .about-center { max-width: 100%; }
  .about-banner-wrap { height: 35vh; margin-top: 4rem; }
  .about-stats-row { flex-direction: column; gap: 3rem; padding: 4rem 0 6rem; }
  .about-divider { width: 4rem; height: 1px; margin: 0; }
  .contact-headline { font-size: 2.8rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-headline { font-size: 2.8rem; }

  .services-headline { font-size: 2.8rem; }
  .service-item-inner { grid-template-columns: 3rem 1fr; gap: 1.5rem; }
  .service-name { font-size: 1.5rem; }

  .word-fade-text { font-size: 6vw; }

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

  .usp-ct { font-size: 12vw; }
  .sec-usp-scroll { height: 100svh; }

  .steps-sticky { height: 100svh; padding: 2rem 1.5rem; }
  .step-name-text { font-size: 8vw; }
  .steps-stage { grid-template-columns: 1fr; }
  .number-slot, .name-slot { height: auto; }

  .sec-image-break { height: 50vh; }
  .image-break-quote .split-line { font-size: 8vw; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer-nav ul { flex-wrap: wrap; gap: 1rem; }

  .trans-ct { display: none; }
}

@media (max-width: 480px) {
  html { font-size: 4vw; }
  .hero-logo-img { width: 80vw; min-width: 180px; }
}
