/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM — Unidef Teknoloji
   Inspired by: Linear · Vercel · Stripe · Clerk
   Typography: Plus Jakarta Sans · Inter · JetBrains Mono
═══════════════════════════════════════════════════════ */

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

/* ── TOKENS DARK ── */
:root, [data-theme="dark"] {
  --bg:           #080810;
  --bg-s:         #0c0c18;
  --bg-t:         #101020;
  --surface:      rgba(255,255,255,0.026);
  --surface-h:    rgba(255,255,255,0.05);
  --border:       rgba(255,255,255,0.07);
  --border-s:     rgba(255,255,255,0.12);
  --text:         #f1f0ff;
  --text-2:       #a09cb8;
  --text-3:       #605c80;
  --p1:           #6366f1;
  --p2:           #22d3ee;
  --p3:           #10b981;
  --p4:           #a78bfa;
  --logo-c:       #ffffff;
  --nav-bg:       rgba(8,8,16,0.82);
  --card-bg:      rgba(255,255,255,0.026);
  --card-border:  rgba(255,255,255,0.07);
  --grid-dot:     rgba(99,102,241,0.12);
  --shadow-card:  0 0 0 1px rgba(255,255,255,0.07), 0 20px 60px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 80px rgba(99,102,241,0.15);
  --noise:        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ── TOKENS LIGHT ── */
[data-theme="light"] {
  --bg:           #fafafa;
  --bg-s:         #f4f4f8;
  --bg-t:         #ededf5;
  --surface:      rgba(0,0,0,0.025);
  --surface-h:    rgba(0,0,0,0.045);
  --border:       rgba(0,0,0,0.07);
  --border-s:     rgba(0,0,0,0.12);
  --text:         #09090f;
  --text-2:       #4a4868;
  --text-3:       #8886a8;
  --p1:           #4f46e5;
  --p2:           #0891b2;
  --p3:           #059669;
  --p4:           #7c3aed;
  --logo-c:       #09090f;
  --nav-bg:       rgba(250,250,250,0.88);
  --card-bg:      rgba(255,255,255,0.8);
  --card-border:  rgba(0,0,0,0.07);
  --grid-dot:     rgba(79,70,229,0.08);
  --shadow-card:  0 0 0 1px rgba(0,0,0,0.07), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-glow:  0 0 60px rgba(79,70,229,0.08);
  --noise:        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}

/* ── BASE ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', sans-serif; font-weight: 300;
  line-height: 1.6; overflow-x: hidden;
  transition: background .5s, color .5s;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--p1); border-radius: 4px; }

/* dot-grid texture */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, var(--grid-dot) 1px, transparent 1px);
  background-size: 24px 24px;
}
/* noise overlay */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: var(--noise); background-size: 200px 200px;
  opacity: 1;
}

/* ── SKIP LINK ── */
.skip-link {
  position: fixed; top: -100%; left: 16px; z-index: 9999;
  background: var(--p1); color: #fff; padding: 10px 20px;
  border-radius: 0 0 8px 8px; font-family: 'Inter', sans-serif;
  font-size: .88rem; font-weight: 500; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; outline: 2px solid #fff; outline-offset: 2px; }

/* ── FOCUS VISIBLE ── */
:focus-visible { outline: 2px solid var(--p1); outline-offset: 2px; }
a:focus-visible, button:focus-visible { border-radius: 6px; }
.lang-pill:focus-visible, .toggle-pill:focus-visible { border-radius: 20px; }

/* ══════════════════════════════════
   LOGO
══════════════════════════════════ */
.logo-wrap { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg  { width: 38px; height: 38px; flex-shrink: 0; }
.logo-txt  { display: flex; flex-direction: column; gap: 0px; line-height: 1; }
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.1rem; letter-spacing: -.4px; color: var(--logo-c);
  transition: color .5s;
}
.logo-sub {
  font-family: 'JetBrains Mono', monospace; font-size: .52rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--p2);
  transition: color .5s;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  transition: background .5s, border-color .5s;
}
nav.scrolled { background: rgba(8,8,16,0.96); }
[data-theme="light"] nav.scrolled { background: rgba(250,250,250,0.97); }
.nav-left  { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: .84rem; font-weight: 400;
  color: var(--text-2); text-decoration: none; padding: 6px 12px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-direction: row; flex-wrap: nowrap; }

