/* FYC — Fraser Youth Coding | Premium Portfolio */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── Variables ───────────────────────────────────────────────────── */
:root {
  --bg:           #020402;
  --surface:      #060806;
  --card:         #0a0d0a;
  --card-hover:   #0e120e;
  --border:       rgba(0,255,65,0.07);
  --border-hi:    rgba(0,255,65,0.15);

  --cyan:         #00FF41;
  --cyan-dim:     rgba(0,255,65,0.08);
  --purple:       #00C853;
  --purple-dim:   rgba(0,200,83,0.08);
  --green:        #69FF47;
  --green-dim:    rgba(105,255,71,0.08);

  --text:         #E8FFE8;
  --muted:        #5a7a5a;
  --dim:          #2a3d2a;

  --grad:         linear-gradient(135deg, #00FF41, #00C853, #69FF47);
  --grad-2:       linear-gradient(135deg, #00FF41, #00C853);

  --ff-display:   'Space Grotesk', sans-serif;
  --ff-body:      'Inter', sans-serif;
  --ff-mono:      'JetBrains Mono', monospace;

  --nav-h:        76px;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ─── Custom Cursor ───────────────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .15s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,255,65,.4);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
}
.cursor.hovered         { width: 16px; height: 16px; }
.cursor-follower.hovered { width: 50px; height: 50px; border-color: rgba(0,200,83,.5); }

/* ─── Progress Bar ────────────────────────────────────────────────── */
.progress-bar {
  position: fixed; top:0; left:0;
  height: 2px; width: 0%;
  background: var(--grad-2);
  z-index: 10000;
}

/* ─── Navigation ──────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  height: var(--nav-h); z-index: 1000;
  transition: background .4s var(--ease-out), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 0; }
.logo-text {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.4rem;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: 3px;
}
.logo-sub {
  font-size: .6rem; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-family: var(--ff-mono);
}
.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--muted);
  transition: color .3s; position: relative;
}
.nav-link:not(.nav-cta)::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:1px; background: var(--cyan);
  transition: width .3s var(--ease-out);
}
.nav-link:not(.nav-cta):hover { color: var(--text); }
.nav-link:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,.35);
  color: var(--cyan) !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-size: .82rem; transition: background .3s, transform .2s;
}
.nav-cta:hover { background: rgba(0,229,255,.14); transform: translateY(-1px); }
.nav-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-menu-btn span {
  display:block; width:22px; height:2px;
  background: var(--text); transition: transform .3s, opacity .3s;
}
.nav-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.active span:nth-child(2) { opacity: 0; }
.nav-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Menu ─────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 999;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.75rem;
  transition: opacity .3s;
}
.mobile-menu.active { display: flex; }
.mobile-link {
  font-family: var(--ff-display); font-size: 2.25rem; font-weight: 700;
  color: var(--muted); transition: color .3s;
}
.mobile-link:hover { color: var(--cyan); }

/* ─── Layout Helpers ──────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 112px 0; }

/* ─── Typography ──────────────────────────────────────────────────── */
.section-label {
  font-family: var(--ff-mono); font-size: .76rem;
  color: var(--cyan); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1rem; display: flex; align-items: center; gap: .75rem;
}
.section-label::before {
  content:''; display:block; width:18px; height:1px; background: var(--cyan);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.025em; margin-bottom: 1.5rem;
}
.section-desc { font-size: 1.05rem; color: var(--muted); max-width: 580px; line-height: 1.85; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-desc { margin: 0 auto; }
.gradient-text {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .85rem 1.65rem; border-radius: 8px;
  font-family: var(--ff-body); font-size: .92rem; font-weight: 500;
  cursor: pointer; border: none; transition: all .3s var(--ease-out);
}
.btn-primary {
  background: var(--cyan); color: #000; font-weight: 600;
}
.btn-primary:hover {
  background: rgba(0,229,255,.85); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,229,255,.25);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.22); transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--cyan);
  border: 1px solid rgba(0,229,255,.5);
}
.btn-outline:hover { background: var(--cyan-dim); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-small {
  display: inline-flex; align-items: center;
  padding: .45rem 1.1rem; border-radius: 6px; font-size: .82rem;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid rgba(0,229,255,.25); transition: background .3s;
}
.btn-small:hover { background: rgba(0,229,255,.15); }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .18;
}
.orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--cyan), transparent);
  top: -200px; right: -80px;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--purple), transparent);
  bottom: 60px; left: -80px;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--green), transparent);
  top: 50%; left: 42%;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,255,65,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.floating-code {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.code-snippet {
  position: absolute; font-family: var(--ff-mono); font-size: .72rem;
  color: rgba(0,229,255,.28); white-space: nowrap;
  padding: .4rem .875rem;
  border: 1px solid rgba(0,229,255,.1); border-radius: 4px;
  background: rgba(0,229,255,.02);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .9rem; border-radius: 999px;
  border: 1px solid rgba(57,255,20,.3);
  background: rgba(57,255,20,.04);
  font-size: .76rem; color: var(--green);
  font-family: var(--ff-mono); margin-bottom: 1.75rem;
  opacity: 1;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: badge-pulse 2s infinite;
}
@keyframes badge-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero-line { display: block; opacity: 1; transform: translateY(0); }
.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--muted); max-width: 540px;
  line-height: 1.85; margin-bottom: 2.5rem;
  opacity: 1; transform: translateY(0);
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 1; transform: translateY(0);
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  opacity: 1; transform: translateY(0);
}
.hero-stat { display: flex; flex-direction: column; gap: .2rem; }
.stat-value { display: flex; align-items: baseline; gap: .05rem; }
.stat-num {
  font-family: var(--ff-display); font-size: 2.25rem;
  font-weight: 700; line-height: 1;
}
.stat-plus {
  font-family: var(--ff-display); font-size: 1.4rem;
  font-weight: 700; color: var(--cyan); line-height: 1;
}
.stat-label {
  font-size: .72rem; color: var(--muted);
  font-family: var(--ff-mono); letter-spacing: 1.5px;
  text-transform: uppercase;
}
.stat-divider { width: 1px; height: 36px; background: var(--border-hi); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; z-index: 2; opacity: 1;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-bounce 1.6s infinite;
}
@keyframes scroll-bounce {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-indicator span {
  font-size: .66rem; color: var(--muted);
  letter-spacing: 2px; text-transform: uppercase; font-family: var(--ff-mono);
}

/* ─── About ───────────────────────────────────────────────────────── */
.about { border-top: 1px solid var(--border); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.9;
  margin-bottom: 1.25rem;
}
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem; position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top:0; left:0; right:0;
  height: 1px; background: var(--grad-2); opacity: .5;
}
.about-card-label {
  font-family: var(--ff-mono); font-size: .72rem;
  color: var(--muted); margin-bottom: 1.25rem; letter-spacing: 1px;
}
.about-tech-stack {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.tech-item {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--ff-mono); font-size: .8rem; color: var(--muted);
  padding: .45rem .6rem; border-radius: 6px;
  transition: background .2s, color .2s;
}
.tech-item:hover { background: rgba(255,255,255,.03); color: var(--text); }
.tech-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
}
.tech-dot.cyan   { background: var(--cyan);   box-shadow: 0 0 6px var(--cyan); }
.tech-dot.purple { background: var(--purple); box-shadow: 0 0 6px var(--purple); }
.tech-dot.green  { background: var(--green);  box-shadow: 0 0 6px var(--green); }

