
/* ═══════════════════════════════════
   TOKENS
═══════════════════════════════════ */
:root {
  --ink:      #091929;
  --ink2:     #0c2035;
  --ink3:     #0f2740;
  --ink4:     #163660;
  --teal:     #35bdd4;
  --teal-d:   #2a9ab5;
  --teal-dim: rgba(53,189,212,.12);
  --blue:     #1e6a8e;
  --blue-d:   #164f6b;
  --silver:   #c2d4e0;
  --silver-d: #8e9fae;
  --chrome:   #e8f2f8;
  --glow-t:   rgba(53,189,212,.45);
  --glow-b:   rgba(30,106,142,.35);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(.22,1,.36,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--teal);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,212,184,.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .08s linear, width .3s var(--ease), height .3s var(--ease);
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 18px; height: 18px; background: var(--blue); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 54px; height: 54px; }

/* ── CANVAS ── */
#bg-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ── NOISE OVERLAY ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none; z-index: 1;
}

/* ═══════════════════════════════════
   NAVIGATION
═══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5vw;
  transition: background .4s, border-color .4s, padding .3s;
}
nav.solid {
  background: rgba(5,13,26,.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,212,184,.1);
  padding: .9rem 5vw;
}

.nav-brand {
  display: flex; align-items: center; gap: .8rem;
  text-decoration: none;
}
.nav-logo-svg {
  width: 36px; height: 36px;
  filter: drop-shadow(0 0 10px var(--teal));
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 600;
  color: var(--chrome); letter-spacing: .04em;
}
.nav-brand-name em { color: var(--teal); font-style: normal; }

.nav-center {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-center a {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  color: var(--silver-d);
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-center a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--teal); transition: width .3s var(--ease);
}
.nav-center a:hover { color: var(--teal); }
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.btn-nav {
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem 1.5rem; border-radius: 3px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--ink); border: none; cursor: pointer;
  box-shadow: 0 0 20px var(--glow-t);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.btn-nav:hover { opacity: .88; transform: translateY(-1px); box-shadow: 0 4px 30px var(--glow-t); }

.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.ham span { display: block; width: 22px; height: 1.5px; background: var(--silver); transition: .3s; }
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed;
  top: 92px; left: 0; right: 0; z-index: 499;
  background: rgba(5,13,26,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,212,184,.1);
  flex-direction: column; padding: 1.5rem 5vw 2rem;
  gap: .5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--silver); text-decoration: none;
  font-size: 1rem; font-weight: 400;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--teal); }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
#hero {
  position: relative; z-index: 2;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 5vw 5rem;
  overflow: hidden;
}

.hero-aztec-tl,
.hero-aztec-br {
  position: absolute; opacity: .07;
  pointer-events: none; z-index: 1;
}
.hero-aztec-tl { top: 80px; left: 0; width: 340px; }
.hero-aztec-br { bottom: 80px; right: 0; width: 340px; transform: rotate(180deg); }

.hero-glow-blob {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-blob.a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(53,189,212,.08), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: breathe 7s ease-in-out infinite;
}
.hero-glow-blob.b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,106,142,.07), transparent 70%);
  top: 30%; left: 60%;
  animation: breathe 9s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .6; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); border: 1px solid rgba(0,212,184,.3);
  padding: .4rem 1rem; border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp .8s .1s var(--ease) both;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0;
  color: var(--chrome);
  letter-spacing: -.01em;
  animation: fadeUp .9s .25s var(--ease) both;
}
.hero-h1 strong {
  font-weight: 700; display: block;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 60%, var(--chrome) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,212,184,.3));
}
.hero-h1 em {
  font-style: italic; font-weight: 300;
  color: var(--silver-d);
  font-size: .8em;
}

.hero-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--teal), transparent);
  margin: 2rem auto;
  animation: fadeUp .7s .45s var(--ease) both;
}

.hero-sub {
  max-width: 600px;
  font-size: 1.05rem; color: var(--silver-d); line-height: 1.8;
  animation: fadeUp .8s .55s var(--ease) both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  margin-top: 3rem;
  animation: fadeUp .8s .7s var(--ease) both;
}

.btn-primary {
  font-family: var(--sans); font-size: .88rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: 3px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: var(--ink); border: none; cursor: pointer;
  box-shadow: 0 6px 30px var(--glow-t);
  transition: transform .25s var(--ease), box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--glow-t); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  font-family: var(--sans); font-size: .88rem; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: 3px;
  background: transparent;
  color: var(--silver); cursor: pointer;
  border: 1px solid rgba(201,220,232,.2);
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: fadeUp .7s 1s var(--ease) both;
}
.hero-scroll-hint span {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--silver-d); opacity: .5;
}
.scroll-track {
  width: 1px; height: 54px;
  background: rgba(201,220,232,.15);
  position: relative; overflow: hidden; border-radius: 1px;
}
.scroll-track::after {
  content: ''; position: absolute;
  top: -54px; left: 0; width: 1px; height: 54px;
  background: linear-gradient(to bottom, transparent, var(--teal));
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -54px; } 100% { top: 54px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   MARQUEE BAND
═══════════════════════════════════ */
.marquee-band {
  position: relative; z-index: 2;
  background: linear-gradient(90deg, #2a9ab5, #1e6a8e, #2a9ab5);
  padding: .8rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink);
  flex-shrink: 0;
}
.marquee-dot { color: var(--ink); opacity: .4; margin: 0 .2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
section { position: relative; z-index: 2; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 5vw; }

.section-pad { padding: 7rem 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--teal);
}

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--chrome); margin-bottom: 1.2rem;
}
.section-h2 strong { font-weight: 700; color: var(--chrome); }
.section-h2 em { font-style: italic; color: var(--silver-d); }

