:root {
  --bg: #f8f9fb;
  --bg-soft: #f3f4f8;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #111827;
  --text-strong: #0f172a;
  --muted: #64748b;
  --muted-dark: #475569;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.12);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 16px 48px rgba(15, 23, 42, 0.06);
  --gradient: linear-gradient(45deg, #ff4d4d, #8b5cf6);
  --gradient-soft: linear-gradient(45deg, rgba(255, 77, 77, 0.14), rgba(139, 92, 246, 0.14));
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --nav-height: 78px;
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 77, 77, 0.16), transparent 32rem),
    radial-gradient(circle at 86% 18%, rgba(139, 92, 246, 0.17), transparent 35rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 0.5px, transparent 0.5px);
  background-size: 18px 18px;
  opacity: 0.16;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: #ffffff;
  background: #8b5cf6;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--text-strong);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

/* Legal consent popup */
.legal-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.legal-consent-backdrop.is-visible {
  opacity: 1;
}

.legal-consent-backdrop[hidden] {
  display: none !important;
}

.legal-consent-modal {
  width: min(100%, 560px);
  padding: clamp(24px, 5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 77, 77, 0.1), transparent 38%),
    radial-gradient(circle at 86% 12%, rgba(139, 92, 246, 0.13), transparent 40%),
    var(--surface-strong);
  box-shadow: 0 34px 110px rgba(15, 23, 42, 0.24);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms ease;
}

.legal-consent-backdrop.is-visible .legal-consent-modal {
  transform: translateY(0) scale(1);
}

.legal-consent-logo {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
}

.legal-consent-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.legal-consent-kicker {
  width: fit-content;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-consent-modal h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

.legal-consent-modal p {
  color: var(--muted);
}

.legal-consent-small {
  margin-top: -4px;
  font-size: 0.92rem;
}

.legal-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
}

.legal-consent-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.legal-consent-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.24);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.legal-consent-button {
  width: 100%;
}

body.legal-consent-open {
  overflow: hidden;
}

/* Legal pages */
.legal-page {
  min-height: 100vh;
  padding: 54px 20px;
}

.legal-document {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-document h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-document p {
  color: var(--muted-dark);
}

.legal-document a {
  color: var(--text-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-back-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

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

h1,
h2,
h3 {
  color: var(--text-strong);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.9rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.75rem);
  font-weight: 830;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 780;
  line-height: 1.12;
}

.gradient-text {
  display: inline-block;
  padding-right: 0.08em;
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-text,
.section-intro p,
.glass-card p,
.solution-tile p,
.tech-card p,
.journal-card p,
.respect-row p,
.timeline-item p,
.final-copy p,
.project-form p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  width: min(100% - 40px, 1240px);
  min-height: var(--nav-height);
  margin-inline: auto;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text-strong);
  font-weight: 780;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(139, 92, 246, 0.22);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: -0.06em;
}

.brand-mark.logo-frame {
  width: 44px;
  height: 44px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-links,
.nav-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-links a,
.language-switcher a {
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a {
  padding: 10px 12px;
}

.language-switcher {
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.language-switcher a {
  padding: 6px 8px;
  font-size: 0.76rem;
}

.language-switcher a.is-active {
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.18);
}

.nav-links a:hover,
.language-switcher a:hover {
  color: var(--text-strong);
  background: rgba(15, 23, 42, 0.055);
  transform: translateY(-1px);
}

.nav-actions {
  gap: 10px;
  flex: 0 0 auto;
}

.mobile-top-controls,
.mobile-menu-backdrop,
.mobile-panel {
  display: none;
}

.mobile-menu-backdrop[hidden],
.mobile-panel[hidden] {
  display: none !important;
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 780;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn-small {
  min-height: 44px;
  padding-inline: 17px;
  font-size: 0.88rem;
}

.btn-primary {
  color: #ffffff;
  background: var(--gradient);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.22), 0 10px 30px rgba(255, 77, 77, 0.14);
}

.btn-secondary {
  color: var(--text-strong);
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.055);
}

.btn:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 24px 56px rgba(139, 92, 246, 0.28), 0 14px 36px rgba(255, 77, 77, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 77, 0.18), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.18), transparent 35%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 760px;
}

.delayed-message {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--text-strong);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  opacity: 0;
  transform: translateY(14px);
  animation: revealDelayed 900ms ease 2.4s forwards;
}

.hero-subtitle {
  margin-bottom: 10px;
  color: var(--text-strong);
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  font-weight: 740;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}

.hero-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform-style: preserve-3d;
}

.principle-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.principle-card:hover {
  transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.12);
}

.card-orbit {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--gradient-soft);
  filter: blur(4px);
}

.card-kicker {
  position: relative;
  margin-bottom: 24px;
  color: var(--muted-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle-card h2 {
  position: relative;
  max-width: 520px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 3vw, 3.35rem);
}

.principle-card p {
  position: relative;
  max-width: 440px;
  color: var(--muted);
}

.card-footer {
  position: relative;
  margin-top: 46px;
  padding-top: 22px;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
}

.card-footer strong {
  color: var(--text-strong);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.58;
  animation: floatGlow 9s ease-in-out infinite alternate;
}

.hero-glow-one {
  left: 6%;
  top: 16%;
  background: rgba(255, 77, 77, 0.2);
}

.hero-glow-two {
  right: 8%;
  bottom: 12%;
  background: rgba(139, 92, 246, 0.22);
  animation-delay: -2.5s;
}

/* Shared cards and sections */
.section-intro {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p {
  max-width: 720px;
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.glass-card,
.solution-tile,
.tech-card,
.journal-card,
.respect-row,
.timeline-item,
.project-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.glass-card::before,
.solution-tile::before,
.tech-card::before,
.journal-card::before,
.timeline-item::before,
.project-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 220ms ease;
}

.glass-card:hover::before,
.solution-tile:hover::before,
.tech-card:hover::before,
.journal-card:hover::before,
.timeline-item:hover::before,
.project-form:hover::before {
  opacity: 1;
}

.glass-card {
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.glass-card:hover,
.solution-tile:hover,
.tech-card:hover,
.journal-card:hover,
.timeline-item:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.1);
}

.problem-card p {
  margin-bottom: 0;
}

/* Problem icons */
.problem-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(45deg, rgba(255, 77, 77, 0.75), rgba(139, 92, 246, 0.75)) border-box;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.problem-icon i {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.45rem;
  line-height: 1;
}

.problem-card:hover .problem-icon {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(139, 92, 246, 0.2);
}

/* What we build: the important fixed part */
.split-section {
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(243, 244, 248, 0.86), rgba(255, 255, 255, 0));
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 58px;
  align-items: start;
  overflow: visible;
}

