/* ============================================
   Eren Güler — Portfolio
   Dark, terminal-inspired with warm amber accents
   ============================================ */

:root {
  /* Warm dark palette */
  --bg: #0d0b08;
  --bg-elev: #14110d;
  --bg-elev-2: #1c1812;
  --surface: #1f1a13;
  --border: #2a241b;
  --border-strong: #3a3024;

  --text: #f4ede0;
  --text-muted: #a89b86;
  --text-dim: #6b6253;

  /* Amber accent system */
  --amber: #ffa726;
  --amber-bright: #ffb74d;
  --amber-dim: #c97e1c;
  --amber-glow: 255, 167, 38;

  /* Semantic */
  --green: #7dd87d;
  --red: #ff6b6b;
  --blue: #6fa8dc;
  --magenta: #d77fdd;

  /* Typography */
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --container: 1200px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
}

[data-theme="light"] {
  --bg: #faf7f0;
  --bg-elev: #f4efe4;
  --bg-elev-2: #ebe4d4;
  --surface: #ffffff;
  --border: #e0d8c5;
  --border-strong: #c8bfa8;

  --text: #2a2418;
  --text-muted: #6b6253;
  --text-dim: #a89b86;

  --amber: #c97e1c;
  --amber-bright: #b06914;
  --amber-dim: #ffa726;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) {
  body { cursor: auto; }
  .custom-cursor, .custom-cursor-dot { display: none !important; }
}

::selection {
  background: rgba(var(--amber-glow), 0.3);
  color: var(--text);
}

/* Background grid */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* ============= Custom Cursor ============= */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 56px;
  height: 56px;
  background: rgba(var(--amber-glow), 0.15);
  border-color: var(--amber-bright);
}

.custom-cursor-dot {
  position: fixed;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ============= Nav ============= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-bracket {
  color: var(--amber);
}

.nav-logo-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--amber);
  animation: blink 1s steps(2) infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-links a .num {
  color: var(--amber);
  margin-right: 6px;
  font-size: 11px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.2s ease;
}

.theme-toggle:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: none;
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    padding: 16px 32px;
    gap: 0;
  }
  .nav-links.open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a:last-child { border-bottom: none; }
}

/* ============= Sections ============= */
section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
}

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  text-transform: lowercase;
}

.section-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.section-label .num {
  color: var(--text-dim);
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.05;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 64px;
}

/* ============= Reveal animations ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 60ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 120ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 180ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 360ms; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 420ms; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 480ms; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 540ms; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  cursor: none;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--amber);
  border-color: var(--amber);
  color: #1a1305;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--amber-bright);
  border-color: var(--amber-bright);
  box-shadow: 0 0 32px rgba(var(--amber-glow), 0.4);
  transform: translateY(-2px);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(var(--amber-glow), 0.05);
}

/* ============= Hero ============= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-greeting {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 15px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-greeting .prompt { color: var(--green); }

.hero-name {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 12px;
}

.hero-name .accent {
  color: var(--amber);
}

.hero-role {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-tagline .hl {
  color: var(--text);
  font-weight: 500;
}

.hero-meta {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-meta-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Terminal card */
.terminal {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    0 0 80px -20px rgba(var(--amber-glow), 0.15);
  position: relative;
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-elev-2);
  border-bottom: 1px solid var(--border);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  min-height: 360px;
}

.terminal-line {
  display: flex;
  gap: 10px;
  white-space: pre-wrap;
  word-break: break-word;
}

.terminal-prompt { color: var(--green); flex-shrink: 0; }
.terminal-cmd { color: var(--text); }
.terminal-output { color: var(--text-muted); padding-left: 0; display: block; }
.terminal-key { color: var(--magenta); }
.terminal-str { color: var(--green); }
.terminal-num { color: var(--amber); }
.terminal-comment { color: var(--text-dim); font-style: italic; }
.terminal-fn { color: var(--blue); }

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--amber);
  vertical-align: text-bottom;
  margin-left: 4px;
  animation: blink 1s steps(2) infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-indicator-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============= About ============= */
.about-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p .hl {
  color: var(--text);
  font-weight: 500;
}

.about-text code {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--amber);
  background: rgba(var(--amber-glow), 0.08);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--amber-glow), 0.15);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--amber);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: lowercase;
}

/* ============= Stack ============= */
.stack-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.stack-category {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stack-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stack-category:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.stack-category:hover::before {
  opacity: 1;
}

.stack-cat-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stack-cat-title::before {
  content: "//";
  color: var(--text-dim);
}

.stack-skills {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.skill-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
}

.skill-name {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-name svg {
  color: var(--amber);
  flex-shrink: 0;
}

.skill-level {
  color: var(--text-dim);
  font-size: 11px;
}

.skill-bar {
  height: 4px;
  background: var(--bg-elev-2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(var(--amber-glow), 0.4);
}

.visible .skill-bar-fill {
  width: var(--level);
}

/* Marquee */
.marquee {
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.marquee-item svg {
  color: var(--amber);
  width: 28px;
  height: 28px;
}

.marquee-item .sep {
  color: var(--text-dim);
  margin-left: 64px;
}

/* ============= Experience timeline ============= */
.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 880px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--amber), var(--border) 30%, var(--border));
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber);
}

.timeline-period {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.timeline-role {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.timeline-company {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.timeline-company .at { color: var(--text-dim); margin-right: 6px; }

.timeline-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* ============= Writing ============= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.post-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-card:hover {
  border-color: var(--amber);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

.post-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
}

.post-card-date {
  color: var(--text-dim);
}

.post-card-cat {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  flex: 1;
}

.post-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.post-card-arrow {
  color: var(--text-dim);
  transition: transform 0.2s ease, color 0.2s ease;
}

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

/* ============= Contact ============= */
.contact {
  text-align: center;
  padding: 160px 0;
}

.contact-prefix {
  font-family: var(--font-mono);
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 24px;
}

.contact-title {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.contact-title .accent {
  color: var(--amber);
  font-style: italic;
  font-family: 'Geist', serif;
}

.contact-text {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.contact-channels {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-channel:hover {
  color: var(--amber);
}

.contact-channel svg {
  width: 18px;
  height: 18px;
}

/* ============= Footer ============= */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ============= Glow accent (decorative) ============= */
.glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
}

.glow-amber {
  background: radial-gradient(circle, var(--amber), transparent);
}

/* ============= Utilities ============= */
.mono { font-family: var(--font-mono); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
