/* ================================================================
   STYLE.CSS — Mohammed Abdul Numan Portfolio
   ================================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --bg: #060a0f;
  --surface: #0b1018;
  --card: #111820;
  --card-hover: #151e28;
  --border: #1a2535;
  --border-hover: #243347;

  --accent: #00e5ff;
  --accent-dim: rgba(0,229,255,.12);
  --accent2: #7c3aed;
  --accent2-dim: rgba(124,58,237,.12);
  --accent3: #f0b429;
  --accent3-dim: rgba(240,180,41,.12);
  --accent-aws: #ff9900;
  --accent-aws-dim: rgba(255,153,0,.12);

  --text: #e2eaf2;
  --muted: #5e7a94;
  --dim: #1e2d3d;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 12px 64px rgba(0,0,0,.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: .35;
}

/* ── GRID BG ── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .3; pointer-events: none;
}

/* ── GLOW BLOBS ── */
.blob {
  position: fixed; border-radius: 50%;
  filter: blur(140px); pointer-events: none; z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: var(--accent2); top: -150px; left: -150px; opacity: .12; }
.blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -80px; right: -80px; opacity: .08; }
.blob-3 { width: 300px; height: 300px; background: var(--accent3); top: 50%; left: 60%; opacity: .06; }

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%); transition: transform .1s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(0,229,255,.4); pointer-events: none; z-index: 10000;
  transform: translate(-50%,-50%); transition: all .15s ease;
}

/* ── LAYOUT ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 10px 0;
  background: rgba(6,10,15,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
nav.scrolled { padding: 12px 0; }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px;
  color: var(--text); text-decoration: none; letter-spacing: -1px;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-link {
  color: var(--muted); text-decoration: none; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.btn-sm {
  padding: 8px 18px; border-radius: var(--radius-sm);
  background: var(--accent-dim); border: 1px solid rgba(0,229,255,.3);
  color: var(--accent); font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .08em; text-decoration: none;
  transition: all .2s; white-space: nowrap;
}
.btn-sm:hover { background: var(--accent); color: #000; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 490; backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative;
}
.hero-content { max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,229,255,.5); }
  50% { box-shadow: 0 0 0 8px rgba(0,229,255,0); }
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7.5vw, 90px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -3px; margin-bottom: 8px;
}
.hero h1 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-weight: 400;
  color: var(--accent); letter-spacing: -1px;
}
.hero-sub {
  font-size: 15px; color: var(--muted); max-width: 520px;
  margin: 28px 0 44px; min-height: 1.7em;
}
.cursor-blink { animation: blink 1s step-end infinite; color: var(--accent); }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: .06em; text-decoration: none;
  transition: all .22s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #000; font-weight: 600;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,229,255,.3); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost {
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(0,229,255,.25);
}
.btn-ghost:hover { background: var(--accent); color: #000; transform: translateY(-2px); }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  margin-top: 60px; padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 34px;
  font-weight: 800; color: var(--text); line-height: 1;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero floating badges */
