/* =============================================
   CSS CUSTOM PROPERTIES
============================================== */
:root {
  --bg-primary:    #0D1117;
  --bg-secondary:  #161B22;
  --bg-tertiary:   #1C2330;
  --text-primary:  #F0F6FC;
  --text-muted:    #8B949E;
  --accent-cyan:   #00F0FF;
  --accent-pink:   #FF007F;
  --border-subtle: #30363D;

  --glow-cyan:     0 0 20px rgba(0,240,255,0.35), 0 0 60px rgba(0,240,255,0.12);
  --glow-pink:     0 0 20px rgba(255,0,127,0.35), 0 0 60px rgba(255,0,127,0.12);
  --glow-cyan-sm:  0 0 10px rgba(0,240,255,0.5);
  --glow-pink-sm:  0 0 10px rgba(255,0,127,0.5);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   RESET & BASE
============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* =============================================
   NOISE TEXTURE OVERLAY
============================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' 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: 9999;
  opacity: 0.4;
}

/* =============================================
   UTILITY CLASSES
============================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cyan { background: var(--accent-cyan); color: #000; }
.btn-cyan:hover { box-shadow: var(--glow-cyan); transform: translateY(-2px); }
.btn-pink-ghost { background: transparent; color: var(--accent-pink); border: 1.5px solid var(--accent-pink); }
.btn-pink-ghost:hover { background: var(--accent-pink); color: #fff; box-shadow: var(--glow-pink); transform: translateY(-2px); }

/* =============================================
   NAVIGATION
============================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,17,23,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-shadow: var(--glow-cyan-sm);
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent-cyan); }
.nav-logo .logo-image {
  animation: pulse 0.5s infinite ease-in-out;
  max-height: 60px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--accent-cyan);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--accent-pink);
  border: 1.5px solid var(--accent-pink);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent-pink); color: #fff; box-shadow: var(--glow-pink); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--accent-cyan); }

/* =============================================
   HERO SECTION
============================================== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  pointer-events: none;
}
.hero-gif-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-gif-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-gif-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,17,23,0.68) 0%, rgba(13,17,23,0.58) 50%, rgba(13,17,23,0.82) 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.hero-blob-1 { width: 500px; height: 500px; background: rgba(0,240,255,0.06); top: -100px; left: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: rgba(255,0,127,0.06); bottom: -80px; right: 200px; }
.hero-left { position: relative; z-index: 2; }
.hero-right { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--accent-cyan);
  border-radius: 4px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  background: rgba(0,240,255,0.05);
  animation: pulse-border 3s ease-in-out infinite;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: var(--glow-cyan-sm);
}
@keyframes pulse-border {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,240,255,0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(0,240,255,0); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.85));
}
.hero-sub { font-size: 16px; color: var(--text-muted); max-width: 460px; margin-bottom: 40px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.wireframe-bg { position: absolute; width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.wireframe-bg svg { width: 100%; height: 100%; animation: rotate3d 20s linear infinite; opacity: 0.25; }
@keyframes rotate3d {
  from { transform: rotateY(0deg) rotateX(10deg); }
  to   { transform: rotateY(360deg) rotateX(10deg); }
}
.ide-window {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(22,27,34,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.ide-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(13,17,23,0.2);
  border-bottom: 1px solid rgba(0,240,255,0.1);
}
.ide-dot { width: 10px; height: 10px; border-radius: 50%; }
.ide-dot-red   { background: #FF5F57; }
.ide-dot-amber { background: #FFBD2E; }
.ide-dot-green { background: #28CA41; }
.ide-titlebar-text { margin-left: 12px; font-family: 'Courier New', monospace; font-size: 12px; color: var(--text-muted); }
.ide-body { padding: 20px 18px; }
.ide-line { font-family: 'Courier New', monospace; font-size: 12.5px; line-height: 1.9; white-space: nowrap; }
.ide-num   { color: #3D444D; margin-right: 16px; user-select: none; }
.ide-kw    { color: #FF7B72; }
.ide-fn    { color: #D2A8FF; }
.ide-str   { color: #A5D6FF; }
.ide-const { color: #79C0FF; }
.ide-cyan  { color: var(--accent-cyan); }
.ide-pink  { color: var(--accent-pink); }
.ide-muted { color: #8B949E; }
.ide-stat {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: var(--glow-cyan);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ide-stat-val { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--accent-cyan); }
.ide-stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.ide-badge-float {
  position: absolute;
  top: -22px; left: -22px;
  z-index: 10;
  background: rgba(255,0,127,0.12);
  border: 1px solid var(--accent-pink);
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: var(--glow-pink);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: 0.05em;
}

/* =============================================
   SERVICES SECTION
============================================== */
.services { padding: 100px 0; position: relative; }
.services-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
  pointer-events: none;
}
.service-card.cyan::before  { background: radial-gradient(ellipse at 0% 0%, rgba(0,240,255,0.07) 0%, transparent 70%); }
.service-card.pink::before  { background: radial-gradient(ellipse at 0% 0%, rgba(255,0,127,0.07) 0%, transparent 70%); }
.service-card.gold::before  { background: radial-gradient(ellipse at 0% 0%, rgba(255,200,0,0.07) 0%, transparent 70%); }
.service-card.green::before { background: radial-gradient(ellipse at 0% 0%, rgba(0,230,100,0.07) 0%, transparent 70%); }
.service-card.purple::before{ background: radial-gradient(ellipse at 0% 0%, rgba(160,80,255,0.07) 0%, transparent 70%); }
.service-card.blue::before  { background: radial-gradient(ellipse at 0% 0%, rgba(68,136,255,0.07) 0%, transparent 70%); }
.service-card.cyan:hover   { border-color: var(--accent-cyan); box-shadow: var(--glow-cyan); transform: translateY(-4px); }
.service-card.pink:hover   { border-color: var(--accent-pink); box-shadow: var(--glow-pink); transform: translateY(-4px); }
.service-card.gold:hover   { border-color: #FFC800; box-shadow: 0 0 20px rgba(255,200,0,0.35), 0 0 60px rgba(255,200,0,0.12); transform: translateY(-4px); }
.service-card.green:hover  { border-color: #00E664; box-shadow: 0 0 20px rgba(0,230,100,0.35), 0 0 60px rgba(0,230,100,0.12); transform: translateY(-4px); }
.service-card.purple:hover { border-color: #A050FF; box-shadow: 0 0 20px rgba(160,80,255,0.35), 0 0 60px rgba(160,80,255,0.12); transform: translateY(-4px); }
.service-card.blue:hover   { border-color: #4488FF; box-shadow: 0 0 20px rgba(68,136,255,0.35), 0 0 60px rgba(68,136,255,0.12); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.service-icon.cyan-icon   { background: rgba(0,240,255,0.1); }
.service-icon.pink-icon   { background: rgba(255,0,127,0.1); }
.service-icon.gold-icon   { background: rgba(255,200,0,0.1); }
.service-icon.green-icon  { background: rgba(0,230,100,0.1); }
.service-icon.purple-icon { background: rgba(160,80,255,0.1); }
.service-icon.blue-icon   { background: rgba(68,136,255,0.1); }
.service-tag { font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; }
.cyan-tag   { color: var(--accent-cyan); }
.pink-tag   { color: var(--accent-pink); }
.gold-tag   { color: #FFC800; }
.green-tag  { color: #00E664; }
.purple-tag { color: #A050FF; }
.blue-tag   { color: #4488FF; }
.service-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.service-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
.service-list { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 12.5px; color: var(--text-muted); padding-left: 16px; position: relative; }
.service-list li::before { content: '→'; position: absolute; left: 0; font-size: 11px; }
.service-card.cyan   .service-list li::before { color: var(--accent-cyan); }
.service-card.pink   .service-list li::before { color: var(--accent-pink); }
.service-card.gold   .service-list li::before { color: #FFC800; }
.service-card.green  .service-list li::before { color: #00E664; }
.service-card.purple .service-list li::before { color: #A050FF; }
.service-card.blue   .service-list li::before { color: #4488FF; }
.service-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-learn-more:hover { gap: 10px; }
.service-card.cyan   .service-learn-more { color: var(--accent-cyan); }
.service-card.pink   .service-learn-more { color: var(--accent-pink); }
.service-card.gold   .service-learn-more { color: #FFC800; }
.service-card.green  .service-learn-more { color: #00E664; }
.service-card.purple .service-learn-more { color: #A050FF; }
.service-card.blue   .service-learn-more { color: #4488FF; }

/* =============================================
   PORTFOLIO / BENTO SECTION
============================================== */
.portfolio { padding: 100px 0; background: var(--bg-secondary); position: relative; }
.portfolio::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent); }
.portfolio::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-pink), transparent); }
.portfolio-header { text-align: center; margin-bottom: 56px; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 16px; }
.bento-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  min-height: 220px;
  transition: var(--transition);
}
.bento-tile:hover { transform: translateY(-3px); }
.bento-tile:nth-child(1) { grid-column: span 7; }
.bento-tile:nth-child(2) { grid-column: span 5; }
.bento-tile:nth-child(3) { grid-column: span 4; }
.bento-tile:nth-child(4) { grid-column: span 4; }
.bento-tile:nth-child(5) { grid-column: span 4; }
.bento-bg { position: absolute; inset: 0; overflow: hidden; }
.bento-pattern-1 { background: linear-gradient(135deg, #0a1628 0%, #0d2040 100%); }
.bento-pattern-1::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 2px solid rgba(0,240,255,0.2); top: -60px; right: -60px; box-shadow: 0 0 0 60px rgba(0,240,255,0.04), 0 0 0 120px rgba(0,240,255,0.02); }
.bento-pattern-2 { background: linear-gradient(135deg, #1a0a20 0%, #2a0a1a 100%); }
.bento-pattern-2::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,0,127,0.05) 20px, rgba(255,0,127,0.05) 22px); }
.bento-pattern-3 { background: linear-gradient(135deg, #0a1a0a 0%, #0d2820 100%); }
.bento-pattern-3::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 200px; height: 200px; border: 1.5px solid rgba(0,240,255,0.15); transform: rotate(30deg); }
.bento-pattern-4 { background: linear-gradient(135deg, #200a0a 0%, #281020 100%); }
.bento-pattern-5 { background: linear-gradient(135deg, #0a1020 0%, #101a30 100%); }
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.bento-tile:hover .bento-overlay { opacity: 1; }
.bento-cta { font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: var(--accent-cyan); display: flex; align-items: center; gap: 8px; transition: gap var(--transition); }
.bento-tile:hover .bento-cta { gap: 14px; }
.bento-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, transparent 100%); }
.bento-cat { font-family: var(--font-head); font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; }
.bento-cat.c { color: var(--accent-cyan); }
.bento-cat.p { color: var(--accent-pink); }
.bento-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; }
.bento-deco { position: absolute; top: 20px; right: 20px; }

/* =============================================
   STATS STRIP
============================================== */
.stats-strip { padding: 60px 0; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; padding: 20px; }
.stat-value { font-family: var(--font-head); font-size: 42px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* =============================================
   LEAD CAPTURE / CTA STRIP
============================================== */
.lead-section { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.lead-section::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(0,240,255,0.07); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.lead-section::after  { content: ''; position: absolute; width: 900px; height: 900px; border-radius: 50%; border: 1px solid rgba(0,240,255,0.04); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.lead-inner { position: relative; z-index: 2; }
.lead-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 50px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.lead-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 40px; }
.lead-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--accent-cyan); box-shadow: var(--glow-cyan); }
.lead-form input { flex: 1; padding: 16px 20px; background: rgba(0,240,255,0.03); border: none; outline: none; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; }
.lead-form input::placeholder { color: var(--text-muted); }
.lead-form button { padding: 16px 28px; background: var(--accent-cyan); border: none; color: #000; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.lead-form button:hover { background: #33f5ff; }
.lead-privacy { margin-top: 16px; font-size: 12px; color: var(--text-muted); }
.lead-form-full { display: flex; flex-direction: column; max-width: 580px; margin: 0 auto; border: 1.5px solid var(--accent-cyan); border-radius: 12px; overflow: hidden; box-shadow: var(--glow-cyan); background: rgba(0,240,255,0.02); gap: 0; }
.lead-row { display: flex; }
.lead-row input { flex: 1; padding: 16px 20px; background: transparent; border: none; border-bottom: 1px solid rgba(0,240,255,0.12); border-right: 1px solid rgba(0,240,255,0.12); outline: none; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; }
.lead-row input:last-child { border-right: none; }
.lead-row input[type="tel"] { width: 100%; border-right: none; }
.lead-row input::placeholder { color: var(--text-muted); }
.lead-form-full textarea { padding: 16px 20px; background: transparent; border: none; border-bottom: none; outline: none; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; resize: none; line-height: 1.6; margin: 0; }
.lead-form-full textarea::placeholder { color: var(--text-muted); }
.lead-form-full button { padding: 16px 28px; background: var(--accent-cyan); border: none; color: #000; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.lead-form-full button:hover { background: #33f5ff; }

/* =============================================
   FOOTER
============================================== */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { font-family: var(--font-head); font-size: 20px; font-weight: 900; margin-bottom: 14px; text-shadow: var(--glow-cyan-sm); }
.footer-logo span { color: var(--accent-cyan); }
.footer-brand p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.social-link:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); box-shadow: var(--glow-cyan-sm); }
.footer-col h4 { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-cyan); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 12.5px; color: var(--text-muted); }
.footer-bottom span { color: var(--accent-pink); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12.5px; color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-primary); }

/* =============================================
   SCROLL REVEAL
============================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   INNER PAGE STYLES
============================================== */
.inner-hero {
  padding: 120px 0 100px;
  min-height: 440px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.5;
}
/* GIF background for inner-hero */
.inner-hero-gif-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.inner-hero-gif-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.inner-hero-gif-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,17,23,0.75) 0%,
    rgba(13,17,23,0.60) 50%,
    rgba(13,17,23,0.90) 100%
  );
}
.inner-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.inner-hero-icon { font-size: 56px; margin-bottom: 20px; }
.inner-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.8));
}
.inner-hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Mid-page GIF showcase (service pages) */
.service-gif-section {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.service-gif-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-gif-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,17,23,0.92) 0%,
    rgba(13,17,23,0.55) 50%,
    rgba(13,17,23,0.30) 100%
  );
  display: flex;
  align-items: center;
}
.service-gif-section-text {
  padding: 0 48px;
  max-width: 500px;
}
.service-gif-section-text h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service-gif-section-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Portfolio GIF preview frame */
.project-preview {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.project-gif-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,240,255,0.15);
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,240,255,0.05);
}
.project-gif-frame img {
  width: 100%;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
.project-gif-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.5) 0%, transparent 40%);
  pointer-events: none;
}
.project-gif-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  border: 1px solid rgba(0,240,255,0.3);
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(0,240,255,0.05);
}
.project-gif-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0,240,255,0.6);
}

