/* ==========================================================================
   Tangent Solutions — Design System v6
   Light, editorial, object-led. Space Grotesk display with open tracking,
   near-invisible chrome, one warm accent, brand teal reserved for the object.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:        #F7F7F8;
  --bg-2:      #EFEFF2;
  --surface:   #FFFFFF;
  --line:      rgba(14, 16, 19, 0.115);
  --line-soft: rgba(14, 16, 19, 0.07);

  /* Type */
  --ink:        #0E1013;
  --ink-2:      #3C4149;
  --text-dim:   #6E747D;
  --text-faint: #9AA0A8;

  /* Brand */
  --teal:       #2A9DAD;   /* accessible on white */
  --teal-bright:#4FBECB;
  --accent:     #F0621F;   /* arrows + micro-signals only */

  /* Screen (camera panels) */
  --screen:   #0D141B;
  --screen-2: #131C25;

  /* Geometry */
  --r-sm: 6px;
  --r:    12px;
  --r-pill: 100px;
  --maxw: 1320px;
  --pad:  clamp(20px, 4vw, 48px);

  --shadow:    0 1px 2px rgba(14,16,19,.04), 0 8px 24px -14px rgba(14,16,19,.16);
  --shadow-md: 0 1px 2px rgba(14,16,19,.04), 0 20px 44px -22px rgba(14,16,19,.24);
  --shadow-lg: 0 40px 90px -40px rgba(14,16,19,.34);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* Display type — open tracking is the signature move */
h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0 0 0.5em;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: .022em;
}
h1 { font-size: clamp(2.1rem, 3.7vw, 3.05rem); line-height: 1.12; letter-spacing: .026em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: .022em; }
h3 { font-size: clamp(1.02rem, 1.5vw, 1.16rem); letter-spacing: .012em; font-weight: 500; }
p  { margin: 0 0 1em; }

