/* ===========================================================
   Frank Rivera — Portfolio v3
   Identity: "Performance readout" — a measurement instrument.
   Every numeral is set in mono, because numbers are the medium.
   Display: Archivo (heavy, slightly expanded).  Body: IBM Plex Sans.
   Data/labels: IBM Plex Mono.  One accent: signal ultramarine.
   =========================================================== */

:root {
  --paper:       #f6f4ee;   /* base background — warm off-white */
  --paper-2:     #fdfcf7;   /* raised cards — warm near-white */
  --panel:       #ede9df;   /* recessed panels / chart ground */
  --ink:         #191712;   /* warm near-black */
  --graphite:    #5c574e;   /* secondary text — warm gray */
  --rule:        #cdc6b5;   /* hairlines, tick marks */
  --rule-soft:   #e0dacb;
  --signal:      #0b23e8;   /* the one accent — cost-efficiency line, active state */
  --signal-ink:  #0a1fc7;
  --signal-wash: #e5e8fd;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 44px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--signal); color: #fff; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 200; font-family: var(--font-mono); font-size: .8rem;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 1px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- Shared type ---------- */
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; }

.hero-title, .section-title, .contact-title {
  font-stretch: 112%;            /* progressive: expands where the wdth axis loads */
  letter-spacing: -0.018em;
  line-height: 1.04;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--ink);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.75rem);
  max-width: 22ch;
}
.section-note {
  color: var(--graphite);
  font-size: 1.02rem;
  max-width: 58ch;
  margin: 18px 0 0;
}

/* numerals everywhere use the mono, tabular */
.mono, .unit, .topline dd, .tr-period, .tr-metric .num,
.chart text, .footer-mono, .tr-index, .approach-tag {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.btn-sm { padding: 9px 16px; font-size: 0.8rem; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--signal); border-color: var(--signal); transform: translateY(-2px); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-role { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); }
.nav-links {
  list-style: none; display: flex; gap: 26px; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--graphite);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--signal); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  font-family: var(--font-mono); font-size: 0.8rem;
  background: none; border: 1.5px solid var(--ink); color: var(--ink);
  padding: 8px 14px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(64px, 12vh, 128px);
  padding-bottom: clamp(48px, 9vh, 96px);
}
.hero-head { position: relative; }
.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(96px, 11vw, 150px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}
.hero-title {
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  max-width: 28ch;
  text-wrap: balance;
}
.hero-title .ink-accent {
  color: var(--signal);
}
.hero-lower {
  margin-top: clamp(32px, 6vh, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.hero-deck {
  margin: 0 0 26px;
  color: var(--graphite);
  font-size: 1.1rem;
  max-width: 46ch;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.hero-facts > div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.hero-facts > div:last-child { border-bottom: 0; }
.hero-facts dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  padding-top: 3px;
}
.hero-facts dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink);
}

/* ---------- Section rhythm ---------- */
.curve-section, .tr-section, .sports-section, .approach-section, .cap-section, .contact-section {
  padding-block: clamp(72px, 12vh, 128px);
  border-top: 1px solid var(--rule);
}
.tr-section, .cap-section { background: var(--panel); }

/* ---------- The curve / chart ---------- */
.curve-head { max-width: 62ch; }
.chart {
  margin: 52px 0 0;
}
.chart-frame {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 20px 20px 6px;
}
.chart svg { width: 100%; height: auto; display: block; overflow: visible; }

.chart .grid-line { stroke: var(--rule-soft); stroke-width: 1; }
.chart .axis-base { stroke: var(--ink); stroke-width: 1.5; }
.chart .tick { stroke: var(--ink); stroke-width: 1.5; }
.chart .tick-label { fill: var(--graphite); font-size: 19px; }
.chart .end-tag { fill: var(--ink); font-size: 20px; font-weight: 600; }
.chart .end-tag.eff { fill: var(--signal); }

.chart .budget-fill { fill: color-mix(in srgb, var(--ink) 10%, transparent); }
.chart .budget-line { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linejoin: round; }
.chart .eff-line   { fill: none; stroke: var(--signal); stroke-width: 3.25; stroke-linejoin: round; stroke-linecap: round; }

/* markers are always visible; only the two lines draw in on reveal */

.chart .marker { cursor: pointer; }
.chart .marker-dot { fill: var(--paper-2); stroke: var(--ink); stroke-width: 2; transition: fill .15s ease, stroke .15s ease; }
.chart .marker:hover .marker-dot,
.chart .marker:focus-visible .marker-dot,
.chart .marker.is-active .marker-dot { fill: var(--signal); stroke: var(--signal); }
.chart .marker-hit { fill: transparent; }
.chart .guide { stroke: var(--signal); stroke-width: 1; stroke-dasharray: 3 3; opacity: 0; transition: opacity .15s ease; }
.chart .guide.show { opacity: 1; }

