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

:root {
  --bg: #FAFAFA;
  /* Porcelain */
  --bg-dark: #18181B;
  /* Deep Zinc */
  --text: #18181B;
  --text-light: #52525B;
  /* Zinc 600 */
  --text-muted: #A1A1AA;
  /* Zinc 400 */
  --accent: #059669;
  /* Emerald 600 */
  --accent-secondary: #ECFDF5;
  /* Mint Water */
  --cream: #FAFAFA;
  --card-bg: #FFFFFF;
  --border: #E4E4E5;
  /* Zinc 200 */
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
  /* Standard cursor for usability */
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }
}

.container {
  max-width: 1400px;
  /* Wider for bento grid */
  margin: 0 auto;
  padding: 0 24px;
}

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

button,
select {
  cursor: pointer;
}

@media (max-width: 900px) {

  a,
  button,
  select {
    cursor: pointer;
  }
}

button {
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s;
  mix-blend-mode: exclusion;
  opacity: 0;
}

.cursor-dot.visible {
  opacity: 1;
}

.cursor-dot.expanded {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

@media (max-width: 900px) {
  .cursor-dot {
    display: none;
  }
}

.label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.label-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.label-rule-light {
  background: var(--bg-dark);
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--bg-dark);
  box-shadow: 3px 3px 0px var(--bg-dark);
  display: inline-block;
}

.section-label-light {
  color: var(--bg-dark);
  background: var(--accent);
  border-color: var(--bg-dark);
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}

.section-title em {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  /* Usability first */
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  /* Standard, friendly radius */
  transition: all 0.2s ease;
  letter-spacing: 0;
  position: relative;
  text-transform: none;
  /* Natural case */
  border: 1px solid transparent;
  clip-path: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #047857;
  /* Emerald 700 */
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-full {
  width: 100%;
}

.logo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 2px;
  vertical-align: super;
}

/* Navbar: HEY-style */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* Ensure top priority */
  padding: 20px 40px;
  transition: all 0.3s ease;
}

.nav.scrolled {
  padding: 10px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.nav.scrolled .nav-inner {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Brand */
.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  z-index: 10001;
  /* Above overlay */
  position: relative;
}

.brand-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.brand-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-light);
}

/* Desktop Links */
.nav-links-desktop {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link-secondary {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #047857 !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
  /* Above overlay */
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(5px, -6px);
}

.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 250, 0.98);
  /* Translucent */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 120px 40px 40px;
  /* Generous padding */
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.5s; /* Delay hiding until slide up is done */
  z-index: 10000;
  /* High z-index but below logo/toggle */
  align-items: flex-start;
  visibility: hidden;
  /* Hide when closed to prevent focusing */
}

.nav-mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s; /* Show immediately */
}

.mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.nav-mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile-menu.open .mobile-link:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-mobile-menu.open .mobile-link:nth-child(2) {
  transition-delay: 0.15s;
}

.nav-mobile-menu.open .mobile-link:nth-child(3) {
  transition-delay: 0.2s;
}

.nav-mobile-menu.open .mobile-link:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  padding-left: 10px;
  /* Subtle movement */
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-mobile-menu.open .mobile-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.mobile-link-secondary {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  text-align: center;
}

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

  .nav-links-desktop,
  .nav-actions .nav-link-secondary,
  .nav-actions .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border);
  opacity: 0.5;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  position: relative;
}

.hero-top {
  margin-bottom: 48px;
}

.hero-label-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
}

/* Captivating Hero */
.hero-captivating {
  position: relative;
  min-height: 100vh;
  /* Ensure full height */
  display: flex;
  flex-direction: column;
  /* Stack content properly */
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 160px 20px 80px;
  /* Balanced padding */
  text-align: center;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f4f4f5 100%);
  z-index: 1;
  /* Ensure baseline z-index */
}

/* Grain Overlays */
.hero-captivating::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero-visuals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: float 25s infinite ease-in-out;
  mix-blend-mode: multiply;
}

.shape-1 {
  width: 700px;
  height: 700px;
  background: #A7F3D0;
  /* Emerald 200 */
  top: -20%;
  left: -15%;
  animation-delay: 0s;
}

.shape-2 {
  width: 600px;
  height: 600px;
  background: #E0E7FF;
  /* Indigo 100 */
  bottom: -15%;
  right: -10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 400px;
  height: 400px;
  background: #6EE7B7;
  /* Emerald 300 */
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(80px);
  animation-delay: -10s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(10deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }

  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

.hero-content-center {
  max-width: 1000px;
  z-index: 2;
  position: relative;
}

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5.5rem;
  /* Massive */
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, #3f3f46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-headline em {
  font-family: 'DM Serif Display', serif;
  /* Captivating contrast */
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
  /* Override gradient for em */
  position: relative;
  z-index: 1;
}

