:root {
  --bg: #050508;
  --surface: #0c0c12;
  --surface-2: #141420;
  --border: rgba(255, 255, 255, .06);
  --text: #ece9e2;
  --text-dim: #6a6960;
  --accent: #c4f43b;
  --accent-glow: rgba(196, 244, 59, .12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* SCROLLBAR COMPATIBILITY */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

::-moz-selection {
  background: var(--accent);
  color: var(--bg);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b5e332;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 1.5s ease
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E")
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  z-index: 10001;
  width: 0%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow)
}

.scroll-progress-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--surface);
  z-index: 10000
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: width .3s, height .3s, opacity .3s, background .3s
}

.cursor-ring {
  position: fixed;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(196, 244, 59, .2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width .4s cubic-bezier(.16, 1, .3, 1), height .4s cubic-bezier(.16, 1, .3, 1), opacity .3s, border-color .3s
}

.cursor-ring.hovering {
  width: 72px;
  height: 72px;
  border-color: rgba(196, 244, 59, .5)
}

.cursor-dot.clicking {
  width: 30px;
  height: 30px;
  margin-left: -12px;
  margin-top: -12px;
  background: rgba(196, 244, 59, .15)
}

/* REVEALS */
.r {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity
}

.r.v {
  opacity: 1;
  transform: translateY(0)
}

.rl {
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rl.v {
  opacity: 1;
  transform: translateX(0)
}

.rr {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rr.v {
  opacity: 1;
  transform: translateX(0)
}

.rs {
  opacity: 0;
  transform: scale(.7) rotate(-2deg);
  transition: opacity 1.1s cubic-bezier(.34, 1.56, .64, 1), transform 1.1s cubic-bezier(.34, 1.56, .64, 1)
}

.rs.v {
  opacity: 1;
  transform: scale(1) rotate(0)
}

.rf {
  opacity: 0;
  transform: perspective(1000px) rotateX(20deg) translateY(50px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.rf.v {
  opacity: 1;
  transform: perspective(1000px) rotateX(0) translateY(0)
}

.rb {
  opacity: 0;
  filter: blur(25px);
  transform: translateY(30px) scale(.95);
  transition: all 1.2s cubic-bezier(.16, 1, .3, 1)
}

.rb.v {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1)
}

.rc {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(.16, 1, .3, 1)
}

.rc.v {
  clip-path: inset(0 0 0 0)
}

.rw {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(.16, 1, .3, 1)
}

.rw.v {
  clip-path: inset(0 0 0 0)
}

.rsk {
  opacity: 0;
  transform: skewY(5deg) translateY(60px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.rsk.v {
  opacity: 1;
  transform: skewY(0) translateY(0)
}

.r3d {
  opacity: 0;
  transform: perspective(800px) rotateY(-25deg) translateX(-40px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1), transform 1s cubic-bezier(.16, 1, .3, 1)
}

.r3d.v {
  opacity: 1;
  transform: perspective(800px) rotateY(0) translateX(0)
}

.rel {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity .8s, transform 1.2s cubic-bezier(.34, 1.56, .64, 1)
}

.rel.v {
  opacity: 1;
  transform: translateY(0)
}

.d1 {
  transition-delay: .07s
}

.d2 {
  transition-delay: .14s
}

.d3 {
  transition-delay: .21s
}

.d4 {
  transition-delay: .28s
}

.d5 {
  transition-delay: .35s
}

.d6 {
  transition-delay: .42s
}

.d7 {
  transition-delay: .49s
}

.d8 {
  transition-delay: .56s
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  backdrop-filter: blur(30px) saturate(1.4);
  background: rgba(5, 5, 8, .55);
  border-bottom: 1px solid var(--border);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), background .4s
}

nav.hidden {
  transform: translateY(-120%)
}

nav.scrolled {
  background: rgba(5, 5, 8, .85)
}

.nav-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo a {
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
}

.nav-logo a:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .03em;
  transition: color .3s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .4s cubic-bezier(.16, 1, .3, 1)
}

.nav-links a:hover {
  color: var(--text)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-cta {
  padding: 10px 26px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.nav-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px var(--accent-glow)
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1002;
  padding: 5px
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all .3s
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg)
}

.mobile-toggle.active span:nth-child(2) {
  transform: translateY(-8px) rotate(-45deg)
}

/* Adjusted logic, usually need 3 lines or 2 lines treated differently */
/* 2 line hamburger logic */
.mobile-toggle span {
  transform-origin: center;
  backface-visibility: hidden
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg)
}

.mobile-toggle.active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all
}

.mobile-links {
  list-style: none;
  text-align: center
}

.mobile-links li {
  margin: 30px 0;
  overflow: hidden
}

.mobile-links a {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--text);
  text-decoration: none;
  display: block;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1)
}

