/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --bg: #060810;
  --bg2: #0a0d14;
  --card: #0e1220;
  --card2: #111827;
  --border: #1a2035;
  --border2: #243050;
  --cyan: #22d3ee;
  --violet: #7c3aed;
  --emerald: #10b981;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --text: #cbd5e1;
  --text2: #94a3b8;
  --white: #f1f5f9;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s, width .2s, height .2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(34, 211, 238, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .12s ease;
}

/* SCANLINES */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, .03) 2px, rgba(0, 0, 0, .03) 4px);
  pointer-events: none;
  z-index: 999;
}

/* GRID */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, .018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(32px) saturate(1.6);
  background: rgba(6, 8, 16, .72);
  border-bottom: 1px solid rgba(34, 211, 238, .06);
  transition: background .3s;
}

nav.scrolled {
  background: rgba(6, 8, 16, .92);
  border-bottom-color: rgba(34, 211, 238, .1);
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  position: relative;
}

.logo-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--cyan);
  animation: ring 2s ease-out infinite;
}

@keyframes ring {
  0% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.nav-center {
  display: flex;
  gap: 36px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform .2s;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--cyan);
}

.nav-center a:hover::after,
.nav-center a.active::after {
  transform: scaleX(1);
}

.nav-contact {
  background: var(--cyan);
  color: var(--bg);
  padding: 7px 18px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
}

.nav-contact:hover {
  background: #67e8f9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, .3);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 56px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.amb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.amb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(34, 211, 238, .07) 0%, transparent 70%);
  animation: drift 14s ease-in-out infinite;
}

.amb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(124, 58, 237, .07) 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite reverse;
}

.amb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 15%;
  background: radial-gradient(circle, rgba(16, 185, 129, .06) 0%, transparent 70%);
  animation: drift 10s ease-in-out infinite 4s;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -40px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 30px) scale(.95);
  }
}

.hero-layout {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  min-width: 0;
  /* Prevents text overflow extending grid */
}

.hero-image-wrap {
  flex: 0 0 380px;
  position: relative;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border2);
  aspect-ratio: 4/5;
  overflow: hidden;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(34, 211, 238, 0.15);
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp .6s both;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hbadge.cyan {
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .22);
  color: var(--cyan);
}

.hbadge.emerald {
  background: rgba(16, 185, 129, .08);
  border: 1px solid rgba(16, 185, 129, .22);
  color: var(--emerald);
}

.hbadge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

.hero-h {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.04em;
  color: var(--white);
  word-wrap: break-word;
}

.hero-h .line {
  display: block;
  animation: lineIn .7s cubic-bezier(.16, 1, .3, 1) both;
  overflow: hidden;
}

.hero-h .line:nth-child(1) {
  animation-delay: .08s;
}

.hero-h .line:nth-child(2) {
  animation-delay: .16s;
  color: var(--cyan);
}

@keyframes lineIn {
  from {
    transform: translateY(110%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-role {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(.7rem, 1.4vw, 1rem);
  font-weight: 300;
  color: var(--text2);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 28px;
  animation: fadeUp .6s .3s cubic-bezier(.16, 1, .3, 1) both;
}

.hero-role em {
  color: var(--emerald);
  font-style: normal;
  font-weight: 600;
}

.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--text2);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  animation: fadeUp .6s .38s cubic-bezier(.16, 1, .3, 1) both;
  margin-bottom: 40px;
}

.hero-desc strong {
  color: var(--text);
  font-weight: 500;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  animation: fadeUp .6s .46s cubic-bezier(.16, 1, .3, 1) both;
}

.htag {
  padding: 5px 13px;
  border-radius: 5px;
  font-size: .75rem;
  font-weight: 500;
  border: 1px solid var(--border2);
  color: var(--text2);
  background: rgba(255, 255, 255, .02);
  transition: all .18s;
  letter-spacing: .02em;
}

.htag:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(34, 211, 238, .04);
}

.htag.c {
  border-color: rgba(34, 211, 238, .25);
  color: var(--cyan);
  background: rgba(34, 211, 238, .05);
}

.htag.e {
  border-color: rgba(16, 185, 129, .25);
  color: var(--emerald);
  background: rgba(16, 185, 129, .05);
}

.htag.v {
  border-color: rgba(124, 58, 237, .25);
  color: #a78bfa;
  background: rgba(124, 58, 237, .05);
}