/* ── DİL TOGGLE ── */
.lang-pill {
  display: flex; flex-direction: row; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px; cursor: pointer;
  transition: background .4s, border-color .4s; flex-shrink: 0;
}
.lang-opt {
  font-family: 'JetBrains Mono', monospace; font-size: .66rem;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  width: 28px; height: 22px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: background .3s, color .3s, box-shadow .3s;
  user-select: none; flex-shrink: 0;
}
.lang-opt.active {
  background: var(--bg-t); color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}

/* theme toggle */
.toggle-pill {
  display: flex; flex-direction: row; align-items: center; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 3px; cursor: pointer; flex-shrink: 0;
  transition: background .4s, border-color .4s;
}
.toggle-opt {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 22px; border-radius: 16px; font-size: .72rem;
  transition: background .3s, box-shadow .3s; color: var(--text-3);
}
.toggle-opt.active {
  background: var(--bg-t); box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  color: var(--text);
}

/* nav CTA */
.nav-cta-link {
  font-family: 'Inter', sans-serif; font-size: .84rem; font-weight: 500;
  color: var(--text); text-decoration: none; padding: 8px 18px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  transition: all .2s;
}
.nav-cta-link:hover { background: var(--surface-h); border-color: var(--border-s); }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px; color: var(--text-2);
  transition: background .2s; flex-shrink: 0;
}
.hamburger:hover { background: var(--surface); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .3s, opacity .3s;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 190;
  flex-direction: column; gap: 2px;
  background: var(--nav-bg); backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  transition: background .5s, border-color .5s;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 400;
  color: var(--text-2); text-decoration: none;
  padding: 10px 14px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
/* hero always dark — override light-mode tokens inside this section */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 48px 80px; overflow: hidden;
  background: #06060f;
  --logo-c:    #ffffff;
  --text-2:    #a09cb8;
  --text-3:    #4e4a6a;
  --border:    rgba(255,255,255,.07);
  --border-s:  rgba(255,255,255,.13);
  --surface:   rgba(255,255,255,.028);
  --surface-h: rgba(255,255,255,.055);
  --card-bg:   rgba(255,255,255,.03);
  --card-border: rgba(255,255,255,.08);
  --shadow-card: 0 0 0 1px rgba(255,255,255,.06), 0 16px 48px rgba(0,0,0,.45);
  --shadow-glow: 0 0 60px rgba(99,102,241,.2);
}

/* dot grid */
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 85% at 50% 40%, black 0%, transparent 100%);
}

/* aurora */
.hero-spotlight {
  position: absolute; top: -80px; right: -60px; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.18) 0%, rgba(34,211,238,.07) 45%, transparent 70%);
  filter: blur(60px);
  animation: spotpulse 8s ease-in-out infinite;
}
@keyframes spotpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.12); }
}

/* mesh orbs */
.mesh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.mo1 { width: 580px; height: 580px; background: rgba(99,102,241,.1);  top: -160px; left: -160px; }
.mo2 { width: 480px; height: 480px; background: rgba(167,139,250,.07); bottom: -100px; left: 30%; }

/* top border beam */
.hero-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, #6366f1 40%, #22d3ee 60%, transparent 95%);
  opacity: .55;
}

/* 2-column layout */
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

/* ── LEFT ── */
.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 14px 6px 8px;
  margin-bottom: 32px; cursor: default;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 6px #10b981; animation: bdot 2.5s ease-in-out infinite;
}
@keyframes bdot { 0%,100%{opacity:1} 50%{opacity:.3} }
.badge-text { font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 500; color: var(--text-2); }
.badge-new {
  font-family: 'JetBrains Mono', monospace; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; margin-left: 2px;
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  color: transparent; -webkit-background-clip: text; background-clip: text;
}