.mobile-menu.active .mobile-links a {
  transform: translateY(0)
}

.mobile-links a:hover {
  color: var(--accent);
  font-style: italic
}

.mobile-menu.active .mobile-links li:nth-child(1) a {
  transition-delay: .1s
}

.mobile-menu.active .mobile-links li:nth-child(2) a {
  transition-delay: .15s
}

.mobile-menu.active .mobile-links li:nth-child(3) a {
  transition-delay: .2s
}

.mobile-menu.active .mobile-links li:nth-child(4) a {
  transition-delay: .25s
}

/* HERO */
.hero {
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden
}



#particleField {
  pointer-events: none;
  z-index: 5;
}

#heroTitle,
.hero-badge {
  position: relative;
  z-index: 10;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  will-change: transform
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  will-change: transform
}

.hero-orb.o1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196, 244, 59, .2), transparent 65%);
  top: -20%;
  left: -15%
}

.hero-orb.o2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 244, 59, .1), transparent 65%);
  bottom: -25%;
  right: -10%
}

.hero-orb.o3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(196, 244, 59, .08), transparent 65%);
  top: 10%;
  right: 5%
}

.hero-orb.o4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, .05), transparent 65%);
  bottom: 15%;
  left: 15%
}

.hero-svg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.particle {
  position: absolute;
  border-radius: 50%;
  will-change: transform
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(12, 12, 18, .7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  font-size: .74rem;
  color: var(--text-dim);
  margin-bottom: 44px;
  position: relative;
  z-index: 1
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 var(--accent-glow)
  }

  50% {
    opacity: .5;
    box-shadow: 0 0 0 12px transparent
  }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 9.5vw, 10rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.045em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1
}

.hero h1 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) rotateX(-90deg);
  animation: charIn .9s cubic-bezier(.16, 1, .3, 1) forwards;
  white-space: pre;
}

.hero h1 .line-break {
  display: block;
  white-space: nowrap;
}

@keyframes charIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0)
  }
}

.hero h1 em {
  font-style: italic;
  color: var(--accent)
}

.hero h1 .line-break {
  display: block
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s ease .95s forwards
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s ease 1.15s forwards
}

.btn-p {
  padding: 18px 48px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--accent-glow)
}

.btn-p::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .6s, height .6s
}

.btn-p:hover::before {
  width: 400px;
  height: 400px
}

.btn-p:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 60px var(--accent-glow), 0 0 120px rgba(196, 244, 59, .08)
}

.btn-g {
  padding: 18px 48px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: .95rem;
  cursor: pointer;
  transition: all .4s;
  position: relative;
  overflow: hidden
}

.btn-g::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, .03);
  transition: height .4s
}

.btn-g:hover::before {
  height: 100%
}

.btn-g:hover {
  border-color: var(--text-dim)
}

.hero-stats {
  display: flex;
  gap: 72px;
  margin-top: 88px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s ease 1.35s forwards
}

.hero-stat-val {
  font-family: var(--serif);
  font-size: 3rem;
  letter-spacing: -.02em
}

.hero-stat-label {
  font-size: .7rem;
  color: var(--text-dim);
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .12em
}

/* CLIENTS MARQUEE */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 35s linear infinite;
  width: max-content
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-item {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .3s
}

.marquee-item:hover {
  color: var(--accent)
}

.marquee-item .diamond {
  width: 5px;
  height: 5px;
  background: var(--accent);
  transform: rotate(45deg)
}

/* GLOBAL FOOTER REFACTOR */
.ft-logo {
  height: 30px;
  filter: brightness(0.8);
}

.sys-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  vertical-align: middle;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--accent);
  animation: statusPulse 2s infinite;
}

.ft-legal {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.ft-legal-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.ft-legal-link:hover {
  color: var(--text);
}

@keyframes statusPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* SECTIONS */
section {
  padding: 180px 48px;
  position: relative
}

.s-label {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px
}

.s-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent)
}

.s-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.035em;
  max-width: 880px
}

.s-title em {
  font-style: italic;
  color: var(--text-dim)
}