.section-lead {
  font-size: 1rem; color: var(--silver-d); line-height: 1.8;
  max-width: 520px;
}

/* reveal */
.r {
  opacity: 0; transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.r.vis { opacity: 1; transform: none; }
.r-d1 { transition-delay: .1s; }
.r-d2 { transition-delay: .2s; }
.r-d3 { transition-delay: .3s; }
.r-d4 { transition-delay: .4s; }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about { background: var(--ink2); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
}

/* Aztec orbit visual */
.orbit-wrap {
  position: relative; width: 380px; height: 380px;
  margin: 0 auto;
}
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
}
.or1 {
  inset: 0; border-color: rgba(0,212,184,.15);
  animation: spin 20s linear infinite;
}
.or2 {
  inset: 14%; border-color: rgba(0,212,184,.1);
  animation: spin 15s linear infinite reverse;
}
.or3 {
  inset: 28%; border-color: rgba(26,127,212,.2);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 12px var(--teal);
  transform: translateX(-50%);
}
.orbit-center {
  position: absolute; inset: 36%;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink3);
  border-radius: 50%;
  border: 1px solid rgba(0,212,184,.2);
}
.orbit-center-text {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: .05em;
}

/* small aztec gems */
.gem {
  position: absolute; width: 44px; height: 44px;
}
.gem svg { width: 100%; height: 100%; }
.gem1 { top: -8px; left: 50%; transform: translateX(-50%); }
.gem2 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.gem3 { left: -8px; top: 50%; transform: translateY(-50%); }
.gem4 { right: -8px; top: 50%; transform: translateY(-50%); }

