:root {
  --gold: #F5C518;
  --gold-dim: #c49a10;
  --white: #ffffff;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --text-muted: #888;
  --radius: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,197,24,0.08);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1.05rem;
  cursor: pointer;
}
.nav-toggle.open { border-color: var(--gold); color: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  right: 12px;
  left: 12px;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 16px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; padding: 0; margin: 0 0 8px 0; }
.mobile-nav a { color: var(--white); text-decoration: none; padding: 10px 8px; display: block; border-radius: 8px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.02); color: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* FLOATING TAGS */
.hero-tags {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  pointer-events: none;
}
.htag {
  position: absolute;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-muted);
  white-space: nowrap;
  animation: float-bounce 3s ease-in-out infinite;
}
.htag:nth-child(1) { top: 18%; left: 5%; animation-delay: 0s; animation-duration: 3.2s; }
.htag:nth-child(2) { top: 18%; right: 5%; animation-delay: 0.6s; animation-duration: 2.8s; }
.htag:nth-child(3) { top: 50%; left: 3%; animation-delay: 1.1s; animation-duration: 3.5s; }
.htag:nth-child(4) { top: 50%; right: 3%; animation-delay: 0.4s; animation-duration: 3s; }
.htag:nth-child(5) { bottom: 22%; left: 7%; animation-delay: 0.9s; animation-duration: 2.6s; }
.htag:nth-child(6) { bottom: 22%; right: 7%; animation-delay: 1.5s; animation-duration: 3.3s; }

@keyframes float-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.hero-emoji { font-size: 2.5rem; display: inline-block; animation: wave 2.5s ease-in-out infinite; }
@keyframes wave {
  0%,100% { transform: rotate(0deg); }
  25% { transform: rotate(20deg); }
  75% { transform: rotate(-10deg); }
}

.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 10px 0 16px;
}
.hero-name span { color: var(--gold); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.7;
  margin: 0 auto 28px;
}

/* AVAILABLE BADGE */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: #4ade80;
  margin-bottom: 32px;
}
.avail-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(245,197,24,0.3);
}

section { padding: 100px 6%; max-width: 100%; overflow-x: hidden; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  text-align: center;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
}