/* SERVICES */
.features {
  max-width: 1340px;
  margin: 0 auto
}

.features-header {
  margin-bottom: 90px
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden
}

.f-card {
  background: var(--surface);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background .5s
}

.f-card:hover {
  background: var(--surface-2)
}

.f-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width .6s cubic-bezier(.16, 1, .3, 1)
}

.f-card:hover::before {
  width: 120%
}

.f-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(196, 244, 59, .05), transparent 40%);
  opacity: 0;
  transition: opacity .5s
}

.f-card:hover::after {
  opacity: 1
}

.f-card {
  transform: perspective(800px) rotateX(0) rotateY(0);
  will-change: transform
}

.f-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.35rem;
  /* Fallback */
  position: relative
}

.f-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.f-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .4s
}

.f-card:hover .f-icon::after {
  opacity: 1
}

.f-icon.g,
.f-icon.c,
.f-icon.b,
.f-icon.p {
  background: rgba(196, 244, 59, .08);
  color: var(--accent)
}

.f-icon.g::after,
.f-icon.c::after,
.f-icon.b::after,
.f-icon.p::after {
  box-shadow: 0 0 30px rgba(196, 244, 59, .15)
}

.f-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 12px
}

.f-card p {
  font-size: .86rem;
  color: var(--text-dim);
  line-height: 1.7
}

.f-tag {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .66rem;
  font-family: var(--mono);
  border: 1px solid var(--border);
  color: var(--text-dim);
  letter-spacing: .05em;
  transition: border-color .3s
}

.f-card:hover .f-tag {
  border-color: rgba(255, 255, 255, .15)
}

/* PATH DRAW */
.path-draw-section {
  min-height: 200vh;
  position: relative
}

.path-draw-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.path-draw-svg {
  width: 80%;
  max-width: 900px;
  height: auto
}

.path-draw-svg path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.path-draw-text {
  position: absolute;
  text-align: center;
  z-index: 2
}

.path-draw-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.02em;
  margin-bottom: 12px
}

.path-draw-text p {
  font-size: .95rem;
  color: var(--text-dim);
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.6
}

/* SPLIT */
.split-section {
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative
}

.split-left,
.split-right {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 13rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .85;
  color: rgba(255, 255, 255, .02);
  white-space: nowrap;
  will-change: transform;
  position: absolute;
  -webkit-user-select: none;
  user-select: none
}

.split-left {
  top: 20%
}

.split-right {
  bottom: 18%
}

.split-center {
  position: relative;
  z-index: 2;
  text-align: center
}

.split-center h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.025em;
  margin-bottom: 20px
}

.split-center h2 em {
  font-style: italic;
  color: var(--accent)
}

.split-center p {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto
}

/* SCRAMBLE */
.scramble-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.scramble-text {
  font-family: var(--mono);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  letter-spacing: .02em;
  color: var(--accent);
  max-width: 900px;
  padding: 0 40px
}

/* HSCROLL */
.hscroll-pin {
  height: 400vh;
  position: relative
}

.hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hscroll-header-inner {
  padding: 0 60px;
  margin-bottom: 50px
}

.hscroll-progress {
  position: absolute;
  bottom: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--border);
  border-radius: 2px
}

.hscroll-progress-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  transition: width .05s
}

.hscroll-track {
  display: flex;
  gap: 28px;
  padding: 0 60px;
  will-change: transform
}

.hscroll-card {
  min-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  flex-shrink: 0;
  transition: all .6s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden
}

.hscroll-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(196, 244, 59, .03), transparent 40%);
  opacity: 0;
  transition: opacity .5s
}

.hscroll-card:hover::before {
  opacity: 1
}

.hscroll-card:hover {
  border-color: rgba(196, 244, 59, .25);
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5)
}

.hc-num {
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(255, 255, 255, .02);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1
}

.hc-icon {
  font-size: 2rem;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.hc-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5px;
  stroke: var(--accent);
  fill: none;
}

.hscroll-card:hover .hc-icon svg {
  stroke: var(--accent);

}

.hscroll-card:hover .hc-icon {
  transform: scale(1.3) rotate(-5deg)
}

.hc-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 12px
}

.hc-desc {
  font-size: .86rem;
  color: var(--text-dim);
  line-height: 1.65
}

