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

:root {
  --ink: #0D0D14;
  --ink-2: #1A0A2E;
  --paper: #F5F3EE;
  --paper-warm: #EEEBE3;
  --accent: #7B2FBE;
  --accent-dim: #5B1E9A;
  --accent-bright: #A855F7;
  --mid: #6B6B5E;
  --border: rgba(10, 10, 8, 0.12);
  --border-light: rgba(123, 47, 190, 0.15);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --display: 'Manrope', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body:hover .cursor {
  opacity: 1;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(13, 13, 20, 0.5);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 47, 190, 0.3);
}

.nav-logo {
  display: block;
  height: 32px;
  text-decoration: none;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-cta {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-bright);
  border: none;
  padding: 12px 24px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  background-image: url('hero-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 46, 0.75) 0%, rgba(123, 47, 190, 0.65) 40%, rgba(245, 243, 238, 0.85) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent-bright);
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--paper);
  font-weight: 700;
}

.hero-headline em {
  font-style: italic;
  color: rgba(245, 243, 238, 0.7);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
  padding-bottom: 8px;
}

.hero-descriptor {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 243, 238, 0.85);
  font-weight: 300;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-primary {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: rgba(245, 243, 238, 0.9);
}

.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

.hero-ticker {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.ticker-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.7);
  white-space: nowrap;
  font-weight: 500;
  flex-shrink: 0;
}

.ticker-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.9);
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticker-item::before {
  content: '◆';
  font-size: 6px;
  color: var(--accent-bright);
}

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

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

/* SECTION COMMON */
section {
  padding: 120px 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* PROBLEM STATEMENT */
.problem {
  background: linear-gradient(135deg, #1A0A2E 0%, #0D0D14 60%);
  color: var(--paper);
  padding: 100px 48px;
}

.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.problem .section-label {
  color: rgba(168, 85, 247, 0.7);
}

.problem .section-label::before {
  background: var(--accent-bright);
}

.problem-stat {
  font-family: var(--display);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--accent-bright);
  font-weight: 800;
}

.problem-stat-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(245, 243, 238, 0.5);
  margin-top: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.problem-right h2 {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 32px;
}

.problem-right h2 em {
  font-style: italic;
  color: rgba(245, 243, 238, 0.45);
}

.problem-right p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 243, 238, 0.6);
  font-weight: 300;
  max-width: 560px;
}

/* THREE PILLARS */
.pillars {
  background: var(--paper);
  padding: 120px 48px;
}

.pillars-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.pillars-header h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}

.pillars-header h2 em {
  font-style: italic;
  color: var(--mid);
}

.pillars-header p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
  align-self: end;
  padding-bottom: 8px;
}

.pillars-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.pillar {
  padding: 56px 40px 56px 0;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
  cursor: none;
}

.pillar:last-child {
  border-right: none;
  padding-right: 0;
}

.pillar:first-child {
  padding-left: 0;
}

.pillar:not(:first-child) {
  padding-left: 40px;
}

.pillar:hover {
  background: rgba(123, 47, 190, 0.04);
}

.pillar-number {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pillar-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pillar-word {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  display: block;
  font-weight: 700;
}

.pillar-word-italic {
  font-family: var(--sans);
  font-size: 16px;
  font-style: normal;
  color: var(--mid);
  display: block;
  margin-bottom: 32px;
  font-weight: 300;
}

.pillar-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 40px;
}

.pillar-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-items li {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pillar-items li:last-child {
  border-bottom: none;
}

.pillar-items li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  flex-shrink: 0;
}

/* PROCESS / HOW WE WORK */
.process {
  background: var(--ink);
  padding: 120px 48px;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process .section-label {
  color: rgba(245, 243, 238, 0.4);
  margin-bottom: 64px;
}

.process h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.1;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 80px;
  max-width: 700px;
}

.process h2 em {
  font-style: italic;
  color: rgba(245, 243, 238, 0.45);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 243, 238, 0.1);
}

.process-step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid rgba(245, 243, 238, 0.1);
}

.process-step:last-child {
  border-right: none;
}

.process-step:not(:first-child) {
  padding-left: 40px;
}

.process-step:first-child {
  padding-left: 0;
}

.step-num {
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.85;
  color: rgba(245, 243, 238, 0.08);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.step-phase {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 243, 238, 0.45);
  font-weight: 300;
}

/* WORK / CASE STUDIES */
.work {
  background: var(--paper-warm);
  padding: 120px 48px;
}

.work-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.work-header h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.work-header h2 em {
  font-style: italic;
  color: var(--mid);
}

.work-header a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.work-header a:hover {
  color: var(--ink);
}

.work-header a::after {
  content: '→';
  transition: transform 0.2s;
}

.work-header a:hover::after {
  transform: translateX(4px);
}

.work-cta-mobile {
  display: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.work-cta-mobile:hover {
  color: var(--accent);
}

.work-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.case-card {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink);
  overflow: hidden;
  cursor: none;
}

.case-card-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.case-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card:hover .case-bg {
  transform: scale(1.04);
}

/* Placeholder colored backgrounds for case studies */
.case-card:nth-child(1) .case-bg {
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #1a0a2e 100%);
}

.case-card:nth-child(2) .case-bg {
  background: linear-gradient(135deg, #0d0d14 0%, #1a0a2e 100%);
}

.case-card:nth-child(3) .case-bg {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d0d14 100%);
}

.case-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 80%);
}

.case-card {
  position: relative;
  /* aspect-ratio: 4/3; */
  background: var(--ink);
  overflow: hidden;
  cursor: none;
}

