/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
:root {
  --black:    #000000;
  --white:    #ffffff;
  --off:      #f8f7f4;
  --gray:     #555555;
  --dgray:    #222222;
  --border:   rgba(0,0,0,0.09);
  --border-i: rgba(255,255,255,0.1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  cursor: none;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }

#scroll-container {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}

/* ════════════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════════════ */
#cur {
  position: fixed; width: 7px; height: 7px;
  background: #000; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: background .22s, transform .25s;
  will-change: left, top;
}
#hex-cur {
  position: fixed; width: 38px; height: 38px;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  overflow: visible;
  transition: width .3s, height .3s, opacity .3s;
  opacity: .5;
  will-change: left, top;
}
#hex-cur polygon {
  fill: none; stroke: #000;
  stroke-width: 2.5; stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: stroke .22s;
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nl-text  { font-weight: 800; font-size: 1.6rem; letter-spacing: -.02em; color: var(--black); line-height: 1; }
.nl-text > span { font-weight: 400; }
.nl-sub   { font-size: .58rem; font-weight: 600; letter-spacing: .18em; color: var(--black); display: block; margin-top: 4px; text-transform: uppercase; width: 100%; text-align: justify; text-align-last: justify; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .67rem; font-weight: 500; letter-spacing: .13em;
  text-transform: uppercase; color: var(--black); text-decoration: none;
  opacity: .45; transition: opacity .2s;
}
.nav-links a:hover { opacity: 1; }
.nav-btn {
  font-size: .67rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--white); background: var(--black);
  padding: .7rem 1.6rem; text-decoration: none;
  transition: opacity .2s; white-space: nowrap;
}
.nav-btn:hover { opacity: .75; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh; padding-top: 72px;
  display: grid; grid-template-columns: 55% 45%;
  overflow: hidden;
}
.hero-l {
  padding: 5.5rem 4rem 4rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.h-eyebrow { display: flex; align-items: center; gap: .75rem; margin-bottom: 2.5rem; }
.h-eyebrow-line { width: 24px; height: 1px; background: var(--gray); }
.h-eyebrow span { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gray); }

.h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.035em;
  margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(28px);
  animation: fup .8s .1s forwards;
}
.h1 .thin   { font-weight: 100; }
.h1 .stroke { -webkit-text-stroke: 2px var(--black); color: transparent; }

.h-sub {
  font-size: .9rem; font-weight: 300; line-height: 1.95;
  color: var(--dgray); max-width: 450px; margin-bottom: 2.75rem;
  opacity: 0; transform: translateY(20px);
  animation: fup .8s .28s forwards;
}
.h-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fup .8s .42s forwards; }

.btn-p {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--white); background: var(--black);
  padding: .95rem 2rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-p svg { transition: transform .2s; flex-shrink: 0; }
.btn-p:hover svg { transform: translateX(3px); }

.btn-g {
  font-size: .68rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--black); text-decoration: none;
  border: 1.5px solid rgba(0,0,0,.2); padding: .95rem 1.75rem;
  transition: border-color .2s, background .2s; white-space: nowrap;
}
.btn-g:hover { border-color: var(--black); background: rgba(0,0,0,.04); }

.hero-r {
  background: var(--black);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hr-bg { position: absolute; inset: 0; opacity: .07; }
.hr-bg svg { width: 100%; height: 100%; }
.hr-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); opacity: .06; pointer-events: none;
}
.hr-stats {
  position: relative; z-index: 2;
  padding: 3.5rem; display: flex; flex-direction: column; gap: 2.25rem;
  opacity: 0; animation: fup .9s .55s forwards;
}
.st-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 2rem;
}
.st-row:last-child { border: none; padding-bottom: 0; }
.st-n { font-size: 3.5rem; font-weight: 800; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.st-l { font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75); text-align: right; max-width: 130px; line-height: 1.7; }

.h-scroll {
  position: absolute; bottom: 2rem; left: 3.5rem;
  display: flex; align-items: center; gap: .75rem; z-index: 2;
  opacity: 0; animation: fup .8s .9s forwards;
}
.h-scroll span { font-size: .58rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.70); }
.sp-line { width: 1px; height: 30px; background: rgba(255,255,255,.18); position: relative; overflow: hidden; }
.sp-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,.7); animation: spulse 2.2s 1.6s infinite;
}
@keyframes spulse { to { top: 200%; } }

/* ════════════════════════════════════════════
   TICKER
════════════════════════════════════════════ */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; height: 44px; display: flex; align-items: center;
  background: var(--white);
}
.tick-t { display: flex; white-space: nowrap; animation: ticker 36s linear infinite; will-change: transform; }
.tick-i {
  font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray); padding: 0 2.5rem;
  display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0;
}
.tick-d { width: 3px; height: 3px; border-radius: 50%; background: rgba(0,0,0,.2); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   SHARED LAYOUT UTILITIES
════════════════════════════════════════════ */
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 3rem; }

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

