/* ═══════════════════════════════════════════════════
   BUDGET WEBSITE DEVELOPER — style.css
   Design: Editorial Dark · Fraunces + DM Sans
   Accent: Electric Lime #c8f135
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --ink:       #07090c;
  --ink2:      #0d1117;
  --ink3:      #141b24;
  --surface:   #1a2332;
  --line:      rgba(255,255,255,.07);
  --lime:      #c8f135;
  --lime-d:    #a8cb20;
  --lime-glow: rgba(200,241,53,.18);
  --cyan:      #34d6f0;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,.52);
  --subtle:    rgba(255,255,255,.06);
  --ff:        'Fraunces', serif;
  --fb:        'DM Sans', sans-serif;
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);
  --r:         12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 76px; }
body {
  font-family: var(--fb);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--fb); }

/* ── NOISE TEXTURE ── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022;
}
body > * { position: relative; z-index: 1; }

/* ── KEYFRAMES ── */
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes slideUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes slideL   { from{opacity:0;transform:translateX(-30px)} to{opacity:1;transform:none} }
@keyframes slideR   { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:none} }
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:0} }
@keyframes marquee  { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulseRing{ 0%{box-shadow:0 0 0 0 rgba(200,241,53,.4)} 70%{box-shadow:0 0 0 16px rgba(200,241,53,0)} 100%{box-shadow:0 0 0 0 rgba(200,241,53,0)} }
@keyframes shimmer  { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes gridFade { from{opacity:0} to{opacity:.03} }

/* ── SCROLL REVEAL ── */
.rv  { opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.rvl { opacity:0; transform:translateX(-28px); transition:opacity .7s var(--ease),transform .7s var(--ease); }
.rvr { opacity:0; transform:translateX(28px);  transition:opacity .7s var(--ease),transform .7s var(--ease); }
.rv.on,.rvl.on,.rvr.on { opacity:1; transform:none; }
.d1 { transition-delay:.12s; }
.d2 { transition-delay:.24s; }
.d3 { transition-delay:.36s; }

/* ── LAYOUT ── */
.wrap    { max-width:1180px; margin:0 auto; padding:0 28px; }
.wrap-sm { max-width:820px;  margin:0 auto; padding:0 28px; }
section  { position:relative; }

/* ── TYPOGRAPHY ── */
.section-label {
  display:inline-block;
  font-family: var(--fb);
  font-size:.7rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--lime); margin-bottom:14px;
}
.section-head { margin-bottom:52px; }
.section-head h2 { font-family:var(--ff); font-size:clamp(1.9rem,3.2vw,3rem); font-weight:900; line-height:1.1; letter-spacing:-.02em; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--fb); font-size:.88rem; font-weight:600; letter-spacing:.02em;
  border:none; border-radius:100px; padding:13px 28px; cursor:pointer;
  transition:transform .2s var(--spring), box-shadow .2s, background .2s;
  text-decoration:none;
}
.btn:active { transform:scale(.96)!important; }

.btn-primary {
  background:var(--lime); color:var(--ink);
  box-shadow:0 4px 20px rgba(200,241,53,.28);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(200,241,53,.45); background:var(--lime-d); }

.btn-ghost {
  background:transparent; color:var(--white);
  border:1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { border-color:var(--lime); color:var(--lime); transform:translateY(-2px); }

.btn-outline-card {
  background:var(--surface); color:var(--white);
  border:1.5px solid var(--line);
  display:block; text-align:center;
}
.btn-outline-card:hover { border-color:var(--lime); color:var(--lime); transform:translateY(-1px); }

.btn-full { width:100%; justify-content:center; }

/* ═══════════════════════
   NAVBAR
═══════════════════════ */
#nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:0 28px;
  transition:background .4s var(--ease), border-color .4s, box-shadow .4s;
  border-bottom:1px solid transparent;
}
#nav.sc {
  background:rgba(7,9,12,.92);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-color:var(--line);
  box-shadow:0 2px 24px rgba(0,0,0,.3);
}
.nav-in {
  height:68px; display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.nav-logo {
  display:flex; align-items:center; gap:10px;
  font-family:var(--fb); font-size:.95rem; font-weight:600; flex-shrink:0;
  color:var(--white);
}
.nav-logo img { width:34px; height:34px; border-radius:50%; border:2px solid var(--lime); object-fit:cover; }
.nav-logo em { font-style:normal; color:var(--lime); }
.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  font-family:var(--fb); font-size:.83rem; font-weight:500;
  color:var(--muted); padding:7px 12px; border-radius:8px;
  transition:color .18s, background .18s;
}
.nav-links a:hover { color:var(--white); background:var(--subtle); }
.nav-cta {
  background:var(--lime)!important; color:var(--ink)!important;
  border-radius:100px!important; padding:8px 20px!important; font-weight:700!important;
  box-shadow:0 3px 14px rgba(200,241,53,.28);
  transition:box-shadow .2s, transform .2s!important;
}
.nav-cta:hover { box-shadow:0 6px 22px rgba(200,241,53,.5)!important; transform:translateY(-1px)!important; }