.case-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.case-card:hover::after {
  transform: translateY(0);
}

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 2;
}

.case-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none;
  transition: color 0.2s;
}

.case-cta:hover {
  color: var(--paper);
}

.case-tag {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 8px;
}

.case-meta {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.5);
  font-weight: 300;
}

/* SVG patterns for case cards */
.case-card:nth-child(1) .case-pattern svg {
  fill: rgba(168, 85, 247, 0.3);
}

.case-card:nth-child(2) .case-pattern svg {
  fill: rgba(168, 85, 247, 0.3);
}

.case-card:nth-child(3) .case-pattern svg {
  fill: rgba(168, 85, 247, 0.3);
}

/* INDUSTRIES */
.industries {
  background: var(--paper);
  padding: 120px 48px;
}

.industries-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  align-items: end;
}

.industries-header h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.industries-header h2 em {
  font-style: italic;
  color: var(--mid);
}

.industries-header p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

.industry-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.industry-item {
  display: grid;
  grid-template-columns: 64px 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s;
  cursor: none;
  text-decoration: none;
  color: var(--ink);
}

.industry-item:hover {
  background: transparent;
}

.industry-item:hover .industry-name {
  letter-spacing: 0.01em;
}

.industry-item:hover .industry-arrow {
  transform: translateX(6px);
}

.industry-num {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mid);
}

.industry-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  transition: letter-spacing 0.3s;
}

.industry-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 5px 10px;
}

.industry-arrow {
  font-size: 18px;
  color: var(--mid);
  transition: transform 0.25s;
  justify-self: end;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #5B1E9A 0%, #7B2FBE 100%);
  padding: 80px 48px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item {
  padding: 0 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* CTA SECTION */
.cta-section {
  background: var(--ink);
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  font-family: var(--display);
  font-size: clamp(120px, 20vw, 280px);
  font-style: normal;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.0;
  color: var(--paper);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-inner h2 em {
  font-style: italic;
  color: rgba(245, 243, 238, 0.4);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.cta-right p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 243, 238, 0.55);
  font-weight: 300;
}

.cta-right .btn-primary {
  align-self: flex-start;
  font-size: 14px;
  padding: 18px 40px;
}

.cta-contact {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.35);
  font-weight: 300;
}

.cta-contact a {
  color: rgba(245, 243, 238, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 243, 238, 0.2);
  transition: color 0.2s;
}

.cta-contact a:hover {
  color: var(--paper);
}

/* FOOTER */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(245, 243, 238, 0.08);
  padding: 48px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  display: block;
  height: 28px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  height: 100%;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(245, 243, 238, 0.35);
  line-height: 1.6;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 243, 238, 0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(245, 243, 238, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--paper);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(245, 243, 238, 0.08);
  padding-top: 32px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(245, 243, 238, 0.25);
  letter-spacing: 0.04em;
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* MICRO SCROLL ANIMATIONS */
html {
  scroll-behavior: smooth;
}

/* Parallax hero background */
.hero {
  background-attachment: fixed;
}

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll;
  }
}

/* Text character reveal animation */
@keyframes charReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale in animation */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger list item animations */
.stagger-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-list.visible li {
  opacity: 1;
  transform: translateX(0);
}

.stagger-list.visible li:nth-child(1) { transition-delay: 0s; }
.stagger-list.visible li:nth-child(2) { transition-delay: 0.08s; }
.stagger-list.visible li:nth-child(3) { transition-delay: 0.16s; }
.stagger-list.visible li:nth-child(4) { transition-delay: 0.24s; }
.stagger-list.visible li:nth-child(5) { transition-delay: 0.32s; }
.stagger-list.visible li:nth-child(6) { transition-delay: 0.4s; }

/* Hover micro-interactions */
.pillar-items li {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

.pillar-items li:hover {
  transform: translateX(4px);
}

.industry-item {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-item:hover {
  background: rgba(123, 47, 190, 0.03);
  transform: translateX(8px);
}

.case-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  transform: translateY(-4px);
}

/* Number counter animation class */
.counter-animate {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.counter-animate.visible {
  opacity: 1;
  transform: scale(1);
}

/* Line draw animation */
@keyframes lineDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.section-label::before {
  transform-origin: left;
  animation: lineDraw 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.section-label.visible::before {
  animation-play-state: running;
}

/* Fade blur animation */
.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* HORIZONTAL LINE DECORATIONS */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

.mobile-only {
    display: none;
}

@media (max-width: 900px) {
  nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .nav-cta {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    z-index: 1000;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(123, 47, 190, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    font-size: 12px;
  }

  .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(123, 47, 190, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  section {
    padding: 80px 20px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-headline {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-descriptor {
    max-width: 100%;
  }

  .hero-ticker {
    gap: 24px;
  }

  .pillars-header {
    grid-template-columns: 1fr;
  }

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

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 0 !important;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(245, 243, 238, 0.1);
    padding: 40px 0 !important;
  }

  .work-header a {
    display: none;
  }

  .work-cta-mobile {
    display: block;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  .work-header h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .work-cases {
    grid-template-columns: 1fr;
  }

  .case-card-large {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }

  .case-content {
    padding: 24px;
  }

  .case-title {
    font-size: 22px;
  }

  .industries-header {
    grid-template-columns: 1fr;
  }

  .industry-item {
    grid-template-columns: 32px 1fr auto;
    gap: 16px;
    padding: 20px 0;
  }

  .industry-name {
    font-size: 20px;
  }

  .industry-tags {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }

  .stat-number {
    font-size: clamp(40px, 10vw, 56px);
  }

  .cta-section {
    padding: 100px 20px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}