::selection { background: rgba(42,157,173,.2); color: var(--ink); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
section { position: relative; }
.section { padding-block: clamp(72px, 9vw, 140px); }
.section--tight { padding-block: clamp(52px, 6vw, 88px); }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(295px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }

/* ---------- Shared ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: .66rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--teal); opacity: .8; }

.lede { font-size: clamp(1rem, 1.3vw, 1.06rem); color: var(--text-dim); max-width: 60ch; line-height: 1.62; }

.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.grad-text { color: var(--text-dim); }
.arrow { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 16px 30px; border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: .78rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.btn--primary { background: #12151A; color: #fff; }
.btn--primary:hover { background: #000; }

.btn--ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: rgba(14,16,19,.3); background: rgba(14,16,19,.03); }

.btn--sm { padding: 11px 20px; font-size: .68rem; letter-spacing: .13em; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 500; font-size: .9rem; color: var(--ink);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-color: rgba(14,16,19,.22);
}
.link-arrow span { transition: transform .22s var(--ease); color: var(--accent); }
.link-arrow:hover span { transform: translate(3px,-3px); }

/* ---------- Pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  padding: 7px 15px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(247,247,248,.86);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 16px; height: 88px; }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.brand__mark { width: 22px; height: 22px; flex: none; display: block; }
.brand__sub { display: none; }

.nav__divider { width: 1px; height: 15px; background: var(--ink); opacity: .25; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 9px 14px; font-size: .87rem; font-weight: 450;
  color: var(--text-dim); transition: color .18s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links .btn { margin-left: 10px; }

.nav__toggle {
  display: none; width: 40px; height: 40px;
  border: 0; background: transparent; color: var(--ink);
  cursor: pointer; place-items: center;
}
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav { height: 76px; }
  .nav__toggle { display: grid; margin-left: auto; }
  .nav__links {
    position: absolute; top: 76px; left: var(--pad); right: var(--pad);
    flex-direction: column; align-items: stretch; gap: 0; margin-left: 0;
    padding: 12px; border-radius: var(--r);
    background: var(--surface); border: 1px solid var(--line);
    box-shadow: var(--shadow-lg); display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 16px; font-size: 1rem; }
  .nav__links .btn { margin: 8px 0 0; }
}

/* ---------- Hero (object-led, two columns — no overlap) ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  padding-top: clamp(120px, 13vw, 160px);
  padding-bottom: clamp(56px, 7vw, 88px);
  overflow: hidden;
  background:
    radial-gradient(1000px 700px at 68% 42%, #FFFFFF 0%, #F8F8F9 38%, #EFEFF2 70%, #E8E8EB 100%);
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(1100px 780px at 66% 46%, transparent 54%, rgba(150,155,164,.15) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0,1.06fr) minmax(0,0.94fr);
  gap: clamp(28px, 4vw, 70px); align-items: center; width: 100%;
}
.hero__left { max-width: 30em; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .l2 { display: block; color: var(--text-dim); }
.hero__sub { font-size: 1rem; line-height: 1.55; color: var(--text-dim); margin-bottom: 30px; }
.hero__pills { margin-top: 34px; }

.hero__right { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__figure { position: relative; margin: 0; width: min(440px, 38vw); }
.hero__figure img { width: 100%; height: auto; animation: hover 9s ease-in-out infinite; }
.hero__figure .contact {
  position: absolute; left: 50%; bottom: 3%; transform: translateX(-50%);
  width: 60%; height: 42px; border-radius: 50%;
  background: rgba(40,90,100,.24); filter: blur(24px);
  animation: contact 9s ease-in-out infinite;
}
@keyframes hover  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes contact{ 0%,100%{opacity:.85;transform:translateX(-50%) scale(1)}
                    50%{opacity:.6;transform:translateX(-50%) scale(.9)} }
.hero__aside {
  font-size: .95rem; line-height: 1.55; color: var(--ink-2);
  max-width: 42ch; text-align: center; margin: 6px 0 0;
}
.hero__aside .dim { color: var(--text-faint); }

@media (max-width: 980px) {
  .hero { min-height: 0; padding-top: clamp(112px, 18vw, 140px); }
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .hero__left { max-width: none; order: 2; }
  .hero__right { order: 1; }
  .hero__figure { width: min(360px, 68vw); }
  .hero__aside { display: none; }
}

/* stats row for interior pages */
.hero__meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  max-width: 560px;
}
.stat__n { font-family: var(--mono); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.stat__l { font-size: .66rem; color: var(--text-faint); letter-spacing: .1em;
           text-transform: uppercase; font-weight: 500; margin-top: 5px; }

/* interior page hero (no object) */
.hero--page {
  min-height: 0; display: block;
  padding-top: clamp(130px, 15vw, 190px); padding-bottom: clamp(44px, 5vw, 72px);
  background: radial-gradient(900px 500px at 70% 0%, #FFFFFF 0%, #F7F7F8 55%, #EFEFF2 100%);
  border-bottom: 1px solid var(--line-soft);
}
.hero--page .hero__grid { grid-template-columns: 1fr; }

/* ---------- Feed panel ---------- */
.feed {
  position: relative; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.feed__bar {
  display: flex; align-items: center; gap: 9px; padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: .63rem; letter-spacing: .12em;
  color: var(--text-faint); text-transform: uppercase;
}
.feed__bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--ink-2); }
.feed__bar .live i { width: 5px; height: 5px; border-radius: 50%; background: #D9534F; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.feed__stage {
  position: relative; aspect-ratio: 16/10;
  background: linear-gradient(170deg, var(--screen-2), var(--screen)); overflow: hidden;
}
.feed__belt {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(100deg, rgba(255,255,255,.05) 0 1px, transparent 1px 48px);
  animation: belt 3.6s linear infinite;
}
@keyframes belt { to { transform: translateX(-48px); } }
.feed__scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(96,206,218,.55); animation: sweep 5.4s linear infinite;
}
@keyframes sweep { 0%{top:-2%;opacity:0} 8%{opacity:1} 92%{opacity:1} 100%{top:102%;opacity:0} }