#build,
#build .container,
#build .split-grid {
  overflow: visible;
}

.sticky-copy {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  align-self: start;
  height: fit-content;
  margin-bottom: 0;
  z-index: 2;
}

#build .sticky-copy {
  transform: none;
  filter: none;
  will-change: auto;
  backface-visibility: visible;
}

.quiet-line {
  margin-top: 28px;
  color: var(--text-strong) !important;
  font-weight: 720;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-tile {
  min-height: 150px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-tile h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.solution-tile p {
  max-width: 560px;
  margin: 0;
}

/* Principle */
.principle-section {
  padding: 138px 0;
}

.principle-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 8vw, 88px);
  border: 1px solid rgba(139, 92, 246, 0.16);
  border-radius: 44px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 77, 77, 0.12), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
  text-align: center;
}

.principle-stage .eyebrow {
  margin-inline: auto;
}

.principle-lead {
  color: var(--muted-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.principle-question {
  max-width: 930px;
  margin: 36px auto;
  color: var(--text-strong);
  font-size: clamp(2.3rem, 6vw, 5.7rem);
  font-weight: 860;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.principle-lines {
  display: grid;
  gap: 8px;
  margin: 0 auto 30px;
}

.principle-lines p {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 650;
}

.principle-close {
  width: fit-content;
  margin: 38px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gradient);
  font-weight: 800;
  box-shadow: 0 20px 46px rgba(139, 92, 246, 0.22);
}

/* Why / Technology / Journal */
.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-item {
  min-height: 260px;
}

.principle-item.featured {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) padding-box,
    var(--gradient) border-box;
}

.card-number,
.journal-number,
.timeline-item span,
.tech-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #8b5cf6;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.technology-section {
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 77, 77, 0.09), transparent 30%),
    radial-gradient(circle at 84% 56%, rgba(139, 92, 246, 0.11), transparent 32%);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tech-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tech-card h3 {
  font-size: 1.45rem;
  line-height: 1.08;
}

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

.journal-card {
  min-height: 335px;
  padding: 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.journal-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.journal-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--text-strong);
  font-weight: 800;
}

.journal-card a::after,
.text-link::after {
  content: "";
  width: 0.52em;
  height: 0.52em;
  display: inline-block;
  margin-left: 0.46em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

/* Respect */
.respect-section {
  background: linear-gradient(180deg, rgba(243, 244, 248, 0.5), rgba(255, 255, 255, 0));
}

.respect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.respect-list {
  display: grid;
  gap: 14px;
}

.respect-row {
  padding: 0;
  border-radius: var(--radius-lg);
}

.respect-row summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 26px 78px 26px 28px;
  color: var(--text-strong);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.respect-row summary::-webkit-details-marker,
.respect-row summary::marker {
  display: none;
}

.respect-row summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  transform: translateY(-50%);
  background:
    linear-gradient(#ffffff, #ffffff) center / 14px 2px no-repeat,
    linear-gradient(#ffffff, #ffffff) center / 2px 14px no-repeat,
    var(--gradient);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.18);
}

.respect-row[open] summary::after {
  background:
    linear-gradient(#ffffff, #ffffff) center / 14px 2px no-repeat,
    var(--gradient);
}

.respect-row p {
  max-width: 640px;
  margin: -8px 28px 26px;
}

/* Process */
.process-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(139, 92, 246, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, rgba(243, 244, 248, 0.72), #ffffff);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 24px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #ff4d4d, #8b5cf6);
  opacity: 0.28;
  transform-origin: top;
  transition: transform 1200ms var(--reveal-ease), opacity 600ms ease;
}

.timeline-item {
  margin-left: 64px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -52px;
  width: 14px;
  height: 14px;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.22);
  transition: transform 620ms var(--reveal-ease), opacity 620ms var(--reveal-ease), box-shadow 220ms ease;
}

.timeline-item span {
  margin-bottom: 12px;
}

.timeline-item p {
  margin-bottom: 0;
}

/* Contact */
.final-section {
  padding-bottom: 132px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 77, 77, 0.1), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(248, 249, 251, 0.9));
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 54px;
  align-items: start;
}

.final-copy {
  position: sticky;
  top: 140px;
  align-self: start;
}

.final-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-strong);
  font-weight: 800;
  transition: transform 180ms ease;
}

.project-form {
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.975);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow:
    0 28px 90px rgba(15, 23, 42, 0.11),
    0 12px 34px rgba(139, 92, 246, 0.08);
}

.form-heading {
  margin-bottom: 26px;
}

.form-heading h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.form-heading p {
  max-width: 480px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-strong);
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  color: var(--text-strong);
  background: #ffffff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  height: 50px;
  padding: 0 15px;
}

textarea {
  min-height: 140px;
  padding: 15px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(139, 92, 246, 0.48);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 0.92rem !important;
}

