
:root {
  --brand:      #18abcf;
  --brand-dark: #1087a4;
  --accent:     #45c652;
  --dark:       #0b1120;
  --dark-2:     #141e32;
  --dark-3:     #1c2a42;
  --ink:        #1a202c;
  --muted:      #6b7280;
  --surface:    #ffffff;
  --bg:         #f5f9fc;
  --line:       rgba(0,0,0,.09);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 8px 30px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 50px rgba(0,0,0,.13);
  --radius:     14px;
  --radius-lg:  22px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Sora', sans-serif; line-height: 1.15; }
p { line-height: 1.7; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}
.section { padding: 6rem 0; position: relative; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  border-radius: 999px;
  padding: .75rem 1.6rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(90deg, var(--brand), #2ec9ed);
  color: #fff;
  box-shadow: 0 8px 24px rgba(24,171,207,.35);
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(24,171,207,.45); }

.btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.btn-outline:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.6);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.btn-white:hover { box-shadow: 0 14px 30px rgba(0,0,0,.22); }

/* ── TAGS & EYEBROWS ─────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(24,171,207,.1);
  border: 1px solid rgba(24,171,207,.25);
  border-radius: 999px;
  padding: .28rem .8rem;
  margin-bottom: .9rem;
}
.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
  display: block;
}

/* ── SECTION HEADS ───────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: .9rem;
}
.section-head p { color: var(--muted); }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-parallax] { will-change: transform; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,17,32,.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s ease;
}
.site-header.scrolled { background: rgba(11,17,32,.96); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
}
.brand-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  padding: 2px;
}
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
}
.site-nav a:hover { color: #fff; }

.nav-cta { font-size: .85rem; padding: .6rem 1.3rem; }

/* ═══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  background: linear-gradient(140deg, #060c1a 0%, #0d1a31 50%, #081525 100%);
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* parallax bg circles */
.hero-parallax-bg { position: absolute; inset: 0; pointer-events: none; }
.hp-circle {
  position: absolute;
  border-radius: 50%;
}
.hp-c1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle at 35% 35%, rgba(24,171,207,.22), transparent 65%);
  top: -10%; left: -8%;
}
.hp-c2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 40% 40%, rgba(69,198,82,.15), transparent 65%);
  right: 8%; bottom: 0%;
}
.hp-c3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 50% 50%, rgba(24,171,207,.12), transparent 65%);
  right: 30%; top: 10%;
}
.hp-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 60% 50%, black, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy { display: flex; flex-direction: column; gap: 1.1rem; }

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1.08;
}

.hero-sub {
  color: rgba(255,255,255,.65);
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  padding-top: .3rem;
}