.hc-stack {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.hc-stack span {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .66rem;
  font-family: var(--mono);
  border: 1px solid var(--border);
  color: var(--text-dim);
  letter-spacing: .03em
}

/* ZOOM */
.zoom-section {
  min-height: 250vh;
  position: relative
}

.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.zoom-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5.5vw, 5.5rem);
  text-align: center;
  letter-spacing: -.035em;
  line-height: 1.05;
  max-width: 950px;
  will-change: transform, opacity;
  z-index: 2;
  padding: 0 40px
}

.zoom-text em {
  font-style: italic;
  color: var(--accent)
}

.zoom-circle {
  position: absolute;
  border-radius: 50%;
  will-change: transform
}

.zoom-sub {
  position: absolute;
  bottom: 15%;
  font-size: .9rem;
  color: var(--text-dim);
  opacity: 0;
  transition: opacity .5s;
  z-index: 3
}

/* BIG TEXT */
.big-text-section {
  min-height: 300vh;
  position: relative;
}

.big-text-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.big-text-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 45% at 50% 50%, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 2s
}

.big-text-section.in-view .big-text-bg {
  opacity: 1
}

.big-text {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -.035em;
  max-width: 1100px;
  padding: 0 40px;
  position: relative;
  z-index: 2
}

.big-text .word {
  display: inline-block;
  opacity: .06;
  transition: opacity .6s ease, transform .6s ease, color .6s ease;
  transform: translateY(12px) scale(.95)
}

.big-text .word.lit {
  opacity: 1;
  transform: translateY(0) scale(1)
}

.big-text .word.accent-w {
  color: var(--accent);
  font-style: italic
}

/* TEXT FILL */
.text-fill-section {
  min-height: 200vh;
  position: relative
}

.text-fill-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.text-fill-word {
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 15rem);
  font-weight: 400;
  letter-spacing: -.05em;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .08);
  color: transparent;
  position: relative;
  z-index: 2;
  will-change: clip-path
}

.text-fill-inner {
  position: absolute;
  inset: 0;
  color: var(--accent);
  -webkit-text-stroke: 0;
  clip-path: inset(0 100% 0 0)
}

.text-fill-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  opacity: 0;
  will-change: transform, opacity
}

/* BENTO */
.showcase {
  max-width: 1340px;
  margin: 0 auto
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px
}

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all .7s cubic-bezier(.16, 1, .3, 1);
  will-change: transform
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, .1);
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45)
}

.bento-card.lg {
  grid-column: span 7;
  min-height: 420px
}

.bento-card.md {
  grid-column: span 5;
  min-height: 420px
}

.bento-card.wd {
  grid-column: span 12;
  min-height: 340px
}

.bento-card.sq1 {
  grid-column: span 4;
  min-height: 340px
}

.bento-card.sq2 {
  grid-column: span 4;
  min-height: 340px
}

.bento-card.sq3 {
  grid-column: span 4;
  min-height: 340px
}

.b-label {
  font-family: var(--mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: 18px
}

.wf-tag svg {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  stroke-width: 2px;
  vertical-align: text-bottom;
  position: relative;
  top: -1px
}

.b-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 14px
}

.b-desc {
  font-size: .86rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 420px
}

.terminal {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  font-family: var(--mono);
  font-size: .72rem
}

.t-line {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid var(--accent);
  width: 0;
  opacity: .6
}

.t-line.typing {
  animation: typing 2.2s steps(55) forwards
}

.t-line:nth-child(1) {
  color: var(--accent)
}

.t-line:nth-child(2) {
  color: var(--text-dim)
}

.t-line:nth-child(2).typing {
  animation-delay: 2.4s
}

.t-line:nth-child(3) {
  color: var(--accent)
}

.t-line:nth-child(3).typing {
  animation-delay: 4.8s
}

@keyframes typing {
  to {
    width: 100%
  }
}

.viz-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 48px 30px
}

.viz-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  opacity: .4;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.4s cubic-bezier(.34, 1.56, .64, 1)
}

.viz-bar.grow {
  transform: scaleY(1)
}

.orbit-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: orbitSpin linear infinite
}

.orbit-ring:nth-child(1) {
  width: 120px;
  height: 120px;
  animation-duration: 7s
}

.orbit-ring:nth-child(2) {
  width: 200px;
  height: 200px;
  animation-duration: 13s;
  animation-direction: reverse
}

.orbit-ring:nth-child(3) {
  width: 280px;
  height: 280px;
  animation-duration: 19s
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px
}

.orbit-dot.od1 {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow)
}

.orbit-dot.od2 {
  background: var(--accent);
  opacity: 0.8
}