.kicker { display: flex; flex-direction: column; gap: .6rem; }
.k-n { font-size: .58rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gray); }
.k-l { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); border-left: 2px solid var(--black); padding-left: .75rem; line-height: 1.4; }
.k-l-inv { border-left-color: rgba(255,255,255,.4); color: var(--white); }

.sh2 { font-size: clamp(1.9rem, 3vw, 3.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.75rem; }
.sh2 .thin { font-weight: 100; }
.sh2-inv { color: var(--white); }

.bt { font-size: .88rem; font-weight: 300; line-height: 1.95; color: var(--dgray); margin-bottom: 1.4rem; }
.bt-inv { color: rgba(255,255,255,.88); }

.two-col { display: grid; grid-template-columns: 260px 1fr; gap: 5rem; align-items: start; }
.two-col-center { align-items: center; }

.callout {
  margin: 2.5rem 0; padding: 1.5rem 2rem;
  border: 1.5px solid var(--black); position: relative;
}
.callout::before {
  content: ''; position: absolute; top: -2px; left: 2rem;
  width: 36px; height: 3px; background: var(--white);
}
.callout p { font-size: 1rem; font-weight: 200; line-height: 1.72; letter-spacing: .01em; }

.divrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.divrow-label { font-size: .58rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.70); white-space: nowrap; }
.divrow-line { flex: 1; height: 1px; background: rgba(255,255,255,.1); }

/* ════════════════════════════════════════════
   PROBLEM SECTION
════════════════════════════════════════════ */
#problem { padding: 7rem 0; border-bottom: 1px solid var(--border); }

/* ════════════════════════════════════════════
   SERVICES SECTION
════════════════════════════════════════════ */
#services {
  background: var(--black); color: var(--white);
  padding: 7rem 0; position: relative; overflow: hidden;
}
.s-bg { position: absolute; inset: 0; opacity: .04; pointer-events: none; }
.s-bg svg { width: 100%; height: 100%; }
.s-inner { position: relative; z-index: 2; }

.s-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; margin-bottom: 4rem; align-items: end;
}

.svc-group { margin-top: 3rem; }
.svc-group-hd {
  display: flex; align-items: center; gap: 1.25rem;
  padding-bottom: 1rem; margin-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.svc-group-title { font-size: .58rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.72); white-space: nowrap; }
.svc-group-rule { flex: 1; height: 1px; background: rgba(255,255,255,.07); }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.svc-grid-1 { grid-template-columns: 1fr; }

.sc {
  padding: 2.75rem;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
  position: relative;
}
.svc-grid .sc:nth-child(2n)   { border-right: none; }
.svc-grid .sc:last-child       { border-bottom: none; }
.svc-grid .sc:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.svc-grid-1 .sc { border-right: none; border-bottom: none; }
.sc:hover { background: rgba(255,255,255,.04); }

.sc-num { font-size: .55rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.62); margin-bottom: 1.75rem; }
.sc-ic  { width: 40px; height: 40px; margin-bottom: 1.4rem; }
.sc-t   { font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--white); margin-bottom: .85rem; line-height: 1.3; }
.sc-d   { font-size: .83rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.84); }
.sc-tag {
  display: inline-flex; align-items: center; margin-top: 1.5rem;
  font-size: .55rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.1); padding: .28rem .8rem; gap: .4rem;
}
.sc-tag::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.3); flex-shrink: 0; }

/* ════════════════════════════════════════════
   PROCESS SECTION
════════════════════════════════════════════ */
#process { padding: 7rem 0; border-bottom: 1px solid var(--border); }

.pr-head { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4.5rem; align-items: end; }