.hero-trust {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust .divider { opacity: .4; }

/* code window */
.hero-visual { display: flex; justify-content: flex-end; }

.code-window {
  width: 100%;
  max-width: 460px;
  background: #0e1726;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  overflow: hidden;
  position: relative;
}

.cw-bar {
  background: #161f30;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cw-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.cw-red    { background: #ff5f57; }
.cw-yellow { background: #febc2e; }
.cw-green  { background: #28c840; }
.cw-title {
  margin-left: auto;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  font-family: 'Inter', monospace;
}

.cw-body {
  padding: 1.4rem 1.5rem 1.8rem;
  font-family: 'Inter', monospace;
  font-size: .82rem;
  line-height: 2;
  color: rgba(255,255,255,.85);
}
.cw-body p { margin: 0; white-space: pre; }
.ct-comment { color: rgba(255,255,255,.32); }
.ct-kw      { color: #c792ea; }
.ct-var     { color: #82aaff; }
.ct-key     { color: #89ddff; }
.ct-str     { color: #c3e88d; }
.ct-num     { color: #f78c6c; }
.ct-cyan    { color: var(--brand); }

.cw-cursor::after {
  content: '▌';
  color: var(--brand);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.cw-glow {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(24,171,207,.15), transparent 70%);
  right: -80px; bottom: -80px;
  border-radius: 50%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION PARALLAX SHAPES (shared)
══════════════════════════════════════════════════════════ */
.section-parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: clip;
  z-index: 0;
}
.sp-shape {
  position: absolute;
  border-radius: 50%;
}

/* services shapes */
.sp-s1 {
  width: 320px; height: 320px;
  right: -120px; top: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(24,171,207,.12), transparent 65%);
}
.sp-s2 {
  width: 200px; height: 200px;
  left: -80px; bottom: 20px;
  background: radial-gradient(circle at 40% 40%, rgba(69,198,82,.11), transparent 65%);
}

/* about shapes */
.sp-a1 {
  width: 420px; height: 420px;
  right: -100px; top: -50px;
  background: radial-gradient(circle at 40% 40%, rgba(24,171,207,.1), transparent 65%);
}

/* process shapes */
.sp-p1 {
  width: 280px; height: 280px;
  left: -80px; bottom: 0;
  background: radial-gradient(circle at 40% 40%, rgba(69,198,82,.1), transparent 65%);
}
.sp-p2 {
  width: 200px; height: 200px;
  right: -60px; top: 40px;
  background: radial-gradient(circle at 40% 40%, rgba(24,171,207,.1), transparent 65%);
}

/* cta shapes */
.sp-cta1 {
  width: 380px; height: 380px;
  left: -120px; top: -100px;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.06), transparent 65%);
}
.sp-cta2 {
  width: 260px; height: 260px;
  right: -60px; bottom: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(69,198,82,.14), transparent 65%);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════ */
.services { background: var(--bg); }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.srv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  overflow: hidden;
  position: relative;
}

/* shimmer sweep on hover */
.srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform .55s ease;
  pointer-events: none;
  border-radius: inherit;
}
.srv-card:hover::after { transform: translateX(100%); }

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(24,171,207,.25);
  border-color: rgba(24,171,207,.35);
}

/* staggered entrance — each card delays by 80 ms */
.srv-card[data-reveal]:nth-child(1) { transition-delay: 0ms; }
.srv-card[data-reveal]:nth-child(2) { transition-delay: 80ms; }
.srv-card[data-reveal]:nth-child(3) { transition-delay: 160ms; }
.srv-card[data-reveal]:nth-child(4) { transition-delay: 240ms; }
.srv-card[data-reveal]:nth-child(5) { transition-delay: 320ms; }
.srv-card[data-reveal]:nth-child(6) { transition-delay: 400ms; }

.srv-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(24,171,207,.14), rgba(69,198,82,.08));
  border: 1px solid rgba(24,171,207,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: .4rem;
  flex-shrink: 0;
  transition: background .28s ease, box-shadow .28s ease, transform .28s ease;
}
.srv-card:hover .srv-icon {
  background: linear-gradient(145deg, rgba(24,171,207,.28), rgba(69,198,82,.16));
  box-shadow: 0 0 18px rgba(24,171,207,.3);
  transform: scale(1.1) rotate(-4deg);
}
.srv-icon svg {
  width: 24px; height: 24px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: transform .28s ease;
}
.srv-card:hover .srv-icon svg { transform: scale(1.08); }
.srv-card h3 {
  font-size: 1.05rem;
  color: var(--ink);
}
.srv-card p {
  font-size: .9rem;
  color: var(--muted);
  flex: 1;
}
.srv-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .4rem;
  transition: gap .15s ease;
}
.srv-link:hover { gap: .6rem; }
.srv-link span { transition: transform .15s ease; }
.srv-link:hover span { transform: translateX(2px); }

.srv-card--cta {
  background: linear-gradient(145deg, var(--dark-2), var(--dark));
  border-color: rgba(255,255,255,.07);
  justify-content: center;
  align-items: flex-start;
}
.srv-card--cta p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}
.srv-card--cta:hover { border-color: rgba(24,171,207,.3); }

/* ═══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about { background: #fff; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* visual box */
.about-visual { display: flex; justify-content: center; }

.about-img-box {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--dark-2), var(--dark));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aib-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.8rem;
  width: 100%;
}

.aib-code {
  font-family: 'Inter', monospace;
  font-size: .83rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
}
.aib-code span { color: rgba(255,255,255,.65); }

.aib-bars {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.aib-bars span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), rgba(69,198,82,.5));
  display: block;
  opacity: .55;
}

.aib-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.aib-badge--1 {
  top: 14px; right: 14px;
  color: var(--brand);
  background: rgba(24,171,207,.12);
  border-color: rgba(24,171,207,.3);
}
.aib-badge--2 {
  bottom: 14px; left: 14px;
  color: var(--accent);
  background: rgba(69,198,82,.1);
  border-color: rgba(69,198,82,.28);
}

