/* ============================================================
   KINETIC INDEX — Jason Paez Personal Site
   Palette: warm paper #FBF8F2, near-black #16130E, deep teal #0E5A53
   Type: Space Grotesk (display) + Cormorant Garamond (accent)
   ============================================================ */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --paper:    #FBF8F2;
  --ink:      #16130E;
  --ink-60:   rgba(22,19,14,.60);
  --ink-30:   rgba(22,19,14,.30);
  --teal:     #0E5A53;
  --teal-dim: #0a4440;
  --teal-10:  rgba(14,90,83,.10);
  --teal-20:  rgba(14,90,83,.20);
  --white:    #ffffff;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Space Grotesk', system-ui, sans-serif;

  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;

  --section-pad: clamp(80px, 12vw, 160px);
  --gutter:      clamp(20px, 5vw, 80px);
  --max-w:       1200px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none; /* replaced by custom cursor */
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transition: transform .15s ease, background .2s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  opacity: .6;
  transition: transform .35s cubic-bezier(.23,1,.32,1), width .3s, height .3s, opacity .2s;
}

.cursor-ring.is-hovering {
  width: 64px;
  height: 64px;
  opacity: 1;
}

.cursor-label {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s;
  transform: translate(14px, 14px);
}

.cursor-label.visible { opacity: 1; }

/* Pointer fallback for touch/keyboard */
@media (hover: none) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
}

/* ─── NAV ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, box-shadow .3s;
}

.site-nav.scrolled {
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-30);
}

.nav-wordmark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--teal);
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

@media (max-width: 640px) {
  .nav-links { display: none; }
}

/* ─── SECTION COUNTER (01-07 index) ─── */
.section-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) 80px;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right picture,
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-name {
  font-family: var(--sans);
  font-size: clamp(52px, 8vw, 124px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-name span {
  display: block;
}

.hero-role-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero-role-dash {
  width: 32px;
  height: 1.5px;
  background: var(--teal);
  flex-shrink: 0;
}

.hero-role {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  letter-spacing: .01em;
  height: 1.2em;
  overflow: hidden;
}

.hero-role-words {
  display: flex;
  flex-direction: column;
  /* JS animates translateY */
}

.hero-role-words span {
  display: block;
  line-height: 1.2;
}

.hero-oneliner {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: none;
  transition: background .2s, transform .2s;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%);
  transition: transform .3s ease;
}

.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  cursor: auto;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--ink-30);
  border-radius: 0;
  cursor: none;
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  cursor: auto;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-30);
  transform-origin: left;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 50vh;
  }

  .hero-left {
    padding: 100px 20px 40px;
    justify-content: flex-end;
  }

  .hero-right {
    order: -1;
  }
}

/* ─── SHARED SECTION LAYOUT ─── */
.section {
  padding: var(--section-pad) var(--gutter);
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ─── SECTION HEADINGS ─── */
.section-heading {
  font-family: var(--sans);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-heading-serif {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: .01em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scaleY(.98);
  transform-origin: top;
  transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Clip wipe variant */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s cubic-bezier(.16,1,.3,1);
}
.reveal-clip.in-view { clip-path: inset(0 0 0% 0); }

/* No animation in reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-clip {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
}

/* ─── 01 ABOUT ─── */
.about-section { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 100px;
}

.about-portrait picture,
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-body p {
  margin-bottom: 24px;
  color: var(--ink-60);
  line-height: 1.75;
}

.about-body p:first-of-type {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.pillar {
  border-top: 2px solid var(--teal);
  padding-top: 16px;
}

.pillar-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}

.pillar-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 420px; }
  .about-pillars { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .about-pillars { grid-template-columns: 1fr; }
}

/* ─── 02 CAREER / TIMELINE ─── */
.career-section { background: var(--ink); }

.career-section .section-num { color: rgba(251,248,242,.4); }

.career-heading {
  font-family: var(--sans);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--paper);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.career-heading em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 96px);
  color: var(--teal);
  display: block;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(251,248,242,.12);
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(251,248,242,.08);
  position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-item::after {
  content: '';
  position: absolute;
  left: 136px;
  top: 40px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid var(--ink);
}

.timeline-year {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(251,248,242,.35);
  padding-top: 4px;
  line-height: 1.3;
}

.timeline-content {}

.timeline-place {
  font-family: var(--sans);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 6px;
  line-height: 1.2;
}

.timeline-role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
  color: rgba(251,248,242,.5);
  line-height: 1.65;
  max-width: 600px;
}

@media (max-width: 640px) {
  .timeline::before { left: 0; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 0 28px 20px;
  }
  .timeline-item::after { left: -4px; }
}