/* Footer */
.site-footer {
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(160px, 0.4fr));
  gap: 38px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-legal-links {
  margin-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-legal-links a {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-legal-links a:hover {
  color: var(--text-strong);
  transform: translateY(-1px);
}

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

.footer-links a {
  width: fit-content;
  color: var(--muted-dark);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--text-strong);
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-bottom strong {
  color: var(--text-strong);
}

/* Scroll reveal. Safe for sticky because sticky-copy is not animated. */
.reveal {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity 820ms var(--reveal-ease),
    transform 820ms var(--reveal-ease),
    filter 820ms var(--reveal-ease),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.reveal-immediate {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: revealUp 900ms var(--reveal-ease) forwards;
}

.hero-card.reveal-immediate {
  animation-delay: 220ms;
}

body.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  pointer-events: none;
}

body.reveal-ready .solution-tile.reveal:not(.is-visible),
body.reveal-ready .respect-row.reveal:not(.is-visible),
body.reveal-ready .project-form.reveal:not(.is-visible) {
  transform: translate3d(0, 34px, 0);
}

body.reveal-ready .timeline::before {
  transform: scaleY(0);
  opacity: 0;
}

body.reveal-ready .timeline.is-visible::before {
  transform: scaleY(1);
  opacity: 0.28;
}

body.reveal-ready .timeline-item.reveal:not(.is-visible)::after {
  opacity: 0;
  transform: scale(0.35);
}

body.reveal-ready .timeline-item.reveal.is-visible::after {
  opacity: 1;
  transform: scale(1);
}

.problems-grid .reveal:nth-child(1),
.why-grid .reveal:nth-child(1),
.tech-grid .reveal:nth-child(1),
.journal-grid .reveal:nth-child(1),
.solution-list .reveal:nth-child(1),
.respect-list .reveal:nth-child(1),
.timeline .reveal:nth-child(1) { transition-delay: 0ms; }

.problems-grid .reveal:nth-child(2),
.why-grid .reveal:nth-child(2),
.tech-grid .reveal:nth-child(2),
.journal-grid .reveal:nth-child(2),
.solution-list .reveal:nth-child(2),
.respect-list .reveal:nth-child(2),
.timeline .reveal:nth-child(2) { transition-delay: 70ms; }

.problems-grid .reveal:nth-child(3),
.why-grid .reveal:nth-child(3),
.tech-grid .reveal:nth-child(3),
.journal-grid .reveal:nth-child(3),
.solution-list .reveal:nth-child(3),
.respect-list .reveal:nth-child(3),
.timeline .reveal:nth-child(3) { transition-delay: 140ms; }

.problems-grid .reveal:nth-child(4),
.why-grid .reveal:nth-child(4),
.tech-grid .reveal:nth-child(4),
.solution-list .reveal:nth-child(4),
.respect-list .reveal:nth-child(4),
.timeline .reveal:nth-child(4) { transition-delay: 210ms; }

.problems-grid .reveal:nth-child(5),
.why-grid .reveal:nth-child(5),
.solution-list .reveal:nth-child(5),
.timeline .reveal:nth-child(5) { transition-delay: 280ms; }

.problems-grid .reveal:nth-child(6),
.why-grid .reveal:nth-child(6),
.solution-list .reveal:nth-child(6),
.timeline .reveal:nth-child(6) { transition-delay: 350ms; }

.problems-grid .reveal:nth-child(7),
.solution-list .reveal:nth-child(7),
.timeline .reveal:nth-child(7) { transition-delay: 420ms; }

.problems-grid .reveal:nth-child(8),
.solution-list .reveal:nth-child(8) { transition-delay: 490ms; }

.final-copy.reveal,
body.reveal-ready .final-copy.reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
  filter: none;
  pointer-events: auto;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes revealDelayed {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(26px, -22px, 0) scale(1.08);
  }
}

/* Desktop/tablet adjustments */
@media (max-width: 1100px) {
  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 30px;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .respect-grid,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .final-copy {
    position: relative;
    top: auto;
  }

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

/* Keep What We Build sticky until real mobile/tablet width. */
@media (min-width: 901px) {
  #build .split-grid {
    grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  }

  #build .section-intro.sticky-copy {
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
  }
}

@media (max-width: 900px) {
  .split-grid,
  #build .split-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sticky-copy,
  #build .section-intro.sticky-copy {
    position: static;
    top: auto;
  }
}