.orbit-dot.od3 {
  background: var(--accent);
  opacity: 0.6
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg)
  }
}

.wave-wrap {
  position: absolute;
  bottom: 40px;
  left: 48px;
  right: 48px;
  height: 90px
}

.wave-canvas {
  width: 100%;
  height: 100%
}

.node-wrap {
  position: absolute;
  inset: 0
}

.node-canvas {
  width: 100%;
  height: 100%
}

/* COUNTERS */
.counter-section {
  padding: 140px 48px;
  max-width: 1340px;
  margin: 0 auto
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.counter-card {
  text-align: center;
  padding: 52px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  transition: all .6s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden
}

.counter-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3)
}

.counter-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 130%, var(--accent-glow), transparent 55%);
  opacity: 0;
  transition: opacity .5s
}

.counter-card:hover::after {
  opacity: 1
}

.counter-val {
  font-family: var(--serif);
  font-size: 3.8rem;
  letter-spacing: -.03em;
  position: relative;
  z-index: 1
}

.counter-label {
  font-size: .74rem;
  color: var(--text-dim);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  z-index: 1
}

.counter-bar {
  width: 64px;
  height: 3px;
  border-radius: 3px;
  background: var(--border);
  margin: 18px auto 0;
  overflow: hidden;
  position: relative;
  z-index: 1
}

.counter-bar-fill {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: width 1.8s cubic-bezier(.16, 1, .3, 1)
}

.counter-bar-fill.filled {
  width: 100%
}

.cb1 {
  background: var(--accent)
}

.cb2 {
  background: var(--accent);
  opacity: 0.9
}

.cb3 {
  background: var(--accent);
  opacity: 0.8
}

.cb4 {
  background: var(--accent);
  opacity: 0.7
}

/* TESTI */
.testi-section {
  padding: 160px 0;
  overflow: hidden
}

.testi-header {
  padding: 0 48px;
  max-width: 1340px;
  margin: 0 auto 70px
}

.testi-track {
  display: flex;
  gap: 20px;
  will-change: transform
}

.t-card {
  min-width: 400px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1)
}

.t-card:hover {
  border-color: rgba(196, 244, 59, .18);
  transform: translateY(-6px) scale(1.01)
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .78rem;
  margin-bottom: 20px
}

.ta1 {
  background: rgba(196, 244, 59, .1);
  color: var(--accent)
}

.ta2 {
  background: rgba(196, 244, 59, .1);
  color: var(--accent)
}

.ta3 {
  background: rgba(196, 244, 59, .1);
  color: var(--accent)
}

.ta4 {
  background: rgba(196, 244, 59, .1);
  color: var(--accent)
}

.t-stars {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .75rem;
  letter-spacing: 2px
}

.t-quote {
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 20px
}

.t-author {
  font-size: .82rem
}

.t-role {
  font-size: .7rem;
  color: var(--text-dim);
  opacity: .6;
  margin-top: 2px
}

/* PROCESS / WORKFLOW */
.workflow {
  max-width: 1340px;
  margin: 0 auto
}

.wf-steps {
  position: relative
}

.wf-line {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border)
}

.wf-line-fill {
  position: absolute;
  left: 30px;
  top: 0;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--accent), rgba(196, 244, 59, 0.4))
}

.wf-step {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  position: relative
}

.wf-dot {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-dim);
  transition: all .7s cubic-bezier(.34, 1.56, .64, 1);
  z-index: 2
}

.wf-step.active .wf-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 50px var(--accent-glow);
  background: var(--surface);
  transform: scale(1.2)
}

.wf-content h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 12px
}

.wf-content p {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 540px
}

.wf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--text-dim);
  padding: 5px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: .06em
}

/* PRICING */
.pricing {
  max-width: 1140px;
  margin: 0 auto
}

.pricing-header {
  margin-bottom: 80px;
  text-align: center
}

.pricing-header .s-title {
  margin: 0 auto
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 44px;
  transition: all .7s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: visible
}

.p-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4)
}

.p-card.feat {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(196, 244, 59, .04), var(--surface) 50%)
}

.p-card.feat::before {
  content: 'MOST RECOMMENDED';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  border-radius: 100px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
  white-space: nowrap;
}

.p-tier {
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: 18px
}

.p-price {
  font-family: var(--serif);
  font-size: 3.6rem;
  letter-spacing: -.03em;
  margin-bottom: 8px
}