.about-text p {
  font-size: .97rem; color: var(--silver-d); line-height: 1.85;
  margin-bottom: 1.3rem;
}
.about-text p strong { color: var(--chrome); font-weight: 500; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}
.stat-box {
  padding: 1.3rem 1rem; text-align: center;
  background: rgba(0,212,184,.04);
  border: 1px solid rgba(53,189,212,.12);
  border-radius: 6px;
  transition: border-color .3s, background .3s;
}
.stat-box:hover {
  border-color: rgba(0,212,184,.3);
  background: rgba(53,189,212,.08);
}
.stat-n {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: var(--teal); display: block; line-height: 1;
}
.stat-l {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--silver-d); margin-top: .3rem;
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
#services { background: var(--ink); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
  margin-bottom: 4rem;
}
.services-intro-right {
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: flex-end;
}
.service-filter {
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.sf-btn {
  font-size: .72rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: .4rem .9rem;
  border-radius: 100px; cursor: pointer;
  background: transparent;
  border: 1px solid rgba(201,220,232,.15);
  color: var(--silver-d);
  transition: all .2s;
}
.sf-btn.active,
.sf-btn:hover {
  background: rgba(0,212,184,.1);
  border-color: var(--teal); color: var(--teal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.svc-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,220,232,.08);
  border-radius: 10px; padding: 1.6rem 1.4rem;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,184,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,184,.3);
  box-shadow: 0 16px 40px rgba(53,189,212,.08);
}
.svc-card:hover::before { opacity: 1; }

.svc-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,212,184,.15), rgba(26,127,212,.15));
  border: 1px solid rgba(0,212,184,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 1rem;
}
.svc-title {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600;
  color: var(--chrome); line-height: 1.2; margin-bottom: .6rem;
}
.svc-desc {
  font-size: .82rem; color: var(--silver-d); line-height: 1.7;
}
.svc-tag {
  display: inline-block; margin-top: .9rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; padding: .25rem .6rem;
  border-radius: 100px;
  background: rgba(53,189,212,.08);
  border: 1px solid rgba(0,212,184,.2);
  color: var(--teal);
}

/* ═══════════════════════════════════
   METHODOLOGY / PILLARS
═══════════════════════════════════ */
#method { background: var(--ink3); }

.method-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.method-visual { position: relative; }
.method-steps { display: flex; flex-direction: column; gap: 0; }

.step-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(201,220,232,.06);
  position: relative;
  transition: padding-left .3s;
}
.step-item:last-child { border-bottom: none; }
.step-item:hover { padding-left: .5rem; }

.step-num {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: rgba(0,212,184,.2); line-height: 1; flex-shrink: 0;
  width: 52px; text-align: right;
  transition: color .3s;
}
.step-item:hover .step-num { color: var(--teal); }

.step-content {}
.step-title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--chrome); margin-bottom: .4rem;
}
.step-desc {
  font-size: .88rem; color: var(--silver-d); line-height: 1.7;
}

/* Aztec diamond graphic */
.diamond-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}

/* ═══════════════════════════════════
   SPECIALTIES ROW
═══════════════════════════════════ */
#special { background: var(--ink2); }

.special-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.sp-card {
  padding: 2.5rem 2rem;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(201,220,232,.07);
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease);
}
.sp-card::after {
  content: attr(data-label);
  position: absolute; bottom: 1rem; right: 1.5rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: rgba(0,212,184,.04); line-height: 1;
  pointer-events: none;
}
.sp-card:hover {
  border-color: rgba(0,212,184,.2);
  transform: translateY(-4px);
}
.sp-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.sp-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  color: var(--chrome); margin-bottom: .8rem;
}
.sp-text { font-size: .88rem; color: var(--silver-d); line-height: 1.75; }
.sp-list {
  list-style: none; margin-top: 1.2rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.sp-list li {
  font-size: .82rem; color: var(--silver-d);
  display: flex; align-items: center; gap: .5rem;
}
.sp-list li::before {
  content: '—'; color: var(--teal); flex-shrink: 0;
}

/* ═══════════════════════════════════
   PHRASE BREAK
═══════════════════════════════════ */
#phrase {
  background: var(--ink);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
  position: relative; z-index: 2;
}
.phrase-line {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.2;
  color: rgba(201,220,232,.15);
  letter-spacing: -.01em;
  transition: color .5s;
}
.phrase-line.lit { color: var(--chrome); }
.phrase-line strong { font-weight: 700; color: var(--teal); }