/* ── HAMBURGER BUTTON ── */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1010;
  width: 40px;
  height: 40px;
  position: relative;
}
.hbg span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .25s, width .3s var(--ease);
}
.hbg span:nth-child(1) { transform: translate(-50%, -6px); }
.hbg span:nth-child(2) { transform: translate(-50%, 0); }
.hbg span:nth-child(3) { transform: translate(-50%, 6px); width: 14px; margin-left: 0; }

.hbg.op span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.hbg.op span:nth-child(2) { opacity: 0; transform: translate(-50%, 0) scaleX(0); }
.hbg.op span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); width: 22px; }

/* ── MOBILE MENU OVERLAY ── */
@keyframes mmenuIn  { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:none; } }
@keyframes mmenuOut { from { opacity:1; transform:none; } to { opacity:0; transform:translateY(-8px); } }
@keyframes linkIn   { from { opacity:0; transform:translateX(-24px); } to { opacity:1; transform:none; } }

.mmenu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(7, 9, 12, .97);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 48px 48px;
  overflow-y: auto;
  border-right: 1px solid var(--line);
}

/* Decorative lime accent line on left */
.mmenu::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 0;
  width: 3px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity .4s .15s;
}
.mmenu.op::before { opacity: 1; }

.mmenu.op {
  display: flex;
  animation: mmenuIn .3s var(--ease) both;
}
.mmenu.cl {
  display: flex;
  animation: mmenuOut .25s var(--ease) both;
}

/* Nav number labels */
.mmenu a {
  font-family: var(--ff);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  padding: 10px 0;
  border-radius: 0;
  transition: color .2s, transform .2s var(--spring);
  text-align: left;
  width: 100%;
  opacity: 0;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid transparent;
  position: relative;
}
.mmenu a::before {
  content: attr(data-num);
  font-family: var(--fb);
  font-size: .65rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: .12em;
  color: var(--lime);
  opacity: .8;
  min-width: 24px;
}
.mmenu a::after {
  content: '→';
  font-style: normal;
  font-size: 1.2rem;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .2s, transform .2s var(--spring);
}
.mmenu a:hover {
  color: var(--lime);
  transform: translateX(6px);
}
.mmenu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered link animations when menu opens */
.mmenu.op a:nth-child(1) { animation: linkIn .4s .12s var(--ease) both; }
.mmenu.op a:nth-child(2) { animation: linkIn .4s .18s var(--ease) both; }
.mmenu.op a:nth-child(3) { animation: linkIn .4s .24s var(--ease) both; }
.mmenu.op a:nth-child(4) { animation: linkIn .4s .30s var(--ease) both; }
.mmenu.op a:nth-child(5) { animation: linkIn .4s .36s var(--ease) both; }
.mmenu.op a:nth-child(6) { animation: linkIn .4s .42s var(--ease) both; }

/* Bottom contact strip inside menu */
.mmenu-footer {
  display: none;
  margin-top: auto;
  padding-top: 32px;
  width: 100%;
  font-family: var(--fb);
  font-size: .75rem;
  color: var(--muted);
  opacity: 0;
}
.mmenu.op .mmenu-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: linkIn .4s .52s var(--ease) both;
}
.mmenu-footer a { font-size: .75rem; color: var(--muted); transition: color .18s; width: auto; font-style: normal; font-weight: 400; font-size: .75rem; padding: 0; border: none; }
.mmenu-footer a::before, .mmenu-footer a::after { display: none; }
.mmenu-footer a:hover { color: var(--lime); transform: none; }
.mmenu-footer span { color: var(--line); }