/* Mobile */
@media (max-width: 760px) {
  :root {
    --nav-height: auto;
  }

  html,
  body {
    width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }

  body {
    padding-bottom: 118px;
  }

  body.mobile-panel-is-open {
    overflow: hidden;
  }

  body::before {
    opacity: 0.45;
  }

  body::after {
    opacity: 0.08;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    position: static;
    inset: auto;
    z-index: 150;
    pointer-events: none;
  }

  .mobile-top-controls {
    position: fixed;
    top: 14px;
    left: 14px;
    right: 14px;
    z-index: 160;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }

  .mobile-icon-button {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.09);
    pointer-events: auto;
    cursor: pointer;
  }

  .mobile-icon-button i {
    font-size: 1.32rem;
    line-height: 1;
  }

  .nav-shell {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 150;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  }

  body.mobile-contact-visible .nav-shell {
    transform: translateY(145%);
    opacity: 0;
    pointer-events: none;
  }

  .brand {
    width: 100%;
    justify-content: center;
    gap: 9px;
    font-size: 0.98rem;
    text-align: center;
  }

  .brand-mark.logo-frame {
    width: 38px;
    height: 38px;
  }

  .nav-links,
  .language-switcher {
    display: none;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-start-button,
  .nav-actions .btn-small {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 190;
    display: block;
    background: rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    z-index: 200;
    display: block;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background:
      radial-gradient(circle at 16% 0%, rgba(255, 77, 77, 0.12), transparent 34%),
      radial-gradient(circle at 92% 10%, rgba(139, 92, 246, 0.14), transparent 38%),
      rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.16);
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    pointer-events: none;
    transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--text-strong);
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: -0.035em;
  }

  .mobile-panel-close {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
  }

  .mobile-panel-kicker {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-panel-links,
  .mobile-language-list {
    display: grid;
    gap: 10px;
  }

  .mobile-panel-links a {
    min-height: 54px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(15, 23, 42, 0.075);
    border-radius: 18px;
    color: var(--text-strong);
    background: rgba(255, 255, 255, 0.66);
    font-weight: 800;
    letter-spacing: -0.025em;
  }

  .mobile-panel-links a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.5;
  }

  .mobile-language-list a {
    min-height: 58px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(15, 23, 42, 0.075);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
  }

  .mobile-language-list a span {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: var(--gradient);
    font-size: 0.75rem;
    font-weight: 900;
  }

  .mobile-language-list a strong {
    color: var(--text-strong);
    font-size: 1rem;
    letter-spacing: -0.02em;
  }

  .mobile-language-list a.is-active {
    border-color: rgba(139, 92, 246, 0.28);
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.12);
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-glow {
    display: none;
  }

  .hero-grid,
  .respect-grid,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
    line-height: 1;
  }

  .delayed-message {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    animation: revealDelayed 900ms ease 1.6s forwards;
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .hero-text,
  .section-intro p,
  .final-copy p {
    font-size: 1rem;
  }

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

  .btn {
    min-height: 50px;
  }

  .hero-card,
  .glass-card,
  .solution-tile,
  .tech-card,
  .journal-card,
  .timeline-item {
    min-height: auto;
  }

  .card-grid,
  .why-grid,
  .tech-grid,
  .journal-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .principle-stage {
    border-radius: 30px;
  }

  .principle-question {
    margin: 28px auto;
    line-height: 1.02;
  }

  .final-copy {
    position: static;
  }

  .final-section {
    padding-bottom: 92px;
  }

  .project-form {
    border-radius: 28px;
  }

  .respect-row summary {
    padding: 22px 68px 22px 20px;
    font-size: 1.08rem;
    line-height: 1.15;
  }

  .respect-row summary::after {
    right: 20px;
  }

  .respect-row p {
    margin: -4px 20px 22px;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    margin-left: 40px;
    padding: 22px;
  }

  .timeline-item::after {
    left: -33px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  body.reveal-ready .reveal:not(.is-visible) {
    transform: translate3d(0, 26px, 0) scale(0.99);
    filter: blur(6px);
  }

  .problems-grid .reveal,
  .why-grid .reveal,
  .tech-grid .reveal,
  .journal-grid .reveal,
  .solution-list .reveal,
  .respect-list .reveal,
  .timeline .reveal {
    transition-delay: 0ms !important;
  }

  .glass-card:hover,
  .solution-tile:hover,
  .tech-card:hover,
  .journal-card:hover,
  .timeline-item:hover,
  .principle-card:hover,
  .problem-card:hover .problem-icon,
  .btn:hover,
  .text-link:hover {
    transform: none;
  }
}

@media (max-width: 440px) {
  body {
    padding-bottom: 112px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .mobile-top-controls {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .mobile-icon-button {
    width: 46px;
    height: 46px;
  }

  .nav-shell {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 26px;
  }

  .hero {
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 3.75rem);
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .mobile-panel {
    left: 12px;
    right: 12px;
    top: 70px;
    border-radius: 26px;
  }
}

@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;
  }

  .delayed-message,
  .reveal,
  .reveal-immediate,
  body.reveal-ready .reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ============================================= */
/* FIX: Sticky "What We Build" Section           */
/* ============================================= */

#build,
#build .section,
#build .split-section,
#build .container,
#build .split-grid,
main {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* ÃƒÂÃ¢â‚¬ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â·ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Â°ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â° */
.split-section,
.split-grid {
    overflow: visible !important;
}

/* ÃƒÂÃ…Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Âµ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° */
.sticky-copy {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 110px;                    /* ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã†â€™ÃƒÂÃ‚Â¿ ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ */
    align-self: start;
    height: fit-content;
    z-index: 10;
    margin-bottom: 0;
}

/* ÃƒÂÃ‚Â£ÃƒÂÃ‚Â»Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â‚¬Â¡Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã¢â‚¬Â¦ (ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â»Ãƒâ€˜Ã…Â½Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ sticky ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã…â€™ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¦ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Â¦) */
@media (max-width: 900px) {
    .sticky-copy {
        position: static !important;
        top: auto;
    }
}

/* ÃƒÂÃ¢â‚¬ÂÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Â¦ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ body */
html, body {
    overflow-x: visible;           /* ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¹ hidden */
}

/* ============================================= */
/* GLOBAL FIX: No-jitter card/window animations  */
/* ÃƒÂÃ¢â‚¬â„¢Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾, Ãƒâ€˜Ã¢â‚¬Â¡Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â¹ hover ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â±ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¸ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾     */
/* ============================================= */

:root {
  --card-hover-scale: 1.012;
  --card-hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --card-hover-time: 340ms;
  --card-shadow-hover:
    0 30px 86px rgba(15, 23, 42, 0.12),
    0 12px 34px rgba(139, 92, 246, 0.09);
}

/*
  ÃƒÂÃ¢â‚¬â„¢ÃƒÂÃ‚ÂÃƒÂÃ¢â‚¬â€œÃƒÂÃ‚ÂÃƒÂÃ…Â¾:
  ÃƒÂ ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Âµ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° hover Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã…â€™ Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚ÂµÃƒÂÃ‚Â· translateY(-...px).
  ÃƒÂÃ‹Å“ÃƒÂÃ‚Â·-ÃƒÂÃ‚Â·ÃƒÂÃ‚Â° Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾, ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â» Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾/ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ ÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â, ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° Ãƒâ€˜Ã†â€™ÃƒÂÃ‚ÂµÃƒÂÃ‚Â·ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°
  ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·-ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°, hover ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚ÂºÃƒÂÃ‚Â»Ãƒâ€˜Ã…Â½Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â, ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â°ÃƒÂÃ‚Â´ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»ÃƒÂÃ‚Â° ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾, hover ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂºÃƒÂÃ‚Â»Ãƒâ€˜Ã…Â½Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°.
  ÃƒÂÃ…Â¸ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¼Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â»ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã…â€™ Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â²ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¦-ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·.

  ÃƒÂÃ‚Â¢ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã…â€™ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â°ÃƒÂÃ‚Â¼ hitbox ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ Ãƒâ€˜Ã†â€™ÃƒÂÃ‚ÂµÃƒÂÃ‚Â·ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â²ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¦.
  ÃƒÂÃ‚Â­Ãƒâ€˜Ã¢â‚¬Å¾Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚ÂµÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â½Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚ÂµÃƒÂÃ‚Â· Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã…â€™, Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™ ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â»Ãƒâ€˜Ã¢â‚¬ËœÃƒÂÃ‚Â³ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Âµ Ãƒâ€˜Ã†â€™ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Âµ scale.
  ÃƒÂÃ¢â‚¬â„¢ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·Ãƒâ€˜Ã†â€™ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ ÃƒÂÃ‚ÂºÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â²Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Ëœ ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Â°Ãƒâ€˜Ã¢â‚¬Ëœ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹, ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ hover.
*/

/* ÃƒÂÃ‚Â£ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â·ÃƒÂÃ‚Â°ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸, ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° hover */
.problems-grid .reveal,
.why-grid .reveal,
.tech-grid .reveal,
.journal-grid .reveal,
.solution-list .reveal,
.respect-list .reveal,
.timeline .reveal,
.card-grid .reveal {
  transition-delay: 0ms !important;
}

/* ÃƒÂÃ…Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â°ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â²Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Â¦ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¦ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¦ ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ */
.glass-card,
.solution-tile,
.tech-card,
.journal-card,
.timeline-item,
.respect-row,
.project-form,
.principle-card {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, box-shadow, border-color;
  transition:
    transform var(--card-hover-time) var(--card-hover-ease),
    box-shadow var(--card-hover-time) var(--card-hover-ease),
    border-color 260ms ease,
    background 260ms ease,
    opacity 760ms var(--reveal-ease),
    filter 760ms var(--reveal-ease) !important;
}

/* Reveal-ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¿Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â»ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬ËœÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â, ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂºÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Âµ */
body.reveal-ready .glass-card.reveal:not(.is-visible),
body.reveal-ready .solution-tile.reveal:not(.is-visible),
body.reveal-ready .tech-card.reveal:not(.is-visible),
body.reveal-ready .journal-card.reveal:not(.is-visible),
body.reveal-ready .timeline-item.reveal:not(.is-visible),
body.reveal-ready .respect-row.reveal:not(.is-visible),
body.reveal-ready .project-form.reveal:not(.is-visible) {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.995) !important;
  filter: blur(5px);
  pointer-events: none;
}

body.reveal-ready .glass-card.reveal.is-visible,
body.reveal-ready .solution-tile.reveal.is-visible,
body.reveal-ready .tech-card.reveal.is-visible,
body.reveal-ready .journal-card.reveal.is-visible,
body.reveal-ready .timeline-item.reveal.is-visible,
body.reveal-ready .respect-row.reveal.is-visible,
body.reveal-ready .project-form.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) !important;
  filter: none;
  pointer-events: auto;
}

