/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@400;600;700&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --blue:      #1A5CFF;
  --cyan:      #00D4FF;
  --bg:        #02020a;
  --card:      #0a0d14;
  --border:    #111828;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,0.55);
  --radius:    14px;
  --nav-h:     52px;
  --font-head: 'IBM Plex Serif', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Background Blobs ── */
.page-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.pb {
  position: absolute;
  border-radius: 50%;
}
.pb1 {
  width: 420px; height: 420px;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(26,92,255,0.62), rgba(26,92,255,0.25) 45%, transparent 70%);
  filter: blur(55px) url(#cloud);
  top: 5%; left: -15%;
  animation: pbf1 26s ease-in-out infinite;
}
.pb2 {
  width: 340px; height: 340px;
  background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(0,212,255,0.52), rgba(0,212,255,0.2) 45%, transparent 70%);
  filter: blur(50px) url(#cloud);
  top: 40%; right: -10%;
  animation: pbf2 32s ease-in-out infinite;
}
.pb3 {
  width: 300px; height: 300px;
  background: radial-gradient(ellipse 50% 55% at 50% 50%, rgba(0,200,130,0.48), rgba(0,200,130,0.18) 45%, transparent 70%);
  filter: blur(50px) url(#cloud);
  bottom: 16%; left: 15%;
  animation: pbf3 22s ease-in-out infinite;
}
.pb4 {
  width: 260px; height: 260px;
  background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(124,58,237,0.42), rgba(124,58,237,0.15) 45%, transparent 70%);
  filter: blur(45px) url(#cloud);
  top: 65%; right: 8%;
  animation: pbf4 28s ease-in-out infinite;
}
.pb5 {
  width: 280px; height: 280px;
  background: radial-gradient(ellipse 55% 50% at 50% 50%, rgba(255,190,0,0.48), rgba(255,160,0,0.2) 45%, transparent 70%);
  filter: blur(52px) url(#cloud);
  top: 22%; left: 30%;
  animation: pbf5 24s ease-in-out infinite;
}
@keyframes pbf1 { 0%,100%{transform:translate(0,0) scale(1)} 40%{transform:translate(70px,90px) scale(1.08)} 70%{transform:translate(25px,-50px) scale(0.94)} }
@keyframes pbf2 { 0%,100%{transform:translate(0,0)} 35%{transform:translate(-80px,-60px)} 65%{transform:translate(-45px,70px)} }
@keyframes pbf3 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(60px,-80px)} }
@keyframes pbf4 { 0%,100%{transform:translate(0,0)} 45%{transform:translate(-50px,-40px)} 75%{transform:translate(30px,50px)} }
@keyframes pbf5 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-40px,60px) scale(1.06)} 66%{transform:translate(50px,-30px) scale(0.92)} }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #03030c;
  border-bottom: 1px solid rgba(26,92,255,0.2);
  height: var(--nav-h);
  transition: border-bottom-color 1.8s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.1rem;
  height: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}
.nav-lmark { flex-shrink: 0; overflow: visible; }
#navLogoS { fill: var(--blue); transition: fill 1.8s ease; }
.nav-lname {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  font-family: var(--font-head);
}
.nav-lsub {
  color: rgba(255,255,255,0.22);
  font-weight: 300;
  font-size: 0.58rem;
  margin-left: 0.1rem;
}
.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  transition: opacity 0.2s;
}
.nav-menu-btn:hover span { background: rgba(255,255,255,0.9); }

/* ── Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2,2,10,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.nav-overlay-close:hover { color: #fff; }
.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.nav-overlay-links a {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-overlay-links a:hover { color: #fff; }
.nav-overlay-cta {
  margin-top: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-overlay-cta:hover { background: #1448d4; }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.bgc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.65,0,0.35,1);
  display: block;
}
.bgc.on { opacity: 1; }
#flash {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0;
  pointer-events: none;
}
.tov {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  transition: background 2s ease;
}
/* Text layers */
.tl {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.25rem 1.5rem;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.34,1.28,0.64,1);
  pointer-events: none;
}
.tl.on { opacity: 1; transform: translateY(0) scale(1); }
.tl.on .ctabtn { pointer-events: all; }
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.16rem 0.48rem;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 0.48rem;
  font-family: var(--font-body);
}
.headline {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-family: var(--font-head);
}
.headline em { font-style: normal; display: block; }
.tagline {
  font-size: 0.68rem;
  margin-top: 0.35rem;
  line-height: 1.55;
  font-family: var(--font-body);
}
.ctabtn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.44rem 1rem;
  width: fit-content;
  cursor: pointer;
  font-family: var(--font-head);
}