.p-price span {
  font-family: var(--sans);
  font-size: .86rem;
  color: var(--text-dim)
}

.p-desc {
  font-size: .84rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  line-height: 1.55
}

.p-features {
  list-style: none;
  margin-bottom: 40px
}

.p-features li {
  padding: 11px 0;
  font-size: .84rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px
}

.p-features li::before {
  content: '\2192';
  color: var(--accent);
  font-size: .8rem
}

.p-btn {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .4s
}

.p-btn:hover {
  border-color: var(--accent);
  background: var(--accent-glow)
}

.p-card.feat .p-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  font-weight: 600
}

.p-card.feat .p-btn:hover {
  box-shadow: 0 0 60px var(--accent-glow)
}

/* CTA */
.cta-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.cta-ring:nth-child(1) {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(196, 244, 59, .06);
  animation: ringPulse 6s ease-in-out infinite
}

.cta-ring:nth-child(2) {
  width: 700px;
  height: 700px;
  border: 1px solid rgba(196, 244, 59, .04);
  animation: ringPulse 6s ease-in-out -1.5s infinite
}

.cta-ring:nth-child(3) {
  width: 900px;
  height: 900px;
  border: 1px solid rgba(196, 244, 59, .03);
  animation: ringPulse 6s ease-in-out -3s infinite
}

.cta-ring:nth-child(4) {
  width: 1100px;
  height: 1100px;
  border: 1px solid rgba(196, 244, 59, .02);
  animation: ringPulse 6s ease-in-out -4.5s infinite
}

@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .3
  }
}

.cta-content {
  position: relative;
  z-index: 2
}

.cta-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 48px
}

/* TESTIMONIALS */
.testi-section {
  overflow: hidden;
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.testi-header {
  max-width: 1340px;
  margin: 0 auto 70px;
  padding: 0 48px;
}

.testi-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.testi-track:nth-child(even) {
  animation-direction: reverse;
}

.testi-track:hover {
  animation-play-state: paused;
}

.t-card {
  width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  flex-shrink: 0;
  transition: all .4s;
}

.t-card:hover {
  border-color: rgba(255, 255, 255, .1);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bg);
  background: var(--text);
  margin-bottom: 20px;
}

.t-avatar.ta1,
.t-avatar.ta2,
.t-avatar.ta3,
.t-avatar.ta4 {
  background: var(--accent);
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.t-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--accent);
  stroke: none;
}

.t-quote {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.t-author {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.t-role {
  font-size: .75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 70px 48px;
  max-width: 1340px;
  margin: 0 auto
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 70px
}

.ft-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 12px
}

.ft-brand span {
  color: var(--accent)
}

.ft-brand img {
  height: 30px;
  filter: brightness(0.8);
  display: block;
}

.ft-tagline {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.ft-cols {
  display: flex;
  gap: 80px
}

.ft-col h4 {
  font-family: var(--mono);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-dim);
  margin-bottom: 18px
}

.ft-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: .86rem;
  transition: color .3s
}

.ft-col a:hover {
  color: var(--text)
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 34px;
  border-top: 1px solid var(--border);
  font-size: .74rem;
  color: var(--text-dim)
}

body {
  transition: background-color 1.5s ease
}

@media(max-width:900px) {
  nav {
    padding: 14px 20px
  }

  .nav-links {
    display: none
  }

  section {
    padding: 100px 20px
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .bento-card.lg,
  .bento-card.md,
  .bento-card.wd,
  .bento-card.sq1,
  .bento-card.sq2,
  .bento-card.sq3 {
    grid-column: span 12
  }

  .pricing-grid,
  .counter-grid {
    grid-template-columns: 1fr
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px
  }

  .ft-top {
    flex-direction: column;
    gap: 40px
  }

  .ft-cols {
    gap: 40px;
    flex-wrap: wrap
  }

  .hscroll-card {
    min-width: 300px
  }

  .split-left,
  .split-right {
    font-size: clamp(3rem, 8vw, 8rem)
  }

  .mobile-toggle {
    display: flex
  }

  .nav-cta {
    display: none
  }
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease;
  pointer-events: none
}

#preloader.loaded {
  opacity: 0
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(196, 244, 59, .1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* ACCESSIBILITY */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px
}

/* EXTRACTED STYLES */
#morphBg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.45;
}

