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

:root {
  --bg: #060608;
  --surface: #0e0e14;
  --border: rgba(255,255,255,0.07);
  --text: #e8e8ee;
  --muted: #777;
  --accent: #a78bfa;
  --accent2: #fb7185;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(6,6,8,0.9), transparent);
}

.site-header nav { display: flex; gap: 2.5rem; }

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--text); }

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content { max-width: 800px; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

.tagline {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.cta-btn:hover { background: var(--accent); color: #fff; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
  color: var(--text);
}

/* ── About ── */
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  border: 1px solid var(--border);
}

.about-text p {
  color: #aaa;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.9;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.social-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.social-links a:hover { color: var(--accent); }
.social-links svg { width: 22px; height: 22px; }

/* ── Work ── */
.work { background: var(--bg); }

.work-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}


.work-cat {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--accent2);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.credits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.credits-list li {
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
  transition: border-color 0.2s;
}

.credits-list li:hover { border-color: var(--accent); }

.credit-title {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.credit-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.credit-links {
  display: flex;
  gap: 0.75rem;
}

.credit-links a {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.credit-links a:hover { color: var(--accent2); }

/* Awards */
.awards {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.awards-list li {
  font-size: 0.875rem;
  color: #888;
  padding-left: 1.5rem;
  position: relative;
}

.awards-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent2);
}

.awards-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.awards-list a:hover { color: var(--text); border-color: var(--muted); }

/* ── Apps ── */
.apps { background: var(--surface); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  border: 1px solid var(--border);
  text-decoration: none;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.app-card:hover {
  border-color: var(--accent);
  background: rgba(139,92,246,0.04);
}

.app-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.app-platform {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.app-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.app-card:hover .app-arrow { transform: translate(4px, -4px); color: var(--accent); }

@media (max-width: 600px) {
  .apps-grid { grid-template-columns: 1fr; }
}

/* ── Connect ── */
.connect { background: var(--surface); }

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.connect-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: padding-left 0.2s;
}

.connect-item:first-child { border-top: 1px solid var(--border); }

.connect-item:hover { padding-left: 0.75rem; }

.connect-platform {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--text);
  transition: color 0.2s;
}

.connect-item:hover .connect-platform { color: var(--accent); }

.connect-arrow {
  font-size: 1.5rem;
  color: var(--muted);
  transition: transform 0.2s, color 0.2s;
}

.connect-item:hover .connect-arrow { transform: translateX(6px); color: var(--accent); }

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image { max-width: 320px; }
  .work-columns { grid-template-columns: 1fr; }
  .site-header { padding: 1.25rem 1.5rem; }
  .apps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .site-header { padding: 1rem 1.25rem; }
  .site-header nav { gap: 1rem; }
  .site-header nav a { font-size: 0.65rem; letter-spacing: 0.08em; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .tagline { font-size: 0.7rem; letter-spacing: 0.12em; }
  .cta-btn { padding: 0.65rem 1.75rem; }
  .connect-platform { font-size: 1.4rem; }
}
