/* ============================================================
   ROHIT SUDHAKAR · PORTFOLIO
   ============================================================ */

:root {
  --bg:        #0a0907;
  --bg-2:      #110f0c;
  --bg-3:      #181511;
  --fg:        #f1e9dc;
  --fg-mute:   #9b9183;
  --fg-dim:    #5e564b;
  --line:      #2a251f;
  --line-2:    #3a342b;
  --copper:    #e0a060;
  --copper-2:  #d97757;
  --silk:      #c7b46a;
  --green:     #8fa66a;

  --serif: "Fraunces", "Times New Roman", serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
  .cursor { display: none; }
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--copper); color: var(--bg); }

/* Grain */
.grain {
  position: fixed; inset: 0; pointer-events: none;
  z-index: 200; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Cursor */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 1px; height: 1px;
  pointer-events: none; z-index: 300;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor .cx, .cursor .cy { position: absolute; background: var(--copper); }
.cursor .cx { height: 1px; width: 22px; left: -11px; top: 0; }
.cursor .cy { width: 1px; height: 22px; top: -11px; left: 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 9, 7, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.topbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}
.brand {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.brand-dot { color: var(--copper); }
.nav { justify-self: center; display: flex; gap: 26px; }
.nav a {
  color: var(--fg-mute);
  transition: color 200ms ease;
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px; background: var(--copper);
  transition: right 280ms cubic-bezier(.6,.1,.2,1);
}
.nav a:hover::after { right: 0; }

.instruments {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--fg-dim);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.resume-btn {
  border: 1px solid var(--copper);
  color: var(--copper);
  padding: 5px 10px;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: background 200ms ease, color 200ms ease;
}
.resume-btn:hover { background: var(--copper); color: var(--bg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 100px) var(--pad-x) clamp(60px, 8vh, 120px);
  border-bottom: 1px solid var(--line);
  border-left: 1px dashed var(--line-2);
  border-right: 1px dashed var(--line-2);
}
.hero-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--copper);
  font-weight: 500;
  user-select: none;
}
.tl { top: 12px; left: 12px; }
.tr { top: 12px; right: 12px; }
.bl { bottom: 12px; left: 12px; }
.br { bottom: 12px; right: 12px; }

.silk {
  position: absolute;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--silk);
  opacity: 0.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  user-select: none;
}
.silk-tl { top: 16px; left: 40px; }
.silk-br { bottom: 16px; right: 40px; text-align: right; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: center;
}

.schematic {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  width: 100%;
  justify-self: center;
}
.schematic .board { width: 100%; height: 100%; display: block; }

.chip-ref {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  fill: var(--fg-dim);
  letter-spacing: 0.1em;
}
.chip-name {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  fill: var(--copper);
  letter-spacing: 0.14em;
}
.chip-sub {
  font-family: var(--mono);
  font-size: 8px;
  fill: var(--fg-dim);
  letter-spacing: 0.08em;
}
.main-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  fill: var(--fg);
  letter-spacing: 0;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.main-ref {
  font-family: var(--mono);
  font-size: 9px;
  fill: var(--copper);
  letter-spacing: 0.12em;
}
.silk-tx {
  font-family: var(--mono);
  font-size: 8.5px;
  fill: var(--silk);
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.traces .trace {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 1.6s cubic-bezier(.5,0,.2,1) forwards;
}
.traces .trace:nth-child(1) { animation-delay: 200ms; }
.traces .trace:nth-child(2) { animation-delay: 320ms; }
.traces .trace:nth-child(3) { animation-delay: 440ms; }
.traces .trace:nth-child(4) { animation-delay: 560ms; }
.traces .trace.dim {
  opacity: 0.4;
  stroke-width: 0.8;
  stroke-dasharray: 4 3;
  animation-duration: 2.6s;
  animation-delay: 800ms;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.pads circle, .holes circle {
  opacity: 0;
  animation: fade 600ms ease forwards;
  animation-delay: 1.4s;
}
@keyframes fade { to { opacity: 1; } }

.chip {
  opacity: 0;
  transform-origin: center;
  animation: chipIn 600ms cubic-bezier(.3,1.4,.5,1) forwards;
  cursor: pointer;
  transition: transform 280ms ease;
}
.chip[data-chip="ai"]       { animation-delay: 1.7s; }
.chip[data-chip="embedded"] { animation-delay: 1.85s; }
.chip[data-chip="mobile"]   { animation-delay: 2.0s; }
.chip[data-chip="web"]      { animation-delay: 2.15s; }
.chip.main {
  animation-delay: 1.3s;
  animation-duration: 700ms;
}
.chip[data-chip]:hover rect {
  stroke: var(--copper);
  filter: drop-shadow(0 0 6px rgba(224, 160, 96, 0.4));
}
.chip[data-chip]:hover .chip-name { fill: var(--fg); }
@keyframes chipIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* HERO COPY */
.hero-copy { max-width: 560px; }
.kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--copper);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  opacity: 0;
  animation: rise 900ms ease forwards;
  animation-delay: 0.6s;
}
.display {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(40px, 5.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.display .line {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms cubic-bezier(.2,.7,.2,1) forwards;
}
.display .line:nth-child(1) { animation-delay: 0.7s; }
.display .line:nth-child(2) {
  animation-delay: 0.85s;
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  margin-left: 22px;
}
.display .line:nth-child(3) { animation-delay: 1.0s; }

.lede {
  max-width: 520px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--fg);
  font-weight: 350;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 900ms ease forwards;
  animation-delay: 1.15s;
}

.hero-foot {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 900ms ease forwards;
  animation-delay: 1.3s;
}
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  border: 1px solid var(--fg);
}
.cta:hover {
  transform: translate(-2px, -2px);
  background: var(--bg);
  color: var(--copper);
  border-color: var(--copper);
  box-shadow: 2px 2px 0 var(--copper);
}
.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.cta-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: translate(-2px, -2px);
}
.cta .arrow, .cta-secondary .arrow { transition: transform 200ms ease; }
.cta:hover .arrow { transform: translateX(3px); }
.cta-secondary:hover .arrow { transform: translate(2px, -2px); }

