@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --black:    #050507;
  --white:    #f0f0f0;
  --g1:       #0c0c0f;
  --g2:       #161619;
  --g3:       #222226;
  --g4:       #3a3a40;
  --g5:       #666672;
  --g6:       #99999f;
  --cyan:     #5cffe4;
  --blue:     #4060ff;
  --grad:     linear-gradient(135deg, #4060ff 0%, #5cffe4 100%);
  --grad-r:   linear-gradient(135deg, #5cffe4 0%, #4060ff 100%);
  --border:   rgba(255,255,255,.07);
  --r:        12px;
  --ease:     cubic-bezier(0.16,1,0.3,1);
  --ease2:    cubic-bezier(0.87,0,0.13,1);
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{cursor:none}

/* ─── CURSOR ─── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), opacity .25s;
  mix-blend-mode: difference;
}
.cursor-f {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(92,255,228,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .5s var(--ease), height .5s var(--ease);
}
.cursor.big   { width: 56px; height: 56px; }
.cursor-f.big { width: 56px; height: 56px; border-color: transparent; }

/* ─── LOADER ─── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loader-bar { width: 180px; height: 1px; background: var(--g3); overflow: hidden; }
.loader-bar-inner {
  height: 100%;
  background: var(--grad);
  animation: loadBar 1.1s var(--ease) forwards;
}
@keyframes loadBar { from{width:0} to{width:100%} }

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--grad);
  z-index: 10000;
  width: 0;
  transition: width .08s linear;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .4s var(--ease), background .4s, backdrop-filter .4s;
}
.nav.stuck {
  padding: .9rem 3rem;
  background: rgba(5,5,7,.75);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  color: var(--g6);
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cyan);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--white);
  border: 1px solid var(--border);
  padding: .5rem 1.2rem;
  border-radius: 100px;
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-cta span { transition: transform .25s var(--ease); }
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.nav-cta:hover span { transform: translate(3px,-3px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--g5);
  font-size: 1.3rem;
}
.mobile-nav a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--cyan); }

/* ─── SECTION BASE ─── */
.section { padding: 8rem 3rem; }
.section-sm { padding: 5rem 3rem; }
.wrap { max-width: 1280px; margin: 0 auto; }

.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  color: var(--cyan);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.tag::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--cyan); }

.h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .95;
}
.h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}
.h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead { color: var(--g6); font-size: 1.05rem; line-height: 1.75; }

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(.95); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 10rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(64,96,255,.14) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(92,255,228,.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; align-self: end; }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 10vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 3.5rem;
}
.hero-line { overflow: hidden; display: block; }
.hero-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}
.hero-word.shown { transform: translateY(0); }

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.hero-desc { max-width: 380px; color: var(--g6); font-size: .95rem; line-height: 1.75; }
.hero-stats { display: flex; gap: 3.5rem; }
.hero-stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-l { font-size: .72rem; color: var(--g5); text-transform: uppercase; letter-spacing: .12em; margin-top: .3rem; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--g5);
  font-family: 'JetBrains Mono', monospace;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-hint-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--g4), transparent);
  animation: scrollLine 1.8s var(--ease2) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  48%  { transform: scaleY(1); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── MARQUEE ─── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--g1);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: var(--g5);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.marquee-item::after { content: '✦'; color: var(--cyan); font-size: .55rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── SERVICES ─── */
.services-list { border-top: 1px solid var(--border); margin-top: 4rem; }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: padding-left .35s var(--ease);
}
.service-row:hover { padding-left: 1.25rem; }
.service-row:hover .srv-arrow { opacity: 1; transform: translate(3px,-3px); }
.service-row:hover .srv-num  { color: var(--cyan); }
.srv-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--g4);
  letter-spacing: .08em;
  transition: color .3s;
}
.srv-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.025em;
  margin-bottom: .2rem;
}
.srv-desc { font-size: .82rem; color: var(--g6); }
.srv-arrow {
  font-size: 1.3rem;
  color: var(--cyan);
  opacity: 0;
  transition: opacity .3s, transform .35s var(--ease);
}

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 4rem;
}
.portfolio-grid .pf-item:first-child { grid-row: span 2; }
.pf-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--g2);
  display: block;
  aspect-ratio: 4/3;
}
.pf-item:first-child { aspect-ratio: unset; }
.pf-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,.95) 0%, rgba(5,5,7,.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity .35s;
}
.pf-item:hover .pf-overlay { opacity: 1; }
.pf-item:hover .pf-img { transform: scale(1.06); }
.pf-tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .6rem; }
.pf-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .62rem;
  color: var(--cyan);
  border: 1px solid rgba(92,255,228,.3);
  padding: .18rem .5rem;
  border-radius: 100px;
  letter-spacing: .1em;
}
.pf-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.03em;
}
.pf-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--g3);
  letter-spacing: -.04em;
  min-height: 200px;
}

/* ─── STATS ─── */
.stats-band {
  background: var(--g1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-cell {
  padding: 4rem 2.5rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}
.stat-l { font-size: .72rem; color: var(--g5); text-transform: uppercase; letter-spacing: .12em; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--g1);
  display: block;
  transition: border-color .3s, transform .35s var(--ease);
}
.blog-card:hover { border-color: rgba(255,255,255,.16); transform: translateY(-5px); }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-card-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--g2), var(--g3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--g4);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: .67rem;
  color: var(--cyan);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.blog-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-bottom: .5rem;
  color: var(--white);
}
.blog-card-excerpt { font-size: .8rem; color: var(--g6); line-height: 1.6; }