/* ═══════════════════════
   HERO
═══════════════════════ */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding:100px 0 72px; overflow:hidden;
}
/* Decorative background elements */
.hero-glow {
  position:absolute; top:-10%; left:-5%;
  width:700px; height:700px; border-radius:50%;
  background:radial-gradient(circle,rgba(200,241,53,.06) 0%,transparent 70%);
  pointer-events:none; z-index:0;
}
.hero-grid-bg {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(200,241,53,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(200,241,53,.04) 1px,transparent 1px);
  background-size:60px 60px;
  animation:gridFade .8s var(--ease) both;
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 100%);
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,#000 40%,transparent 100%);
}
.hero-wrap {
  display:grid; grid-template-columns:1fr 1fr;
  align-items:center; justify-items:center;
  gap:56px; width:100%;
}
.hero-copy { z-index:1; max-width:560px; width:100%; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,241,53,.08); border:1px solid rgba(200,241,53,.22);
  border-radius:100px; padding:6px 16px; margin-bottom:24px;
  font-size:.72rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--lime);
  animation:fadeIn .6s var(--ease) both;
}
.badge-dot { width:6px; height:6px; border-radius:50%; background:var(--lime); animation:pulseRing 2s infinite; flex-shrink:0; }
.hero-h1 {
  font-family:var(--ff);
  font-size:clamp(1.8rem,3.2vw,2.9rem);
  font-weight:900; line-height:1.08; letter-spacing:-.02em;
  margin-bottom:20px;
  animation:slideL .7s .1s var(--ease) both;
}
.hero-h1 .accent { color:var(--lime); font-style:italic; }
.tw-wrap { display:block; }
.tw { color:var(--lime); }
.tw-cursor { animation:blink 1s step-end infinite; color:var(--lime); }
.hero-sub {
  font-size:.97rem; color:var(--muted); line-height:1.78; max-width:440px;
  margin-bottom:32px; animation:slideL .7s .2s var(--ease) both; font-weight:300;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px; animation:slideL .7s .3s var(--ease) both; }
.hero-stats { display:flex; align-items:center; gap:24px; animation:slideL .7s .4s var(--ease) both; }
.snum { font-family:var(--ff); font-size:1.7rem; font-weight:900; line-height:1; letter-spacing:-.02em; }
.slbl { font-size:.72rem; color:var(--muted); margin-top:3px; }
.sbar { width:1px; height:36px; background:var(--line); }

/* Hero media */
.hero-media { position:relative; z-index:1; animation:slideR .8s .15s var(--ease) both; }
.hero-img-frame {
  position:relative; border-radius:20px; overflow:hidden;
  aspect-ratio:4/5; max-height:520px;
  box-shadow:0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
  background:var(--ink3);
}
.hero-img-frame img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.hero-img-frame::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(7,9,12,.6) 100%);
  pointer-events:none;
}
.hero-tag {
  position:absolute; bottom:18px; left:18px; z-index:2;
  background:rgba(7,9,12,.88); backdrop-filter:blur(12px);
  border:1px solid var(--line); border-radius:10px;
  padding:10px 16px; font-size:.82rem; font-weight:600;
  display:flex; align-items:center; gap:9px;
}
.tag-dot { width:7px; height:7px; border-radius:50%; background:var(--lime); animation:pulseRing 2s infinite; flex-shrink:0; }
.hero-float-card {
  position:absolute; top:28px; right:-20px;
  background:var(--lime); color:var(--ink);
  border-radius:14px; padding:16px 20px;
  box-shadow:0 12px 36px rgba(200,241,53,.3);
  animation:float 5s ease-in-out infinite, slideR .8s .4s var(--ease) both;
}
.hfc-num { font-family:var(--ff); font-size:1.8rem; font-weight:900; line-height:1; }
.hfc-lbl { font-size:.72rem; font-weight:600; margin-top:3px; line-height:1.3; }

