body {
  margin: 0;
  color: #F2F4F8;
  font-family: Inter, sans-serif;
  line-height: 1.6;
}

.skip {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #4A7BFF;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip:focus {
  top: 16px;
}


.hero {
  text-align: center;
  position: relative;
  padding: 80px 16px;
  background: linear-gradient(180deg, #1B2332 0%, #0E121A 100%);
}

.name {
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.tagline {
  color: #8B92A3;
  font-size: 1.1rem;
}

.cta {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 22px;
  background: #4A7BFF;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.cta:hover {
  transform: scale(1.03);
}

section {
  max-width: 900px;
  margin: auto;
  padding: 56px 16px;
}

section > h2 {
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #1B2332;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.card:hover {
  background: #222A3A;
}

.outcome {
  display: block;
  margin-top: 8px;
  color: #5AD5B0;
  font-size: 0.875rem;
  font-weight: 600;
}


footer {
  text-align: center;
  padding: 32px;
  color: #8B92A3;
}

html {
  transition: background-color 120ms ease, color 120ms ease;
}

html[data-theme="light"] {
  background: #F7F9FC;
  color: #1A202C;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 4px 8px;
  margin-right: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  color: #5AD5B0;
}

.hero-links {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 10px 20px;
  background: #4A7BFF;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease;
}

.hero-btn:hover {
  transform: scale(1.03);
}


.links a:hover {
  color: #4A7BFF;
}

/* default = dark */
html {
  background: #0E121A;
  color: #F2F4F8;
}

/* light override */
html[data-theme="light"] {
  background: #F7F9FC;
  color: #1A202C;
}

html[data-theme="light"] .card {
  background: #FFFFFF;
  color: #1A202C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

html[data-theme="light"] .badge {
  background: rgba(0,0,0,0.06);
  color: #2E8555;
}

#theme-toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #8B92A3;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.15s ease;
}

#theme-toggle:hover {
  transform: rotate(15deg);
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #4A7BFF;
  width: 0;
  z-index: 9999;
  transition: width 0.1s linear;
}

*:focus-visible {
  outline: 2px solid #4A7BFF;
  outline-offset: 3px;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 240ms ease, transform 240ms ease;
}

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

html[data-theme="light"] section {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

html[data-theme="light"] .transition {
  color: #3C3F47;
  border-left-color: rgba(0,0,0,0.12);
}

.details {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #8B92A3;
  padding-left: 20px;
  line-height: 1.4;
}

.extension {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #8B92A3;
}

.skills-list {
  padding-left: 20px;
  line-height: 1.5;
  color: #8B92A3;
  font-size: 0.95rem;
}

.learning-list {
  padding-left: 20px;
  line-height: 1.5;
  color: #8B92A3;
  font-size: 0.95rem;
}

.transition {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #A3A9B5;
  border-left: 3px solid rgba(255,255,255,0.14);
  padding-left: 16px;
  margin: -8px 0 24px;
  text-align: left !important;
}

.transition-section {
  padding-top: 56px;
  margin-top: -8px;
}

section#experience.reveal {
  padding-top: 8px !important;
  margin-top: -14px;
}

#experience h2 {
  margin-top: 0px;
}

#experience {
  padding-top: 8px !important;
  margin-top: -20px;
}

#experience > *:first-child {
  margin-top: 0;
  padding-top: 0;
}

#skills-evidence {
  padding-top: 32px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.evidence-item {
  background: rgba(255,255,255,0.04);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 160ms ease, background 160ms ease;
}

.evidence-item:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.evidence-item h3 {
  margin-top: 0;
  font-size: 1rem;
  margin-bottom: 6px;
}

.learning-list {
  margin-top: 12px;
  line-height: 1.6;
  list-style: disc;
  padding-left: 20px;
}

.learning-list li {
  margin-bottom: 8px;
}

.subtle-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: -6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}


@media print {
  .hero-links,
  #theme-toggle,
  #progress {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}