/* headline */
.hero-h {
  display: flex; flex-direction: column; align-items: flex-start;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(2.8rem, 3.6vw, 4.8rem); line-height: 1.0;
  letter-spacing: -2.5px; margin-bottom: 24px; color: #ffffff;
}
.hero-h .grad {
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 45%, #a78bfa 85%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-h .dim { color: #a09cb8; font-weight: 300; -webkit-text-fill-color: #a09cb8; }

/* subtitle */
.hero-sub {
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 300;
  color: var(--text-2); max-width: 460px; margin: 0 0 36px; line-height: 1.8;
}

/* CTAs */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 500;
  padding: 12px 26px; border-radius: 10px; text-decoration: none;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-grad {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: #fff; position: relative; overflow: hidden;
}
.btn-grad::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #a78bfa, #6366f1);
  opacity: 0; transition: opacity .35s;
}
.btn-grad span { position: relative; z-index: 1; }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(99,102,241,.42); }
.btn-grad:hover::before { opacity: 1; }
.btn-outline { background: var(--surface); border: 1px solid var(--border); color: var(--text-2); }
.btn-outline:hover { border-color: var(--border-s); color: #fff; background: var(--surface-h); }

/* stats strip */
.hero-metrics {
  display: flex; align-items: center; gap: 0; width: 100%;
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
  overflow: hidden;
}
.hm {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0; flex: 1; position: relative;
}
.hm + .hm::before {
  content: ''; position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 1px; background: var(--border);
}
.hm-n {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.6rem;
  letter-spacing: -.5px; color: #ffffff;
}
.hm-n span { color: #6366f1; }
.hm-l { font-family: 'Inter', sans-serif; font-size: .7rem; color: var(--text-3); margin-top: 3px; }

/* ── RIGHT: service cards ── */
.hero-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start;
}
.hr-col { display: flex; flex-direction: column; gap: 14px; }
.hr-col--offset { padding-top: 44px; }

.hr-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hr-card::after {
  content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,.4), transparent);
}
.hr-card:hover { border-color: rgba(99,102,241,.35); transform: translateY(-4px); box-shadow: var(--shadow-card), var(--shadow-glow); }
.hr-card--lit { border-color: rgba(99,102,241,.2); }
.hr-card--lit::after { background: linear-gradient(90deg, transparent, rgba(99,102,241,.6), rgba(34,211,238,.3), transparent); }

/* ── code card decoration ── */
.hr-card--code {
  background: rgba(255,255,255,.065);
  border-color: rgba(99,102,241,.22);
}
.hr-card--code::after { background: linear-gradient(90deg, transparent, rgba(99,102,241,.55), transparent); }
.hrc-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hr-card > *:not(.hrc-bg) { position: relative; z-index: 1; }
.hrc-bg--code {
  background: radial-gradient(ellipse 70% 60% at 100% 100%, rgba(99,102,241,.09) 0%, transparent 70%);
}
.hrc-code-lines {
  position: absolute; bottom: 16px; right: 14px;
  width: 105px; display: flex; flex-direction: column; gap: 7px;
}
.hcl { height: 5px; border-radius: 3px; }
.hcl--kw     { width: 68%; background: rgba(99,102,241,.55); }
.hcl--str    { width: 100%; background: rgba(34,211,238,.38); margin-left: 12px; width: calc(100% - 12px); }
.hcl--var    { width: 52%; background: rgba(255,255,255,.18); margin-left: 12px; }
.hcl--fn     { width: 82%; background: rgba(167,139,250,.4); margin-left: 12px; }
.hcl--val    { width: 42%; background: rgba(34,211,238,.22); margin-left: 24px; }
.hcl--comment{ width: 65%; background: rgba(255,255,255,.08); margin-left: 8px; }
.hrc-bracket {
  position: absolute; bottom: -14px; right: 2px;
  font-family: 'JetBrains Mono', monospace; font-size: 3.8rem; font-weight: 700;
  color: rgba(99,102,241,.1); line-height: 1; letter-spacing: -4px;
  user-select: none;
}

