/* =============================================
   EBINEZER M — PORTFOLIO
   Design: Dark editorial + terminal aesthetic
   Palette: Near-black + acid green accent
   ============================================= */

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

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #181818;
  --surface: #1e1e1e;
  --border: #2a2a2a;
  --text: #e8e3d8;
  --text-muted: #888;
  --text-dim: #555;
  --accent: #b8f542;
  --accent2: #42f5c5;
  --accent3: #f5a742;
  --red: #f54242;

  --font-display: 'Syne', sans-serif;
  --font-serif: 'Instrument Serif', serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 4px;
  --radius-lg: 12px;
  --section-pad: 120px;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

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

/* =========== CURSOR =========== */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(184,245,66,0.4);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
body:hover .cursor { opacity: 1; }

/* =========== UTILITIES =========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.mono { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.03em; }
.small { font-size: 0.75rem; }
.section { padding: var(--section-pad) 0; position: relative; }

.section-label {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}
.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.blink {
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}
.status-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(184,245,66,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(184,245,66,0); }
}

/* =========== HERO =========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,245,66,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,245,66,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.3;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  display: flex; flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-name-top { display: block; color: var(--text); }
.hero-name-bottom {
  display: flex; align-items: baseline; gap: 32px;
}
.outline-text {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}
.hero-tagline-inline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  align-self: center;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-cta-row {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,245,66,0.3);
}

.btn-ghost {
  display: inline-block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

.hero-stats {
  display: flex; align-items: center; gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-divider { color: var(--border); font-size: 1.5rem; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; right: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-grow 1.5s ease-in-out infinite;
}
@keyframes scroll-grow {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* Floating badges */
.float-badge {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  border: 1px solid rgba(184,245,66,0.2);
  background: rgba(184,245,66,0.05);
  padding: 6px 14px;
  border-radius: 100px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}