.hero-badges { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.tech-badge {
  position: absolute; padding: 8px 14px; border-radius: 6px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 11px; color: var(--muted); white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.badge-1 { top: -120px; right: 20px; animation-delay: 0s; }
.badge-2 { top: -50px; right: 160px; animation-delay: 1.2s; }
.badge-3 { top: 30px; right: 0px; animation-delay: 2.4s; color: var(--accent-aws); border-color: rgba(255,153,0,.3); }
.badge-4 { top: 110px; right: 140px; animation-delay: 0.8s; }
.badge-5 { top: 180px; right: 20px; animation-delay: 1.8s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── SECTIONS ── */
section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.section-label::after {
  content: ''; width: 40px; height: 1px;
  background: var(--accent); opacity: .4;
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 46px);
  font-weight: 800; letter-spacing: -1.5px; margin-bottom: 56px; line-height: 1.1;
}
.section-title em {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-weight: 400; color: var(--muted);
}

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 3px; }
.timeline-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 40px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.timeline-item:hover { border-color: var(--accent); transform: translateX(5px); }
.tl-accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent2));
}
.tl-accent-gold { background: linear-gradient(to bottom, var(--accent3), var(--accent2)); }
.tl-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 8px;
}
.tl-role {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
}
.tl-company { color: var(--accent); font-size: 13px; margin-bottom: 6px; font-weight: 600; }
.tl-company-gold { color: var(--accent3); }
.tl-badge {
  display: inline-block; padding: 3px 10px; border-radius: 3px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(0,229,255,.2);
}
.tl-badge-gold {
  background: var(--accent3-dim); color: var(--accent3);
  border-color: rgba(240,180,41,.2);
}
.tl-meta { font-size: 11px; color: var(--muted); text-align: right; line-height: 1.7; }
.tl-bullets { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tl-bullets li {
  padding-left: 22px; position: relative; color: #8da0b3; font-size: 13px; line-height: 1.7;
}
.tl-bullets li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--accent); font-size: 11px; top: 2px;
}
.tl-bullets-gold li::before { color: var(--accent3); }
.tl-bullets strong { color: var(--text); font-weight: 500; }
.tl-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }

/* ── SKILL CARDS ── */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.skill-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color .3s, transform .3s;
}
.skill-card:hover { border-color: var(--accent2); transform: translateY(-4px); }
.skill-card-icon {
  width: 42px; height: 42px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 20px;
}
.skill-card-title {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em;
}
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 10px; border-radius: 3px; font-size: 11px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); transition: all .2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent); }
.tag-aws {
  background: var(--accent-aws-dim); border-color: rgba(255,153,0,.25);
  color: var(--accent-aws);
}
.tag-aws:hover { border-color: var(--accent-aws); color: var(--accent-aws); }