/*
  ÃƒÂÃ¢â‚¬Å“ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Â¹ Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒâ€˜Ã‚Â:
  ÃƒÂÃ‚ÂÃƒÂÃ‚Â° hover ÃƒÂÃ‚ÂÃƒÂÃ¢â‚¬Â¢ ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â·Ãƒâ€˜Ã†â€™ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ translateY.
  ÃƒÂÃ…Â¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â° ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ Ãƒâ€˜Ã†â€™ÃƒÂÃ‚ÂµÃƒÂÃ‚Â·ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·-ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â´ ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°, ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¼Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° ÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Â¦.
*/
@media (hover: hover) and (pointer: fine) {
  .glass-card:hover,
  .glass-card:focus-within,
  .solution-tile:hover,
  .solution-tile:focus-within,
  .tech-card:hover,
  .tech-card:focus-within,
  .journal-card:hover,
  .journal-card:focus-within,
  .timeline-item:hover,
  .timeline-item:focus-within,
  .respect-row:hover,
  .respect-row:focus-within,
  .project-form:hover,
  .project-form:focus-within {
    transform: translate3d(0, 0, 0) scale(var(--card-hover-scale)) !important;
    border-color: rgba(139, 92, 246, 0.28) !important;
    box-shadow: var(--card-shadow-hover) !important;
  }

  .principle-card:hover,
  .principle-card:focus-within {
    transform: translate3d(0, 0, 0) scale(1.01) !important;
    border-color: rgba(139, 92, 246, 0.22) !important;
    box-shadow:
      0 34px 100px rgba(15, 23, 42, 0.13),
      0 14px 38px rgba(139, 92, 246, 0.08) !important;
  }
}

/* ÃƒÂÃ¢â‚¬â„¢ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¦ÃƒÂÃ‚Â½Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â ÃƒÂÃ‚Â³Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â´ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ */
.glass-card::before,
.solution-tile::before,
.tech-card::before,
.journal-card::before,
.timeline-item::before,
.project-form::before {
  transition: opacity 260ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .glass-card:hover::before,
  .glass-card:focus-within::before,
  .solution-tile:hover::before,
  .solution-tile:focus-within::before,
  .tech-card:hover::before,
  .tech-card:focus-within::before,
  .journal-card:hover::before,
  .journal-card:focus-within::before,
  .timeline-item:hover::before,
  .timeline-item:focus-within::before,
  .project-form:hover::before,
  .project-form:focus-within::before {
    opacity: 1;
  }
}

/* ÃƒÂÃ‹Å“ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â² Problems we solve: Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¶ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â±ÃƒÂÃ‚ÂµÃƒÂÃ‚Â· Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â·ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â³ÃƒÂÃ‚Â¾ Ãƒâ€˜Ã†â€™ÃƒÂÃ‚ÂµÃƒÂÃ‚Â·ÃƒÂÃ‚Â´ÃƒÂÃ‚Â° ÃƒÂÃ‚Â²ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¦ */
.problem-icon {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, box-shadow;
  transition:
    transform var(--card-hover-time) var(--card-hover-ease),
    box-shadow var(--card-hover-time) var(--card-hover-ease) !important;
}

.problem-icon i {
  display: inline-block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform var(--card-hover-time) var(--card-hover-ease) !important;
}

@media (hover: hover) and (pointer: fine) {
  .problem-card:hover .problem-icon,
  .problem-card:focus-within .problem-icon {
    transform: translate3d(0, 0, 0) scale(1.055) !important;
    box-shadow: 0 24px 56px rgba(139, 92, 246, 0.22) !important;
  }

  .problem-card:hover .problem-icon i,
  .problem-card:focus-within .problem-icon i {
    transform: scale(1.06) !important;
  }
}

/* Timeline-Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸: ÃƒÂÃ‚Â±ÃƒÂÃ‚ÂµÃƒÂÃ‚Â· translate, Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‹â€ Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â± ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã…â€™ */
.timeline-item::after {
  transition:
    transform 340ms var(--card-hover-ease),
    opacity 340ms var(--card-hover-ease),
    box-shadow 260ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .timeline-item:hover::after,
  .timeline-item:focus-within::after {
    transform: scale(1.12) !important;
    box-shadow: 0 16px 36px rgba(139, 92, 246, 0.3) !important;
  }
}

/* Sticky-ÃƒÂÃ‚Â±ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â½ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â¶ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™ transform ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ reveal/hover */
.sticky-copy.reveal,
.final-copy.reveal,
body.reveal-ready .sticky-copy.reveal:not(.is-visible),
body.reveal-ready .final-copy.reveal:not(.is-visible) {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  pointer-events: auto !important;
}