/* T0 Stacking Blocks */
.t0 .badge { background: rgba(255,215,0,.14); color: #FFD700; border: 1px solid rgba(255,215,0,.3); }
.t0 .headline { color: #fff; }
.t0 .headline em { color: #fff; }
.t0 .tagline { color: rgba(255,255,255,.62); }
.t0 .ctabtn { background: linear-gradient(135deg,#0044CC,#1E90FF); color: #fff; border-radius: 10px; border: none; animation: pa 2.5s ease-in-out infinite; }
@keyframes pa { 0%,100% { box-shadow: 0 4px 22px rgba(30,144,255,.45); } 50% { box-shadow: 0 4px 40px rgba(30,144,255,.9); } }

/* T1 Triangle Mosaic */
.t1 .badge { background: rgba(99,102,241,.18); color: #818cf8; border: 1px solid rgba(99,102,241,.35); }
.t1 .headline { color: #fff; }
.t1 .headline em { color: #4CC9F0; }
.t1 .tagline { color: rgba(255,255,255,.65); }
.t1 .ctabtn { background: linear-gradient(90deg,#06D6A0,#4CC9F0); color: #020f1a; border-radius: 10px; border: none; animation: pb 2.5s ease-in-out infinite; }
@keyframes pb { 0%,100% { box-shadow: 0 4px 22px rgba(6,214,160,.4); } 50% { box-shadow: 0 4px 40px rgba(76,201,240,.8); } }

/* T2 Aurora */
.t2 .badge { background: rgba(0,255,130,.14); color: #00ff82; border: 1px solid rgba(0,255,130,.28); }
.t2 .headline { color: #fff; }
.t2 .headline em { color: #00ff82; text-shadow: 0 0 18px rgba(0,255,130,.55); }
.t2 .tagline { color: rgba(255,255,255,.6); }
.t2 .ctabtn { background: linear-gradient(135deg,#059669,#10b981); color: #fff; border-radius: 10px; border: none; animation: pc 2.5s ease-in-out infinite; }
@keyframes pc { 0%,100% { box-shadow: 0 4px 22px rgba(5,150,105,.45); } 50% { box-shadow: 0 4px 40px rgba(0,255,130,.75); } }

/* T3 Bioluminescent */
.t3 .badge { color: rgba(0,255,200,.65); font-weight: 600; letter-spacing: .07em; border: 1px solid rgba(0,255,200,.2); background: rgba(0,255,200,.08); }
.t3 .headline { color: #fff; }
.t3 .headline em { color: #00ffcc; text-shadow: 0 0 20px rgba(0,255,200,.55); }
.t3 .tagline { color: rgba(255,255,255,.5); line-height: 1.65; }
.t3 .ctabtn { background: linear-gradient(135deg,#0f766e,#06b6d4); color: #fff; border-radius: 50px; border: none; animation: pd 2.5s ease-in-out infinite; }
@keyframes pd { 0%,100% { box-shadow: 0 4px 20px rgba(6,182,212,.4); } 50% { box-shadow: 0 4px 36px rgba(0,255,200,.75); } }

/* Hero dots + label + progress */
.sdots { position: absolute; bottom: 8px; right: 0.85rem; z-index: 30; display: flex; gap: 0.25rem; }
.sd {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  transition: all .5s cubic-bezier(.34,1.56,.64,1);
  cursor: pointer;
}
.sd.on { width: 14px; border-radius: 3px; }
.pbar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.06); z-index: 20; }
.pfill { height: 100%; width: 0%; transition: background 1.2s ease, box-shadow 1.2s ease; }

/* ── Hero Strip ── */
.hero-strip {
  background: #04050e;
  border-top: 1px solid #090c16;
  display: flex;
  gap: 0;
}
.hero-strip-card {
  flex: 1;
  padding: 0.65rem 0.55rem;
  border-right: 1px solid #090c16;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-strip-card:last-child { border-right: none; }
.strip-icon { font-size: 1rem; margin-bottom: 0.1rem; }
.strip-title { font-size: 0.62rem; font-weight: 700; font-family: var(--font-head); }
.strip-sub { font-size: 0.52rem; color: rgba(255,255,255,0.38); line-height: 1.4; }

/* ── Section Base ── */
.section {
  padding: 3rem 2.5rem;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.section-title {
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-head);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── Talk Live Section ── */
.talk-live-wrap {
  background: linear-gradient(135deg, #040e28, #050c20);
  border: 1px solid rgba(26,92,255,0.28);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    0 6px 20px rgba(0,0,0,0.42),
    0 14px 42px rgba(0,0,0,0.3),
    0 4px 28px rgba(26,92,255,0.1);
}
.talk-live-wrap::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.talk-live-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: live-blink 1.4s ease infinite;
}
@keyframes live-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.talk-live-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}
.talk-live-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.talk-live-btns {
  display: flex;
  gap: 0.65rem;
}
.btn-primary {
  flex: 1;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
}
.btn-primary:hover { background: #1448d4; }
.btn-primary:active { transform: scale(0.97); }
.btn-voice {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-voice:hover { background: rgba(255,255,255,0.12); }

/* ── What We Do ── */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.tile {
  background: linear-gradient(160deg, #0e1220 0%, #0a0d14 60%, #080b12 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 0.9rem 0.85rem;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.35),
    0 8px 28px rgba(0,0,0,0.22);
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
  pointer-events: none;
}
.tile:hover {
  border-color: rgba(26,92,255,0.4);
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.45),
    0 18px 42px rgba(0,0,0,0.3),
    0 4px 18px rgba(26,92,255,0.13);
}
.tile-icon { font-size: 1.35rem; margin-bottom: 0.45rem; }
.tile-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  line-height: 1.2;
}
.tile-desc { font-size: 0.68rem; color: var(--muted); line-height: 1.5; }

/* ── CTA Strip ── */
.cta-strip-wrap {
  background: linear-gradient(135deg, var(--blue), #0044CC);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-strip-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.cta-strip-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.btn-strip {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-strip:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ── SERGE Framework ── */
.serge-steps {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0;
}
.serge-steps::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 2.5rem;
  bottom: 1rem;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--blue), rgba(0,212,255,0.2), transparent);
  pointer-events: none;
}
.serge-step {
  display: flex;
  gap: 1.1rem;
  padding: 0.9rem 0;
  align-items: flex-start;
  position: relative;
}
.serge-step-badge {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1.5px solid rgba(26,92,255,0.45);
  background: rgba(26,92,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.serge-step:hover .serge-step-badge {
  background: rgba(26,92,255,0.2);
  border-color: var(--cyan);
  color: var(--cyan);
}
.serge-step-body { padding-top: 0.3rem; }
.serge-step-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.serge-step-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.serge-step-tag {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

/* ── Our Promise ── */
.promise-quote {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--blue);
}
.promise-cards { display: flex; flex-direction: column; gap: 0.7rem; }
.promise-card {
  background: linear-gradient(160deg, #0e1220 0%, #0a0d14 60%, #080b12 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1rem 1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.35),
    0 8px 28px rgba(0,0,0,0.22);
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.promise-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}
.promise-card:hover {
  border-color: rgba(26,92,255,0.35);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 8px 20px rgba(0,0,0,0.45),
    0 16px 38px rgba(0,0,0,0.3);
}
.promise-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.promise-text-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.promise-text-desc { font-size: 0.75rem; color: var(--muted); line-height: 1.55; }

.deliverables-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 1.5rem 0 0.75rem;
}
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.deliverable-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.7);
}
.deliverable-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, #0e1220 0%, #0a0d14 100%);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.35),
    0 8px 28px rgba(0,0,0,0.22);
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}
.portfolio-card:hover {
  border-color: rgba(26,92,255,0.45);
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 8px 22px rgba(0,0,0,0.45),
    0 18px 42px rgba(0,0,0,0.3),
    0 4px 18px rgba(26,92,255,0.13);
}
.portfolio-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
}
.portfolio-card-info { padding: 0.6rem 0.7rem; }
.portfolio-card-name {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.portfolio-card-type { font-size: 0.62rem; color: var(--muted); }
.portfolio-coming {
  border: 2px dashed rgba(26,92,255,0.3);
  background: rgba(26,92,255,0.04);
}
.portfolio-coming .portfolio-thumb { background: rgba(26,92,255,0.06); }

/* ── Footer ── */
.site-footer {
  background: #03030c;
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.25rem 3rem;
}
.footer-inner {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-contact a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact-icon { font-size: 0.85rem; }
.footer-cta-btn {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.2s;
}
.footer-cta-btn:hover { background: #1448d4; }
.footer-divider { border: none; border-top: 1px solid var(--border); }
.footer-legal {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
}

/* ── Scroll Animations ── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section wrappers ── */
.section-outer { background: transparent; }
.section-outer.alt { background: transparent; }

/* ── Logo ── */
.nav-logo-img {
  display: block;
  height: 51px;
  width: auto;
  mix-blend-mode: screen;
  transform: rotate(90deg);
}
.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 5px 10px;
}
.footer-logo-pill img {
  height: 36px;
  width: auto;
  display: block;
}

/* ── Utility ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