/* copy */
.about-copy { display: flex; flex-direction: column; gap: 1rem; }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.about-copy > p { color: var(--muted); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: .4rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.fl-num {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), #2ec9ed);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.feature-list strong { font-size: .95rem; display: block; margin-bottom: .2rem; }
.feature-list p { font-size: .88rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.2rem;
  border-right: 1px solid rgba(255,255,255,.06);
  /* stagger via nth-child */
}
.stat-item:last-child { border-right: none; }

/* staggered entrance */
.stat-item[data-reveal]:nth-child(1) { transition-delay: 0ms; }
.stat-item[data-reveal]:nth-child(2) { transition-delay: 100ms; }
.stat-item[data-reveal]:nth-child(3) { transition-delay: 200ms; }
.stat-item[data-reveal]:nth-child(4) { transition-delay: 300ms; }

.stat-n {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  /* glow pulse once visible */
}
.stat-item.is-visible .stat-n {
  animation: statPop .55s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes statPop {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.stat-n em {
  font-style: normal;
  color: var(--brand);
}
.stat-l {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: .25rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s ease .35s, transform .5s ease .35s;
}
.stat-item.is-visible .stat-l {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════════ */
.process { background: var(--bg); overflow: hidden; }

.proc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  position: relative;
  z-index: 1;
}

.proc-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.proc-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255,255,255,.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform .55s ease;
  pointer-events: none;
}
.proc-step:hover::after { transform: translateX(100%); }
.proc-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24,171,207,.25);
}

/* staggered entrance */
.proc-step[data-reveal]:nth-child(1) { transition-delay: 0ms; }
.proc-step[data-reveal]:nth-child(3) { transition-delay: 100ms; }
.proc-step[data-reveal]:nth-child(5) { transition-delay: 200ms; }
.proc-step[data-reveal]:nth-child(7) { transition-delay: 300ms; }

.proc-num {
  font-family: 'Sora', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .1em;
  display: block;
  transition: letter-spacing .25s ease;
}
.proc-step:hover .proc-num { letter-spacing: .18em; }

.proc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(24,171,207,.13), rgba(69,198,82,.07));
  border: 1px solid rgba(24,171,207,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.proc-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.proc-step h3 { font-size: 1rem; }
.proc-step p { font-size: .88rem; color: var(--muted); }

.proc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(24,171,207,.5);
  font-size: 1.5rem;
  padding: 0 .6rem;
  margin-top: 3.5rem;
}