@media (max-width: 768px) {
  .inner-hero { padding: 80px 0 70px; min-height: 360px; }
  .service-gif-section { height: 220px; }
  .service-gif-section-text { padding: 0 24px; }
  .service-gif-section-overlay {
    background: linear-gradient(to bottom, rgba(13,17,23,0.85) 0%, rgba(13,17,23,0.70) 100%);
    align-items: flex-end;
    padding-bottom: 24px;
  }
}

/* Features Grid */
.features-section { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--accent-cyan); transform: translateY(-3px); box-shadow: var(--glow-cyan); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Process Section */
.process-section { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.process-step { text-align: center; padding: 24px; }
.process-num { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--accent-cyan); opacity: 0.25; line-height: 1; margin-bottom: 16px; }
.process-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.process-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Page CTA */
.page-cta { padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-cta::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(0,240,255,0.06); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.page-cta-inner { position: relative; z-index: 2; }
.page-cta-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 42px); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 16px; }
.page-cta-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; }

/* Portfolio detail page */
.project-overview { padding: 80px 0; }
.project-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.project-meta-item { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: var(--radius); padding: 20px 24px; }
.project-meta-label { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.project-meta-value { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.project-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.project-section-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 16px; color: var(--accent-cyan); }
.project-section-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tech-tag { padding: 6px 14px; background: rgba(0,240,255,0.06); border: 1px solid rgba(0,240,255,0.2); border-radius: 6px; font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--accent-cyan); letter-spacing: 0.05em; }
.results-section { padding: 0 0 80px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.result-value { font-family: var(--font-head); font-size: 36px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 8px; }
.result-label { font-size: 13px; color: var(--text-muted); }

/* =============================================
   FOUNDER / ABOUT SECTION (homepage + about page)
============================================== */
.founder-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.founder-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,240,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.founder-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
}
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.founder-split-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.founder-split-right {
  border-left: 1px solid var(--border-subtle);
  padding-left: 64px;
}
@media (max-width: 768px) {
  .founder-split { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .founder-split-right { border-left: none; border-top: 1px solid var(--border-subtle); padding-left: 0; padding-top: 36px; }
}
.founder-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,240,255,0.15);
  box-shadow: 0 0 48px rgba(0,240,255,0.08);
}
.founder-photo-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13,17,23,0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 10px;
  padding: 14px 18px;
}
.founder-photo-badge .badge-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 3px;
}
.founder-photo-badge .badge-role {
  font-size: 12px;
  color: var(--accent-cyan);
  font-family: var(--font-body);
}
.founder-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.founder-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}
.founder-bio-short {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.founder-tag {
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  border: 1px solid rgba(0,240,255,0.25);
  background: rgba(0,240,255,0.05);
  padding: 6px 14px;
  border-radius: 4px;
}
.founder-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}