.pr-rail {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}
.pr-s {
  padding: 2.5rem 1.75rem 2.5rem 0;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.pr-s:last-child { border-right: none; padding-right: 0; }
.pr-s:hover { background: rgba(0,0,0,.02); }
.pr-n {
  font-size: .56rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .65rem;
}
.pr-n::before { content: ''; width: 16px; height: 1px; background: var(--gray); }
.pr-t { font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: .8rem; }
.pr-d { font-size: .8rem; font-weight: 300; line-height: 1.9; color: #000000f6; }

.grant-bar {
  margin-top: 3rem;
  display: grid; grid-template-columns: auto 1fr;
  gap: 2rem; align-items: center;
  border: 1.5px solid var(--black); padding: 2rem 2.5rem;
}
.grant-icon { font-size: 2rem; line-height: 1; }
.grant-text h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.grant-text p { font-size: .83rem; font-weight: 300; line-height: 1.85; color: var(--dgray); }

/* ════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════ */
#about {
  background: var(--black); color: var(--white);
  padding: 7rem 0; position: relative; overflow: hidden;
}
.ab-bg { position: absolute; inset: 0; opacity: .04; pointer-events: none; }
.ab-bg svg { width: 100%; height: 100%; }
.ab-inner { position: relative; z-index: 2; }

.ab-quote {
  font-size: clamp(1.4rem, 2.6vw, 2.5rem);
  font-weight: 200; line-height: 1.42; color: var(--white);
  max-width: 820px; margin-bottom: 1rem;
  border-left: 2px solid rgba(255,255,255,.2); padding-left: 2rem;
}
.ab-quote strong { font-weight: 800; }
.ab-attr {
  font-size: .78rem; font-weight: 300; letter-spacing: .06em;
  color: rgba(255,255,255,.72); padding-left: 2rem; margin-bottom: 5rem;
}

.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.1); }
.diff-c {
  padding: 3rem;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .3s;
}
.diff-c:last-child { border-right: none; }
.diff-c:hover { background: rgba(255,255,255,.04); }
.diff-icon-box {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.diff-t { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .85rem; }
.diff-d { font-size: .83rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.80); }

/* ════════════════════════════════════════════
   CTA / CONTACT SECTION
════════════════════════════════════════════ */
#cta { padding: 7rem 0; border-bottom: 1px solid var(--border); }

.ct-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 6rem; align-items: center; }

.ct-h2 { font-size: clamp(2.1rem, 3.8vw, 4rem); font-weight: 800; line-height: 1.02; letter-spacing: -.035em; margin-bottom: 1.5rem; }
.ct-h2 .thin { font-weight: 100; }
.ct-sub { font-size: .9rem; font-weight: 300; line-height: 1.9; color: #222; max-width: 480px; }

.ct-side { display: flex; flex-direction: column; gap: 1.75rem; }
.ct-label { font-size: .56rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gray); margin-bottom: .3rem; }
.ct-val { font-size: .9rem; font-weight: 400; color: var(--black); text-decoration: none; display: block; transition: opacity .2s; }
.ct-val:hover { opacity: .55; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer {
  background: var(--black); color: var(--white);
  padding: 5rem 0 2.5rem;
}
.ft-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 2rem;
}
.fb-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; }
.fb-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.fb-name > span { font-weight: 400; }
.fb-tag  { font-size: .35rem; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.70); margin-bottom: 1.2rem; }
.fb-desc { font-size: .8rem; font-weight: 300; line-height: 1.88; color: rgba(255,255,255,.72); max-width: 280px; margin-bottom: 1.25rem; }
.fb-maple { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.62); letter-spacing: .05em; }

.fc-head { font-size: .56rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.70); margin-bottom: 1.25rem; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.fc ul li a { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.88); text-decoration: none; transition: color .2s; }
.fc ul li a:hover { color: var(--white); }

.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .5rem;
}
.ft-bot p { font-size: .66rem; font-weight: 300; color: rgba(255,255,255,.62); letter-spacing: .04em; }

/* ════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════ */
@keyframes fup { to { opacity: 1; transform: translateY(0); } }

.rev {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.rev.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pr-rail { grid-template-columns: repeat(3, 1fr); }
  .pr-s:nth-child(3) { border-right: none; }
  .pr-s:nth-child(4) { border-right: 1px solid var(--border); }
  .pr-s:nth-child(4), .pr-s:nth-child(5) { padding-top: 2rem; }
}

@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-l { padding: 3.5rem 1.5rem 3rem; }
  .hero-r { min-height: 320px; }

  .wrap { padding: 0 1.5rem; }

  .two-col  { grid-template-columns: 1fr; gap: 2rem; }
  .s-head   { grid-template-columns: 1fr; gap: 2rem; }
  .pr-head  { grid-template-columns: 1fr; gap: 2rem; }
  .ct-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .ft-top   { grid-template-columns: 1fr; gap: 2.5rem; }

  .svc-grid   { grid-template-columns: 1fr; }
  .svc-grid-1 { grid-template-columns: 1fr; }
  .sc { border-right: none !important; }
  .svc-grid .sc:last-child { border-bottom: none; }

  .pr-rail  { grid-template-columns: 1fr 1fr; }
  .pr-s { border-right: 1px solid var(--border); }
  .pr-s:nth-child(2n) { border-right: none; }
  .pr-s:last-child { border-right: none; }

  .diff-grid { grid-template-columns: 1fr; }
  .diff-c { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .diff-c:last-child { border-bottom: none; }

  .grant-bar { grid-template-columns: 1fr; }

  .ft-bot { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 600px) {
  .pr-rail { grid-template-columns: 1fr; }
  .pr-s { border-right: none; }
  .h-btns { flex-direction: column; align-items: flex-start; }
  .nl-sub { text-align: left; text-align-last: left; }
}