.htag.r {
  border-color: rgba(244, 63, 94, .25);
  color: #fb7185;
  background: rgba(244, 63, 94, .05);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .6s .54s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-primary {
  background: var(--cyan);
  color: var(--bg);
  padding: 13px 28px;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .03em;
  transition: all .2s;
  font-family: 'Outfit', sans-serif;
}

.cta-primary:hover {
  background: #67e8f9;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(34, 211, 238, .3);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 56px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: fadeUp 1s 1s cubic-bezier(.16, 1, .3, 1) both;
}

.scroll-track {
  width: 1px;
  height: 56px;
  background: var(--border2);
  position: relative;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--cyan);
  animation: scrollDown 2.2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

.scroll-label {
  font-family: 'Unbounded', sans-serif;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text2);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ══════════════════════════════════════
   STATS
══════════════════════════════════════ */
.stats-wrap {
  position: relative;
  z-index: 1;
  padding: 0 56px;
  max-width: calc(1100px + 112px);
  margin: 0 auto;
}

.stats-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.stats-rail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: .5;
}

.stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .22s;
}

.stat:last-child {
  border-right: none;
}

.stat:hover {
  background: rgba(34, 211, 238, .03);
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}

.stat-label {
  font-size: .7rem;
  color: var(--text2);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .02em;
}

/* ══════════════════════════════════════
   SECTION SYSTEM
══════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 110px 56px;
  max-width: calc(1100px + 112px);
  margin: 0 auto;
}

.section.alt {
  max-width: none;
  padding: 110px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section.alt .si {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 56px;
}

.s-eye {
  font-family: 'Unbounded', sans-serif;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.s-eye::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.s-h {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.s-sub {
  color: var(--text2);
  max-width: 480px;
  line-height: 1.75;
  font-size: .96rem;
  font-weight: 300;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}

.about-copy p {
  color: var(--text2);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: .97rem;
  font-weight: 300;
}

.about-copy p strong {
  color: var(--text);
  font-weight: 500;
}

.about-copy p .hl {
  color: var(--cyan);
  font-weight: 500;
}

.about-copy p .hl2 {
  color: var(--emerald);
  font-weight: 500;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.micro-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 18px;
  transition: all .22s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.micro-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--cyan);
  transition: width .3s;
}

.micro-card:hover {
  border-color: rgba(34, 211, 238, .25);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
}

.micro-card:hover::before {
  width: 100%;
}

.mc-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--cyan);
  display: block;
}

.mc-icon.emerald {
  color: var(--emerald);
}

.mc-icon.violet {
  color: #a78bfa;
}

.mc-icon.rose {
  color: #fb7185;
}

.mc-icon.amber {
  color: var(--amber);
}

.mc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.mc-desc {
  font-size: .75rem;
  color: var(--text2);
  line-height: 1.5;
  font-weight: 300;
}

/* ══════════════════════════════════════
   ORGANIC VISION
══════════════════════════════════════ */
.ov-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 64px;
}

.ov-card {
  background: linear-gradient(145deg, rgba(16, 185, 129, .06) 0%, rgba(34, 211, 238, .04) 50%, transparent 100%);
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 18px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.ov-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(16, 185, 129, .08), transparent 70%);
  pointer-events: none;
}

.ov-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ov-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  overflow: hidden;
}

.ov-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.ov-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 2px;
}

.ov-url {
  font-size: .78rem;
  color: var(--emerald);
  font-weight: 500;
}

.ov-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.ov-chip {
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Unbounded', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.ov-chip.ceo {
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .3);
  color: var(--emerald);
}

.ov-chip.cto {
  background: rgba(34, 211, 238, .12);
  border: 1px solid rgba(34, 211, 238, .3);
  color: var(--cyan);
}

.ov-desc {
  color: var(--text2);
  font-size: .93rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}

.ov-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald);
  text-decoration: none;
  font-family: 'Unbounded', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: gap .2s;
}

.ov-link:hover {
  gap: 14px;
}

.ov-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ov-hi {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
}

.ov-hi:hover {
  border-color: rgba(16, 185, 129, .25);
  transform: translateX(4px);
}

.ov-hi-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(34, 211, 238, .07);
  border: 1px solid rgba(34, 211, 238, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.ov-hi-icon svg {
  width: 16px;
  height: 16px;
}

.ov-hi-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.ov-hi-desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.5;
  font-weight: 300;
}