/* ─── Services ────────────────────────────────────────────────────── */
.services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem; position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease-out), background .3s;
  padding-bottom: 3.5rem;
}
.service-card:hover {
  border-color: rgba(0,229,255,.45);
  transform: translateY(-5px); background: var(--card-hover);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.4rem; color: var(--cyan);
  transition: background .3s, transform .3s;
}
.service-card:hover .service-icon {
  background: rgba(0,229,255,.16); transform: scale(1.08) rotate(4deg);
}
.service-card h3 {
  font-family: var(--ff-display); font-size: 1.1rem;
  font-weight: 600; margin-bottom: .65rem;
}
.service-card p {
  font-size: .875rem; color: var(--muted); line-height: 1.75;
  margin-bottom: 1.1rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.service-tags span {
  font-family: var(--ff-mono); font-size: .67rem;
  padding: .22rem .55rem; border-radius: 4px;
  background: rgba(255,255,255,.03); color: var(--muted);
  border: 1px solid var(--border);
}
.service-arrow {
  position: absolute; bottom: 1.75rem; right: 1.75rem;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--border); display: flex; align-items: center;
  justify-content: center; color: var(--muted);
  transition: background .3s, color .3s, transform .3s;
}
.service-card:hover .service-arrow {
  background: var(--cyan); color: #000; transform: translate(2px,-2px);
}

