*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #08080b;
  --surface:      #0d0d12;
  --card:         #111118;
  --card2:        #1f1f2d;
  --card-hover:   #15151e;
  --border:       #1e1e28;
  --border-mid:   #272733;
  --text:         #e2e2ea;
  --body:         #a8a8bc;
  --muted:        #6a6a80;
  --faint:        #3a3a48;
  --blue:         #1168b5;
  --blue-light:   #58b1ff;
  --blue-dim:     rgba(58,107,255,0.10);
  --blue-glow:    rgba(58,107,255,0.05);
  --white:        #f0f0f8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--body);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
section { padding: 120px 0; }
.rule { height: 1px; background: var(--border); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,11,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .3s;
}
nav.scrolled {
  background: rgba(8,8,11,0.92);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 600; letter-spacing: .04em;
  color: var(--white); text-decoration: none;
  display:flex;
}
.nav-logo span { color: var(--blue-light); }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px !important;
  border: 1px solid var(--border-mid) !important;
  color: var(--text) !important;
  transition: border-color .2s, color .2s !important;
}
.nav-cta:hover { border-color: var(--blue) !important; color: var(--blue-light) !important; }

.nav-logo__img {
  height: 30px;
    width: auto;
    display: block;
    padding-right: 8px;
    filter:brightness(1.3)
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 100px;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 45%, black, transparent);
  opacity: .3;
}
.hero-glow {
  position: absolute; top: -250px; right: -250px;
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(58,107,255,.09) 0%, transparent 62%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,107,255,.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light); font-weight: 500;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s ease .05s forwards;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--blue-light); display: block; }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 600; line-height: 1.05;
  color: var(--white); letter-spacing: -.02em;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .9s ease .2s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-sub {
  font-size: 1.05rem; color: var(--body);
  max-width: 500px; line-height: 1.85; margin-bottom: 48px;
  opacity: 0; animation: fadeUp .9s ease .35s forwards;
}

.hero-cta {
  opacity: 0; animation: fadeUp .9s ease .5s forwards;
}

.btn-primary {
  display: inline-block; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 16px 36px;
  background: var(--blue); color: var(--white);
  border: 1px solid var(--blue);
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-primary:hover { filter:brightness(1.1) }

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp .8s ease 1s forwards; z-index: 2;
}
.hero-scroll span { font-size: .63rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.scroll-bar { width: 1px; height: 36px; background: linear-gradient(var(--blue), transparent); animation: pulse 2s ease infinite; }

/* ── SECTION LABELS ── */
.s-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .67rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-light); font-weight: 500; margin-bottom: 18px;
}
.s-label::before { content: ''; width: 24px; height: 1px; background: var(--blue); display: block; }

h2.st {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 600; color: var(--white);
  letter-spacing: -.02em; line-height: 1.15;
}

/* ── WHAT WE DO ── */
.what-section { background: var(--surface); }
.two-col { display: grid; grid-template-columns: 1fr 1.55fr; gap: 80px; align-items: start; }

.body-p { color: var(--body); font-size: .97rem; line-height: 1.85; margin-bottom: 18px; }
.body-p:last-of-type { margin-bottom: 0; }
.body-p strong { color: var(--text); font-weight: 500; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag {
  font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 500;
  color: var(--blue-light); border: 1px solid var(--border-mid);
  padding: 5px 13px; background: transparent;
  transition: border-color .2s, background .2s;
}
.tag:hover { border-color: var(--blue); background: var(--blue-dim); }

/* ── EXPERTISE CARDS ── */
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 56px; }
.exp-card {
  background: var(--card); padding: 44px 32px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.exp-card:hover { background: var(--card-hover); }
.exp-card:hover::before { transform: scaleX(1); }

.exp-num {
  font-family: 'Syne', sans-serif;
  font-size: .68rem; letter-spacing: .18em; color: var(--blue-light);
  font-weight: 500; margin-bottom: 24px; opacity: .7;
}
.exp-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem; font-weight: 600; color: var(--white);
  margin-bottom: 12px; letter-spacing: -.01em;
}
.exp-card p { color: var(--body); font-size: .87rem; line-height: 1.75; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }
.exp-tag {
  font-size: .64rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 500;
  color: var(--blue-light); border: 1px solid rgba(58,107,255,.25); padding: 3px 9px;
}

/* ── SERVICE MODEL ── */
.service-section { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }

.pillars { display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 12px; border-bottom: 1px solid var(--border);
  transition: padding-left .2s;
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num {
  font-family: 'Syne', sans-serif;
  font-size: .68rem; color: var(--blue-light); font-weight: 500;
  min-width: 22px; padding-top: 2px; letter-spacing: .05em;
}
.pillar h4 { font-size: .9rem; font-weight: 500; color: var(--blue-light); margin-bottom: 4px; }
.pillar p { font-size: .83rem; color: var(--text); line-height: 1.65; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 60px; align-items: start; }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 2px; }
.founder-card {
  background: var(--card); padding: 44px 38px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.founder-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.founder-card:hover { background: var(--card-hover); }
.founder-card:hover::after { transform: scaleX(1); }

.founder-mono {
  width: 48px; height: 48px;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--blue-light);
  margin-bottom: 22px;
}
.founder-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.founder-card .role {
  font-size: .66rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-light); font-weight: 500; margin-bottom: 14px;
}
.founder-card p { color: var(--body); font-size: .87rem; line-height: 1.75; }

.team-bar {
  background: var(--card); border: 1px solid var(--border);
  padding: 36px 40px;
}
.team-bar-label {
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-light); font-weight: 500; margin-bottom: 12px;
}
.team-bar > p { color: var(--body); font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }
.team-roles { display: flex; flex-wrap: wrap; gap: 10px; }
.team-role {
  font-size: .75rem; font-weight: 400; color: var(--muted);
  border: 1px solid var(--border); padding: 6px 16px; background: var(--surface);
}

/* ── CONTACT ── */
.contact-section { background: var(--card); }
.contact-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.contact-left h2 { margin-top: 18px; margin-bottom: 18px; }
.contact-left > p { color: var(--body); font-size: .97rem; line-height: 1.85; margin-bottom: 36px; }

.contact-email {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; border: 1px solid var(--border-mid);
  background: var(--surface); text-decoration: none; margin-bottom: 20px;
  transition: border-color .2s;
}
.contact-email:hover { border-color: var(--blue); }
.contact-email span { color: var(--text); font-size: .92rem; }
.mail-icon { color: var(--blue-light); flex-shrink: 0; }

.verify-card { border: 1px solid var(--border); overflow: hidden; }
.verify-header {
  padding: 16px 26px;
  background: var(--border);
  font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.verify-header svg { color: var(--blue-light); }
.verify-body { background: var(--surface); padding: 0 26px; }
.verify-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--border); gap: 16px;
}
.verify-row:last-child { border-bottom: none; }
.verify-key { font-size: .76rem; color: var(--muted); flex-shrink: 0; }
.verify-val { font-size: .84rem; color: var(--text); text-align: right; }

/* ── FOOTER ── */
footer { padding: 36px 0; border-top: 1px solid var(--border); background: var(--black); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 600; color: var(--muted); }
.footer-logo span { color: var(--blue-light); }
.footer-note { font-size: .72rem; color: var(--muted); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: .35; }
  50%      { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .two-col, .service-grid, .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .exp-grid, .founders-grid, .industry-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .hero h1 { font-size: 2.8rem; }
}