.brand-logo-link {
  text-decoration: none;
  color: var(--text);
  font-family: var(--mono);
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.brand-dot {
  color: var(--accent);
}

/* Zoom Circles */
#zc1 {
  width: 100px;
  height: 100px;
  border: 1px solid rgba(196, 244, 59, .08);
}

#zc2 {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(196, 244, 59, .05);
}

#zc3 {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, .03);
}

#zc4 {
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, .02);
}

/* Utilities / Specific Overrides */
.mb-90 {
  margin-bottom: 90px;
}

.flex-center-card {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-abs-tl-48 {
  position: absolute;
  top: 48px;
  left: 48px;
}

.orbit-center-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0.8;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-icon-lg {
  font-size: 3.5rem;
  margin-bottom: 18px;
}

.card-icon-svg {
  color: var(--accent);
}

.b-title-lg {
  font-size: 1.5rem;
}

.b-desc-sm {
  max-width: 200px;
  font-size: 0.82rem;
}

.b-title-md {
  font-size: 1.3rem;
}

.overflow-hidden {
  overflow: hidden;
}

/* Location Map Styles */
.map-container-style {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/* About Page Styles */
.mission-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--accent);
}

.mission-svg {
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.stop-accent-20 {
  stop-color: var(--accent);
  stop-opacity: 0.2;
}

.stop-grey-10 {
  stop-color: var(--text-dim);
  stop-opacity: 0.1;
}

.footer-link-sub {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  margin-left: 20px;
}

/* Contact Page Styles */
.footer-centered {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Location Page Styles */
.contact-phone-accent {
  color: var(--accent);
  margin-top: 10px;
}

.city-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.city-service-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.city-service-item-last {
  padding-bottom: 16px;
}

/* Services Page Styles */
.s-vis {
  flex: 1;
  height: 300px;
  background: var(--surface-2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  color: var(--text-dim);
  font-size: 0.8rem;
  position: relative;
  overflow: hidden;
}

.s-vis svg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.s-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.s-link:hover {
  border-bottom-color: var(--accent);
}

/* Work Page Styles */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 100px;
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* Utilities / Overrides from HTML */
.dir-rtl {
  direction: rtl;
}

.dir-ltr {
  direction: ltr;
}

.cta-btn-lg {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.step-svg-container {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.text-coral,
.text-blue {
  color: var(--accent);
}

.comparison-title {
  font-family: var(--serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
}

.col-40 {
  width: 40%;
}

/* Work Placeholder Gradients */
.wc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
}

.grad-1 {
  background: linear-gradient(45deg, #09090b, #18181b);
}

.grad-2 {
  background: linear-gradient(45deg, #18181b, #27272a);
}

.grad-3 {
  background: linear-gradient(45deg, #09090b, #27272a);
}

.grad-4 {
  background: linear-gradient(45deg, #09090b, rgba(196, 244, 59, 0.1));
}

@media (max-width: 900px) {
  .page-header {
    padding: 140px 20px 60px;
  }

  .s-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }

  .s-card:nth-child(even) {
    direction: ltr;
  }
}

/* Pricing Page Styles */
.pricing-section {
  padding: 80px 48px 140px;
  max-width: 1340px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 140px;
}

.comparison-section {
  padding-bottom: 140px;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  min-width: 800px;
}

.comp-table th {
  text-align: left;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 400;
}

.comp-table td {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}

.comp-table tr:hover td {
  background: var(--surface-2);
}

.comp-check {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comp-cross {
  color: var(--text-dim);
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-center {
  text-align: center;
}

.table-head-sub {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .pricing-section {
    padding: 60px 20px 100px;
  }
}

/* Service Detail Page Styles */
.page-header-start {
  padding: 180px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header-start h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 30px;
}

.page-header-start p {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 700px;
  line-height: 1.6;
}

.service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.sd-col h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.sd-col p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.tech-tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.f-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.f-content h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.f-content p {
  font-size: 1rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .service-details {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* UTILITY CLASSES */
.accent-text {
  color: var(--accent) !important;
}

.serif-h3 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-dim-p {
  color: var(--text-dim);
  margin-bottom: 40px;
}

.feature-list-alt {
  text-align: left;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  list-style: none;
}

.accent-check {
  color: var(--accent);
  font-weight: bold;
}

.full-width-btn {
  width: 100%;
}

.service-details-offset {
  margin-top: -60px;
  padding-top: 0;
}

.media-placeholder {
  background: var(--surface-2);
  border-radius: 16px;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-90 {
  margin-bottom: 90px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}