/* Underline decoration for emphasis */
.hero-headline em::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -5px;
  right: -5px;
  height: 12px;
  background: rgba(5, 150, 105, 0.2);
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 100px;
}

.hero-subhead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 3.25rem;
  }

  .hero-subhead {
    font-size: 1.25rem;
    padding: 0 20px;
  }

  .hero-actions {
    flex-direction: column;
    padding: 0 40px;
  }

  .btn-lg {
    width: 100%;
  }
}

.hero-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
  background: var(--accent-secondary);
  padding: 8px 16px;
  border-radius: 100px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}

.hero-title-wrap {
  position: relative;
  margin-bottom: 64px;
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--text);
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.hero-title em {
  color: var(--accent);
  letter-spacing: -0.02em;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 3px;
  background: var(--accent);
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title.animated em::after {
  transform: scaleX(1);
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 8px;
}

.hero-title .word-inner {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .word-inner.visible {
  transform: translateY(0);
}

.hero-spinner {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation: spinSlow 25s linear infinite;
  opacity: 0;
  transition: opacity 1s 0.8s;
  z-index: 1;
}

.hero-spinner.visible {
  opacity: 1;
}

.spinner-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  fill: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@keyframes spinSlow {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

.hero-bottom-left {
  max-width: 420px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.marquee-strip {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  backdrop-filter: none;
}

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

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-shadow: none;
}

.marquee-italic {
  font-family: 'DM Sans', sans-serif !important;
  font-style: italic;
  font-weight: 400;
  color: var(--accent) !important;
}

.marquee-dash {
  width: 20px !important;
  height: 1px;
  background: var(--border);
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

.solutions {
  padding: 160px 0;
}

.section-header {
  margin-bottom: 72px;
  max-width: 600px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  grid-auto-flow: dense;
}

.sol-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  /* Soft, organic */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sol-card::before,
.sol-card::after {
  display: none;
}

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sol-card:hover .sol-card-bg {
  transform: scale(1.05);
  opacity: 0.1;
}

.sol-card-content {
  position: relative;
  z-index: 2;
}

.sol-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
  display: block;
  opacity: 0.4;
}

.sol-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sol-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.solution-tags span {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  background: transparent;
}

/* Card Visuals / Patterns */
.sol-visual {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  opacity: 0.15;
  z-index: 1;
  transition: all 0.5s ease;
}

.sol-card:hover .sol-visual {
  opacity: 0.3;
  transform: scale(1.1) rotate(-5deg);
}

/* Specific Card Classes for Bento Grid sizing if needed */
.sol-card.wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .sol-card.wide {
    grid-column: span 1;
  }

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

.process {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: start;
}

.process-left {
  position: sticky;
  top: 140px;
}

.process-desc {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 32px 0 48px;
  max-width: 440px;
  font-weight: 500;
}

.process-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Card gap */
}

.process-step {
  padding: 48px;
  border: none;
  border-radius: 16px;
  background: var(--white);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  display: none;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-accent {
  display: none;
  /* Removing existing bar animation */
}

/* Number badge */
.step-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--bg-dark);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about {
  padding: 0;
}

.about-inner {
  background: var(--bg-dark);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.about-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-title {
  color: var(--cream) !important;
}

.about-title em {
  color: var(--accent) !important;
}

.about-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
}

.about-lead {
  font-size: 1.15rem !important;
  color: var(--cream) !important;
  font-weight: 400;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
}

.about-right p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-right p:last-child {
  margin-bottom: 0;
}

.contact {
  padding: 160px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-title em {
  color: var(--accent);
}

.contact-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin: 24px 0 36px;
  max-width: 380px;
}

.contact-info a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.contact-info a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.4s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  color: var(--text-muted);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23A9A49D' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}

.form-group select:has(option:checked:not([disabled])) {
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.footer {
  padding: 80px 0 48px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-light);
  transition: color 0.3s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

[data-interactive-target="reveal"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-interactive-target="reveal"].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-interactive-target="stagger"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-interactive-target="stagger"].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  .hero-inner {
    padding: 0 24px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

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

  .hero-title-wrap {
    margin-bottom: 48px;
  }

  .hero-spinner {
    display: none;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .sol-expand-inner {
    padding-left: 0;
    flex-direction: column;
    gap: 20px;
  }

  .solution-row-top {
    gap: 20px;
  }

  .sol-arrow {
    opacity: 1;
    transform: none;
    color: var(--text-muted);
  }

  .process-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-left {
    position: static;
  }

  .process-step p {
    padding-left: 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.4s;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
  }

  .nav-cta {
    font-size: 1rem !important;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .solutions,
  .process,
  .contact {
    padding: 100px 0;
  }

  .about-inner {
    padding: 100px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .footer-top {
    flex-direction: column;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-nav {
    gap: 40px;
    flex-wrap: wrap;
  }

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

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}