/* ── cloud card decoration ── */
.hr-card--cloud {
  background: rgba(255,255,255,.065);
  border-color: rgba(34,211,238,.2);
}
.hr-card--cloud::after { background: linear-gradient(90deg, transparent, rgba(34,211,238,.3), rgba(99,102,241,.25), transparent); }
.hrc-bg--cloud {
  background: radial-gradient(ellipse 65% 55% at 105% 95%, rgba(34,211,238,.07) 0%, transparent 70%);
}
.hrc-topology {
  position: absolute; right: 4px; bottom: 4px; width: 120px; height: 82px;
}
.hrc-cloud-label {
  position: absolute; bottom: 8px; right: 10px;
  font-family: 'JetBrains Mono', monospace; font-size: .52rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(34,211,238,.25); font-weight: 700;
}

.hrc-head { display: flex; align-items: center; justify-content: space-between; }
.hrc-icons { display: flex; gap: 6px; align-items: center; }
.hrc-icons img { width: 22px; height: 22px; border-radius: 5px; object-fit: contain; display: block; }
.hrc-tag {
  font-family: 'JetBrains Mono', monospace; font-size: .56rem;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(99,102,241,.18); border: 1px solid rgba(99,102,241,.25);
  color: #a78bfa; border-radius: 6px; padding: 3px 8px;
}
.hrc-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem;
  color: #ffffff; letter-spacing: -.2px;
}
.hrc-desc { font-family: 'Inter', sans-serif; font-size: .78rem; color: var(--text-2); line-height: 1.55; }

/* ══════════════════════════════════
   LOGO STRIP
══════════════════════════════════ */
#techstrip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-s); padding: 20px 0; overflow: hidden;
  position: relative; z-index: 1; transition: all .5s;
}
.strip-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-3);
  margin-bottom: 16px;
}
.strip-track {
  display: flex; gap: 0; width: max-content;
  animation: stripScroll 30s linear infinite;
}
@keyframes stripScroll { to { transform: translateX(-50%); } }
.strip-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px; border-right: 1px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--text-3); white-space: nowrap; transition: color .5s;
}
.strip-item .si { font-size: 1.1rem; }

/* ══════════════════════════════════
   SECTION BASE
══════════════════════════════════ */
section { position: relative; z-index: 1; }
.s-inner { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.s-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--p1); margin-bottom: 16px; transition: color .5s;
}
.s-kicker::before {
  content: ''; width: 16px; height: 1px;
  background: linear-gradient(90deg, var(--p1), var(--p2));
}
.s-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -1.5px;
  color: var(--logo-c); margin-bottom: 16px; transition: color .5s;
}
.s-sub {
  font-family: 'Inter', sans-serif; font-size: .96rem; font-weight: 300;
  color: var(--text-2); max-width: 480px; line-height: 1.8;
}