.chart .callout-box { fill: var(--ink); }
.chart .callout-role { fill: #fff; font-family: var(--font-mono); font-size: 18px; }
.chart .callout-stat { fill: color-mix(in srgb, #fff 70%, transparent); font-family: var(--font-mono); font-size: 16px; }

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--graphite);
}
.lg { display: inline-flex; align-items: center; gap: 8px; }
.lg-swatch { width: 16px; height: 3px; display: inline-block; }
.lg-budget .lg-swatch { background: var(--ink); }
.lg-eff .lg-swatch { background: var(--signal); }

/* ---------- Topline stats ---------- */
.topline {
  margin: 44px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-right: 0;
}
.topline-item {
  padding: 22px 20px;
  border-right: 1px solid var(--rule);
}
.topline dt {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 12px;
}
.topline dd {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.topline .unit { font-size: 1.1rem; color: var(--graphite); margin-left: 2px; }
.topline .slot { font-variant-numeric: tabular-nums; display: inline-block; transition: color .45s ease; }
.topline .slot.spinning { color: var(--signal); }

/* ---------- Track record ---------- */
.tr-list {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.tr-row { border-bottom: 1px solid var(--rule); }
.tr-summary {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 130px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 8px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: background .15s ease;
}
.tr-summary:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }
.tr-index { font-size: 0.8rem; color: var(--graphite); }
.tr-period { font-size: 0.82rem; color: var(--graphite); white-space: nowrap; }
.tr-role { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.tr-outcome {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--graphite);
  margin-top: 6px;
  max-width: 54ch;
}
.tr-row.open .tr-outcome { display: none; }
.tr-toggle {
  font-family: var(--font-mono); font-size: 1.1rem; color: var(--graphite);
  transition: transform .2s ease; line-height: 1;
}
.tr-row.open .tr-toggle { transform: rotate(45deg); color: var(--signal); }
.tr-row.open .tr-summary { background: color-mix(in srgb, var(--ink) 4%, transparent); }

.tr-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
@media (prefers-reduced-motion: reduce) { .tr-detail { transition: none; } }
.tr-row.open .tr-detail { grid-template-rows: 1fr; }
.tr-detail-inner { overflow: hidden; }
.tr-detail-pad {
  padding: 4px 8px 32px;
  padding-left: calc(44px + 130px + 48px);
  max-width: 74ch;
}
.tr-detail ul { margin: 0 0 22px; padding-left: 18px; }
.tr-detail li { margin-bottom: 10px; color: var(--graphite); }
.tr-metrics { display: flex; flex-wrap: wrap; gap: 10px; }
.tr-metric {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 9px 14px;
}
.tr-metric .num { display: block; font-size: 1.05rem; font-weight: 500; color: var(--ink); }
.tr-metric .lbl { font-size: 0.74rem; color: var(--graphite); font-family: var(--font-mono); letter-spacing: 0.02em; }

/* ---------- Live sports for streaming ---------- */
.sport-panels {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rule);
}
.sport-panel {
  padding: 32px 34px 34px;
  border-right: 1px solid var(--rule);
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
}
.sport-panel:last-child { border-right: 0; }
.sport-plat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.sport-era {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 8px 0 0;
}
.sport-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sport-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink);
}
.sport-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--signal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sport-callout {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
.sport-list { margin-bottom: 28px; }
.sport-callout::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--signal);
  margin-bottom: 14px;
}