/* ─── Projects ────────────────────────────────────────────────────── */
.projects-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease-out);
}
.project-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.project-image { position: relative; overflow: hidden; }
.project-img-placeholder {
  width: 100%; height: 210px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease-out);
}
.project-card:hover .project-img-placeholder { transform: scale(1.03); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-link {
  display: flex; align-items: center; gap: .4rem;
  padding: .65rem 1.35rem; background: var(--cyan);
  color: #000; border-radius: 8px;
  font-weight: 600; font-size: .875rem; transition: transform .2s;
}
.project-link:hover { transform: scale(1.05); }
.project-info { padding: 1.4rem; }
.project-info-centered { padding: 2.5rem 1.5rem; }
.project-stealth {
  display: flex; align-items: center;
  background: repeating-linear-gradient(
    -45deg,
    var(--card) 0, var(--card) 10px,
    rgba(255,255,255,.01) 10px, rgba(255,255,255,.01) 20px
  );
}
.project-category {
  font-family: var(--ff-mono); font-size: .7rem; color: var(--cyan);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: .65rem;
}
.project-info h3 {
  font-family: var(--ff-display); font-size: 1.25rem;
  font-weight: 600; margin-bottom: .65rem;
}
.project-info p {
  font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem;
}
.project-tech { display: flex; flex-wrap: wrap; gap: .4rem; }
.project-tech span {
  font-family: var(--ff-mono); font-size: .67rem;
  padding: .22rem .55rem; border-radius: 4px;
  background: rgba(255,255,255,.03); color: var(--muted); border: 1px solid var(--border);
}

/* ─── Team ────────────────────────────────────────────────────────── */
.team { background: var(--surface); border-top: 1px solid var(--border); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.25rem;
}
.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s, transform .35s var(--ease-out);
}
.team-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.team-img-wrapper { position: relative; overflow: hidden; height: 270px; }
.team-avatar-wrapper {
  height: 270px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(0,255,65,.06), rgba(0,200,83,.03));
  border-bottom: 1px solid var(--border);
}
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700;
  color: #000; letter-spacing: 1px;
  box-shadow: 0 0 40px rgba(0,255,65,.2);
}
.team-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .4s var(--ease-out), filter .4s;
  filter: grayscale(25%);
}
.team-card:hover .team-img { transform: scale(1.05); filter: grayscale(0%); }
.team-img-glow {
  position: absolute; bottom:0; left:0; right:0; height: 80px;
  background: linear-gradient(transparent, var(--card));
}
.team-info { padding: 1.4rem; }
.team-info h3 {
  font-family: var(--ff-display); font-size: 1.15rem;
  font-weight: 600; margin-bottom: .25rem;
}
.team-role {
  font-size: .74rem; color: var(--cyan); font-family: var(--ff-mono);
  margin-bottom: .75rem;
}
.team-info p {
  font-size: .85rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem;
}
.team-skills { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.1rem; }
.team-skills span {
  font-family: var(--ff-mono); font-size: .67rem;
  padding: .22rem .55rem; border-radius: 4px;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid rgba(0,229,255,.18);
}
.team-socials { display: flex; gap: .6rem; }
.team-socials a {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .3s;
}
.team-socials a:hover {
  background: var(--cyan-dim); color: var(--cyan);
  border-color: rgba(0,229,255,.28);
}
.team-open { border-style: dashed; border-color: rgba(255,255,255,.1); cursor: pointer; }
.team-open:hover { border-style: solid; border-color: rgba(0,229,255,.35); }
.team-open-inner {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 3rem 2rem; height: 100%; gap: .9rem; min-height: 320px;
}
.team-open-icon {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px dashed rgba(0,229,255,.4);
  display: flex; align-items: center; justify-content: center; color: var(--cyan);
}
.team-open h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; }
.team-open p { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ─── Contact ─────────────────────────────────────────────────────── */
.contact { border-top: 1px solid var(--border); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 72px; align-items: start;
}
.contact-info .section-title { margin-bottom: 1.25rem; }
.contact-info > p {
  font-size: .97rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: .875rem; }
.contact-item {
  display: flex; align-items: center; gap: .7rem;
  color: var(--muted); font-size: .9rem;
}
.contact-item svg { color: var(--cyan); flex-shrink: 0; }
.contact-form-wrapper {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .82rem; font-weight: 500; color: var(--muted); }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: 8px; padding: .8rem 1rem;
  color: var(--text); font-family: var(--ff-body); font-size: .92rem;
  transition: border-color .3s, background .3s; outline: none; resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan); background: rgba(0,229,255,.03);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }
.form-status {
  margin-top: .875rem; padding: .8rem 1rem; border-radius: 8px;
  font-size: .875rem; text-align: center; display: none;
}
.form-status.success {
  display: block; background: rgba(57,255,20,.08);
  border: 1px solid rgba(57,255,20,.3); color: var(--green);
}
.form-status.error {
  display: block; background: rgba(255,80,80,.08);
  border: 1px solid rgba(255,80,80,.3); color: #ff6666;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 56px; margin-bottom: 2.5rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-bottom: .9rem; letter-spacing: 3px;
}
.footer-brand p {
  font-size: .875rem; color: var(--muted); line-height: 1.75;
  max-width: 300px; margin-bottom: 1.4rem;
}
.footer-socials { display: flex; gap: 1.4rem; }
.footer-socials a {
  font-size: .82rem; color: var(--muted); transition: color .3s;
}
.footer-socials a:hover { color: var(--cyan); }
.footer-links { display: flex; flex-direction: column; gap: .8rem; }
.footer-links h4 {
  font-family: var(--ff-display); font-size: .76rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text);
  margin-bottom: .4rem;
}
.footer-links a {
  font-size: .85rem; color: var(--muted); transition: color .3s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: .76rem; color: var(--dim); }

/* ─── Reveal Initial State (JS adds .gsap-ready class before animating) ── */
.gsap-ready .reveal { opacity: 0; transform: translateY(28px); }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links     { display: none; }
  .nav-menu-btn  { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 72px 0; }
  .hero-stats    { flex-wrap: wrap; gap: 1.25rem; }
  .stat-divider  { display: none; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: default; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