/* TOOLS */
.tools-section { background: var(--bg2); }
.tools-orbit {
  position: relative;
  width: 340px; height: 340px;
  margin: 0 auto;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90px; height: 90px;
  background: var(--bg3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px dashed rgba(245,197,24,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-ring-1 { width: 200px; height: 200px; animation: spin 12s linear infinite; }
.orbit-ring-2 { width: 320px; height: 320px; animation: spin 20s linear infinite reverse; }

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.tool-item {
  position: absolute;
  width: 52px; height: 52px;
  background: var(--bg3);
  border: 1.5px solid rgba(245,197,24,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  top: 50%; left: 50%;
  transform-origin: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.tool-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(245,197,24,0.55), 0 0 8px rgba(245,197,24,0.4);
  filter: drop-shadow(0 0 10px rgba(245,197,24,0.4));
}
.tool-item .tool-name {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Tools animated positions — children 4-9 (rings=1,2 center=3) */
.tool-item:nth-child(4) { animation: orbit1 12s linear infinite; }
.tool-item:nth-child(5) { animation: orbit2 12s linear infinite; }
.tool-item:nth-child(6) { animation: orbit3 12s linear infinite; }
.tool-item:nth-child(7) { animation: orbit4 20s linear infinite reverse; }
.tool-item:nth-child(8) { animation: orbit5 20s linear infinite reverse; }
.tool-item:nth-child(9) { animation: orbit6 20s linear infinite reverse; }

@keyframes orbit1 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(100px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(100px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: translate(-50%,-50%) rotate(120deg) translateX(100px) rotate(-120deg); }
  to   { transform: translate(-50%,-50%) rotate(480deg) translateX(100px) rotate(-480deg); }
}
@keyframes orbit3 {
  from { transform: translate(-50%,-50%) rotate(240deg) translateX(100px) rotate(-240deg); }
  to   { transform: translate(-50%,-50%) rotate(600deg) translateX(100px) rotate(-600deg); }
}
@keyframes orbit4 {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(160px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg) translateX(160px) rotate(360deg); }
}
@keyframes orbit5 {
  from { transform: translate(-50%,-50%) rotate(90deg) translateX(160px) rotate(-90deg); }
  to   { transform: translate(-50%,-50%) rotate(-270deg) translateX(160px) rotate(270deg); }
}
@keyframes orbit6 {
  from { transform: translate(-50%,-50%) rotate(200deg) translateX(160px) rotate(-200deg); }
  to   { transform: translate(-50%,-50%) rotate(-160deg) translateX(160px) rotate(160deg); }
}

/* EXPERIENCE */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.exp-line {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-line-bar {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.exp-dot {
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  margin: 4px 0;
  box-shadow: 0 0 12px rgba(245,197,24,0.6);
  flex-shrink: 0;
}
.exp-card {
  background: var(--bg3);
  border: 1px solid rgba(245,197,24,0.12);
  border-radius: var(--radius);
  padding: 28px;
  margin: 20px 0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.exp-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(245,197,24,0.25), 0 8px 40px rgba(245,197,24,0.15), inset 0 0 30px rgba(245,197,24,0.04);
  transform: translateY(-4px);
  filter: drop-shadow(0 0 18px rgba(245,197,24,0.2));
}
.exp-card.right { grid-column: 3; }
.exp-card.left { grid-column: 1; }
.exp-icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.exp-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.exp-sub { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }
.exp-date { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 12px; }
.exp-desc { color: #aaa; font-size: 0.88rem; line-height: 1.7; }

/* FEATURED PROJECTS */
.projects-section { background: var(--bg2); }
.project-card {
  background: var(--bg3);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.project-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(245,197,24,0.2), 0 0 40px rgba(245,197,24,0.12);
  transform: translateY(-6px);
  filter: drop-shadow(0 0 24px rgba(245,197,24,0.18));
}
.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.project-visual {
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.project-visual::after {
  content: none;
}
.project-image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}
.project-mockup {
  background: #0f0f1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.mockup-header {
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 12px;
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-bar {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.mockup-balance {
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  margin: 12px 0 4px;
  font-family: 'Syne', sans-serif;
}
.mockup-stat {
  display: flex; justify-content: space-between;
  margin-top: 14px;
}
.mockup-stat-item { text-align: center; }
.mockup-stat-val { font-size: 0.9rem; font-weight: 600; }
.mockup-stat-val.green { color: #4ade80; }
.mockup-stat-val.red { color: #f87171; }
.mockup-stat-lbl { font-size: 0.6rem; color: var(--text-muted); }

.project-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.project-tag {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.8;
}
.project-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.project-desc { color: #aaa; font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.project-features { list-style: none; margin-bottom: 28px; }
.project-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: #bbb;
  margin-bottom: 8px;
}
.project-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}
.project-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}
.project-btn:hover { background: var(--gold); color: var(--bg); }

/* Project buttons container */
.project-info > div[style*="display: flex"] {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap;
}

/* DESIGN PROCESS */
.process-section { background: var(--bg); overflow: hidden; }
.process-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.process-inner {
  display: flex;
  gap: 24px;
  animation: slide-process 16s linear infinite;
  min-width: max-content;
  padding: 0 20px;
}
.process-inner:hover { animation-play-state: paused; }

@keyframes slide-process {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mobile slide/fade animation for elements */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* mobile nav open animation */
@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.process-step {
  background: var(--bg3);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 20px;
  padding: 36px 32px;
  min-width: 220px;
  flex-shrink: 0;
  text-align: center;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: var(--gold); }
.process-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 8px;
}
.process-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process-step p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.6; }

/* Soft appear animation */
@keyframes softAppear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero, .project-card, .process-step, .role-card, .review-card, .contact-section {
  animation: softAppear 600ms ease both;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .project-card { grid-template-columns: 1fr; }
  .project-info { padding: 28px; }
}

/* Tablet/Medium screens */
@media (max-width: 640px) {
  section { padding: 60px 5%; overflow-x: hidden; }
  body { overflow-x: hidden; }
  .section-title { font-size: clamp(1.4rem, 3vw, 2.2rem); }
  .hero { padding: 100px 5% 60px; }
  .hero::before { width: 400px; height: 400px; }
  .tools-orbit { width: 280px; height: 280px; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { gap: 40px; padding: 60px 5%; }
  nav { padding: 16px 5%; }
  .nav-logo { font-size: 0.95rem; }
  .project-card { margin-bottom: 24px; grid-template-columns: 1fr !important; }
  .project-info { padding: 24px !important; }
  .review-card { min-width: 85vw; max-width: 85vw; margin: 0 auto; padding: 20px; }
  .marquee-track { gap: 16px; padding: 0; }
  .form-group input, .form-group textarea { font-size: 1rem; }
}

/* Small phones */
@media (max-width: 480px) {
  section { padding: 50px 4%; }
  .hero { padding: 80px 4% 50px; }
  .hero::before { width: 300px; height: 300px; }
  .hero-emoji { font-size: 2rem; }
  .hero-name { font-size: clamp(1.8rem, 5vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .section-title { font-size: 1.3rem; }
  .tools-orbit { width: 240px; height: 240px; }
  .project-card { grid-template-columns: 1fr !important; margin: 0 auto 24px; max-width: 100%; }
  .project-visual { padding: 16px; min-height: 240px; }
  .project-image { max-height: 300px; }
  .project-info { padding: 16px !important; }
  .project-name { font-size: 1.1rem; }
  .project-desc { font-size: 0.8rem; margin-bottom: 16px; }
  .project-features li { font-size: 0.75rem; margin-bottom: 6px; }
  .project-features { margin-bottom: 16px; }
  .project-btn { padding: 8px 16px; font-size: 0.75rem; }
  .roles-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-section { grid-template-columns: 1fr; gap: 24px; padding: 50px 4%; }
  nav { padding: 12px 4%; }
  .nav-logo { font-size: 0.85rem; }
  .contact-heading { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
  .contact-left { width: 100%; }
  .form-group input, .form-group textarea { font-size: 1rem; padding: 12px 14px; }
  .form-submit { padding: 12px 24px; font-size: 0.85rem; }
  .review-card { min-width: 90vw; max-width: 90vw; padding: 18px; }
  .review-text { font-size: 0.8rem; margin-bottom: 16px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 30px 4%; }
  .footer-links { flex-direction: column; width: 100%; }
  .footer-link { width: 100%; text-align: center; }
}

/* EXPERIENCE & ROLES */
.roles-section { background: var(--bg2); }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.role-card {
  background: var(--bg3);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.role-card:hover::before { opacity: 1; }
.role-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(245,197,24,0.2), 0 8px 32px rgba(245,197,24,0.15);
  filter: drop-shadow(0 0 16px rgba(245,197,24,0.18));
}
.role-logo {
  width: 50px; height: 50px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.role-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.role-org { color: var(--gold); font-size: 0.78rem; margin-bottom: 12px; }
.role-desc { color: #888; font-size: 0.82rem; line-height: 1.6; }
.role-year {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* REVIEWS — ENDLESS SCROLL */
.reviews-section { background: var(--bg); overflow: hidden; padding: 100px 0; }
.marquee-wrapper { overflow: hidden; padding: 20px 0; }
.marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee-left 28s linear infinite;
  min-width: max-content;
  padding: 0 20px;
}
.marquee-track.reverse {
  animation: marquee-right 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.review-card {
  background: var(--bg3);
  border: 1px solid rgba(245,197,24,0.1);
  border-radius: 18px;
  padding: 26px;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(245,197,24,0.2), 0 8px 24px rgba(245,197,24,0.12);
  transform: translateY(-4px);
}
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: #ccc; font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-user { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-role { font-size: 0.75rem; color: var(--text-muted); }
.marquee-row { margin-bottom: 20px; }

/* CONTACT */
.contact-section {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 6%;
}
.contact-left { }
.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-heading span { color: var(--gold); }
.contact-sub { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-val { font-size: 0.9rem; color: #ccc; }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.social-btn {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-muted);
  box-shadow: inset 0 0 12px rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.12);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.social-btn:hover {
  border-color: rgba(245,197,24,0.9);
  color: var(--gold);
  background: rgba(245,197,24,0.08);
  transform: translateY(-3px);
  box-shadow: inset 0 0 18px rgba(255,255,255,0.08), 0 16px 30px rgba(245,197,24,0.12);
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-link:hover {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.35);
  color: var(--gold);
  transform: translateY(-2px);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); }
.form-group input,
.form-group textarea {
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
/* Prevent iOS zoom on input focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  font-size: 0.9rem;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 120px; }
.form-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 15px 32px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245,197,24,0.3);
}

/* FOOTER */
footer {
  padding: 40px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
footer p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.footer-link:hover {
  background: rgba(245,197,24,0.12);
  border-color: rgba(245,197,24,0.35);
  color: var(--gold);
  transform: translateY(-2px);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  * { max-width: 100vw; }
  body { overflow-x: hidden; }
  section { padding: 60px 5%; overflow-x: hidden; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.left, .exp-card.right { grid-column: 1; }
  .exp-line { display: none; }
  .project-card { grid-template-columns: 1fr; margin: 0 auto 24px; }
  .project-visual { padding: 16px; }
  .project-info { padding: 24px !important; }
  .roles-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .htag { display: none; }
  nav { max-width: 100vw; overflow-x: hidden; }
  nav .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav { animation: navFadeIn 260ms cubic-bezier(.2,.9,.2,1) both; }
  .project-visual, .project-info { animation: slideUp 420ms ease both; }
  .marquee-wrapper { padding: 0; margin: 0 -5%; width: calc(100% + 10%); }
  .marquee-track { padding: 0 5%; }
  .review-card { min-width: 85vw; max-width: 85vw; }
  footer { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-direction: row; width: 100%; }
}

@media (max-width: 640px) {
  section { padding: 60px 5%; overflow-x: hidden; }
  body { overflow-x: hidden; }
  .section-title { font-size: clamp(1.4rem, 3vw, 2.2rem); }
  .hero { padding: 100px 5% 60px; }
  .hero::before { width: 400px; height: 400px; }
  .tools-orbit { width: 280px; height: 280px; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section { gap: 40px; padding: 60px 5%; }
  nav { padding: 16px 5%; }
  .nav-logo { font-size: 0.95rem; }
  .project-card { margin-bottom: 24px; grid-template-columns: 1fr !important; }
  .project-info { padding: 24px !important; }
  .review-card { min-width: 85vw; max-width: 85vw; margin: 0 auto; padding: 20px; }
  .marquee-track { gap: 16px; padding: 0; }
  .form-group input, .form-group textarea { font-size: 1rem; }
}

@media (max-width: 480px) {
  section { padding: 50px 4%; overflow-x: hidden; }
  body { overflow-x: hidden; }
  .hero { padding: 80px 4% 50px; }
  .hero::before { width: 300px; height: 300px; }
  .hero-emoji { font-size: 2rem; }
  .hero-name { font-size: clamp(1.8rem, 5vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .section-title { font-size: 1.3rem; }
  .tools-orbit { width: 240px; height: 240px; }
  .project-card { grid-template-columns: 1fr !important; margin: 0 auto 24px; max-width: 100%; }
  .project-visual { padding: 16px; min-height: 240px; }
  .project-image { max-height: 300px; }
  .project-info { padding: 16px !important; }
  .project-name { font-size: 1.1rem; }
  .project-desc { font-size: 0.8rem; margin-bottom: 16px; }
  .project-features li { font-size: 0.75rem; margin-bottom: 6px; }
  .project-features { margin-bottom: 16px; }
  .project-btn { padding: 8px 16px; font-size: 0.75rem; }
  .roles-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-section { grid-template-columns: 1fr; gap: 24px; padding: 50px 4%; }
  nav { padding: 12px 4%; }
  .nav-logo { font-size: 0.85rem; }
  .contact-heading { font-size: clamp(1.4rem, 3.5vw, 2.2rem); }
  .contact-left { width: 100%; }
  .form-group input, .form-group textarea { font-size: 1rem; padding: 12px 14px; }
  .form-submit { padding: 12px 24px; font-size: 0.85rem; }
  .review-card { min-width: 90vw; max-width: 90vw; padding: 18px; }
  .review-text { font-size: 0.8rem; margin-bottom: 16px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 30px 4%; }
  .footer-links { flex-direction: column; width: 100%; }
  .footer-link { width: 100%; text-align: center; }
}