/* ---------- Approach ---------- */
.approach-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
}
.approach-card {
  padding: 30px 28px 36px;
  border-right: 1px solid var(--rule);
}
.approach-card:last-child { border-right: 0; }
.approach-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  display: block;
  margin-bottom: 26px;
}
.approach-card h3 {
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.approach-card p { margin: 0; color: var(--graphite); font-size: 0.98rem; }

/* ---------- Capabilities ---------- */
.cap-groups {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.cap-group h4 {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}
.cap-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.cap-tags li {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border: 1px solid var(--rule);
  padding: 6px 12px;
  color: var(--ink);
  background: var(--paper-2);
}
.edu-row {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.edu-degree { margin: 0; font-weight: 600; font-size: 0.98rem; }
.edu-meta { margin: 4px 0 0; font-family: var(--font-mono); font-size: 0.78rem; color: var(--graphite); }

/* ---------- Contact ---------- */
.contact-section { text-align: left; }
.contact-title {
  font-stretch: 112%;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
  margin-bottom: 20px;
}
.contact-note {
  margin: 0 0 32px;
  color: var(--graphite);
  font-size: 1.02rem;
  max-width: 46ch;
}
.contact-methods { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding-block: 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--graphite);
}

/* ---------- Reveal on scroll ---------- */
.reveal-up { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-links.show {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 6px var(--gutter) 14px;
  }
  .nav-links.show a { padding: 12px 0; border-bottom: 1px solid var(--rule-soft); }
  .nav-toggle { display: block; }
}

@media (max-width: 900px) {
  .hero { padding-top: clamp(40px, 8vh, 72px); }
  .hero-title { font-size: clamp(2rem, 8.5vw, 4.4rem); }
  .hero-title br { display: none; }
  .hero-head { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 22px; }
  .hero-portrait { position: static; width: clamp(84px, 16vw, 104px); }
  .hero-lower { grid-template-columns: 1fr; align-items: start; gap: 28px; margin-top: 30px; padding-top: 26px; }
  .topline { grid-template-columns: repeat(2, 1fr); border-bottom: 0; }
  .topline-item { border-bottom: 1px solid var(--rule); }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .approach-card:last-child { border-bottom: 0; }
  .sport-panels { grid-template-columns: 1fr; }
  .sport-panel { border-right: 0; border-bottom: 1px solid var(--rule); }
  .sport-panel:last-child { border-bottom: 0; }
  .cap-groups { grid-template-columns: 1fr; gap: 30px; }

  .tr-summary {
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    row-gap: 5px;
    padding: 22px 6px;
  }
  .tr-index { display: none; }
  .tr-period { grid-column: 1; grid-row: 1; }
  .tr-role { grid-column: 1; grid-row: 2; }
  .tr-summary .tr-toggle { grid-column: 2; grid-row: 1 / 3; align-self: center; }
  .tr-detail-pad { padding-left: 6px; }
}

@media (max-width: 620px) {
  .brand-role { display: none; }
  .nav-right .btn-sm { display: none; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2rem); }
  .contact-title { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-portrait { width: 84px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .topline { grid-template-columns: 1fr; }
  .topline dd { font-size: 2rem; }
  .chart-frame { padding: 14px 12px 6px; }
}

/* ---------- Print ---------- */
@media print {
  @page { margin: 1.5cm; }
  :root { --paper: #fff; --paper-2: #fff; --panel: #fff; --ink: #000; --graphite: #333; --rule: #999; --rule-soft: #bbb; }
  * { box-shadow: none !important; }
  body { font-size: 10.5pt; line-height: 1.4; background: #fff; }

  .site-nav, .skip-link, .nav-toggle, .hero-ctas,
  .chart .guide, .chart .callout, .chart-legend,
  .tr-toggle, .site-footer { display: none !important; }

  section, .hero { padding-block: 14pt !important; border-top: 0 !important; }
  .curve-section, .tr-section, .sports-section, .approach-section, .cap-section, .contact-section { break-inside: auto; }

  .hero { padding-top: 0 !important; }
  .hero-head { display: block; position: static; }
  .hero-portrait { position: static; width: 78px; float: right; margin: 0 0 8px 12px; }
  .hero-title { font-size: 22pt !important; max-width: none; }
  .hero-title br { display: none; }
  .hero-title .ink-accent { color: #000; }
  .hero-lower { border-top: 1px solid var(--rule); margin-top: 12pt; padding-top: 10pt; }

  .section-title { font-size: 15pt !important; opacity: 1 !important; transform: none !important; }
  .section-note, .reveal-up { opacity: 1 !important; transform: none !important; }
  .contact-title { font-size: 17pt !important; }

  /* chart: force the finished state regardless of scroll position */
  #chart svg { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  #chart .grid-line, #chart .axis-base, #chart .tick, #chart .tick-label,
  #chart .end-tag, #chart .marker-dot, #chart .budget-line, #chart .eff-line, #chart .budget-fill {
    opacity: 1 !important; stroke-dashoffset: 0 !important; transform: none !important;
  }
  .topline .slot { color: #000 !important; }
  .topline { break-inside: avoid; }

  /* track record: expand every role */
  .tr-detail { grid-template-rows: 1fr !important; }
  .tr-detail-inner { overflow: visible !important; }
  .tr-detail-pad { padding-left: 0 !important; max-width: none; }
  .tr-row .tr-outcome { display: none !important; }
  .tr-row, .role, .sport-panel, .approach-card, .topline-item, .cap-group { break-inside: avoid; }
  .tr-summary { padding: 8pt 0 !important; }

  .approach-grid, .sport-panels, .cap-groups { border-color: var(--rule); }
  .approach-card, .sport-panel { border-color: var(--rule); }

  /* buttons → plain text, no ink-heavy fills */
  .btn { border: 0 !important; background: none !important; color: #000 !important; padding: 0 !important; font-weight: 600; }
  .contact-methods { gap: 4pt 18pt; }
  .contact-methods a[href*="linkedin"]::after { content: "  linkedin.com/in/frank-rivera"; font-weight: 400; color: #555; }
  .contact-methods a[download] { display: none !important; }

  a { color: #000; text-decoration: none; }
}
