:root {
  --navy:     #060d1a;
  --navy2:    #0a1628;
  --blue:     #0d2545;
  --teal:     #0d7a8a;
  --cyan:     #00c2d4;
  --cyan2:    #00e5f5;
  --white:    #f0f4ff;
  --gray:     #6b7a99;
  --lgray:    #1a2540;
  --accent:   #ff6b35;
  --purple:   #7c4dff;
  --gold:     #ffb800;
  --border:   rgba(0,194,212,0.15);
  --glow:     0 0 40px rgba(0,194,212,0.12);

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}

/* ── GRID LINES BG ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,194,212,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,212,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(6,13,26,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span { color: var(--white); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }

.nav-badge {
  background: rgba(0,194,212,0.1);
  border: 1px solid var(--border);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  letter-spacing: 0.06em;
}

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,194,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,77,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--cyan);
}

.hero-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hero-name .accent { color: var(--cyan); }

.hero-title {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.06em;
  margin-bottom: 1.8rem;
}
.hero-title strong { color: var(--accent); font-weight: 500; }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(240,244,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.ai-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,77,255,0.12);
  border: 1px solid rgba(124,77,255,0.3);
  color: #c4a8ff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}
.ai-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: 0.3rem;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--cyan2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,194,212,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.8rem;
  border-radius: 0.3rem;
  text-decoration: none;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

/* Hero right — stats card */
.hero-stats-card {
  background: rgba(13,37,69,0.6);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
}

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }

.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ptag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.25rem;
  letter-spacing: 0.06em;
  border: 1px solid;
}
.ptag.flutter  { color: #54c5f8; border-color: rgba(84,197,248,0.3); background: rgba(84,197,248,0.06); }
.ptag.rn       { color: #61dafb; border-color: rgba(97,218,251,0.3); background: rgba(97,218,251,0.06); }
.ptag.ios      { color: #c0c0c0; border-color: rgba(192,192,192,0.3); background: rgba(192,192,192,0.06); }
.ptag.android  { color: #78c257; border-color: rgba(120,194,87,0.3); background: rgba(120,194,87,0.06); }

/* ── SECTION COMMON ── */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--cyan); }

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

/* ── AI TOOLS ── */
#ai-tools {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--navy) 0%, #080f20 50%, var(--navy) 100%);
}

.ai-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.ai-desc {
  font-size: 1rem;
  color: rgba(240,244,255,0.6);
  line-height: 1.8;
}

.gold-banner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,184,0,0.08);
  border: 1px solid rgba(255,184,0,0.25);
  border-radius: 0.5rem;
  padding: 1rem 1.4rem;
  margin-bottom: 3rem;
}
.gold-banner .icon { font-size: 1.2rem; display: inline-flex; }
.gold-banner .icon svg { width: 1.3rem; height: 1.3rem; color: var(--gold); }
.gold-banner p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.tool-card {
  background: rgba(10,22,40,0.8);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-color, var(--cyan));
  border-radius: 0.75rem 0.75rem 0 0;
}
.tool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,194,212,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), var(--glow);
}

.tool-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.tool-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.tool-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.55rem;
  border-radius: 2rem;
  background: rgba(255,184,0,0.15);
  color: var(--gold);
  border: 1px solid rgba(255,184,0,0.3);
  white-space: nowrap;
}