/* Image shimmer skeleton */
.hero-img-frame::before,
.proj-img-wrap::before,
.proj-mini-img::before,
.about-main-img::before,
.about-float-img::before,
.skills-img-wrap::before {
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(90deg,var(--ink3) 25%,var(--surface) 50%,var(--ink3) 75%);
  background-size:400px 100%;
  animation:shimmer 1.6s infinite;
}
.hero-img-frame img.loaded,
.proj-img-wrap img.loaded,
.proj-mini-img img.loaded,
.about-main-img img.loaded,
.about-float-img img.loaded,
.skills-img-wrap img.loaded { position:relative; z-index:2; }

/* ═══════════════════════
   MARQUEE
═══════════════════════ */
.marquee-strip {
  background:var(--lime); overflow:hidden; padding:14px 0;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.marquee-track { overflow:hidden; white-space:nowrap; }
.marquee-inner { display:inline-flex; gap:32px; animation:marquee 24s linear infinite; }
.marquee-inner span {
  font-family:var(--fb); font-size:.75rem; font-weight:700;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink);
}
.mdot { opacity:.35; font-size:.55rem; }

/* ═══════════════════════
   INTRO CARDS
═══════════════════════ */
.intro-section { padding:72px 0; }
.intro-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.intro-card {
  background:var(--ink3); border:1px solid var(--line); border-radius:var(--r);
  padding:28px 26px;
  transition:transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.intro-card:hover { transform:translateY(-5px); border-color:rgba(200,241,53,.28); box-shadow:0 16px 40px rgba(0,0,0,.3); }
.intro-icon { font-size:1.6rem; margin-bottom:16px; display:block; }
.intro-card h2 { font-family:var(--fb); font-size:1rem; font-weight:700; margin-bottom:8px; }
.intro-card p { font-size:.87rem; color:var(--muted); line-height:1.7; }

/* ═══════════════════════
   PROJECTS
═══════════════════════ */
.projects-section { padding:88px 0; background:var(--ink2); }
.proj-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-bottom:20px; }
.proj-card {
  background:var(--ink3); border:1px solid var(--line); border-radius:18px;
  overflow:hidden; position:relative; display:flex; flex-direction:column;
  transition:transform .32s var(--ease), box-shadow .32s, border-color .32s;
}
.proj-card:hover { transform:translateY(-7px); box-shadow:0 24px 56px rgba(0,0,0,.4); border-color:rgba(200,241,53,.3); }
.proj-img-wrap { overflow:hidden; position:relative; height:240px; background:var(--ink3); }
.proj-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease), opacity .4s; opacity:0; }
.proj-img-wrap img.loaded { opacity:1; }
.proj-card:hover .proj-img-wrap img { transform:scale(1.05); }
.proj-body { padding:24px 26px 26px; flex:1; display:flex; flex-direction:column; }
.proj-tag {
  display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  background:rgba(200,241,53,.1); color:var(--lime); border:1px solid rgba(200,241,53,.2);
  border-radius:100px; padding:4px 12px; margin-bottom:12px;
}
.proj-body h3 { font-family:var(--fb); font-size:1.1rem; font-weight:700; margin-bottom:8px; }
.proj-body p { font-size:.86rem; color:var(--muted); line-height:1.7; margin-bottom:16px; flex:1; }
.proj-link {
  display:inline-flex; align-items:center; gap:7px;
  font-size:.82rem; font-weight:700; color:var(--lime);
  transition:gap .2s var(--spring);
}
.proj-link:hover { gap:11px; }

/* Mini cards */
.proj-mini-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.proj-mini {
  background:var(--ink3); border:1px solid var(--line); border-radius:18px;
  overflow:hidden; transition:transform .3s var(--ease), border-color .3s;
}
.proj-mini:hover { transform:translateY(-5px); border-color:rgba(200,241,53,.22); }
.proj-mini-img { overflow:hidden; position:relative; height:210px; background:var(--ink3); }
.proj-mini-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s var(--ease), opacity .4s; opacity:0; }
.proj-mini-img img.loaded { opacity:1; }
.proj-mini:hover .proj-mini-img img { transform:scale(1.04); }
.proj-mini-body { padding:20px; }
.proj-mini-body h3 { font-family:var(--fb); font-size:.98rem; font-weight:700; margin-bottom:7px; }
.proj-mini-body p { font-size:.84rem; color:var(--muted); line-height:1.65; }

/* ═══════════════════════
   PRICING
═══════════════════════ */
.pricing-section { padding:88px 0; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.price-card {
  background:var(--ink3); border:1px solid var(--line); border-radius:20px;
  padding:32px 28px; position:relative; display:flex; flex-direction:column;
  transition:transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.price-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,0,0,.35); }