/* ══════════════════════════════════
   PARTNER STRIP
══════════════════════════════════ */
.partner-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-s);
  padding: 0 48px;
  transition: background .5s, border-color .5s;
}
.ps-inner {
  max-width: 1200px; margin: 0 auto; padding: 24px 0;
  display: flex; align-items: center; gap: 32px;
}
.ps-label {
  font-family: 'JetBrains Mono', monospace; font-size: .59rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); white-space: nowrap;
}
.ps-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }
.ps-badges { display: flex; align-items: center; flex: 1; }
.ps-badge {
  display: flex; align-items: center; gap: 11px;
  padding: 0 28px; flex: 1; min-width: 0;
}
.ps-badge:first-child { padding-left: 0; }
.ps-sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.psb-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.ps-badge:hover .psb-icon { border-color: var(--border-s); background: var(--surface-h); }
.psb-icon img { width: 18px; height: 18px; }
.psb-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.psb-title {
  font-size: .8rem; font-weight: 600; color: var(--logo-c);
  white-space: nowrap; transition: color .5s;
}
.psb-sub {
  font-family: 'JetBrains Mono', monospace; font-size: .58rem;
  color: var(--text-3); letter-spacing: .04em; white-space: nowrap;
}
@media (max-width: 1024px) {
  .ps-badges { flex-wrap: wrap; gap: 16px; }
  .ps-badge { flex: 0 0 calc(50% - 8px); padding: 8px 0; }
  .ps-sep { display: none; }
}
@media (max-width: 768px) {
  .partner-strip { padding: 0 20px; }
  .ps-inner { gap: 16px; flex-wrap: wrap; padding: 20px 0; }
  .ps-label { display: none; }
  .ps-divider { display: none; }
  .ps-badge { flex: 0 0 calc(50% - 8px); }
}

/* ══════════════════════════════════
   SERVICES — BENTO GRID
══════════════════════════════════ */
#services { background: var(--bg); transition: background .5s; }
.bento-header { margin-bottom: 56px; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 16px;
}

/* Card base */
.bc {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, transform .3s, background .5s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.bc:hover { border-color: var(--border-s); transform: translateY(-2px); box-shadow: var(--shadow-card), var(--shadow-glow); }

/* card glow line on hover */
.bc::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow-c, var(--p1)), transparent);
  opacity: 0; transition: opacity .4s;
}
.bc:hover::before { opacity: 1; }
.glow-p1 { --glow-c: var(--p1); }
.glow-p2 { --glow-c: var(--p2); }
.glow-p3 { --glow-c: var(--p3); }
.glow-p4 { --glow-c: var(--p4); }

/* bento sizing */
.bc-1 { grid-column: span 7; }
.bc-2 { grid-column: span 5; }
.bc-3 { grid-column: span 4; }
.bc-4 { grid-column: span 4; }
.bc-5 { grid-column: span 4; }
.bc-6 { grid-column: span 6; }
.bc-7 { grid-column: span 6; }

.bc-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  transition: all .5s; flex-shrink: 0;
}
.bc-tag {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 14px;
  background: var(--t-bg, rgba(99,102,241,.08));
  color: var(--t-c, var(--p1));
  border: 1px solid var(--t-border, rgba(99,102,241,.2));
  align-self: flex-start;
}
.tag-p1 { --t-bg: rgba(99,102,241,.08); --t-c: var(--p1); --t-border: rgba(99,102,241,.2); }
.tag-p2 { --t-bg: rgba(34,211,238,.08); --t-c: var(--p2); --t-border: rgba(34,211,238,.2); }
.tag-p3 { --t-bg: rgba(16,185,129,.08); --t-c: var(--p3); --t-border: rgba(16,185,129,.2); }
.tag-p4 { --t-bg: rgba(167,139,250,.08); --t-c: var(--p4); --t-border: rgba(167,139,250,.2); }
.bc-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.15rem; letter-spacing: -.3px;
  color: var(--logo-c); margin-bottom: 10px; transition: color .5s;
}
.bc-desc {
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 300;
  color: var(--text-2); line-height: 1.78; flex: 1;
}

/* tech tags inside cards */
.bc-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.chip {
  font-family: 'JetBrains Mono', monospace; font-size: .62rem;
  letter-spacing: .05em; padding: 4px 10px; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-3); transition: all .5s;
}

/* service sub-lists inside bento cards */
.bc-list {
  list-style: none; margin-top: 16px; flex: 1;
  display: flex; flex-direction: column; gap: 0;
}
.bc-list li {
  font-size: .81rem; color: var(--text-2); line-height: 1.4;
  padding: 6px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 9px; transition: color .3s;
}
.bc-list li:last-child { border-bottom: none; }
.bc-list li::before {
  content: ''; display: block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--p1); flex-shrink: 0; transition: background .3s;
}
.bc:hover .bc-list li::before { background: var(--p2); }
.bc-list--2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; margin-top: 16px;
}
.bc-list--2col li { grid-column: auto; }
.bc-list-group { margin-top: 12px; }
.bc-list-group:first-child { margin-top: 16px; }
.bc-list-group-label {
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--p1);
  margin-bottom: 4px; opacity: .8;
}
@media (max-width: 768px) {
  .bc-list--2col { grid-template-columns: 1fr; }
}