/* OV SERVICE TILES */
.ov-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.ov-svc {
  background: rgba(16, 185, 129, .04);
  border: 1px solid rgba(16, 185, 129, .12);
  border-radius: 9px;
  padding: 14px;
}

.ov-svc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}

.ov-svc-desc {
  font-size: .74rem;
  color: var(--text2);
  line-height: 1.45;
  font-weight: 300;
}

/* ══════════════════════════════════════
   ACHIEVEMENTS
══════════════════════════════════════ */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 64px;
}

.ach-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: all .25s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  /* clickable for cert */
}

.ach-card[data-cert] {
  cursor: pointer;
}

.ach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .25s;
}

.ach-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(34, 211, 238, .12);
  border-color: rgba(34, 211, 238, .15);
}

.ach-card:hover::before {
  opacity: 1;
}

/* cert badge overlay hint */
.ach-card[data-cert]::after {
  content: 'View Certificate ↗';
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0;
  transition: opacity .2s;
}

.ach-card[data-cert]:hover::after {
  opacity: 1;
}

.ach-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  display: block;
  color: var(--cyan);
}

.ach-org {
  font-family: 'Unbounded', sans-serif;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
}

.ach-title {
  font-family: 'Unbounded', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -.02em;
}

.ach-desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 300;
}

.ach-date {
  font-family: 'Unbounded', sans-serif;
  font-size: .58rem;
  letter-spacing: .1em;
  color: var(--border2);
  font-weight: 600;
}

.programs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.prog-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .2s;
}

.prog-tile:hover {
  border-color: rgba(34, 211, 238, .25);
  transform: translateY(-2px);
}

.prog-em {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.prog-em svg {
  width: 20px;
  height: 20px;
}

.prog-name {
  font-family: 'Unbounded', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -.01em;
}

.prog-sub {
  font-size: .72rem;
  color: var(--text2);
  font-weight: 300;
}

/* ══════════════════════════════════════
   WHAT I CAN BUILD
══════════════════════════════════════ */
.build-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.build-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(30px) scale(.97);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1), border-color .28s, box-shadow .28s;
}

.build-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tile-accent, var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}

.build-tile::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--tile-glow, rgba(34, 211, 238, .06)), transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}

.build-tile:hover {
  border-color: rgba(34, 211, 238, .2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.build-tile:hover::after {
  transform: scaleX(1);
}

.build-tile:hover::before {
  opacity: 1;
}

.build-tile.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.build-tile.in:hover {
  transform: translateY(-5px) scale(1.02) !important;
}

.build-tile.wide {
  grid-column: span 2;
}

.tile-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  display: block;
  color: var(--cyan);
}

.tile-icon.e {
  color: var(--emerald);
}

.tile-icon.v {
  color: #a78bfa;
}

.tile-icon.r {
  color: #fb7185;
}

.tile-icon.a {
  color: var(--amber);
}

.tile-name {
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.tile-desc {
  font-size: .76rem;
  color: var(--text2);
  line-height: 1.55;
  font-weight: 300;
}

.tile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.tile-tag {
  font-size: .65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(34, 211, 238, .07);
  border: 1px solid rgba(34, 211, 238, .15);
  color: var(--cyan);
  letter-spacing: .03em;
}

.tile-tag.v {
  background: rgba(124, 58, 237, .07);
  border-color: rgba(124, 58, 237, .15);
  color: #a78bfa;
}

.tile-tag.e {
  background: rgba(16, 185, 129, .07);
  border-color: rgba(16, 185, 129, .15);
  color: var(--emerald);
}

.tile-tag.r {
  background: rgba(244, 63, 94, .07);
  border-color: rgba(244, 63, 94, .15);
  color: #fb7185;
}

.tile-tag.a {
  background: rgba(245, 158, 11, .07);
  border-color: rgba(245, 158, 11, .15);
  color: var(--amber);
}

/* ══════════════════════════════════════
   SKILLS
══════════════════════════════════════ */
.skills-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.skill-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 28px;
}

.sk-label {
  font-family: 'Unbounded', sans-serif;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text2);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sk-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.sk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sk {
  font-size: .76rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 5px;
  transition: all .15s;
  cursor: default;
  letter-spacing: .01em;
}

.sk.dev {
  background: rgba(34, 211, 238, .06);
  border: 1px solid rgba(34, 211, 238, .16);
  color: var(--cyan);
}

.sk.dev:hover {
  background: rgba(34, 211, 238, .12);
}

.sk.cre {
  background: rgba(244, 63, 94, .06);
  border: 1px solid rgba(244, 63, 94, .16);
  color: #fb7185;
}

.sk.cre:hover {
  background: rgba(244, 63, 94, .12);
}

.sk.lan {
  background: rgba(16, 185, 129, .06);
  border: 1px solid rgba(16, 185, 129, .16);
  color: var(--emerald);
}

.sk.lan:hover {
  background: rgba(16, 185, 129, .12);
}

.sk.sof {
  background: rgba(124, 58, 237, .06);
  border: 1px solid rgba(124, 58, 237, .16);
  color: #a78bfa;
}

.sk.sof:hover {
  background: rgba(124, 58, 237, .12);
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
  margin-top: 64px;
}

.contact-left h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.contact-left p {
  font-size: .9rem;
  color: var(--text2);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ICON-ONLY CONTACT ROW */
.contact-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ci-btn {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: all .22s cubic-bezier(.16, 1, .3, 1);
  position: relative;
}

.ci-btn svg {
  width: 20px;
  height: 20px;
}

.ci-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .5);
}