.status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--fg-mute);
  text-transform: lowercase; letter-spacing: 0.06em;
}
.status .dot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 8px rgba(143,166,106,0.7);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,166,106,0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(143,166,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,166,106,0); }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.experience, .work, .archive, .about, .contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 140px) var(--pad-x);
  border-bottom: 1px solid var(--line);
  border-left: 1px dashed var(--line-2);
  border-right: 1px dashed var(--line-2);
}
.section-head { margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 12px 0 14px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.section-head .num {
  font-family: var(--mono);
  font-style: normal;
  font-size: 14px;
  color: var(--fg-dim);
  vertical-align: top;
  margin-right: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.section-head .sec-sub {
  color: var(--fg-mute);
  font-size: 13px;
  max-width: 560px;
  margin: 0;
}
.rule {
  display: block; width: 64px; height: 1px;
  background: var(--copper);
}

/* ============================================================
   EXPERIENCE TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.job {
  position: relative;
  padding: 28px 0 28px 32px;
  border-bottom: 1px solid var(--line);
}
.job:last-child { border-bottom: none; }
.job::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 36px;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--bg);
}
.job::after {
  content: "";
  position: absolute;
  left: -33px;
  top: 40px;
  width: 28px;
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
}
.job-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.job h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  margin: 0 0 4px;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
  color: var(--fg);
}
.job .award {
  display: inline-block;
  margin-left: 12px;
  padding: 3px 10px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: middle;
  font-style: normal;
}
.job .role {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.02em;
}
.job-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
}
.job-meta .date { color: var(--copper); font-weight: 500; }
.job ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.job ul li {
  position: relative;
  padding-left: 22px;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--fg);
}
.job ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-size: 10px;
  top: 4px;
}

/* ============================================================
   WORK / bands and cards
   ============================================================ */
.band {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 3vw, 56px);
  padding: 56px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.band:first-of-type { border-top: 1px solid var(--line-2); }
.band::before {
  content: "";
  position: absolute;
  left: 200px;
  top: 0;
  width: 12px;
  height: 1px;
  background: var(--copper);
  margin-left: -12px;
}

.band-label {
  position: sticky;
  top: 96px;
  align-self: start;
  display: flex; flex-direction: column;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--fg-mute);
}
.band-num {
  color: var(--copper); font-weight: 500;
  border: 1px solid var(--copper);
  padding: 4px 10px;
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.band-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1;
  letter-spacing: -0.04em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1),
              border-color 280ms ease,
              background 280ms ease;
  min-height: 240px;
}
.card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 0%), rgba(224, 160, 96, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}
.card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--copper);
  background: var(--bg-3);
  box-shadow: 2px 2px 0 var(--line-2);
}
.card:hover::after { opacity: 1; }