/* ÃƒÂÃ…Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â»Ãƒâ€˜Ã¢â‚¬ËœÃƒÂÃ‚Â³ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â´ÃƒÂÃ‚Â²ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼: Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â‚¬Â¦ ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±Ãƒâ€˜Ã¢â‚¬Â¹Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¡ ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã‹â€ ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹ hover-ÃƒÂÃ‚Â·ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ */
@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .text-link:hover {
    transform: translate3d(0, -2px, 0);
  }
}

/* ÃƒÂÃ‚ÂÃƒÂÃ‚Â° Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂµÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬Â¦ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™Ãƒâ€˜Ã…Â½ ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚ÂºÃƒÂÃ‚Â»Ãƒâ€˜Ã…Â½Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ hover-ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Âµ */
@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .glass-card:hover,
  .glass-card:focus-within,
  .solution-tile:hover,
  .solution-tile:focus-within,
  .tech-card:hover,
  .tech-card:focus-within,
  .journal-card:hover,
  .journal-card:focus-within,
  .timeline-item:hover,
  .timeline-item:focus-within,
  .respect-row:hover,
  .respect-row:focus-within,
  .project-form:hover,
  .project-form:focus-within,
  .principle-card:hover,
  .principle-card:focus-within,
  .problem-card:hover .problem-icon,
  .problem-card:focus-within .problem-icon,
  .btn:hover,
  .text-link:hover {
    transform: none !important;
  }

  .problem-card:hover .problem-icon i,
  .problem-card:focus-within .problem-icon i {
    transform: none !important;
  }
}