/* ── ARCHITECTURE ── */
.arch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.arch-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .3s, transform .3s;
}
.arch-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.arch-badge {
  display: inline-block; padding: 3px 10px; border-radius: 3px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(0,229,255,.2); margin-bottom: 16px;
}
.arch-badge-gold { background: var(--accent3-dim); color: var(--accent3); border-color: rgba(240,180,41,.2); }
.arch-badge-purple { background: var(--accent2-dim); color: #a78bfa; border-color: rgba(124,58,237,.25); }
.arch-title {
  font-family: 'Syne', sans-serif; font-size: 18px;
  font-weight: 700; margin-bottom: 12px;
}
.arch-desc { font-size: 13px; color: #7a9ab4; line-height: 1.7; margin-bottom: 24px; }
.arch-diagram {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.arch-layer {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; padding: 8px 14px;
  transition: border-color .2s;
}
.arch-layer:hover { border-color: var(--accent); }
.arch-layer-1 { border-color: rgba(0,229,255,.3); background: rgba(0,229,255,.04); }
.arch-layer-2 { border-color: rgba(124,58,237,.3); background: rgba(124,58,237,.04); }
.arch-layer-3 { border-color: rgba(240,180,41,.3); background: rgba(240,180,41,.04); }
.arch-layer-4 { border-color: rgba(0,229,255,.2); }
.arch-layer-5 { border-color: rgba(124,58,237,.2); }
.arch-node { font-size: 11px; color: var(--text); letter-spacing: .04em; }
.arch-separator { color: var(--muted); }
.arch-arrow { font-size: 16px; color: var(--muted); }

/* ── PROJECTS ── */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.project-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(124,58,237,.1), transparent 70%);
  pointer-events: none;
}
.project-card:hover { border-color: var(--accent2); transform: translateY(-5px); }
.project-card-featured { border-color: rgba(0,229,255,.2); }
.project-card-featured::after {
  background: radial-gradient(circle at top right, rgba(0,229,255,.1), transparent 70%);
}
.project-featured-label {
  position: absolute; top: 16px; right: 16px;
  padding: 3px 10px; border-radius: 3px;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(0,229,255,.2);
}
.project-num {
  font-family: 'Syne', sans-serif; font-size: 48px;
  font-weight: 800; color: var(--dim); line-height: 1; margin-bottom: 12px;
}
.project-title { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.project-date { font-size: 11px; color: var(--accent3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.project-desc { font-size: 13px; color: #7a9ab4; line-height: 1.7; margin-bottom: 20px; }
.project-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.project-links { display: flex; gap: 12px; }
.project-link {
  font-size: 11px; color: var(--accent); text-decoration: none;
  letter-spacing: .08em; transition: opacity .2s;
}
.project-link:hover { opacity: .7; }

/* ── LEARNING ── */
.learning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.learning-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .3s, transform .3s;
}
.learning-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.learning-icon { font-size: 28px; margin-bottom: 16px; }
.learning-title {
  font-family: 'Syne', sans-serif; font-size: 17px;
  font-weight: 700; margin-bottom: 10px;
}
.learning-desc { font-size: 13px; color: #7a9ab4; line-height: 1.7; margin-bottom: 20px; }
.learning-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.learning-progress { display: flex; align-items: center; gap: 12px; }
.progress-bar {
  flex: 1; height: 3px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--accent); border-radius: 2px;
  transition: width 1s ease;
}
.progress-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; }

/* ── EDUCATION ── */
.edu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.edu-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .3s;
}
.edu-card:hover { border-color: var(--accent); }
.edu-year { font-size: 11px; color: var(--accent3); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.edu-degree { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.edu-school { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.edu-score {
  display: inline-block; padding: 4px 12px; border-radius: 3px;
  font-size: 12px; font-weight: 600;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid rgba(0,229,255,.2);
}
.edu-score-gold { background: var(--accent3-dim); color: var(--accent3); border-color: rgba(240,180,41,.2); }
.edu-score-purple { background: var(--accent2-dim); color: #a78bfa; border-color: rgba(124,58,237,.25); }

/* ── CONTACT ── */
.contact-section { text-align: center; max-width: 640px; margin: 0 auto; }
.contact-title {
  font-family: 'Syne', sans-serif; font-size: clamp(32px, 5vw, 54px);
  font-weight: 800; letter-spacing: -2px; margin-bottom: 20px; line-height: 1.1;
}
.contact-title em {
  font-family: 'Instrument Serif', serif; font-style: italic;
  font-weight: 400; color: var(--accent);
}
.contact-sub { font-size: 14px; color: var(--muted); margin-bottom: 48px; line-height: 1.7; }
.contact-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; font-size: 13px;
  transition: all .25s;
}
.contact-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-link:hover {
  border-color: var(--accent); color: var(--accent);
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,229,255,.15);
}

/* ── FOOTER ── */
footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
}
.footer-logo span { color: var(--accent); }
footer p { font-size: 11px; color: var(--muted); }
.footer-top {
  font-size: 12px; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.footer-top:hover { color: var(--accent); }

/* ── HERO TITLE TAG ── */
.hero-title-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,229,255,.07);
  border: 1px solid rgba(0,229,255,.18);
  border-radius: 4px;
  padding: 7px 16px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-title-sep {
  color: var(--muted);
  font-size: 14px;
}

/* ── LEARNING BANNER ── */
.learning-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255,153,0,.08), rgba(255,153,0,.03));
  border: 1px solid rgba(255,153,0,.3);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.learning-banner::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-aws), var(--accent3));
}
.learning-banner-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.learning-banner-content { flex: 1; }
.learning-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.learning-banner-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.learning-banner-badge {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--accent-aws-dim);
  border: 1px solid rgba(255,153,0,.35);
  border-radius: 6px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-aws);
  letter-spacing: .05em;
}

@media (max-width: 640px) {
  .hero-title-tag { font-size: 11px; padding: 6px 12px; gap: 7px; }
  .learning-banner { flex-wrap: wrap; gap: 14px; padding: 20px; }
  .learning-banner-badge { width: 100%; text-align: center; }
  .learning-grid { grid-template-columns: 1fr; }
}