/* featured card decorative element */
.bc-deco {
  position: absolute; right: -20px; bottom: -20px;
  width: 180px; height: 180px; border-radius: 50%;
  border: 1px solid var(--border); opacity: .5;
}
.bc-deco::after {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px dashed var(--border);
}

/* ══════════════════════════════════
   PROCESS / METHODOLOGY
══════════════════════════════════ */
#process { background: var(--bg-s); transition: background .5s; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; margin-top: 56px;
  transition: all .5s;
}
.process-step {
  background: var(--bg-s); padding: 40px 32px; position: relative;
  transition: background .3s;
}
.process-step:hover { background: var(--bg-t); }
.ps-num {
  font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: .7rem;
  letter-spacing: .12em; color: var(--p1); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px; transition: color .5s;
}
.ps-num::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ps-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.ps-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--logo-c); margin-bottom: 10px; letter-spacing: -.2px; transition: color .5s;
}
.ps-desc { font-family: 'Inter', sans-serif; font-size: .85rem; color: var(--text-2); line-height: 1.75; }

/* ══════════════════════════════════
   FEATURES / WHY
══════════════════════════════════ */
#features { background: var(--bg); transition: background .5s; }
.features-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 56px;
}
.feat-list { display: flex; flex-direction: column; gap: 0; }
.feat-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: border-color .5s;
}
.feat-item:first-child { padding-top: 0; }
.feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.feat-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all .5s;
}
.feat-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--logo-c); margin-bottom: 5px; transition: color .5s;
}
.feat-desc { font-family: 'Inter', sans-serif; font-size: .84rem; color: var(--text-2); line-height: 1.7; }

/* code window */
.code-window {
  background: var(--bg-t); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: all .5s;
}
.cw-bar {
  display: flex; align-items: center; gap: 0;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.cw-dots { display: flex; gap: 6px; margin-right: 16px; }
.cw-d { width: 10px; height: 10px; border-radius: 50%; }
.cw-d1 { background: #ff5f57; } .cw-d2 { background: #febc2e; } .cw-d3 { background: #28c840; }
.cw-tab {
  font-family: 'JetBrains Mono', monospace; font-size: .7rem;
  color: var(--text-3); padding: 4px 12px; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--border);
}
.cw-body {
  padding: 24px 28px;
  font-family: 'JetBrains Mono', monospace; font-size: .79rem; line-height: 2;
}
.cw-ln { color: var(--text-3); user-select: none; margin-right: 20px; font-size: .7rem; }
.k { color: var(--p4); } .s { color: var(--p2); }
.n { color: var(--p3); } .c { color: var(--text-3); }
.fn{ color: #60a5fa; } .o { color: #f472b6; }

/* ══════════════════════════════════
   STACK SECTION
══════════════════════════════════ */
#stack { background: var(--bg-s); transition: background .5s; }
.stack-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 48px;
}
.stack-cat {
  grid-column: 1 / -1;
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-3);
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  transition: color .5s, border-color .5s;
}
.stack-subcat {
  grid-column: 1 / -1;
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--p1);
  padding: 6px 0 4px;
  display: flex; align-items: center; gap: 8px;
  transition: color .5s;
}
.stack-subcat::before {
  content: ''; display: inline-block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--p1);
  flex-shrink: 0; transition: background .5s;
}
.stack-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: all .3s; cursor: default;
}
.stack-card:hover { border-color: var(--border-s); background: var(--surface-h); transform: translateY(-2px); }
.sc-icon { font-size: 1.8rem; }
.sc-icon-img {
  width: 36px; height: 36px; object-fit: contain;
  display: block; flex-shrink: 0;
}
.sc-name {
  font-family: 'Inter', sans-serif; font-size: .76rem; font-weight: 500;
  color: var(--text-2); text-align: center;
}