/* ─── CTA BAND ─── */
.cta-band {
  text-align: center;
  padding: 10rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, rgba(64,96,255,.11) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .h1 { position: relative; z-index: 1; margin-bottom: 2.5rem; }
.cta-actions { position: relative; z-index: 1; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: -.01em;
  border: none;
  border-radius: 100px;
  padding: .85rem 2rem;
  transition: transform .25s var(--ease), box-shadow .25s, background .2s;
  text-decoration: none;
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: .95rem; }
.btn-sm { padding: .45rem 1rem; font-size: .78rem; }
.btn-primary {
  background: var(--grad);
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(64,96,255,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.btn-danger {
  background: rgba(255,50,50,.12);
  color: #ff5555;
  border: 1px solid rgba(255,50,50,.2);
}
.btn-danger:hover { background: rgba(255,50,50,.22); }
.btn-ghost {
  background: transparent;
  color: var(--g6);
  border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.18); }

/* ─── FLOAT BUTTONS ─── */
.float-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  align-items: center;
}
.float-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(5,5,7,.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g5);
  transition: all .25s var(--ease);
  text-decoration: none;
}
.float-btn:hover { border-color: var(--cyan); color: var(--cyan); transform: scale(1.1); }
.float-wa:hover  { border-color: #25d366; color: #25d366; }

/* ─── FOOTER ─── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--g1);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 5rem 3rem 2.5rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.04em;
  margin-bottom: .85rem;
}
.footer-logo span { color: var(--cyan); }
.footer-tagline { font-size: .82rem; color: var(--g5); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g5);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); }
.footer-col-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g4);
  margin-bottom: 1.4rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-links a { font-size: .82rem; color: var(--g5); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .8rem;
  color: var(--g5);
  margin-bottom: .7rem;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: .15rem; }
.footer-contact-item a { color: var(--g5); transition: color .2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .75rem;
  color: var(--g4);
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 11rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -30%, rgba(64,96,255,.1), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }

/* ─── ABOUT PAGE ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.about-img-accent {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: var(--grad);
  opacity: .07;
  z-index: -1;
}
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.value-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color .3s;
}
.value-card:hover { border-color: rgba(92,255,228,.3); }
.value-icon {
  width: 36px; height: 36px;
  background: rgba(92,255,228,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: .75rem;
}
.value-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.value-desc { font-size: .78rem; color: var(--g6); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(92,255,228,.07);
  border: 1px solid rgba(92,255,228,.14);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}
.contact-label { font-family: 'JetBrains Mono', monospace; font-size: .65rem; color: var(--g5); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-val { font-size: .9rem; }
.contact-val a { color: var(--white); transition: color .2s; }
.contact-val a:hover { color: var(--cyan); }

/* ─── FORM ─── */
.form-group { margin-bottom: 1.15rem; }
.form-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g5);
  margin-bottom: .5rem;
}
.form-input {
  width: 100%;
  background: var(--g2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  padding: .8rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: rgba(92,255,228,.4); background: rgba(92,255,228,.025); }
.form-input::placeholder { color: var(--g4); }
textarea.form-input { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-status { margin-top: 1rem; font-size: .85rem; }
.form-ok  { color: var(--cyan); }
.form-err { color: #ff5555; }

/* ─── SINGLE ARTICLE ─── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 3rem 6rem; }
.article-body p   { margin-bottom: 1.25rem; color: var(--g6); line-height: 1.85; }
.article-body h2  { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 600; letter-spacing: -.025em; margin: 2rem 0 1rem; }
.article-body h3  { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; margin: 1.5rem 0 .75rem; }
.article-body img { width: 100%; border-radius: var(--r); margin: 1.5rem 0; border: 1px solid var(--border); }
.article-body a   { color: var(--cyan); }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--g6); }
.article-body li  { margin-bottom: .5rem; }
.article-body pre, .article-body code { font-family: 'JetBrains Mono', monospace; font-size: .82rem; }
.article-body pre { background: var(--g2); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; overflow-x: auto; margin-bottom: 1.25rem; }

/* ─── 404 ─── */
.err-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}
.err-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .18;
  margin-bottom: -2rem;
  position: relative;
  z-index: 0;
}
.err-msg { position: relative; z-index: 1; margin-bottom: 2.5rem; }
.err-msg h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -.03em; margin-bottom: .5rem; }
.err-msg p  { color: var(--g6); }

/* ─── HEADER ROW UTILITY ─── */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-head .left {}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .pf-item:first-child { grid-row: auto; aspect-ratio: 4/3; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-f { display: none; }

  .nav { padding: 1.25rem 1.5rem; }
  .nav.stuck { padding: .85rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 6rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; border-top: none; padding-top: 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

  .section { padding: 5rem 1.5rem; }
  .section-sm { padding: 3rem 1.5rem; }
  .section-head { flex-direction: column; align-items: flex-start; }

  .service-row { grid-template-columns: 52px 1fr; }
  .srv-arrow { display: none; }

  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-inner { padding: 3.5rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; }

  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-cell { padding: 2.5rem 1.5rem; }

  .cta-band { padding: 6rem 1.5rem; }

  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .article-wrap { padding: 0 1.5rem 4rem; }

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

  .float-actions { right: 1rem; bottom: 1rem; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.25rem; }
  .hero-stat-n { font-size: 2rem; }
}