.tool-by {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.tool-desc {
  font-size: 0.88rem;
  color: rgba(240,244,255,0.55);
  line-height: 1.65;
}

/* ── APPS PORTFOLIO ── */
#apps { padding: 7rem 0; }

.apps-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.apps-header-desc {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 280px;
  text-align: right;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.app-card {
  background: var(--lgray);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,194,212,0.35);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.app-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.app-header.pawpular { background: rgba(13,122,138,0.15); }
.app-header.disport { background: rgba(26,58,107,0.4); }
.app-header.yourfish { background: rgba(15,92,107,0.3); }
.app-header.theplatform { background: rgba(74,35,90,0.3); }
.app-header.jobwish { background: rgba(26,107,58,0.3); }

.app-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.app-desc-short { font-size: 0.85rem; color: var(--gray); }

.app-platform-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  border-radius: 0.25rem;
  border: 1px solid;
  white-space: nowrap;
  flex-shrink: 0;
}

.app-platform-badge.flutter {
  color: #54c5f8;
  border-color: rgba(84,197,248,0.3);
  background: rgba(84,197,248,0.06);
}
.app-platform-badge.rn {
  color: #61dafb;
  border-color: rgba(97,218,251,0.3);
  background: rgba(97,218,251,0.06);
}

.app-body { padding: 1.2rem 1.5rem; flex: 1; }

.app-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.app-meta-item { display: flex; flex-direction: column; }
.meta-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cyan);
}
.meta-key {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-url {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-decoration: none;
  transition: color 0.2s;
}
.app-url:hover { color: var(--cyan); }

/* ── TECH STACK ── */
#stack { padding: 7rem 0; background: rgba(8,15,32,0.8); }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.stack-card {
  border-radius: 0.75rem;
  padding: 1.8rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.stack-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--card-accent);
  border-radius: 0.75rem 0 0 0.75rem;
}
.stack-card:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }

.stack-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--card-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  border: 1px solid;
  border-color: var(--card-accent);
  border-radius: 0.2rem;
  background: rgba(255,255,255,0.03);
}

.stack-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.stack-desc { font-size: 0.9rem; color: rgba(240,244,255,0.55); line-height: 1.7; }

/* ── GITHUB ACTIVITY ── */
#github-activity {
  padding: 7rem 0;
  background: rgba(8,15,32,0.4);
}

.github-card {
  background: rgba(13,37,69,0.3);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--glow);
}

.github-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.github-stats {
  display: flex;
  gap: 1rem;
}

.stat-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: rgba(0, 194, 212, 0.1);
  color: var(--cyan);
  border: 1px solid var(--border);
}

.github-desc {
  font-size: 1rem;
  color: rgba(240, 244, 255, 0.65);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 2rem;
}

.github-image-container {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d1117; /* GitHub dark theme background */
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.github-image-container:hover {
  border-color: rgba(0, 194, 212, 0.35);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.github-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

/* ── WHY US ── */
#why { padding: 7rem 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(13,37,69,0.4);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.8rem;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(13,37,69,0.7);
  border-color: rgba(0,194,212,0.3);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  color: var(--cyan);
  background: rgba(0,194,212,0.08);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  padding: 0.55rem;
}
.why-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.why-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ── PROCESS ── */
#process { padding: 7rem 0; background: rgba(8,15,32,0.8); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  left: 2.2rem;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan) 0%, transparent 100%);
  opacity: 0.2;
}

.process-step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(0,194,212,0.06);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }

.step-num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--cyan);
  background: rgba(0,194,212,0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.process-step:first-child .step-num {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

.step-content {}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.step-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.65; margin-bottom: 0.5rem; }
.step-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #c4a8ff;
  background: rgba(124,77,255,0.1);
  border: 1px solid rgba(124,77,255,0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  letter-spacing: 0.04em;
}
.step-ai-ico {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

/* ── NUMBERS ── */
#numbers {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(13,122,138,0.12) 0%, rgba(124,77,255,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.num-item {}
.big-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.num-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CTA ── */
#cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(240,244,255,0.55);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-checks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(240,244,255,0.75);
}
.cta-check::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ── FOOTER ── */
footer {
  padding: 2rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats-card { display: none; }
  .ai-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .apps-grid { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .apps-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .apps-header-desc { text-align: left; }
}

@media (max-width: 768px) {
  .github-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .github-stats {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .tools-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  nav .nav-links { display: none; }
}

/* ── ADDITIONAL REFACTORINGS ── */
.section-subtitle {
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 0.95rem;
  max-width: 500px;
}

#cta .section-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-cta {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  display: inline-flex;
}

footer .footer-name {
  color: var(--cyan);
  font-weight: 500;
}
