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

:root {
  --bg: #0d0d0d;
  --pink: #e040fb;
  --purple: #a855f7;
  --text: #fff;
  --muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
  --radius: 18px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* ── NAV ─────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; padding: 0 48px;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
}
.logo-m {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; flex-shrink: 0;
}
.nav-logo-name { font-size: 16px; font-weight: 700; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-links a {
  display: block; text-decoration: none;
  color: rgba(255,255,255,0.75);
  padding: 7px 18px; border-radius: 22px;
  font-size: 14px; font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-links a.active { background: rgba(255,255,255,0.12); color: #fff; }
.nav-cta {
  display: block; text-decoration: none;
  color: #000; background: #fff;
  padding: 9px 22px; border-radius: 24px;
  font-size: 14px; font-weight: 700;
  transition: opacity 0.15s; white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; }
.nav-cta.contact-active { background: var(--pink); color: #fff; }


/* ── BACK LINK ───────────────────────────────────── */
.back-link-wrap { padding: 32px clamp(20px, 5vw, 80px) 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color 0.15s;
}
.back-link:hover { color: rgba(255,255,255,0.85); }
.arrow-circle {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ── SERVICE PAGE ────────────────────────────────── */
.service-page {
  max-width: 1300px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(40px, 6vw, 80px);
}
.service-header { padding: clamp(24px, 4vw, 40px) 0 clamp(28px, 4vw, 52px); }
.service-title {
  font-size: clamp(36px, 6.5vw, 88px);
  font-weight: 900; line-height: 1.0;
  letter-spacing: clamp(-1px, -0.3vw, -3px); margin-bottom: 20px;
}
.service-title .accent-pink { color: var(--pink); }
.service-title .accent-purple { color: var(--purple); }
.service-desc {
  font-size: clamp(15px, 1.5vw, 17px); line-height: 1.75;
  color: rgba(255,255,255,0.65);
}

/* ── SERVICE CARDS ───────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.svc-card {
  position: relative; border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); min-height: clamp(360px, 45vw, 500px);
  display: flex; flex-direction: column; overflow: hidden;
}
.card-navy    { background: #0b1729; }
.card-green   { background: #0b1e0f; }
.card-maroon  { background: #1d0c0c; }
.card-charcoal{ background: #181818; }
.card-indigo  { background: #120d28; }

.card-bg-icon {
  position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.06; pointer-events: none; color: #fff;
}
.card-bg-icon svg { width: 200px; height: 200px; }

.card-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 24px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.9px; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.badge-navy   { background: rgba(59,130,246,0.18); color: #93c5fd; }
.badge-green  { background: rgba(34,197,94,0.18);  color: #86efac; }
.badge-maroon { background: rgba(244,63,94,0.18);  color: #fda4af; }
.badge-gray   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.badge-indigo { background: rgba(139,92,246,0.18); color: #c4b5fd; }
.badge-pink   { background: rgba(236,72,153,0.18); color: #f9a8d4; }

.card-title {
  font-size: clamp(22px, 3vw, 34px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px;
}
.card-body {
  font-size: 14px; line-height: 1.75;
  color: rgba(255,255,255,0.55); margin-bottom: 28px;
}
.card-features {
  list-style: none; display: flex;
  flex-direction: column; gap: 13px; margin-top: auto;
}
.card-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.feat-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 10px; font-style: normal;
}
.feat-icon-blue   { color: #60a5fa; }
.feat-icon-green  { color: #4ade80; }
.feat-icon-indigo { color: #a78bfa; }
.feat-icon-pink   { color: var(--pink); }
.feat-icon-gray   { color: rgba(255,255,255,0.4); }
.feat-lightning   { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }

/* ── BACKGROUND BLOBS ────────────────────────────── */
.blob {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(80px);
}
.blob-pink {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,64,251,0.13) 0%, transparent 70%);
  top: -150px; right: -50px;
}
.blob-purple {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
  bottom: 0; left: -100px;
}


/* ── HERO VIDEO BACKGROUND ───────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.7) 100%);
  z-index: 0;
}

/* ── HOME PAGE ───────────────────────────────────── */
.home-hero {
  max-width: 1300px; margin: 0 auto;
  padding: 80px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 48px; align-items: center;
  min-height: calc(100vh - 64px);
  position: relative; z-index: 1;
}
.hero-left { display: flex; flex-direction: column; }

.hero-available {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(224,64,251,0.1);
  border: 1px solid rgba(224,64,251,0.3);
  color: #e040fb; font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
  width: fit-content; margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0; position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -3px; border-radius: 50%;
  background: rgba(74,222,128,0.5);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero-heading {
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -4px; margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-heading .line1 {
  display: block;
  background: linear-gradient(120deg, #fff 40%, #f0abfc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-heading .line2 { color: rgba(255,255,255,0.18); display: block; }

.hero-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pink); color: #fff; text-decoration: none;
  padding: 16px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 700; width: fit-content;
  margin-bottom: 32px;
  box-shadow: 0 0 32px rgba(224,64,251,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 0 56px rgba(224,64,251,0.65); }

.hero-desc {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 400px; margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-btns { display: flex; align-items: center; gap: 20px; animation: fadeUp 0.7s ease 0.38s both; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85); background: transparent;
  text-decoration: none; padding: 10px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.05); }
.hero-tagline { font-size: 14px; color: rgba(255,255,255,0.3); }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.home-cards { animation: fadeUp 0.8s ease 0.25s both; }

/* ── HOME CARDS ──────────────────────────────────── */
.home-cards { display: flex; gap: 12px; align-items: flex-start; }
.hc-col { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.hc-col-left  { margin-top: 72px; }
.hc-col-right { margin-top: 0; }
.home-card {
  border-radius: 22px; overflow: hidden; position: relative;
  display: flex; flex-direction: column; padding: 24px 22px 24px;
  text-decoration: none; min-height: 220px;
  transition: transform 0.08s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
/* Glassmorphism — color-tinted frosted panels */
.hc-navy   {
  background: rgba(30, 58, 120, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.3);
}
.hc-maroon {
  background: rgba(120, 20, 20, 0.18);
  border: 1px solid rgba(248, 113, 113, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.3);
}
.hc-purple {
  background: rgba(88, 28, 180, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);
}
.hc-green  {
  background: rgba(20, 83, 45, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 32px rgba(0,0,0,0.3);
}

/* Hook number accent colors */
.hc-navy   .hc-hook { color: rgba(147, 197, 253, 1); }
.hc-maroon .hc-hook { color: rgba(252, 165, 165, 1); }
.hc-purple .hc-hook { color: rgba(196, 181, 253, 1); }
.hc-green  .hc-hook { color: rgba(134, 239, 172, 1); }

/* Hover — brighter border + stronger glow */
.hc-navy:hover   {
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px rgba(96,165,250,0.15), 0 24px 60px rgba(59,130,246,0.28);
}
.hc-maroon:hover {
  border-color: rgba(248, 113, 113, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px rgba(248,113,113,0.15), 0 24px 60px rgba(239,68,68,0.22);
}
.hc-purple:hover {
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 1px rgba(167,139,250,0.18), 0 24px 60px rgba(139,92,246,0.32);
}
.hc-green:hover  {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 0 0 1px rgba(74,222,128,0.15), 0 24px 60px rgba(34,197,94,0.22);
}
/* Card inner elements */
.hc-glyph {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 72px;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.hc-badge {
  display: inline-block; padding: 5px 13px; border-radius: 24px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  width: fit-content; margin-bottom: 20px; flex-shrink: 0;
}
.hc-hook {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 4px;
}
.hc-hook-sup {
  font-size: 28px;
  font-weight: 800;
  vertical-align: super;
  letter-spacing: 0;
}
.hc-hook-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.hc-title {
  font-size: 16px; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 6px;
}
.hc-subtitle {
  font-size: 11.5px; color: rgba(255,255,255,0.4);
  line-height: 1.5; flex: 1;
}
.hc-arrow {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.home-card:hover .hc-arrow {
  color: rgba(255,255,255,0.9);
  transform: translate(2px, -2px);
}

/* ── TICKER ──────────────────────────────────────── */
.ticker-bar { background: #fff; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner { display: inline-flex; animation: scroll-ticker 22s linear infinite; }
.ticker-inner span {
  font-size: 12px; font-weight: 800; color: #000;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 0 32px;
}
@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ───────────────────────────────────────── */
.about-wrap {
  max-width: 1300px; margin: 0 auto;
  padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-photo-box {
  border-radius: 20px; overflow: hidden; background: #252525;
  aspect-ratio: 0.82;
  display: flex; align-items: center; justify-content: center;
}
.about-photo-box img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.about-photo-box:hover img { filter: grayscale(0%); }
.photo-placeholder { opacity: 0.15; }
.about-text .label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--pink); margin-bottom: 14px;
}
.about-text .big-title {
  font-size: clamp(36px, 4vw, 54px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 28px;
}
.about-text p {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,0.65); margin-bottom: 16px;
}
.about-text p strong { color: #fff; font-weight: 700; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.skill-tag {
  padding: 8px 18px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.03);
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-page { max-width: 1300px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px) clamp(40px, 6vw, 80px); }
.contact-header { padding: clamp(24px, 4vw, 40px) 0 clamp(28px, 4vw, 48px); }
.contact-title {
  font-size: clamp(36px, 6.5vw, 88px); font-weight: 900;
  line-height: 1.0; letter-spacing: clamp(-1px, -0.3vw, -3px); margin-bottom: 20px;
}
.contact-title .accent-pink { color: var(--pink); }
.contact-sub { font-size: clamp(14px, 1.5vw, 16px); color: rgba(255,255,255,0.6); max-width: 520px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card {
  background: #161616; border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--border);
}
.form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 28px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; background: #111;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; color: #fff;
  outline: none; font-family: inherit; transition: border-color 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus, .form-field textarea:focus { border-color: rgba(255,255,255,0.28); }
.form-field textarea { min-height: 130px; resize: none; }
.btn-submit {
  width: 100%; padding: 15px; background: var(--pink);
  color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 6px; transition: opacity 0.2s, transform 0.15s;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.contact-info-col { display: flex; flex-direction: column; gap: 12px; }
.info-card {
  background: #161616; border-radius: var(--radius);
  padding: 24px 28px; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.info-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 4px; font-weight: 700;
}
.icon-pink   { background: rgba(224,64,251,0.12); }
.icon-blue   { background: rgba(59,130,246,0.12); color: #60a5fa; font-size: 14px; }
.icon-orange { background: rgba(251,146,60,0.12); }
.icon-green  { background: rgba(34,197,94,0.12); }
.info-card h4 { font-size: 15px; font-weight: 700; }
.info-card p  { font-size: 13px; color: rgba(255,255,255,0.5); }
.info-card a {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.15s;
}
.info-card a:hover { color: #fff; }
.success-msg {
  display: none; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3); border-radius: 8px;
  padding: 14px 18px; color: #4ade80; font-size: 14px;
  font-weight: 500; margin-top: 12px; text-align: center;
}
.success-msg.show { display: block; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  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; }

/* ── MOBILE DRAWER ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s;
}
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}
.drawer-overlay.open { display: block; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
  z-index: 999; background: #161616;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding: 24px; transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end; background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 26px;
  cursor: pointer; line-height: 1; margin-bottom: 20px;
}
.drawer a {
  display: block; padding: 14px 16px; border-radius: 10px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 16px; font-weight: 600; transition: background 0.15s, color 0.15s;
}
.drawer a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.drawer-cta {
  display: block; text-align: center;
  background: var(--pink); color: #fff !important;
  padding: 14px !important; border-radius: 50px !important;
  font-weight: 700 !important; margin-top: 16px;
}

/* ── STATS TICKER ────────────────────────────────── */
.ticker-bar-dark {
  background: #111; padding: 12px 0; overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ticker-inner-dark {
  display: inline-flex;
  animation: scroll-ticker 35s linear infinite;
}
.ticker-inner-dark span {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px; text-transform: uppercase; padding: 0 28px;
}
.ticker-inner-dark .t-accent { color: var(--pink); }

/* ── PROJECTS SECTION ────────────────────────────── */
.projects-section {
  max-width: 1300px; margin: 0 auto;
  padding: 80px 80px 60px;
}
.projects-header { margin-bottom: 48px; }
.section-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--pink); margin-bottom: 14px;
}
.section-big-title {
  font-size: clamp(36px, 4vw, 54px); font-weight: 900;
  line-height: 1.1; letter-spacing: -1.5px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.project-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
  border-color: rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 0 1px rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.project-top {
  display: flex; justify-content: space-between; align-items: center;
}
.project-status {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; padding: 4px 12px; border-radius: 20px;
}
.status-live   { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-built  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.45); }
.project-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.55);
  font-size: 16px; transition: all 0.15s;
}
.project-arrow:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); }
.project-arrow.no-link { opacity: 0.25; pointer-events: none; }
.project-title { font-size: 20px; font-weight: 800; line-height: 1.2; color: #fff; }
.project-desc  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; flex: 1; }
.project-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.project-tag {
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: 20px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
}

/* ── SKILL TAG SHIMMER ───────────────────────────── */
.skill-tag {
  position: relative; overflow: hidden;
}
.skill-tag::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.skill-tag:hover::after {
  left: 160%;
  transition: left 0.45s ease;
}

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: #1e1e1e; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  min-width: 280px; pointer-events: none;
  transform: translateY(16px); opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-msg  { font-size: 14px; font-weight: 500; color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────── */

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 6px 12px; font-size: 13px; }

  .cards-grid { grid-template-columns: 1fr; }
  .svc-card { min-height: unset; }

  .contact-grid { grid-template-columns: 1fr; }

  .home-hero { grid-template-columns: 1fr; padding: 48px 24px; min-height: unset; gap: 40px; }
  .home-cards { flex-direction: column; }
  .hc-col-left { margin-top: 0; }
  .hc-col { flex-direction: row; flex-wrap: wrap; }
  .hc-col .home-card { flex: 1 1 calc(50% - 6px); min-width: 180px; }

  .about-wrap { grid-template-columns: 1fr; padding: 48px 24px; gap: 36px; }
  .about-photo-box { max-width: 480px; margin: 0 auto; }

  .about-text .big-title { font-size: clamp(28px, 6vw, 42px); }
}

/* Mobile (≤600px) */
@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }

  .back-link-wrap { padding: 20px 16px 0; }

  .service-page { padding: 0 16px 48px; }
  .contact-page { padding: 0 16px 48px; }

  .cards-grid { gap: 12px; }
  .card-title { font-size: 22px; }
  .card-features li { font-size: 13px; }

  .contact-grid { gap: 12px; }
  .form-card { padding: 24px 20px; }

  .hc-col { flex-direction: column; }
  .hc-col .home-card { flex: unset; }

  .hero-heading { font-size: clamp(48px, 12vw, 72px); letter-spacing: -2px; }
  .hero-cta-btn { padding: 14px 24px; font-size: 15px; }

  .hamburger { display: flex; }
  .home-cards {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .home-cards::-webkit-scrollbar { display: none; }
  .hc-col {
    min-width: 260px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

/* ── NAV SCROLL ──────────────────────────────────── */
.navbar.scrolled {
  background: rgba(13,13,13,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

/* ── ACTIVE NAV ──────────────────────────────────── */
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}


/* ── PAGE TRANSITION ─────────────────────────────── */
body {
  animation: pageFadeIn 0.35s ease both;
}
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.page-exit {
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 48px 64px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fff;
}
.footer-logo .logo-m {
  width: 30px; height: 30px; font-size: 13px;
}
.footer-logo-name { font-size: 15px; font-weight: 700; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-center {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
}
.footer-center a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  text-decoration: none; padding: 6px 14px; border-radius: 20px;
  transition: color 0.15s, background 0.15s;
}
.footer-center a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.footer-right { display: flex; gap: 12px; align-items: center; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 13px; font-weight: 700;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.footer-social:hover { border-color: rgba(255,255,255,0.4); color: #fff; background: rgba(255,255,255,0.06); }
.footer-copy {
  width: 100%; text-align: center;
  font-size: 11px; color: rgba(255,255,255,0.2);
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 8px;
}
@media (max-width: 600px) {
  .site-footer { padding: 40px 20px 32px; flex-direction: column; align-items: flex-start; }
  .footer-center { justify-content: flex-start; }
}