/* ÃƒÂÃ‚Â£ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°ÃƒÂÃ‚Â¶ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Âµ ÃƒÂÃ‚Âº reduced motion */
@media (prefers-reduced-motion: reduce) {
  .glass-card,
  .solution-tile,
  .tech-card,
  .journal-card,
  .timeline-item,
  .respect-row,
  .project-form,
  .principle-card,
  .problem-icon,
  .problem-icon i,
  .timeline-item::after {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ============================================= */
/* FINAL FIX: Desktop scroll reveal, mobile static */
/* ============================================= */

:root {
  --scroll-reveal-y: 30px;
  --scroll-reveal-blur: 8px;
  --scroll-reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/*
  Desktop only:
  - sections and cards softly float in on scroll;
  - footer is NOT animated;
  - form note is NOT animated, so it never stays blurred;
  - hover no-jitter fix remains untouched.
*/
@media (min-width: 761px) {
  @supports (animation-timeline: view()) {
    /* Neutralize the older JS-style reveal state on desktop if it is ever added. */
    body.reveal-ready .reveal:not(.is-visible),
    body.reveal-ready .glass-card.reveal:not(.is-visible),
    body.reveal-ready .solution-tile.reveal:not(.is-visible),
    body.reveal-ready .tech-card.reveal:not(.is-visible),
    body.reveal-ready .journal-card.reveal:not(.is-visible),
    body.reveal-ready .timeline-item.reveal:not(.is-visible),
    body.reveal-ready .respect-row.reveal:not(.is-visible),
    body.reveal-ready .project-form.reveal:not(.is-visible) {
      opacity: 1 !important;
      transform: translate3d(0, 0, 0) scale(1) !important;
      filter: none !important;
      pointer-events: auto !important;
    }

    /* Main desktop scroll reveal targets. Footer and .form-note are intentionally excluded. */
    .section > .container,
    .section-intro,
    .section-intro > *,
    .eyebrow,
    h1,
    h2,
    .hero-subtitle,
    .hero-text,
    .delayed-message,
    .button-row,
    .hero-card,
    .principle-card,
    .principle-stage,
    .principle-stage > *,
    .card-grid > *,
    .solution-list > *,
    .why-grid > *,
    .tech-grid > *,
    .journal-grid > *,
    .respect-list > *,
    .timeline,
    .timeline-item,
    .final-grid > *,
    .project-form,
    .project-form .form-heading,
    .project-form label,
    .project-form .form-button {
      opacity: 0;
      transform: none;
      translate: 0 var(--scroll-reveal-y);
      scale: 0.985;
      filter: blur(var(--scroll-reveal-blur));
      animation-name: scrollRevealUp;
      animation-duration: 1ms;
      animation-delay: 0s;
      animation-timing-function: var(--scroll-reveal-ease);
      animation-fill-mode: both;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
      will-change: opacity, translate, scale, filter;
    }

    /* Sticky blocks should fade only; no vertical movement, no blur. */
    .sticky-copy,
    .final-copy,
    .sticky-copy.reveal,
    .final-copy.reveal {
      translate: 0 0 !important;
      scale: 1 !important;
      filter: none !important;
      animation-name: scrollRevealFade !important;
      animation-range: entry 0% cover 22% !important;
    }

    /* Hero feels faster and cleaner on desktop. */
    .hero .eyebrow,
    .hero h1,
    .hero-subtitle,
    .hero-text,
    .hero .button-row,
    .hero-card {
      animation-range: entry 0% cover 24%;
    }

    /* Soft stagger for card groups without transition-delay, so hover never lags. */
    .card-grid > *:nth-child(1),
    .solution-list > *:nth-child(1),
    .why-grid > *:nth-child(1),
    .tech-grid > *:nth-child(1),
    .journal-grid > *:nth-child(1),
    .respect-list > *:nth-child(1),
    .timeline-item:nth-child(1) {
      animation-range: entry 0% cover 25%;
    }

    .card-grid > *:nth-child(2),
    .solution-list > *:nth-child(2),
    .why-grid > *:nth-child(2),
    .tech-grid > *:nth-child(2),
    .journal-grid > *:nth-child(2),
    .respect-list > *:nth-child(2),
    .timeline-item:nth-child(2) {
      animation-range: entry 4% cover 29%;
    }

    .card-grid > *:nth-child(3),
    .solution-list > *:nth-child(3),
    .why-grid > *:nth-child(3),
    .tech-grid > *:nth-child(3),
    .journal-grid > *:nth-child(3),
    .respect-list > *:nth-child(3),
    .timeline-item:nth-child(3) {
      animation-range: entry 8% cover 33%;
    }

    .card-grid > *:nth-child(4),
    .solution-list > *:nth-child(4),
    .why-grid > *:nth-child(4),
    .tech-grid > *:nth-child(4),
    .journal-grid > *:nth-child(4),
    .respect-list > *:nth-child(4),
    .timeline-item:nth-child(4) {
      animation-range: entry 12% cover 37%;
    }

    .card-grid > *:nth-child(n+5),
    .solution-list > *:nth-child(n+5),
    .why-grid > *:nth-child(n+5),
    .tech-grid > *:nth-child(n+5),
    .journal-grid > *:nth-child(n+5),
    .respect-list > *:nth-child(n+5),
    .timeline-item:nth-child(n+5) {
      animation-range: entry 14% cover 39%;
    }

    .timeline::before {
      transform-origin: top;
      animation-name: scrollRevealLine;
      animation-duration: 1ms;
      animation-delay: 0s;
      animation-timing-function: var(--scroll-reveal-ease);
      animation-fill-mode: both;
      animation-timeline: view();
      animation-range: entry 0% cover 35%;
    }

    .timeline-item::after {
      opacity: 0;
      scale: 0.55;
      animation-name: scrollRevealDot;
      animation-duration: 1ms;
      animation-delay: 0s;
      animation-timing-function: var(--scroll-reveal-ease);
      animation-fill-mode: both;
      animation-timeline: view();
      animation-range: entry 4% cover 30%;
    }
  }
}

@keyframes scrollRevealUp {
  from {
    opacity: 0;
    translate: 0 var(--scroll-reveal-y);
    scale: 0.985;
    filter: blur(var(--scroll-reveal-blur));
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: blur(0);
  }
}

@keyframes scrollRevealFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollRevealLine {
  from {
    opacity: 0;
    transform: scaleY(0);
  }

  to {
    opacity: 0.28;
    transform: scaleY(1);
  }
}

@keyframes scrollRevealDot {
  from {
    opacity: 0;
    scale: 0.55;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

/* Footer must stay stable: no reveal animation at the bottom of the site. */
.site-footer,
.site-footer *,
.site-footer .footer-grid,
.site-footer .footer-grid > *,
.site-footer .footer-bottom {
  opacity: 1 !important;
  translate: 0 0 !important;
  scale: 1 !important;
  filter: none !important;
  animation: none !important;
}

/* The small note under the form must never remain blurred. */
.project-form .form-note {
  opacity: 1 !important;
  translate: 0 0 !important;
  scale: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
  will-change: auto !important;
}

/*
  Mobile:
  disable page/content reveal animations completely.
  This keeps the mobile version clean and prevents the hero principle card from popping in sharply.
*/
@media (max-width: 760px) {
  .hero-copy,
  .hero-card,
  .principle-card,
  .reveal,
  .reveal-immediate,
  .delayed-message,
  .section > .container,
  .section-intro,
  .section-intro > *,
  .eyebrow,
  h1,
  h2,
  .hero-subtitle,
  .hero-text,
  .button-row,
  .principle-stage,
  .principle-stage > *,
  .card-grid > *,
  .solution-list > *,
  .why-grid > *,
  .tech-grid > *,
  .journal-grid > *,
  .respect-list > *,
  .timeline,
  .timeline-item,
  .final-grid > *,
  .project-form,
  .project-form .form-heading,
  .project-form label,
  .project-form .form-button,
  .project-form .form-note,
  .site-footer,
  .site-footer * {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    animation: none !important;
    animation-timeline: auto !important;
    animation-range: normal !important;
    transition-delay: 0ms !important;
    will-change: auto !important;
    pointer-events: auto;
  }

  body.reveal-ready .reveal:not(.is-visible),
  body.reveal-ready .glass-card.reveal:not(.is-visible),
  body.reveal-ready .solution-tile.reveal:not(.is-visible),
  body.reveal-ready .tech-card.reveal:not(.is-visible),
  body.reveal-ready .journal-card.reveal:not(.is-visible),
  body.reveal-ready .timeline-item.reveal:not(.is-visible),
  body.reveal-ready .respect-row.reveal:not(.is-visible),
  body.reveal-ready .project-form.reveal:not(.is-visible),
  body.reveal-ready .hero-card.reveal-immediate,
  body.reveal-ready .hero-copy.reveal-immediate {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    animation: none !important;
    pointer-events: auto !important;
  }

  .timeline::before,
  .timeline-item::after {
    animation: none !important;
    scale: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section > .container,
  .section-intro,
  .section-intro > *,
  .eyebrow,
  h1,
  h2,
  .hero-subtitle,
  .hero-text,
  .delayed-message,
  .button-row,
  .hero-card,
  .principle-card,
  .principle-stage,
  .principle-stage > *,
  .card-grid > *,
  .solution-list > *,
  .why-grid > *,
  .tech-grid > *,
  .journal-grid > *,
  .respect-list > *,
  .timeline,
  .timeline-item,
  .final-grid > *,
  .project-form,
  .project-form .form-heading,
  .project-form label,
  .project-form .form-button,
  .project-form .form-note,
  .site-footer,
  .site-footer *,
  .timeline::before,
  .timeline-item::after {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    animation: none !important;
    animation-timeline: auto !important;
    animation-range: normal !important;
  }
}


/* ============================================= */
/* FINAL FIX: No appearance animation for hero    */
/* "The First Principle" card only               */
/* ============================================= */

/*
  ÃƒÂÃ¢â‚¬â„¢ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã¢â‚¬Â¦ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂµÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¾ÃƒÂÃ‚ÂºÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â² hero:
  <aside class="principle-card hero-card reveal-immediate">

  ÃƒÂÃ‚Â£ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¸Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬ ÃƒÂÃ‚Â¸Ãƒâ€˜Ã…Â½ ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â ÃƒÂÃ‚Â½ÃƒÂÃ‚Â° ÃƒÂÃ‚Â´ÃƒÂÃ‚ÂµÃƒâ€˜Ã‚ÂÃƒÂÃ‚ÂºÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¿ÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¸ ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â¹ ÃƒÂÃ‚Â²ÃƒÂÃ‚ÂµÃƒâ€˜Ã¢â€šÂ¬Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¸.
  ÃƒÂÃ…Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Âµ scroll reveal-ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°Ãƒâ€˜Ã¢â‚¬ ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¸ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â°ÃƒÂÃ‚Â¹Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â° ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°Ãƒâ€˜Ã…Â½Ãƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã‚Â Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â°ÃƒÂÃ‚Â±ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â‚¬Â¡ÃƒÂÃ‚Â¸ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â¸.
*/
.hero .principle-card.hero-card.reveal-immediate,
.hero .principle-card.hero-card.reveal-immediate.is-visible,
body.reveal-ready .hero .principle-card.hero-card.reveal-immediate,
body.reveal-ready .hero .principle-card.hero-card.reveal-immediate:not(.is-visible),
body.reveal-ready .hero .principle-card.hero-card.reveal-immediate.is-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
  translate: 0 0 !important;
  scale: 1 !important;
  filter: none !important;
  animation: none !important;
  animation-delay: 0ms !important;
  animation-timeline: auto !important;
  animation-range: normal !important;
  pointer-events: auto !important;
}

/* ÃƒÂÃ…Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â»Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã¢â€šÂ¬ÃƒÂÃ‚Â¼ÃƒÂÃ‚Â°ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚Â½Ãƒâ€˜Ã†â€™Ãƒâ€˜Ã…Â½ hover-ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â»ÃƒÂÃ‚Â°ÃƒÂÃ‚Â²ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒâ€˜Ã¢â‚¬Å¡Ãƒâ€˜Ã…â€™, ÃƒÂÃ‚Â±ÃƒÂÃ‚ÂµÃƒÂÃ‚Â· ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â¾Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â²ÃƒÂÃ‚Â»ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â/ÃƒÂÃ‚Â²Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Â¿ÃƒÂÃ‚Â»Ãƒâ€˜Ã¢â‚¬Â¹ÃƒÂÃ‚Â²ÃƒÂÃ‚Â°ÃƒÂÃ‚Â½ÃƒÂÃ‚Â¸Ãƒâ€˜Ã‚Â */
.hero .principle-card.hero-card {
  transition:
    box-shadow var(--card-hover-time, 340ms) var(--card-hover-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    border-color 260ms ease,
    background 260ms ease !important;
}

@media (max-width: 760px), (hover: none), (pointer: coarse) {
  .hero .principle-card.hero-card.reveal-immediate,
  .hero .principle-card.hero-card.reveal-immediate.is-visible,
  body.reveal-ready .hero .principle-card.hero-card.reveal-immediate,
  body.reveal-ready .hero .principle-card.hero-card.reveal-immediate:not(.is-visible),
  body.reveal-ready .hero .principle-card.hero-card.reveal-immediate.is-visible {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
    scale: 1 !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
    pointer-events: auto !important;
  }
}

/* ============================================= */
/* AJAX PROJECT FORM SUCCESS STATE               */
/* ============================================= */

.project-form[data-project-form] {
  isolation: isolate;
  transition:
    min-height 560ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms ease,
    background 560ms ease,
    box-shadow 560ms ease;
}

.project-form-content {
  position: relative;
  z-index: 2;
  transition:
    opacity 320ms ease,
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 460ms ease;
}

.project-form-success {
  position: absolute;
  inset: 0;
  z-index: 3;
  min-height: 100%;
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  filter: blur(10px);
  transition:
    opacity 520ms ease 160ms,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1) 160ms,
    filter 680ms ease 160ms;
}

.project-form-success-icon {
  width: clamp(76px, 10vw, 112px);
  height: clamp(76px, 10vw, 112px);
  margin-bottom: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transform: scale(0.82);
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1) 260ms;
}

.project-form-success-icon i {
  color: #ffffff;
  font-size: clamp(3.2rem, 7vw, 5rem);
  line-height: 1;
}

.project-form-success h3 {
  max-width: 620px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 0.98;
}

.project-form-success p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.project-form.is-sending .form-button {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.project-form.is-success {
  min-height: clamp(460px, 52vw, 560px);
  border-color: transparent;
  background: linear-gradient(45deg, #ff4d4d, #8b5cf6);
  box-shadow:
    0 34px 110px rgba(139, 92, 246, 0.24),
    0 20px 70px rgba(255, 77, 77, 0.2);
  opacity: 1 !important;
  translate: 0 0 !important;
  scale: 1 !important;
  filter: none !important;
  animation: none !important;
}

.project-form.is-success::before {
  opacity: 0 !important;
}

.project-form.is-success .project-form-content {
  opacity: 0 !important;
  pointer-events: none;
  transform: translateY(-16px) scale(0.985);
  filter: blur(8px);
}

.project-form.is-success .project-form-success {
  opacity: 1 !important;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
  translate: 0 0 !important;
  scale: 1 !important;
  animation: none !important;
}

.project-form.is-success .project-form-success * {
  opacity: 1 !important;
  translate: 0 0 !important;
  scale: 1 !important;
  filter: none !important;
  animation: none !important;
}

.project-form.is-success .project-form-success-icon {
  transform: scale(1);
}

.form-error {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 16px;
  color: #991b1b !important;
  background: rgba(239, 68, 68, 0.1);
  font-size: 0.92rem !important;
  font-weight: 700;
  text-align: center;
}

.form-error[hidden] {
  display: none;
}

@media (max-width: 760px) {
  .project-form.is-success {
    min-height: 460px;
  }

  .project-form-success {
    padding: 30px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-form[data-project-form],
  .project-form-content,
  .project-form-success,
  .project-form-success-icon {
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }

  .project-form-success,
  .project-form.is-success .project-form-success,
  .project-form-success-icon,
  .project-form.is-success .project-form-success-icon {
    transform: none !important;
  }
}

/* Better Safari styling for form dropdowns */
.project-form select {
  -webkit-appearance: none;
  appearance: none;

  height: 50px;
  padding: 0 44px 0 15px;

  border: 1px solid var(--line-strong);
  border-radius: 16px;

  color: var(--text-strong);
  background-color: #ffffff;

  background-image:
    linear-gradient(45deg, transparent 50%, #475569 50%),
    linear-gradient(135deg, #475569 50%, transparent 50%),
    linear-gradient(to right, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.08));
  background-position:
    calc(100% - 22px) 21px,
    calc(100% - 16px) 21px,
    calc(100% - 42px) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 24px;
  background-repeat: no-repeat;

  cursor: pointer;
}

.project-form select:hover {
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.project-form select:focus {
  border-color: rgba(139, 92, 246, 0.48);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Removes old Safari blue/default tint in some cases */
.project-form select::-ms-expand {
  display: none;
}