/* ══════════════════════════════════
   FOUNDING / CTA BANNER
══════════════════════════════════ */
#cta-banner {
  background: var(--bg-s); position: relative; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: background .5s, border-color .5s;
}
#cta-banner::before {
  content: ''; display: block; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--p1) 40%, var(--p2) 60%, transparent 95%);
  opacity: .4;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.co1 { width: 500px; height: 500px; background: rgba(99,102,241,.07); top: -150px; left: -120px; }
.co2 { width: 400px; height: 400px; background: rgba(34,211,238,.05); bottom: -120px; right: -80px; }

.cta-wrap {
  max-width: 1200px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start; position: relative; z-index: 1;
}

/* ── left ── */
.cta-left { display: flex; flex-direction: column; align-items: flex-start; }
.cta-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace; font-size: .66rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--p3);
  transition: all .5s;
}
.cta-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--p3); animation: bdot 2s infinite; flex-shrink: 0; }
.cta-h {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 3.2vw, 3.6rem); letter-spacing: -2px; line-height: 1.05;
  color: var(--logo-c); margin-bottom: 20px; transition: color .5s;
}
.cta-p {
  font-family: 'Inter', sans-serif; font-size: .96rem; font-weight: 300;
  color: var(--text-2); max-width: 440px; margin: 0 0 32px; line-height: 1.78;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* trust mini-strip */
.cta-trust {
  display: flex; align-items: center; gap: 24px;
  padding-top: 28px; border-top: 1px solid var(--border);
  width: 100%;
}
.ct-item { display: flex; flex-direction: column; gap: 3px; }
.ct-val {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  font-size: 1.45rem; color: var(--logo-c); letter-spacing: -.5px;
  transition: color .5s;
}
.ct-val span { color: var(--p1); }
.ct-label { font-family: 'Inter', sans-serif; font-size: .7rem; color: var(--text-3); transition: color .5s; }
.ct-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; transition: background .5s; }

/* ── right: process timeline ── */
.cta-right { display: flex; flex-direction: column; }
.cta-proc-label {
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-3);
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 8px; transition: color .5s, border-color .5s;
}
.cta-steps { list-style: none; display: flex; flex-direction: column; }
.cs-step {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0; position: relative;
}
.cs-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.cs-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .04em; color: var(--p2); transition: all .5s;
}
.cs-step:hover .cs-num { border-color: var(--p1); color: var(--p1); background: rgba(99,102,241,.08); }
.cs-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: .92rem; color: var(--logo-c); display: block; margin-bottom: 5px;
  transition: color .5s;
}
.cs-desc {
  font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 300;
  color: var(--text-2); line-height: 1.6; margin: 0; transition: color .5s;
}

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
#contact { background: var(--bg-s); transition: background .5s; }
.contact-link { text-decoration: none; color: inherit; }

/* bento grid */
.contact-bento {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 56px; align-items: stretch;
}

/* CTA panel (left) */
.cb-cta {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 40px 44px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: border-color .3s, background .5s, box-shadow .3s;
}
.cb-cta::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--p1), var(--p2), transparent);
}
.cb-cta::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 280px; height: 280px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(139,92,246,.1) 0%, transparent 70%);
}
.cp-kicker {
  font-family: 'JetBrains Mono', monospace; font-size: .64rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--p2); margin-bottom: 12px;
}
.cp-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.55rem; line-height: 1.2;
  font-weight: 700; letter-spacing: -.5px; color: var(--logo-c); margin-bottom: 0;
}
.cb-copy {
  font-family: 'Inter', sans-serif; font-size: .93rem; font-weight: 300;
  color: var(--text-2); line-height: 1.75; margin: 14px 0 0; flex-grow: 1;
}
.cb-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 24px; }