.det { position: absolute; border: 1px solid rgba(96,206,218,.95); background: rgba(79,190,203,.07); }
.det__tag {
  position: absolute; top: -17px; left: -1px; padding: 1px 6px;
  background: rgba(96,206,218,.92); color: #04191E;
  font-family: var(--mono); font-size: .55rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap;
}
.det--alt { border-color: rgba(140,180,235,.9); background: rgba(140,180,235,.06); }
.det--alt .det__tag { background: rgba(140,180,235,.92); color: #061426; }

.feed__hud {
  position: absolute; left: 14px; bottom: 12px; font-family: var(--mono);
  font-size: .58rem; letter-spacing: .07em; color: rgba(255,255,255,.32); line-height: 1.75;
}
.feed__hud b { color: rgba(255,255,255,.66); font-weight: 500; }
.feed__note {
  position: absolute; right: 13px; bottom: 12px; font-family: var(--mono);
  font-size: .53rem; letter-spacing: .1em; color: rgba(255,255,255,.26); text-transform: uppercase;
}
.feed__foot { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-soft); margin: 0; }
.feed__foot > div { padding: 13px 16px; border-right: 1px solid var(--line-soft); }
.feed__foot > div:last-child { border-right: 0; }
.feed__foot dt { font-family: var(--mono); font-size: .57rem; text-transform: uppercase;
                 letter-spacing: .12em; color: var(--text-faint); font-weight: 500; }
.feed__foot dd { margin: 5px 0 0; font-family: var(--mono); font-size: .88rem; font-weight: 500; color: var(--ink); }

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line-soft); background: var(--surface); padding-block: 22px; }
.trust__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 34px; }
.trust__label { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em;
                text-transform: uppercase; color: var(--text-faint); font-weight: 500; }
.trust__item { font-size: .87rem; font-weight: 500; color: var(--ink-2);
               display: inline-flex; align-items: center; gap: 8px; }
.trust__item svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* ---------- Cards ---------- */
.card {
  position: relative; padding: 28px; border-radius: var(--r);
  border: 1px solid var(--line-soft); background: var(--surface);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.card:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(42,157,173,.08); border: 1px solid rgba(42,157,173,.18); color: var(--teal);
}
.card__icon svg { width: 17px; height: 17px; }
.card__icon--warm, .card__icon--blue {
  background: rgba(14,16,19,.045); border-color: var(--line); color: var(--ink-2);
}
.card h3 { margin-bottom: 9px; }
.card p { color: var(--text-dim); font-size: .91rem; margin-bottom: 0; }
.card--feature { padding: clamp(26px, 3.5vw, 36px); }

.ticks { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; }
.ticks li { display: flex; gap: 10px; font-size: .89rem; color: var(--text-dim); line-height: 1.5; }
.ticks svg { width: 15px; height: 15px; color: var(--teal); flex: none; margin-top: 3px; }

/* ---------- Tiles ---------- */
.tile {
  display: block; padding: 24px; border-radius: var(--r);
  border: 1px solid var(--line-soft); background: var(--surface);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease);
}
.tile:hover { border-color: var(--line); box-shadow: var(--shadow); transform: translateY(-2px); }
.tile__top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.tile__top svg { width: 17px; height: 17px; color: var(--ink-2); flex: none; }
.tile h3 { font-size: .99rem; margin: 0; }
.tile p { font-size: .87rem; color: var(--text-dim); margin: 0; }
.tag {
  margin-left: auto; font-family: var(--mono); font-size: .55rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-pill);
  border: 1px solid var(--line); color: var(--ink-2);
}