/* ═══════════════════════════════════
   PROCESS
═══════════════════════════════════ */
#process { background: var(--ink3); }
.process-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
  margin-top: 4rem;
}
.process-track::before {
  content: ''; position: absolute;
  top: 28px; left: calc(10% + 14px); right: calc(10% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--teal));
  opacity: .3;
}
.p-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 0 .5rem; text-align: center;
}
.p-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink4);
  border: 1px solid rgba(0,212,184,.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600;
  color: var(--teal); position: relative; z-index: 1;
  transition: background .3s, box-shadow .3s;
}
.p-step:hover .p-num {
  background: rgba(53,189,212,.12);
  box-shadow: 0 0 24px var(--glow-t);
}
.p-title {
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  color: var(--chrome); line-height: 1.2;
}
.p-desc { font-size: .78rem; color: var(--silver-d); line-height: 1.6; }

/* ═══════════════════════════════════
   CTA FULL
═══════════════════════════════════ */
#cta {
  background: var(--ink);
  padding: 8rem 0;
  text-align: center;
  position: relative; z-index: 2;
  overflow: hidden;
}
.cta-glow {
  position: absolute; width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(53,189,212,.07), transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-aztec {
  position: absolute; opacity: .04;
  width: 300px;
}
.cta-aztec-l { left: -50px; top: 50%; transform: translateY(-50%); }
.cta-aztec-r { right: -50px; top: 50%; transform: translateY(-50%) scaleX(-1); }

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--chrome); max-width: 700px; margin: 0 auto 1.5rem;
}
.cta-h2 strong { font-weight: 700; }
.cta-sub {
  font-size: 1rem; color: var(--silver-d);
  max-width: 480px; margin: 0 auto 3rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
#contact { background: var(--ink2); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start;
}

.contact-info-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .9rem; }
.ci {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; border-radius: 8px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,220,232,.07);
  font-size: .9rem; color: var(--silver-d);
  transition: border-color .2s;
}
.ci:hover { border-color: rgba(0,212,184,.2); }
.ci-ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 7px;
  background: linear-gradient(135deg, rgba(0,212,184,.15), rgba(26,127,212,.15));
  border: 1px solid rgba(0,212,184,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg label {
  font-size: .7rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver-d);
}
.fg input,
.fg textarea,
.fg select {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,220,232,.12);
  border-radius: 6px; padding: .8rem 1rem;
  color: var(--chrome); font-family: var(--sans); font-size: .9rem;
  outline: none; resize: vertical;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.fg input::placeholder,
.fg textarea::placeholder { color: rgba(138,171,190,.35); }
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,184,.1);
}
.fg select { cursor: pointer; }
.fg select option { background: var(--ink3); color: var(--silver); }
.fg textarea { min-height: 140px; }

.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.form-note {
  font-size: .75rem; color: var(--silver-d); opacity: .6;
  max-width: 260px; line-height: 1.5;
}

/* success */
.form-success {
  display: none; text-align: center; padding: 2rem;
  font-family: var(--serif); font-size: 1.4rem;
  color: var(--teal);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,220,232,.06);
  position: relative; z-index: 2;
  padding: 5rem 5vw 2rem;
}
.footer-main {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,220,232,.06);
}
.footer-brand-text {
  font-size: .88rem; color: var(--silver-d);
  line-height: 1.75; margin-top: .9rem;
  max-width: 280px;
}
.footer-brand-tag {
  font-size: .72rem; color: var(--silver-d); opacity: .4;
  margin-top: .5rem; letter-spacing: .06em;
}
.footer-col h4 {
  font-family: var(--serif); font-size: .9rem; font-weight: 600;
  color: var(--chrome); margin-bottom: 1.2rem; letter-spacing: .05em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .82rem; color: var(--silver-d); text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1140px; margin: 1.8rem auto 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: .73rem; color: rgba(201,220,232,.25);
}
.footer-bottom a { color: rgba(0,212,184,.5); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }
.footer-heart { color: var(--teal); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .process-track::before { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-center, .btn-nav { display: none; }
  .ham { display: flex; }
  .about-grid, .method-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .orbit-wrap { width: 260px; height: 260px; }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .special-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .hero-aztec-tl, .hero-aztec-br { width: 180px; opacity: .04; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