/* promise strip */
.cb-promises {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; margin-top: auto;
}
.cb-promise {
  background: var(--surface); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 5px;
}
.cbp-label {
  font-family: 'JetBrains Mono', monospace; font-size: .58rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--p2); font-weight: 400;
}
.cbp-val {
  font-family: 'Inter', sans-serif; font-size: .8rem;
  color: var(--text-2); line-height: 1.45;
}

/* info cards (right 2x2 grid) */
.cb-info {
  font-style: normal; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ci-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 22px 20px;
  display: flex; flex-direction: column; gap: 7px;
  box-shadow: var(--shadow-card);
  transition: border-color .25s, transform .25s, box-shadow .25s, background .5s;
}
.ci-link { text-decoration: none; color: inherit; cursor: pointer; }
.ci-link:hover {
  border-color: var(--p1); transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.ci-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--p1); flex-shrink: 0; margin-bottom: 4px;
  transition: background .5s, border-color .3s;
}
.ci-icon svg { width: 17px; height: 17px; }
.ci-label {
  font-family: 'JetBrains Mono', monospace; font-size: .6rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-3);
}
.ci-val {
  font-family: 'Inter', sans-serif; font-size: .88rem;
  color: var(--text-2); line-height: 1.55; transition: color .5s;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--bg-s); border-top: 1px solid var(--border);
  transition: all .5s;
}
.footer-top {
  max-width: 1200px; margin: 0 auto; padding: 56px 48px 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.ft-brand p {
  font-family: 'Inter', sans-serif; font-size: .84rem; color: var(--text-3);
  margin-top: 14px; line-height: 1.7; max-width: 240px;
}
.ft-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .82rem;
  color: var(--text-2); letter-spacing: -.1px; margin-bottom: 16px;
}
.ft-col a {
  display: block; font-family: 'Inter', sans-serif; font-size: .83rem;
  color: var(--text-3); text-decoration: none; margin-bottom: 10px;
  transition: color .2s;
}
.ft-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 20px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .5s;
}
.fb-copy {
  font-family: 'JetBrains Mono', monospace; font-size: .65rem;
  letter-spacing: .06em; color: var(--text-3);
}
.fb-links { display: flex; gap: 20px; }
.fb-links a {
  font-family: 'Inter', sans-serif; font-size: .78rem;
  color: var(--text-3); text-decoration: none; transition: color .2s;
}
.fb-links a:hover { color: var(--text-2); }

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.shown { opacity: 1; transform: none; }

/* ══════════════════════════════════
   REDUCED MOTION
══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .strip-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1060px) {
  .hero-right { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { align-items: center; text-align: center; }
  .hero-h { align-items: center; }
  .hero-sub { margin: 0 auto 36px; max-width: 560px; }
  .hero-btns { justify-content: center; }
  .hero-metrics { max-width: 560px; margin: 0 auto; }
}
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(6,1fr); }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: span 6; }
  .bc-3,.bc-4,.bc-5 { grid-column: span 3; }
  .stack-grid { grid-template-columns: repeat(4,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .s-inner { padding: 68px 20px; }
  #hero { padding: 96px 20px 60px; }
  .hero-h { letter-spacing: -1.5px; font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .bento { grid-template-columns: 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .features-layout { grid-template-columns: 1fr; gap: 44px; }
  .stack-grid { grid-template-columns: repeat(3,1fr); }
  .contact-bento { grid-template-columns: 1fr; gap: 16px; }
  .cb-cta { padding: 30px 28px; }
  .cb-info { grid-template-columns: 1fr 1fr; }
  .hero-metrics { flex-wrap: wrap; }
  .hm { padding: 14px 20px; }
  .cta-wrap { grid-template-columns: 1fr; gap: 48px; padding: 56px 20px; }
  .cta-right { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 40px 20px 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; }
  .process-grid { grid-template-columns: 1fr; }
}