/* ---------- Split / steps ---------- */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  position: relative; padding: 24px 24px 24px 72px;
  border-top: 1px solid var(--line-soft);
  transition: background .2s;
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step:hover { background: rgba(14,16,19,.018); }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; left: 24px; top: 25px;
  font-family: var(--mono); font-size: .72rem; font-weight: 500; color: var(--teal); letter-spacing: .06em;
}
.step h3 { font-size: 1rem; margin-bottom: 5px; }
.step p  { margin: 0; color: var(--text-dim); font-size: .89rem; }

/* ---------- Panel ---------- */
.case {
  padding: clamp(24px, 3.5vw, 34px); border-radius: var(--r);
  border: 1px solid var(--line-soft); background: var(--surface);
}
.case__kicker {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); font-weight: 500; margin-bottom: 11px;
}
.case__result {
  margin-top: 16px; padding: 13px 16px; border-radius: var(--r-sm);
  border-left: 2px solid var(--teal); background: rgba(42,157,173,.05);
  font-size: .88rem; color: var(--ink-2);
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--display); font-weight: 500; font-size: 1.02rem; letter-spacing: .012em;
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal); }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 30px; width: 8px; height: 8px;
  border-right: 1.5px solid var(--text-faint); border-bottom: 1.5px solid var(--text-faint);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { color: var(--text-dim); font-size: .92rem; padding-right: 44px; margin: -4px 0 22px; max-width: 78ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; border-radius: var(--r); padding: clamp(40px, 6vw, 78px);
  text-align: center; overflow: hidden;
  border: 1px solid var(--line-soft);
  background: radial-gradient(700px 300px at 50% 0%, #FFFFFF, var(--surface));
  box-shadow: var(--shadow);
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lede { margin-inline: auto; margin-bottom: 30px; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Form ---------- */
.form {
  display: grid; gap: 16px; padding: clamp(26px, 3.5vw, 34px);
  border-radius: var(--r); border: 1px solid var(--line-soft);
  background: var(--surface); box-shadow: var(--shadow); position: relative;
}
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--mono); font-size: .61rem; font-weight: 500;
  letter-spacing: .14em; color: var(--text-faint); text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #FCFCFD; color: var(--ink);
  font: inherit; font-size: .94rem; transition: border-color .18s, box-shadow .18s, background .18s;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A9AEB6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,173,.12);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.form__note { font-size: .79rem; color: var(--text-faint); margin: 0; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--surface); padding-block: clamp(48px, 6vw, 72px) 28px; }
.footer__grid {
  display: grid; grid-template-columns: minmax(0,1.5fr) repeat(auto-fit, minmax(148px,1fr));
  gap: 36px; margin-bottom: 38px;
}
.footer__grid h4 {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; font-weight: 500;
}
.footer__grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__grid a { color: var(--text-dim); font-size: .88rem; transition: color .18s; }
.footer__grid a:hover { color: var(--ink); }
.footer__about p { color: var(--text-dim); font-size: .88rem; max-width: 40ch; }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center;
  padding-top: 22px; border-top: 1px solid var(--line-soft); font-size: .8rem; color: var(--text-faint);
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: clamp(26px, 3.5vw, 42px); }
.muted { color: var(--text-dim); }
.small { font-size: .86rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 12px 20px; background: #12151A; color: #fff; border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip:focus { left: 0; }

.breadcrumb { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em;
              color: var(--text-faint); margin-bottom: 18px; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(14px);
              transition: opacity .55s var(--ease), transform .55s var(--ease); will-change: opacity, transform; }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__object img, .hero__object .contact { animation: none; }
}

/* nav CTA — text link, MDX-style */
.nav__talk {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: 14px; padding: 9px 2px;
  font-size: .87rem; font-weight: 500; color: var(--ink);
  text-decoration: underline; text-underline-offset: 5px;
  text-decoration-color: rgba(14,16,19,.28);
}
.nav__talk .arrow { transition: transform .22s var(--ease); }
.nav__talk:hover .arrow { transform: translate(3px,-3px); }
@media (max-width: 1000px) { .nav__talk { margin: 6px 0 0; padding: 14px 16px; } }