/* ─── 03 VENTURES ─── */
.ventures-section { background: var(--paper); }

.ventures-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--ink-30);
}

.ventures-lead-body {}

.ventures-lead-body h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.ventures-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 4px 10px;
  margin-bottom: 20px;
}

.ventures-lead-body p {
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ventures-lead-image {
  position: relative;
  overflow: hidden;
}

.ventures-lead-image picture,
.ventures-lead-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* Horizontal scroll strip for secondary ventures */
.ventures-scroll-wrap {
  overflow: hidden;
  position: relative;
}

.ventures-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.ventures-scroll-track::-webkit-scrollbar { display: none; }

.venture-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid var(--ink-30);
  padding: 32px;
  position: relative;
}

.venture-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-30);
  margin-bottom: 16px;
  display: block;
}

.venture-card h4 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.venture-card p {
  font-size: 14px;
  color: var(--ink-60);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .ventures-lead { grid-template-columns: 1fr; }
  .venture-card { flex: 0 0 280px; }
}

/* ─── 04 RECOGNITION ─── */
.recognition-section { background: var(--teal); }

.recognition-section .section-num { color: rgba(251,248,242,.4); }

.recognition-heading {
  font-family: var(--sans);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--paper);
  margin-bottom: clamp(50px, 7vw, 90px);
}

.recognition-counters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px 60px;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.counter-item {}

.counter-number {
  font-family: var(--sans);
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--paper);
  display: block;
}

.counter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,248,242,.5);
  margin-top: 8px;
  display: block;
}

.recognition-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(251,248,242,.2);
  padding-top: 40px;
  margin-bottom: 40px;
}

.award-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--paper);
  border: 1px solid rgba(251,248,242,.3);
  padding: 8px 18px;
  white-space: nowrap;
}

.recognition-quote {
  max-width: 760px;
  border-left: 3px solid rgba(251,248,242,.3);
  padding-left: 28px;
  margin-top: 50px;
}

.recognition-quote p {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(251,248,242,.8);
  line-height: 1.55;
  margin-bottom: 12px;
}

.recognition-quote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(251,248,242,.4);
}

/* ─── 05 PARTNERSHIP ─── */
.partnership-section { background: var(--paper); }

.partnership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 60px;
}

.partnership-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.partnership-images picture,
.partnership-images img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.partnership-images picture:first-child,
.partnership-images img:first-child {
  margin-top: 40px;
}

.partnership-body h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.partnership-body h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.partnership-story {
  font-size: 16px;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: 20px;
}

.pull-quote {
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--teal-10);
}

.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 20px);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.wedding-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid var(--teal-20);
  padding-bottom: 2px;
  transition: border-color .2s, gap .2s;
  cursor: none;
}

.wedding-link:hover { gap: 14px; border-color: var(--teal); }
.wedding-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-xs);
  cursor: auto;
}

@media (max-width: 768px) {
  .partnership-grid { grid-template-columns: 1fr; }
  .partnership-images { max-width: 480px; }
}

/* ─── 06 CONTACT ─── */
.contact-section { background: var(--ink); }

.contact-section .section-num { color: rgba(251,248,242,.35); }

.contact-heading {
  font-family: var(--sans);
  font-size: clamp(40px, 8vw, 120px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.03em;
  color: var(--paper);
  margin-bottom: 40px;
}

.contact-heading em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--teal);
}

.contact-sub {
  font-size: 16px;
  color: rgba(251,248,242,.5);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.65;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid rgba(251,248,242,.2);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
  cursor: none;
}

.contact-email:hover { color: var(--teal); border-color: var(--teal); }
.contact-email:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-xs);
  cursor: auto;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(251,248,242,.08);
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(251,248,242,.3);
  letter-spacing: .06em;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,248,242,.3);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--teal); }
.footer-links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--r-xs);
  cursor: auto;
}

/* ─── MAGNETIC BUTTON WRAPPER ─── */
/* JS handles the actual magnetic offset; CSS just anchors */
.magnetic-wrap {
  display: inline-block;
  position: relative;
}

/* ─── SECTION DIVIDER LINE ─── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--ink-30);
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--teal);
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.skip-link:focus { top: 0; }

/* ─── FOCUS VISIBLE GLOBAL ─── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* ─── HORIZONTAL SCROLL ARROWS ─── */
.scroll-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--ink-30);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: border-color .2s, background .2s;
}

.scroll-btn:hover { border-color: var(--teal); background: var(--teal-10); }
.scroll-btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; cursor: auto; }

.scroll-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