.ci-btn.email:hover {
  border-color: rgba(34, 211, 238, .4);
  color: var(--cyan);
  background: rgba(34, 211, 238, .06);
}

.ci-btn.phone:hover {
  border-color: rgba(16, 185, 129, .4);
  color: var(--emerald);
  background: rgba(16, 185, 129, .06);
}

.ci-btn.github:hover {
  border-color: rgba(248, 248, 248, .3);
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.ci-btn.linkedin:hover {
  border-color: rgba(10, 102, 194, .6);
  color: #0a66c2;
  background: rgba(10, 102, 194, .08);
}

.ci-btn.google:hover {
  border-color: rgba(66, 133, 244, .4);
  color: #4285f4;
  background: rgba(66, 133, 244, .06);
}

.ci-btn.company:hover {
  border-color: rgba(16, 185, 129, .4);
  color: var(--emerald);
  background: rgba(16, 185, 129, .06);
}

/* TOOLTIP */
.ci-btn::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: .7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  font-family: 'Outfit', sans-serif;
}

.ci-btn:hover::after {
  opacity: 1;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  resize: none;
  transition: all .2s;
  letter-spacing: .01em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, .35);
  background: rgba(34, 211, 238, .02);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, .05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--border2);
}

.form-submit {
  background: var(--cyan);
  color: var(--bg);
  padding: 13px 28px;
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .03em;
  transition: all .2s;
  width: fit-content;
}

.form-submit:hover {
  background: #67e8f9;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(34, 211, 238, .3);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 36px 56px;
  position: relative;
  z-index: 1;
}

.foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.foot-left {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}

.foot-left strong {
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.foot-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.foot-right a {
  font-size: .78rem;
  color: var(--text2);
  text-decoration: none;
  transition: color .2s;
}

.foot-right a:hover {
  color: var(--cyan);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.sr.left {
  transform: translateX(-36px);
}

.sr.right {
  transform: translateX(36px);
}

.sr.in {
  opacity: 1;
  transform: none !important;
}

.sr-d1 {
  transition-delay: .05s;
}

.sr-d2 {
  transition-delay: .12s;
}

.sr-d3 {
  transition-delay: .19s;
}

.sr-d4 {
  transition-delay: .26s;
}

.sr-d5 {
  transition-delay: .33s;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px) {
  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .build-tile.wide {
    grid-column: span 2;
  }

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

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

  .nav-center {
    display: none;
  }

  .hero {
    padding: 110px 24px 80px;
  }

  .scroll-hint {
    left: 24px;
  }

  .stats-wrap {
    padding: 0 24px;
  }

  .stats-rail {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(4),
  .stat:nth-child(5) {
    border-top: 1px solid var(--border);
  }

  .hero-layout {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
    margin-top: 40px;
  }

  .hero-image-wrap {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
  }

  .hero-image-wrap::after {
    border-radius: 50%;
  }

  .hero-badges,
  .hero-tags {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .section {
    padding: 72px 24px;
  }

  .section.alt {
    padding: 72px 0;
  }

  .section.alt .si {
    padding: 0 24px;
  }

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

  .skills-cols,
  .programs-row,
  .ov-services {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 28px 24px;
  }

  .foot-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media(max-width:640px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

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

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

  .build-tile.wide {
    grid-column: span 1;
  }

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

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

  .ov-services {
    grid-template-columns: 1fr 1fr;
  }
}