/* About page — full bio */
.about-intro {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: start;
  padding: 80px 0 60px;
}
.about-photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,240,255,0.15);
  box-shadow: 0 0 48px rgba(0,240,255,0.08);
  width: 180px;
  min-width: 180px;
  flex-shrink: 0;
}
.about-photo-frame img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-bio-text { display: flex; flex-direction: column; gap: 20px; }
.about-bio-text h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.about-bio-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}
.about-highlight {
  border-left: 3px solid var(--accent-cyan);
  padding: 16px 20px;
  background: rgba(0,240,255,0.04);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-primary) !important;
  font-size: 16px !important;
  font-weight: 500;
}
.about-values-section { padding: 72px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-subtle); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: var(--transition);
}
.value-card:hover { border-color: rgba(0,240,255,0.3); transform: translateY(-3px); }
.value-icon { font-size: 30px; margin-bottom: 14px; }
.value-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.about-network-section { padding: 80px 0; }
.about-network-inner {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}
.about-network-inner h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.about-network-inner > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 36px;
}
.network-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.network-role {
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.02);
  padding: 8px 18px;
  border-radius: 4px;
  transition: var(--transition);
}
.network-role:hover { color: var(--accent-cyan); border-color: rgba(0,240,255,0.25); }

@media (max-width: 900px) {
  .founder-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-intro { flex-direction: column; gap: 24px; }
  .about-photo-frame { width: 140px; min-width: 140px; }
  .about-photo-frame img { width: 140px; height: 170px; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-network-inner { padding: 36px 24px; }
}
@media (max-width: 600px) {
  .about-values-grid { grid-template-columns: 1fr; }
  .founder-actions { flex-direction: column; align-items: flex-start; }
}

/* Privacy Policy */
.policy-content { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.policy-content h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin: 48px 0 16px; color: var(--accent-cyan); }
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.policy-last-updated { font-size: 13px; color: var(--text-muted); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border-subtle); }

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .bento-tile:nth-child(1) { grid-column: span 12; min-height: 280px; }
  .bento-tile:nth-child(2) { grid-column: span 12; }
  .bento-tile:nth-child(3), .bento-tile:nth-child(4), .bento-tile:nth-child(5) { grid-column: span 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .project-body { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 32px 16px 48px; gap: 32px; min-height: auto; }
  .hero-left { padding: 0 !important; }
  .hero-right { order: -1; padding: 0 !important; }
  .hero-heading { font-size: 32px; }
  .hero-sub { font-size: 14px; max-width: 100%; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .ide-window { max-width: 100%; }
  .ide-stat { bottom: -12px; right: 8px; }
  .ide-badge-float { top: -18px; left: 0; z-index: 10; font-size: 10px; padding: 6px 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .bento-tile:nth-child(1), .bento-tile:nth-child(2), .bento-tile:nth-child(3), .bento-tile:nth-child(4), .bento-tile:nth-child(5) { grid-column: span 12; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .lead-form { flex-direction: column; border-radius: 10px; }
  .lead-form input { border-radius: 8px 8px 0 0; }
  .lead-form button { border-radius: 0 0 8px 8px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .project-meta { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .lead-row { flex-direction: column; }
  .lead-row input { border-right: none; border-bottom: 1px solid rgba(0,240,255,0.12); }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 32px; }
  .section-title { font-size: 26px; }
  .process-steps { grid-template-columns: 1fr; }
}
