/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }

/* Design tokens */
:root {
  --paper:        #FAF6EF;
  --ink:          #2E2A25;
  --accent-sage:  #8A9B78;
  --accent-rose:  #C98B8B;
  --sticky-note:  #F4E7A1;
  --line-faint:   #E4DCC9;

  --font-display: 'Playfair Display', serif;
  --font-hand:    'Caveat', cursive;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-width: 1240px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
}

.btn-secondary {
  background: transparent;
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  color: var(--paper);
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line-faint);
}

.site-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav-links a:hover, .nav-links a:focus-visible {
  opacity: 1;
}

.nav-resume {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-resume:hover, .nav-resume:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.5rem 1.5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.65rem 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line-faint);
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-resume { display: inline-block; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  padding: 3rem 1.5rem 4rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.notebook-opener {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.55;
  background: var(--sticky-note);
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  transform: rotate(-1deg);
  box-shadow: 0 2px 6px rgba(46, 42, 37, 0.12);
  white-space: pre-wrap;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.1rem);
  line-height: 1.03;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.hero-role {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 1.5rem;
}

.hero-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-support {
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.8;
  max-width: 46ch;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-techline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink);
  opacity: 0.5;
}

/* Hero network viz */
.hero-viz {
  width: 100%;
  aspect-ratio: 400 / 380;
}

.network-lines line {
  stroke: var(--line-faint);
  stroke-width: 1.4;
  opacity: 0;
  animation: line-fade 0.6s ease forwards;
  animation-delay: 0.75s;
}

.network-points circle {
  fill: var(--accent-sage);
  opacity: 0;
  animation-name: point-in, drift;
  animation-duration: 0.4s, 5s;
  animation-timing-function: ease, ease-in-out;
  animation-fill-mode: forwards, none;
  animation-iteration-count: 1, infinite;
}

.network-labels text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  fill: var(--accent-rose);
  opacity: 0;
  animation: label-fade 0.5s ease forwards;
}

@keyframes point-in { to { opacity: 1; } }
@keyframes line-fade { to { opacity: 1; } }
@keyframes label-fade { to { opacity: 0.85; } }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -3px); }
}

/* Numbers */
.numbers {
  padding: 2.5rem 1.5rem 5rem;
}

.numbers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

@media (min-width: 760px) {
  .numbers-inner { grid-template-columns: repeat(4, 1fr); }
}

.number-tile {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.number-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--ink);
  line-height: 1;
}

.number-label {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.65;
}

/* Skills */
.skills {
  position: relative;
  padding: 4rem 1.5rem 5rem;
}

.skills::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--line-faint) 1.4px, transparent 1.4px);
  background-size: 20px 20px;
  opacity: 0.6;
  pointer-events: none;
}

.skills-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hand-annotation {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--accent-rose);
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

@media (min-width: 640px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .skills-grid { grid-template-columns: repeat(3, 1fr); }
}

.skill-cluster {
  background: var(--paper);
  border: 1px solid var(--line-faint);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(46, 42, 37, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-cluster:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(46, 42, 37, 0.12);
}

.cell-input {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(138, 155, 120, 0.08);
  border-bottom: 1px dashed var(--line-faint);
  border-left: 3px solid var(--accent-sage);
}

.cell-prompt {
  color: var(--accent-sage);
  font-weight: 600;
  white-space: nowrap;
}

.cell-code {
  color: var(--ink);
}

.cell-output {
  padding: 0.9rem 1rem 1.1rem;
  border-left: 3px solid var(--line-faint);
}

.output-prompt {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent-rose);
  opacity: 0.85;
  margin-bottom: 0.55rem;
}

.output-list-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.15em;
}

.bracket {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink);
  opacity: 0.4;
}

.output-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.35em;
}

.output-list li {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--accent-rose);
}

.output-list li::before {
  content: "'";
}

.output-list li::after {
  content: "',";
  color: var(--ink);
  opacity: 0.45;
}

.output-list li:last-child::after {
  content: "'";
}

/* Experience timeline */
.experience {
  padding: 5rem 1.5rem;
}

.experience-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.timeline {
  list-style: none;
  margin-top: 2.5rem;
  max-width: 840px;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.5rem 1rem;
  padding-bottom: 2.5rem;
}

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

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent-rose);
  padding-top: 0.15rem;
}

.timeline-content {
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--line-faint);
  padding-bottom: 0.25rem;
}

.timeline-content::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.3rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-sage);
  border: 2px solid var(--paper);
}

.timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.9rem;
  margin-bottom: 0.2rem;
}

.timeline-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}

.timeline-entry--major .timeline-role {
  font-weight: 700;
}

.timeline-dates {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink);
  opacity: 0.55;
}

.timeline-org {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.65;
  margin-bottom: 0.6rem;
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.timeline-bullets li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}

.timeline-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-sage);
}

.timeline-tags {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--accent-sage);
  opacity: 0.85;
}

/* Selected work */
.work {
  padding: 5rem 1.5rem 6rem;
}

.work-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.work-sub {
  color: var(--ink);
  opacity: 0.7;
  margin: -1.5rem 0 3rem;
  font-size: 1rem;
}