.price-featured {
  background:linear-gradient(145deg,#1a2a14,#0f1a0a);
  border-color:rgba(200,241,53,.4);
  box-shadow:0 8px 32px rgba(200,241,53,.1);
}
.price-featured:hover { box-shadow:0 20px 56px rgba(200,241,53,.18); border-color:rgba(200,241,53,.65); }
.price-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:var(--lime); color:var(--ink);
  font-size:.66rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase;
  padding:5px 16px; border-radius:100px; white-space:nowrap;
}
.price-icon { font-size:1.6rem; margin-bottom:16px; display:block; }
.price-card h3 { font-family:var(--fb); font-size:1.05rem; font-weight:700; margin-bottom:16px; }
.price-num {
  font-family:var(--ff); font-size:2rem; font-weight:900; line-height:1;
  margin-bottom:22px; color:var(--white); letter-spacing:-.02em;
}
.price-num span { font-size:.9rem; font-weight:400; opacity:.6; font-family:var(--fb); }
.price-featured .price-num { color:var(--lime); }
.price-list { display:flex; flex-direction:column; gap:9px; margin-bottom:26px; flex:1; }
.price-list li { display:flex; align-items:center; gap:9px; font-size:.86rem; color:var(--muted); }
.price-list li::before { content:'✓'; font-weight:800; color:var(--lime); flex-shrink:0; font-size:.8rem; }
.price-featured .price-list li { color:rgba(255,255,255,.75); }
.price-card .btn { margin-top:auto; }