.b1 { top: 20%; right: 10%; animation-delay: 0s; }
.b2 { top: 35%; right: 18%; animation-delay: 1s; }
.b3 { top: 55%; right: 8%; animation-delay: 2s; }
.b4 { top: 70%; right: 20%; animation-delay: 0.5s; }
.b5 { top: 28%; right: 30%; animation-delay: 1.5s; }
.b6 { top: 48%; right: 32%; animation-delay: 2.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========== ABOUT =========== */
.about { background: var(--bg2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.about-text p em { color: var(--text); font-style: italic; }

.about-contact {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.contact-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}
.contact-chip:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(184,245,66,0.05);
}

.about-card-wrap { position: relative; }

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.about-card-header {
  background: var(--bg3);
  color: var(--accent);
  font-size: 0.78rem;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.about-card-body {
  padding: 24px 20px;
  font-family: var(--font-mono);
  font-size: 0.83rem;
  line-height: 2;
}
.terminal-line { display: flex; }
.t-key { color: var(--accent2); }
.t-val { color: var(--accent3); margin-left: 4px; }
.t-green { color: var(--accent); margin-left: 4px; }
.indent { padding-left: 24px; }
.blink-line {
  color: var(--accent);
  animation: blink 1s step-end infinite;
}

.about-card-bg-deco {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 160px; height: 160px;
  border: 1px solid rgba(184,245,66,0.1);
  border-radius: 50%;
  z-index: 0;
}

/* =========== SKILLS =========== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-category {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, transform 0.2s;
}
.skill-category:hover {
  border-color: rgba(184,245,66,0.3);
  transform: translateY(-4px);
}

.skill-cat-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.skill-category h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.skill-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.skill-tags span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* =========== PROJECTS =========== */
.projects { background: var(--bg2); }

.projects-list { display: flex; flex-direction: column; gap: 0; }

.project-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.project-item::before {
  content: attr(data-num);
  position: absolute;
  top: 48px; left: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}
.project-item:hover .project-title { color: var(--accent); }

.project-meta {
  padding-top: 6px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.project-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.project-tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  border: 1px solid rgba(184,245,66,0.25);
  background: rgba(184,245,66,0.05);
  padding: 3px 9px;
  border-radius: 100px;
}
.project-links { display: flex; flex-wrap: wrap; gap: 8px; }
.proj-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.proj-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.proj-link.no-link { cursor: default; opacity: 0.5; }
.proj-link.no-link:hover { color: var(--text-muted); border-color: var(--border); }

.project-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.project-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}
.project-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 20px;
}
.project-highlight {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
}
.highlight-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* =========== EXPERIENCE / TIMELINE =========== */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding: 40px 0 40px 40px;
  border-bottom: 1px solid var(--border);
}
.timeline-dot {
  position: absolute;
  left: -4.5px; top: 48px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.timeline-date {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.timeline-company {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.timeline-content p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  max-width: 600px;
  margin-bottom: 16px;
}
.timeline-skills {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.timeline-skills span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* =========== CERTS =========== */
.certs { background: var(--bg2); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.cert-card:hover {
  border-color: rgba(184,245,66,0.3);
  transform: translateY(-2px);
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.cert-issuer {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.cert-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.cert-badge {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--accent);
  font-size: 1.1rem;
}

.achievement-banner {
  display: flex; align-items: center; gap: 24px;
  background: linear-gradient(135deg, rgba(184,245,66,0.08), rgba(66,245,197,0.05));
  border: 1px solid rgba(184,245,66,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
}
.achievement-icon { font-size: 2rem; flex-shrink: 0; }
.achievement-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
}
.achievement-desc {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========== COURSEWORK MARQUEE =========== */
.course-marquee-wrap {
  overflow: hidden;
  margin-top: -20px;
}
.course-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
}
.marquee-inner span:nth-child(odd) { color: var(--text-muted); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========== CONTACT =========== */
.contact-inner { max-width: 720px; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.contact-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}
.contact-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  line-height: 1.7;
}

.contact-links { display: flex; flex-direction: column; gap: 0; }
.contact-big-link {
  display: flex; align-items: center; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  group: true;
}
.contact-big-link:hover .contact-link-val { color: var(--accent); }
.contact-big-link:hover .contact-arrow { transform: translate(4px, -4px); color: var(--accent); }
.contact-link-label {
  color: var(--text-dim);
  font-size: 0.72rem;
  width: 80px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-link-val {
  color: var(--text);
  font-size: 1rem;
  flex: 1;
  transition: color 0.2s;
}
.contact-arrow {
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: all 0.2s;
}

/* =========== FOOTER =========== */
.footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-left, .footer-right {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-center {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =========== SCROLL REVEAL =========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .float-badge { display: none; }
  .hero { padding: 120px 24px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .project-item { grid-template-columns: 1fr; gap: 20px; }
  .project-meta { flex-direction: row; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .timeline { padding-left: 24px; }
  .timeline-item { padding: 28px 0 28px 28px; }
  .achievement-banner { flex-direction: column; gap: 12px; padding: 20px; }
}

@media (max-width: 600px) {
  :root { --section-pad: 64px; }

  /* Nav */
  .nav { padding: 14px 20px; }
  .nav-status { display: none; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  /* Hero */
  .hero { padding: 100px 20px 64px; min-height: 100svh; overflow-x: hidden; }
  .hero-name { font-size: clamp(2.2rem, 10vw, 3.5rem); letter-spacing: -0.02em; width: 100%; }
  .hero-name-top { white-space: normal; word-break: break-word; }
  .hero-name-bottom { flex-direction: column; gap: 0; align-items: flex-start; }
  .outline-text { font-size: inherit; }
  .hero-tagline-inline { font-size: clamp(1rem, 4.5vw, 1.5rem); }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary { width: 100%; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .hero-scroll-indicator { display: none; }

  /* Sections */
  .container { padding: 0 20px; }
  .section-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 40px; }

  /* About */
  .about-card-body { font-size: 0.78rem; padding: 16px; }
  .about-contact { gap: 8px; }
  .contact-chip { font-size: 0.72rem; padding: 6px 12px; }

  /* Skills */
  .skills-grid { grid-template-columns: 1fr; gap: 16px; }
  .skill-category { padding: 20px; }

  /* Projects */
  .project-item { padding: 32px 0; }
  .project-item::before { display: none; }
  .project-title { font-size: 2rem; }
  .project-desc { font-size: 0.9rem; }

  /* Timeline */
  .timeline { padding-left: 20px; }
  .timeline-item { padding: 24px 0 24px 24px; }
  .timeline-content h3 { font-size: 1.1rem; }
  .timeline-content p { font-size: 0.88rem; }

  /* Certs */
  .certs-grid { grid-template-columns: 1fr; gap: 12px; }
  .cert-card { padding: 18px; }
  .achievement-banner { padding: 20px; gap: 12px; flex-direction: column; }
  .achievement-desc { font-size: 0.75rem; }

  /* Contact */
  .contact-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .contact-big-link { gap: 12px; padding: 18px 0; flex-wrap: wrap; }
  .contact-link-label { width: 60px; font-size: 0.68rem; }
  .contact-link-val { font-size: 0.85rem; word-break: break-all; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
  .footer-right { display: none; }

  /* Marquee */
  .marquee-inner { font-size: 0.78rem; gap: 16px; }
}