.project-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-rose);
}

.project-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--ink);
  margin: 0.4rem 0 0.9rem;
}

.project-question {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.project-question .label,
.project-finding .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-sage);
  margin-bottom: 0.25rem;
}

.project-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.project-metrics {
  display: flex;
  gap: 1.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.project-metrics div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.metric-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}

.project-metrics--compact .metric-value {
  font-size: 1.1rem;
}

.metric-label {
  font-size: 0.76rem;
  color: var(--ink);
  opacity: 0.6;
}

.project-finding {
  font-size: 0.92rem;
  color: var(--ink);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 1rem;
}

.project-approach {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 0.9rem;
}

.project-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent-sage);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.project-link:hover, .project-link:focus-visible {
  border-color: var(--accent-sage);
}

.project--hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-faint);
}

@media (min-width: 860px) {
  .project--hero {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 3rem;
  }
}

.project-viz svg .axis {
  stroke: var(--line-faint);
  stroke-width: 1.5;
}

.project-viz svg .curve {
  fill: none;
  stroke: var(--accent-sage);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: curve-draw 1.2s 0.2s ease forwards;
}

@keyframes curve-draw {
  to { stroke-dashoffset: 0; }
}

.project-viz svg .axis-label {
  font-family: var(--font-mono);
  font-size: 9px;
  fill: var(--ink);
  opacity: 0.5;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
}

@media (min-width: 700px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}

.view-all-work {
  display: inline-block;
  margin-top: 3rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.view-all-work:hover, .view-all-work:focus-visible {
  color: var(--accent-rose);
  border-color: var(--accent-rose);
}

/* Education */
.education {
  padding: 4rem 1.5rem;
}

.education-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.education-card {
  margin-top: 2rem;
  max-width: 760px;
}

.education-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.education-school {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
}

.education-dates {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-rose);
}

.education-degree {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.education-courses .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-sage);
  margin-bottom: 0.35rem;
}

.education-courses {
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.7;
  line-height: 1.75;
}

/* Beyond the dataset */
.beyond {
  padding: 5rem 1.5rem 6rem;
}

.beyond-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.beyond-sub {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--accent-rose);
  transform: rotate(-1deg);
  display: inline-block;
  margin: -1.5rem 0 1.5rem;
}

.beyond-lede {
  font-size: 1rem;
  color: var(--ink);
  opacity: 0.85;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 700px) {
  .scrapbook { grid-template-columns: repeat(3, 1fr); }
}

.scrap {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-faint);
  border-radius: 4px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 6px 16px rgba(46, 42, 37, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: 120px;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scrap--rotate-a { transform: rotate(-1.5deg); }
.scrap--rotate-b { transform: rotate(1.5deg); }

.scrap:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 12px 24px rgba(46, 42, 37, 0.14);
}

.scrap-tape {
  position: absolute;
  top: -10px;
  left: 24px;
  width: 46px;
  height: 18px;
  background: rgba(244, 231, 161, 0.85);
  border: 1px solid rgba(46, 42, 37, 0.08);
  transform: rotate(-6deg);
  box-shadow: 0 2px 4px rgba(46, 42, 37, 0.12);
}

.scrap-icon {
  width: 28px;
  height: 28px;
  stroke: var(--accent-sage);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scrap-label {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--ink);
}

.scrap-role {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.scrap-org {
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.65;
}

.scrap--photo {
  align-items: center;
  text-align: center;
}

.scrap-photo-placeholder {
  width: 100%;
  height: 64px;
  border-radius: 3px;
  background-image: repeating-linear-gradient(45deg, var(--line-faint), var(--line-faint) 6px, transparent 6px, transparent 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--ink);
  opacity: 0.55;
}

/* Contact */
.contact {
  padding: 5rem 1.5rem 6rem;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact .section-title {
  color: var(--paper);
}

.contact-sub {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.contact-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.contact .btn-secondary {
  border-color: rgba(250, 246, 239, 0.4);
  color: var(--paper);
}

.contact .btn-secondary:hover, .contact .btn-secondary:focus-visible {
  background: var(--accent-sage);
  border-color: var(--accent-sage);
  color: var(--paper);
}

.contact .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.contact .btn-primary:hover, .contact .btn-primary:focus-visible {
  background: var(--accent-rose);
  border-color: var(--accent-rose);
  color: var(--paper);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--paper);
}

.footer-line {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-links a:hover, .footer-links a:focus-visible {
  opacity: 1;
  color: var(--accent-sage);
}

.footer-joke {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink);
  opacity: 0.4;
}

/* Scroll reveal */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .btn,
  .project-link,
  .view-all-work,
  .scrap,
  .skill-cluster,
  .footer-links a,
  .nav-links a,
  .nav-resume,
  .site-nav {
    transition: none;
  }

  .network-points circle,
  .network-lines line,
  .network-labels text {
    animation: none !important;
    opacity: 1;
  }

  .project-viz svg .curve {
    animation: none;
    stroke-dashoffset: 0;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


@media (min-width: 640px) {
  .hero { padding: 3.5rem 2.5rem 4rem; }
}