/* ═══════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0a1428 0%, #0f1e36 60%, #0c1628 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.ctab-parallax { position: absolute; inset: 0; pointer-events: none; }

.ctab-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ctab-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: .85rem;
}
.ctab-copy p {
  color: rgba(255,255,255,.6);
  max-width: 52ch;
}

.ctab-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.ctab-note {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  padding-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-logo-link { color: #fff; }
.footer-brand .brand-logo { background: rgba(255,255,255,.06); }
.footer-brand > p {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a,
.footer-col span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-col a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  padding: 1.2rem 0;
}
.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.28);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .proc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .proc-arrow { display: none; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-cta { margin-left: auto; }
  .nav-inner { gap: 1rem; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-visual { justify-content: center; }
  .code-window { max-width: 360px; }

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

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .ctab-inner { grid-template-columns: 1fr; text-align: center; }
  .ctab-copy p { margin-inline: auto; }
  .ctab-action { align-items: center; }
}

@media (max-width: 520px) {
  .section { padding: 4.5rem 0; }
  .srv-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .code-window { max-width: 100%; }
}


* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(24, 171, 207, 0.2), transparent 32%),
    radial-gradient(circle at 85% 7%, rgba(69, 198, 82, 0.16), transparent 30%),
    linear-gradient(180deg, #f1f5f7 0%, #edf3f6 40%, #f7fbfd 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(rgba(22, 33, 31, 0.5) 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  z-index: -1;
}

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.site-header {
  position: fixed;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, calc(100% - 1.4rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248, 252, 254, 0.82);
  border: 1px solid rgba(136, 140, 146, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(136, 140, 146, 0.3);
  background: #fff;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(24, 171, 207, 0.12);
}

.site-nav .nav-cta {
  background: var(--brand);
  color: #fff;
}

.site-nav .nav-cta:hover {
  background: var(--brand-dark);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 7.5rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 6vw, 4.3rem);
  line-height: 1.02;
  max-width: 13ch;
}

.hero-text {
  margin-top: 1.2rem;
  max-width: 58ch;
  font-size: clamp(1rem, 1.75vw, 1.18rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand), #27bbdd);
  color: #fff;
  box-shadow: 0 12px 30px rgba(24, 171, 207, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(24, 171, 207, 0.4);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(136, 140, 146, 0.45);
  background: rgba(255, 255, 255, 0.65);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

[data-parallax] {
  will-change: transform;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.blob-a {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 35% 35%, rgba(24, 171, 207, 0.5), rgba(24, 171, 207, 0.08));
  top: 8%;
  left: 8%;
}

.blob-b {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 30% 30%, rgba(136, 140, 146, 0.34), rgba(136, 140, 146, 0.05));
  right: -7%;
  top: 22%;
}

.blob-c {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 35%, rgba(69, 198, 82, 0.26), rgba(69, 198, 82, 0.02));
  left: 28%;
  bottom: -16%;
}

.grid-fade {
  position: absolute;
  inset: 12% 7% 5% 7%;
  border-radius: 26px;
  border: 1px solid rgba(136, 140, 146, 0.18);
  background-image:
    linear-gradient(to right, rgba(24, 171, 207, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(24, 171, 207, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.82), transparent 70%);
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.55rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.section-parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: clip;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1.5px);
  opacity: 0.8;
}

.orb-services-a {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 8%;
  background: radial-gradient(circle at 38% 38%, rgba(24, 171, 207, 0.25), rgba(24, 171, 207, 0.04));
}

.orb-services-b {
  width: 180px;
  height: 180px;
  left: -50px;
  bottom: 12%;
  background: radial-gradient(circle at 30% 30%, rgba(69, 198, 82, 0.2), rgba(69, 198, 82, 0.03));
}

.orb-work-a {
  width: 220px;
  height: 220px;
  left: -70px;
  top: 12%;
  background: radial-gradient(circle at 35% 35%, rgba(136, 140, 146, 0.24), rgba(136, 140, 146, 0.05));
}

.orb-work-b {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: -8%;
  background: radial-gradient(circle at 35% 35%, rgba(24, 171, 207, 0.24), rgba(24, 171, 207, 0.03));
}

.orb-about-a {
  width: 260px;
  height: 260px;
  right: 4%;
  top: 0;
  background: radial-gradient(circle at 35% 35%, rgba(69, 198, 82, 0.2), rgba(69, 198, 82, 0.03));
}

.card {
  padding: 1.25rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  color: var(--brand);
  background: linear-gradient(145deg, rgba(24, 171, 207, 0.12), rgba(69, 198, 82, 0.08));
  border: 1px solid rgba(24, 171, 207, 0.22);
}

.service-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: "Sora", sans-serif;
  margin-bottom: 0.45rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  background: linear-gradient(180deg, rgba(24, 171, 207, 0.08), rgba(69, 198, 82, 0.03));
}

.showcase-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.showcase-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.stats {
  display: grid;
  gap: 0.8rem;
}

.stat {
  border: 1px solid rgba(136, 140, 146, 0.28);
  border-radius: 14px;
  padding: 1rem;
  background: #ffffff;
}

.stat-number {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-dark);
}

.stat-label {
  color: var(--muted);
  font-size: 0.94rem;
}

.about-grid p {
  max-width: 75ch;
  color: var(--muted);
  margin: 0 0 0.95rem;
}

.contact-wrap {
  background: linear-gradient(145deg, rgba(79, 83, 88, 0.97), rgba(61, 66, 72, 0.92));
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-wrap p {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 1.4rem 1rem 2rem;
  text-align: center;
  color: rgba(85, 88, 93, 0.78);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .showcase-wrap {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    width: calc(100% - 1rem);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 5.2rem 0;
  }

  .hero {
    padding-top: 6.7rem;
    min-height: 88vh;
  }

  .blob-b {
    width: 280px;
    height: 280px;
  }

  .blob-c {
    display: none;
  }

  .orb {
    opacity: 0.5;
  }
}