/* ═══════════════════════
   ABOUT
═══════════════════════ */
.about-section { padding:88px 0; background:var(--ink2); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-imgs { position:relative; flex-shrink:0; }
.about-ring {
  position:absolute; top:-18px; left:-18px;
  width:72px; height:72px; border-radius:50%;
  border:1px solid rgba(200,241,53,.2);
  animation:float 5s ease-in-out infinite;
  pointer-events:none;
}
.about-main-img { border-radius:18px; overflow:hidden; height:500px; position:relative; background:var(--ink3); box-shadow:0 24px 60px rgba(0,0,0,.4); }
.about-main-img img { width:100%; height:100%; object-fit:cover; object-position:top; opacity:0; transition:opacity .4s; }
.about-main-img img.loaded { opacity:1; }
.about-float-img {
  position:absolute; bottom:-24px; right:-24px;
  width:150px; height:185px; border-radius:14px; overflow:hidden;
  border:3px solid var(--ink2); box-shadow:0 12px 32px rgba(0,0,0,.4);
  background:var(--ink3); position:absolute;
}
.about-float-img img { width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .4s; }
.about-float-img img.loaded { opacity:1; }
.about-exp-badge {
  position:absolute; top:24px; left:-20px;
  background:var(--lime); color:var(--ink);
  border-radius:12px; padding:14px 18px; text-align:center;
  box-shadow:0 8px 28px rgba(200,241,53,.3);
}
.exp-num { font-family:var(--ff); font-size:1.6rem; font-weight:900; line-height:1; }
.exp-lbl { font-size:.68rem; font-weight:700; margin-top:2px; line-height:1.3; }
.about-copy { }
.about-copy h2 { font-family:var(--ff); font-size:clamp(1.6rem,2.8vw,2.4rem); font-weight:900; line-height:1.12; letter-spacing:-.02em; margin-bottom:18px; }
.about-copy p { font-size:.95rem; color:var(--muted); line-height:1.82; margin-bottom:14px; font-weight:300; }
.about-facts { display:flex; flex-direction:column; gap:12px; margin:22px 0 28px; }
.fact { background:var(--ink3); border:1px solid var(--line); border-radius:10px; padding:14px 18px; }
.fact strong { font-family:var(--fb); font-size:.8rem; font-weight:700; color:var(--lime); display:block; margin-bottom:3px; letter-spacing:.04em; text-transform:uppercase; }
.fact span { font-size:.86rem; color:var(--muted); line-height:1.6; }

/* ═══════════════════════
   SKILLS
═══════════════════════ */
.skills-section { padding:88px 0; }
.skills-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.skills-visual { position:relative; }
.skills-img-wrap { border-radius:18px; overflow:hidden; height:460px; position:relative; background:var(--ink3); box-shadow:0 20px 56px rgba(0,0,0,.35); }
.skills-img-wrap img { width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .4s; }
.skills-img-wrap img.loaded { opacity:1; }
.skills-overlay {
  position:absolute; bottom:-16px; left:-16px;
  background:rgba(7,9,12,.9); backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:12px; padding:16px 20px; min-width:190px;
}
.so-num { font-family:var(--ff); font-size:1.8rem; font-weight:900; color:var(--lime); line-height:1; }
.so-lbl { font-size:.78rem; color:var(--muted); margin-top:4px; }
.skills-copy h2 { font-family:var(--ff); font-size:clamp(1.6rem,2.8vw,2.4rem); font-weight:900; line-height:1.12; letter-spacing:-.02em; margin-bottom:32px; }
.skill-bars { display:flex; flex-direction:column; gap:20px; }
.skill-hdr { display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.skill-hdr span:first-child { font-size:.9rem; font-weight:600; }
.spct { font-size:.82rem; color:var(--lime); font-weight:700; }
.bar-track { height:5px; background:var(--surface); border-radius:100px; overflow:hidden; }
.bar-fill { height:100%; border-radius:100px; background:linear-gradient(90deg,var(--lime),var(--cyan)); width:0; transition:width 1.3s cubic-bezier(.4,0,.2,1); }

/* Gallery strip */
.gallery-strip {
  display:flex; gap:12px;
  overflow-x:auto; padding-bottom:12px;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.gallery-strip::-webkit-scrollbar { display:none; }
.gallery-strip img {
  height:190px; width:auto; min-width:150px;
  border-radius:12px; object-fit:cover; flex-shrink:0;
  scroll-snap-align:start; opacity:0; transition:opacity .4s;
}
.gallery-strip img.loaded { opacity:1; }

/* ═══════════════════════
   CONTACT
═══════════════════════ */
.contact-section { padding:88px 0; background:var(--ink2); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.contact-info h2 { font-family:var(--ff); font-size:clamp(1.6rem,2.8vw,2.4rem); font-weight:900; line-height:1.12; letter-spacing:-.02em; margin-bottom:16px; }
.contact-info > p { font-size:.95rem; color:var(--muted); line-height:1.78; margin-bottom:28px; font-weight:300; }
.c-item {
  display:flex; align-items:flex-start; gap:14px;
  background:var(--ink3); border:1px solid var(--line); border-radius:12px;
  padding:15px 18px; margin-bottom:10px;
}
.c-icon { font-size:1.2rem; flex-shrink:0; margin-top:1px; }
.c-item strong { font-family:var(--fb); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; display:block; margin-bottom:3px; color:var(--lime); }
.c-item a { font-size:.9rem; color:var(--muted); transition:color .18s; }
.c-item a:hover { color:var(--lime); }
.socials { display:flex; gap:10px; margin-top:22px; }
.social-btn {
  width:42px; height:42px; border-radius:50%;
  background:var(--ink3); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; font-size:1.05rem;
  transition:background .2s, border-color .2s, transform .2s var(--spring), color .2s;
}
.social-btn:hover { background:var(--lime); border-color:var(--lime); color:var(--ink); transform:translateY(-3px); }

/* Form */
.cform {
  background:var(--ink3); border:1px solid var(--line);
  border-radius:18px; padding:32px;
}
.fg { margin-bottom:16px; }
.fl {
  display:block; font-family:var(--fb);
  font-size:.73rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted); margin-bottom:7px;
}
.fi {
  width:100%; padding:12px 15px;
  background:var(--ink2); border:1px solid var(--line);
  border-radius:9px; color:var(--white); font-family:var(--fb); font-size:.92rem; outline:none;
  transition:border-color .2s, background .2s;
}
.fi:focus { border-color:var(--lime); background:rgba(200,241,53,.04); }
.fi::placeholder { color:rgba(255,255,255,.2); }
textarea.fi { min-height:118px; resize:vertical; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
footer {
  background:var(--ink); border-top:1px solid var(--line);
  padding:30px 28px; text-align:center;
}
.footer-in {
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:14px;
}
.footer-brand {
  display:flex; align-items:center; gap:9px;
  font-family:var(--fb); font-size:.88rem; font-weight:600; color:var(--white);
}
.footer-brand img { width:26px; height:26px; border-radius:50%; border:1.5px solid var(--lime); }
footer p { font-size:.78rem; color:var(--muted); }
.footer-sub { font-size:.72rem; color:rgba(255,255,255,.25) !important; }

/* ═══════════════════════
   SCROLL TOP
═══════════════════════ */
#stb {
  position:fixed; bottom:24px; right:24px; z-index:900;
  width:40px; height:40px; border-radius:50%;
  background:var(--lime); color:var(--ink); border:none;
  font-size:1rem; font-weight:800;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity .3s, transform .2s var(--spring);
  box-shadow:0 4px 16px rgba(200,241,53,.35);
}
#stb.on { opacity:1; pointer-events:all; }
#stb:hover { transform:translateY(-3px); }

/* ═══════════════════════════════════════════════
   RESPONSIVE SYSTEM
   Breakpoints: 1024 · 768 · 600 · 480 · 360
═══════════════════════════════════════════════ */

/* ── TABLET ≤1024px ── */
@media (max-width:1024px) {
  .hero            { padding:92px 0 60px; min-height:auto; }
  .hero-wrap       { grid-template-columns:1fr; gap:40px; text-align:center; justify-items:center; }
  .hero-copy       { display:flex; flex-direction:column; align-items:center; max-width:600px; margin:0 auto; }
  .hero-sub        { max-width:520px; }
  .hero-btns       { justify-content:center; }
  .hero-stats      { justify-content:center; gap:20px; flex-wrap:wrap; }
  .hero-media      { max-width:440px; margin:0 auto; width:100%; display:flex; justify-content:center; }
  .hero-img-frame  { width:100%; }
  .hero-float-card { right:-12px; }

  .intro-grid      { grid-template-columns:repeat(2,1fr); }

  .proj-grid       { grid-template-columns:1fr; }
  .proj-mini-grid  { grid-template-columns:repeat(2,1fr); }

  .pricing-grid    { grid-template-columns:repeat(2,1fr); }
  .price-featured  { order:-1; }

  .about-grid      { grid-template-columns:1fr; gap:48px; }
  .about-imgs      { max-width:480px; margin:0 auto; }
  .about-copy      { text-align:left; }
  .about-float-img { right:0; bottom:-16px; }
  .about-exp-badge { left:0; }

  .skills-grid     { grid-template-columns:1fr; gap:48px; }
  .skills-visual   { max-width:480px; margin:0 auto; }

  .contact-grid    { grid-template-columns:1fr; gap:44px; }
  .section-head    { margin-bottom:40px; }
}

/* ── LARGE PHONE ≤768px ── */
@media (max-width:768px) {
  .nav-links       { display:none; }
  .hbg             { display:flex; }
  #nav             { padding:0 20px; }

  .wrap,.wrap-sm   { padding:0 20px; }

  .hero            { padding:84px 0 52px; }
  .hero-h1         { font-size:clamp(1.6rem,5.5vw,2.2rem); }
  .hero-img-frame  { max-height:380px; }
  .hero-media      { max-width:400px; }
  .snum            { font-size:1.4rem; }

  .intro-section   { padding:56px 0; }
  .intro-grid      { grid-template-columns:1fr; gap:14px; }

  .projects-section{ padding:68px 0; }
  .proj-img-wrap   { height:210px; }
  .proj-mini-grid  { grid-template-columns:1fr; }
  .proj-mini-img   { height:190px; }

  .pricing-section { padding:68px 0; }
  .pricing-grid    { grid-template-columns:1fr; }
  .price-featured  { order:0; }

  .about-section   { padding:68px 0; }
  .about-main-img  { height:380px; }
  .about-float-img { display:none; }
  .about-ring      { display:none; }

  .skills-section  { padding:68px 0; }
  .skills-img-wrap { height:320px; }
  .skills-overlay  { left:10px; bottom:10px; min-width:170px; }
  .gallery-strip img { height:160px; }

  .contact-section { padding:68px 0; }
  .cform           { padding:24px 20px; }

  footer           { padding:24px 20px; }
  .footer-in       { flex-direction:column; align-items:center; text-align:center; gap:10px; }

  #stb             { bottom:18px; right:16px; width:36px; height:36px; font-size:.9rem; }
}

/* ── PHONE ≤600px ── */
@media (max-width:600px) {
  .wrap,.wrap-sm   { padding:0 16px; }
  #nav             { padding:0 16px; }
  .nav-in          { height:60px; }
  .nav-logo        { font-size:.85rem; }
  .nav-logo img    { width:30px; height:30px; }

  .hero            { padding:76px 0 48px; }
  .hero-badge      { font-size:.66rem; padding:5px 13px; }
  .hero-h1         { font-size:clamp(1.5rem,5vw,2rem); }
  .hero-img-frame  { max-height:320px; border-radius:16px; }
  .hero-media      { max-width:340px; }
  .hero-float-card { display:none; }
  .snum            { font-size:1.3rem; }
  .slbl            { font-size:.68rem; }

  .section-head h2 { font-size:clamp(1.5rem,5vw,2rem); }
  .section-head    { margin-bottom:28px; }

  .intro-card      { padding:22px 18px; }
  .intro-icon      { font-size:1.4rem; }
  .intro-card h2   { font-size:.95rem; }

  .proj-img-wrap   { height:185px; }
  .proj-body       { padding:18px 20px 20px; }
  .proj-body h3    { font-size:1rem; }
  .proj-mini-img   { height:170px; }
  .proj-mini-body  { padding:16px; }

  .pricing-grid    { gap:14px; }
  .price-card      { padding:26px 20px; }
  .price-num       { font-size:1.75rem; }

  .about-copy h2   { font-size:clamp(1.45rem,5vw,1.9rem); }
  .about-main-img  { height:300px; }
  .about-exp-badge { padding:10px 14px; }
  .exp-num         { font-size:1.4rem; }
  .about-facts     { gap:9px; }
  .fact            { padding:12px 14px; }

  .skills-img-wrap { height:270px; }
  .skills-copy h2  { font-size:clamp(1.45rem,5vw,1.9rem); }
  .skill-bars      { gap:16px; }
  .gallery-strip img { height:140px; min-width:130px; }

  .contact-info h2 { font-size:clamp(1.45rem,5vw,1.9rem); }
  .c-item          { padding:12px 15px; gap:11px; }
  .c-icon          { font-size:1.05rem; }
  .cform           { padding:20px 16px; border-radius:14px; }
  .fg              { margin-bottom:13px; }
  .fi              { font-size:.88rem; padding:11px 13px; }

  .btn             { padding:12px 22px; font-size:.84rem; }
  .btn-primary     { padding:13px 24px; }

  .mmenu           { padding: 80px 32px 40px; }
  .mmenu a         { font-size:clamp(1.6rem,6vw,2rem); }

  footer           { padding:20px 16px; }
  .footer-brand    { font-size:.82rem; }
  footer p         { font-size:.74rem; }
}

/* ── SMALL PHONE ≤480px ── */
@media (max-width:480px) {
  .wrap,.wrap-sm   { padding:0 14px; }

  .hero-h1         { font-size:clamp(1.4rem,7vw,1.8rem); }
  .hero-btns       { flex-direction:column; align-items:stretch; gap:10px; }
  .hero-btns .btn  { justify-content:center; width:100%; padding:14px; }
  .hero-stats      { gap:14px; }
  .snum            { font-size:1.2rem; }

  .proj-img-wrap   { height:165px; }

  .price-num       { font-size:1.6rem; }
  .pricing-grid    { gap:12px; }

  .about-main-img  { height:260px; }

  .skills-img-wrap { height:240px; }
  .gallery-strip img { height:120px; min-width:115px; }

  .mmenu a         { font-size:clamp(1.25rem,5.5vw,1.5rem); padding:9px 18px; }

  .nav-logo div    { display:none; }
}

/* ── TINY PHONE ≤360px ── */
@media (max-width:360px) {
  .wrap,.wrap-sm   { padding:0 12px; }
  .hero-h1         { font-size:1.35rem; }
  .price-num       { font-size:1.45rem; }
  .about-main-img  { height:230px; }
  .skills-img-wrap { height:210px; }
  .gallery-strip img { height:105px; min-width:100px; }
  .mmenu a         { font-size:1.2rem; padding:8px 0; }
  .mmenu           { padding:72px 24px 32px; }
}