.card.feature {
  grid-column: 1 / -1;
  min-height: 280px;
}
.card.feature h3 {
  font-size: clamp(28px, 3.4vw, 40px);
}
.card.feature p { max-width: 680px; }
.card.dark {
  background: linear-gradient(135deg, #1a1612 0%, #14110d 100%);
  border-color: var(--line-2);
}

.card-meta {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--fg-dim);
  flex-wrap: wrap;
}
.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.card-stack {
  text-align: right;
  color: var(--fg-mute);
  flex: 1; min-width: 0;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  font-variation-settings: "opsz" 144;
}
.card p {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--fg-mute);
  margin: 0;
}
.card-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.card-cta .arrow { transition: transform 220ms ease; }
.card:hover .card-cta .arrow { transform: translateX(5px); }

/* ============================================================
   ARCHIVE
   ============================================================ */
.arc-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.arc-list li {
  display: grid;
  grid-template-columns: minmax(180px, 220px) auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition: background 200ms ease, padding 200ms ease;
}
.arc-list li:hover {
  background: var(--bg-2);
  padding-left: 16px;
}
.arc-list a {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color 200ms ease;
}
.arc-list li:hover a { color: var(--copper); }
.arc-list span { color: var(--fg-mute); font-size: 12.5px; }
.arc-list .dot-sep { color: var(--fg-dim); }
.arc-list .year {
  font-family: var(--mono);
  color: var(--fg-dim);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.about-copy p {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  font-weight: 350;
  margin: 0 0 22px;
  color: var(--fg);
}
.facts {
  border-left: 1px solid var(--line-2);
  padding-left: clamp(20px, 3vw, 36px);
  position: relative;
}
.facts dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  font-size: 12px;
}
.facts dt {
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10.5px;
  padding-top: 2px;
}
.facts dd { margin: 0; color: var(--fg); line-height: 1.55; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.contact-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 28px 24px 24px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 280ms ease, transform 280ms ease, background 280ms ease, box-shadow 280ms ease;
  min-height: 160px;
}
.contact-card:hover {
  border-color: var(--copper);
  background: var(--bg-3);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 var(--line-2);
}
.cc-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--copper);
}
.cc-v {
  font-family: var(--serif);
  font-size: clamp(15px, 1.5vw, 19px);
  letter-spacing: -0.015em;
  color: var(--fg);
  word-break: break-all;
}
.cc-arrow {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 16px;
  color: var(--fg-mute);
  transition: transform 280ms ease, color 280ms ease;
}
.contact-card:hover .cc-arrow {
  color: var(--copper);
  transform: translate(3px, -3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad-x) 36px;
  border-left: 1px dashed var(--line-2);
  border-right: 1px dashed var(--line-2);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-dim);
  font-size: 11px;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-mono a {
  color: var(--fg-mute);
  border-bottom: 1px dotted var(--fg-dim);
  transition: color 200ms ease;
}
.foot-mono a:hover { color: var(--copper); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .schematic { max-width: 480px; }
  .silk-tl, .silk-br { display: none; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .topbar-inner { grid-template-columns: auto 1fr; gap: 16px; }
  .nav { justify-self: end; gap: 16px; }
  .instruments .clock { display: none; }

  .band {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 36px 0;
  }
  .band::before { display: none; }
  .band-label {
    position: static;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
  }
  .band-count { font-size: 32px; }

  .cards { grid-template-columns: 1fr; }
  .card.feature { grid-column: 1; }
  .card { padding: 22px; min-height: auto; }
  .card h3 { font-size: 22px; }
  .card.feature h3 { font-size: 26px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .facts { border-left: none; border-top: 1px solid var(--line-2); padding-left: 0; padding-top: 28px; }

  .contact-grid { grid-template-columns: 1fr; }

  .timeline { padding-left: 20px; }
  .job { padding-left: 22px; }
  .job::before { left: -24px; }
  .job::after { display: none; }
  .job-meta { text-align: left; flex-direction: row; gap: 12px; }

  .arc-list li {
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 16px 4px;
  }
  .arc-list li > span:nth-child(2),
  .arc-list li > span:nth-child(3) {
    grid-column: 1 / -1;
  }
  .arc-list .dot-sep { display: none; }
  .arc-list .year { grid-column: 2; grid-row: 1; }
}

@media (max-width: 480px) {
  .display { font-size: 40px; }
  .display .line:nth-child(2) { margin-left: 12px; }
  .lede { font-size: 15px; }
  .section-head h2 { font-size: 36px; }
  .hero { padding-top: 36px; padding-bottom: 48px; }
  .resume-btn { padding: 4px 8px; font-size: 10px; }
}
