/* ==========================================================================
   Concepts.io — shared design system
   Ink ground, bone type, one signal accent. Inter Tight for structure,
   Instrument Serif for voice, JetBrains Mono for data.
   ========================================================================== */

:root {
  /* White paper ground, near-black ink, the original Concepts.io brand blue. */
  --paper: #ffffff;
  --paper-2: #f6f6f3;
  --paper-3: #efefeb;
  --paper-4: #e7e7e2;
  --ink: #0b0c0e;
  --ink-2: #1a1c20;
  --ink-3: #2a2d33;
  --fg: var(--ink);
  --fg-soft: rgba(11, 12, 14, 0.74);
  --fg-muted: rgba(11, 12, 14, 0.54);
  --fg-faint: rgba(11, 12, 14, 0.1);
  --line: rgba(11, 12, 14, 0.1);
  --line-strong: rgba(11, 12, 14, 0.2);
  --accent: #0071e3;
  --accent-ink: #ffffff;
  --accent-soft: rgba(0, 113, 227, 0.08);
  --accent-bright: #2997ff; /* brand blue, lifted for use on dark (ink) surfaces */
  --warm: #e8590c;

  --font-sans: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1440px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --nav-h: 72px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
  background: var(--paper);
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--paper);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em, .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
::selection { background: var(--accent); color: var(--accent-ink); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  padding: 10px 16px; background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; font-weight: 600; font-size: 14px;
  transform: translateY(-200%); transition: transform .3s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* Film grain — gives flat dark surfaces a printed, expensive feel */
.grain {
  pointer-events: none;
  position: fixed; inset: -50%;
  z-index: 90;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.eyebrow.no-dot::before { content: none; }

.display {
  font-size: clamp(48px, 9.2vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.h1 {
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.h2 {
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
}
.h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.lede {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 58ch;
  text-wrap: pretty;
}
.body-soft { color: var(--fg-soft); }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.accent { color: var(--accent); }

/* Split-text line masks (populated by JS) */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask > * { display: block; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fgc: var(--paper);
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  height: 56px;
  padding: 0 10px 0 26px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fgc);
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease-out);
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .6s var(--ease-out);
  z-index: -1;
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--accent-ink); }
.btn .btn-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink);
  overflow: hidden; position: relative;
  flex-shrink: 0;
}
.btn .btn-icon svg { width: 14px; height: 14px; transition: transform .5s var(--ease-out); }
.btn:hover .btn-icon svg { transform: translateX(3px) rotate(-45deg); }
.btn.btn-ghost {
  --bg: transparent; --fgc: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}
.btn.btn-ghost .btn-icon { background: var(--ink); color: var(--paper); }
.btn.btn-accent { --bg: var(--accent); --fgc: var(--accent-ink); }
.btn.btn-accent::before { background: var(--ink); }
.btn.btn-accent:hover { color: var(--paper); }
.btn.btn-sm { height: 44px; padding: 0 8px 0 18px; font-size: 14px; }
.btn.btn-sm .btn-icon { width: 30px; height: 30px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.link-arrow::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor;
  transform-origin: right; transform: scaleX(0.3);
  opacity: .5;
  transition: transform .6s var(--ease-out), opacity .3s;
}
.link-arrow:hover::after { transform: scaleX(1); transform-origin: left; opacity: 1; }
.link-arrow svg { width: 12px; height: 12px; transition: transform .4s var(--ease-out); }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- Cursor ---------- */
.cursor, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor, .cursor-ring {
    display: block;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 999;
    border-radius: 50%;
    will-change: transform;
  }
  .cursor {
    width: 6px; height: 6px; margin: -3px 0 0 -3px;
    background: var(--accent);
  }
  .cursor-ring {
    width: 40px; height: 40px; margin: -20px 0 0 -20px;
    border: 1px solid rgba(11, 12, 14, 0.35);
    display: grid; place-items: center;
    transition: width .45s var(--ease-out), height .45s var(--ease-out), margin .45s var(--ease-out),
                background-color .45s var(--ease-out), border-color .45s var(--ease-out);
  }
  .cursor-ring span {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent-ink); opacity: 0; transition: opacity .3s;
    white-space: nowrap;
  }
  .cursor-ring.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; border-color: var(--accent); }
  .cursor-ring.is-label {
    width: 92px; height: 92px; margin: -46px 0 0 -46px;
    background: var(--accent); border-color: var(--accent);
  }
  .cursor-ring.is-label span { opacity: 1; }
  .cursor-ring.is-hidden, .cursor.is-hidden { opacity: 0; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
  body.has-cursor input, body.has-cursor textarea { cursor: text; }
}

/* ---------- Preloader & page transition ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 500;
  pointer-events: none;
  color: var(--paper);
}
.pl-tiles { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(6, 1fr); }
.pl-tiles i {
  position: relative;
  background: var(--ink);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.06);
  will-change: transform;
}
.pl-tiles b {
  position: absolute; top: calc(var(--nav-h) / 2 - 6px); left: 12px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 400; letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.28);
}
.pl-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.pl-mark { position: relative; width: 56px; height: 56px; }
.pl-mark i { position: absolute; width: 24px; height: 24px; border: 2px solid var(--paper); }
.pl-mark i:nth-child(1) { top: 0; left: 0; }
.pl-mark i:nth-child(2) { top: 0; right: 0; }
.pl-mark i:nth-child(3) { bottom: 0; left: 0; }
.pl-mark i:nth-child(4) { bottom: 0; right: 0; background: var(--accent); border-color: var(--accent); }
.pl-roll { height: 1.35em; overflow: hidden; font-size: clamp(30px, 4.4vw, 60px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.35; }
.pl-roll-track { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.pl-roll-track span { display: block; height: 1.35em; white-space: nowrap; }
.pl-final em { color: var(--accent-bright); font-style: normal; font-family: var(--font-sans); }
.pl-foot {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px var(--gutter);
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.pl-foot b { color: var(--paper); font-weight: 400; font-variant-numeric: tabular-nums; }
@media (max-width: 700px) { .pl-foot span:nth-child(2) { display: none; } .pl-tiles b { display: none; } }
@media (max-width: 480px) { .pl-foot span:first-child { display: none; } .pl-foot { justify-content: center; } }
html:not(.js) .preloader, html.reduced .preloader { display: none; }

.curtain {
  position: fixed; inset: 0; z-index: 400;
  background: var(--accent);
  transform: translateY(100%);
  pointer-events: none;
}
html.arriving:not(.reduced) .curtain { transform: translateY(0); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  transition: transform .6s var(--ease-out), background-color .4s, backdrop-filter .4s;
}
.nav::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--line);
  opacity: 0; transition: opacity .4s;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav.is-scrolled::after { opacity: 1; }

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 18px; letter-spacing: -0.03em;
  position: relative; z-index: 2;
}
.logo-mark {
  width: 28px; height: 28px;
  position: relative;
}
.logo-mark i {
  position: absolute; width: 12px; height: 12px;
  border: 1.5px solid var(--ink);
  transition: transform .6s var(--ease-out), background-color .4s;
}
.logo-mark i:nth-child(1) { top: 0; left: 0; }
.logo-mark i:nth-child(2) { top: 0; right: 0; }
.logo-mark i:nth-child(3) { bottom: 0; left: 0; }
.logo-mark i:nth-child(4) { bottom: 0; right: 0; background: var(--accent); border-color: var(--accent); }
.logo:hover .logo-mark i:nth-child(1) { transform: translate(-2px, -2px); }
.logo:hover .logo-mark i:nth-child(2) { transform: translate(2px, -2px); }
.logo:hover .logo-mark i:nth-child(3) { transform: translate(-2px, 2px); }
.logo:hover .logo-mark i:nth-child(4) { transform: translate(2px, 2px) rotate(90deg); }
.logo-word span { color: var(--accent); font-weight: 600; }

.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(11, 12, 14, 0.04);
  box-shadow: inset 0 0 0 1px var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-links a {
  position: relative;
  display: block;
  padding: 9px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--fg-soft);
  border-radius: 999px;
  transition: color .3s, background-color .3s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: rgba(11, 12, 14, 0.07); }

.nav-right { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }
.nav-status {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-status i { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 10px #3ddc84; animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .35; } }

.menu-btn {
  display: none;
  width: 48px; height: 48px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-strong);
  position: relative;
}
.menu-btn span {
  position: absolute; left: 15px; right: 15px; height: 1.5px; background: var(--ink);
  transition: transform .5s var(--ease-out), top .5s var(--ease-out);
}
.menu-btn span:nth-child(1) { top: 20px; }
.menu-btn span:nth-child(2) { top: 27px; }
.menu-open .menu-btn span:nth-child(1) { top: 23.5px; transform: rotate(45deg); }
.menu-open .menu-btn span:nth-child(2) { top: 23.5px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--paper-2);
  padding: calc(var(--nav-h) + 32px) var(--gutter) 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease-in-out);
  visibility: hidden;
}
.menu-open .mobile-menu { clip-path: inset(0 0 0 0); visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a.mm-link {
  display: flex; align-items: baseline; gap: 16px;
  font-size: clamp(40px, 11vw, 64px); font-weight: 500; letter-spacing: -0.04em; line-height: 1.08;
  transform: translateY(110%);
  transition: transform .8s var(--ease-out);
}
.mobile-menu a.mm-link small { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: .1em; }
.menu-open .mobile-menu a.mm-link { transform: translateY(0); }
.menu-open .mobile-menu li:nth-child(2) a { transition-delay: .05s; }
.menu-open .mobile-menu li:nth-child(3) a { transition-delay: .1s; }
.menu-open .mobile-menu li:nth-child(4) a { transition-delay: .15s; }
.menu-open .mobile-menu li:nth-child(5) a { transition-delay: .2s; }
.mobile-menu-foot { display: flex; flex-direction: column; gap: 20px; }

@media (max-width: 1080px) {
  .nav-links, .nav-status { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 560px) {
  .nav-right .btn { display: none; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(96px, 14vw, 200px) 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 112px);
}
.section-head .eyebrow { margin-bottom: 28px; }
.section-head .lede { justify-self: end; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .lede { justify-self: start; }
}
.index-tag {
  font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); letter-spacing: .1em;
}

/* Light "sheet" sections */
.sheet {
  background: var(--ink);
  color: var(--paper);
  --fg: var(--paper);
  --fg-soft: rgba(255, 255, 255, 0.72);
  --fg-muted: rgba(255, 255, 255, 0.52);
  --fg-faint: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.sheet .eyebrow::before { background: var(--paper); box-shadow: none; }
.sheet .btn { --bg: var(--paper); --fgc: var(--ink); }
.sheet .btn .btn-icon { background: var(--ink); color: var(--paper); }
.sheet .btn::before { background: var(--accent); }

/* ---------- Reveal defaults (JS adds .js to <html>) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(40px); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="scale"] { transform: scale(.94); }
html.reduced [data-reveal], html.no-anim [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; width: max-content; will-change: transform; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 28px;
  padding: 0 28px;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500; letter-spacing: -0.03em;
  color: var(--fg-soft);
  white-space: nowrap;
}
.marquee-item em { color: var(--ink); }
.marquee-item::after {
  content: '';
  width: 10px; height: 10px;
  border: 1.5px solid var(--accent);
  transform: rotate(45deg);
}
html:not(.js) .marquee-track, html.reduced .marquee-track { animation: marquee 50s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Footer: closing statement, company register, live status bar ---------- */
.footer {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 28px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.ft-statement {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 32px;
  margin-bottom: clamp(56px, 8vw, 112px);
}
.ft-statement .eyebrow { padding-top: 12px; }
.ft-sentence {
  font-size: clamp(28px, 3.4vw, 52px); line-height: 1.12; letter-spacing: -0.035em; font-weight: 500;
  text-wrap: pretty;
}
.ft-sentence a {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em;
  color: var(--accent);
  background: linear-gradient(currentColor, currentColor) 0 100% / 100% 1.5px no-repeat;
  transition: background-size .5s var(--ease-out), color .3s;
}
.ft-sentence a:hover { background-size: 0 1.5px; background-position: 100% 100%; }

.ft-register { border-top: 1px solid var(--ink); }
.ft-reg-head, .ft-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 2.2fr) minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.2fr) 32px;
  gap: 16px; align-items: center;
}
.ft-reg-head {
  padding: 12px 0;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--line);
}
.ft-reg-head span { font: inherit; color: inherit; letter-spacing: inherit; }
.ft-row {
  position: relative;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  transition: color .4s;
}
.ft-row::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--paper-2);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .5s var(--ease-out);
}
.ft-row:hover::before { transform: scaleY(1); }
.ft-row b { font-size: clamp(18px, 1.5vw, 22px); font-weight: 500; letter-spacing: -0.02em; transition: transform .5s var(--ease-out); }
.ft-row:hover b { transform: translateX(8px); }
.ft-no, .ft-since { font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); font-variant-numeric: tabular-nums; }
.ft-row .ft-role { color: var(--fg-soft); font-size: 15px; }
.ft-status { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; color: var(--fg-muted); }
.ft-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; box-shadow: inset 0 0 0 1.5px currentColor; }
.ft-status.live { color: var(--accent); }
.ft-status.live::before { background: currentColor; }
.ft-arrow { font-style: normal; color: var(--accent); opacity: 0; transform: translate(-8px, 8px); transition: opacity .3s, transform .5s var(--ease-out); justify-self: end; }
.ft-row:hover .ft-arrow { opacity: 1; transform: none; }

.ft-bar {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid; grid-template-columns: auto 1fr auto auto; gap: 24px 32px; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-muted);
}
.ft-clock { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.ft-clock b { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.ft-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fg-muted); }
.ft-dot.is-open { background: #1fbf6a; box-shadow: 0 0 0 4px rgba(31, 191, 106, 0.15); animation: blink 2.4s ease-in-out infinite; }
.ft-links { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.ft-links a { transition: color .3s; }
.ft-links a:hover { color: var(--ink); }
.ft-top { position: relative; width: 48px; height: 48px; color: var(--ink); display: block; transition: color .3s; }
.ft-top svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ft-top path { transform: rotate(90deg); transform-origin: 24px 24px; transition: transform .4s var(--ease-out); }
.ft-top:hover path { transform: rotate(90deg) translateX(-3px); }
.ft-top-track { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.ft-top-ring { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-dasharray: 138.2; stroke-dashoffset: 138.2; }
.ft-top:hover { color: var(--accent); }

@media (max-width: 900px) {
  .ft-statement { grid-template-columns: 1fr; gap: 20px; }
  .ft-reg-head, .ft-row { grid-template-columns: 40px minmax(0, 1fr) auto 20px; }
  .ft-role, .ft-since { display: none; }
  .ft-arrow { opacity: 1; transform: none; }
  .ft-bar { grid-template-columns: 1fr auto; }
  .ft-links { grid-column: 1 / -1; justify-content: flex-start; order: 3; }
  .ft-copy { order: 4; grid-column: 1 / -1; }
  .ft-office { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .grain { display: none; }
}

/* SplitText line masks — leave room for italic overhang and descenders */
.sline-mask { padding: 0 0.12em 0.2em 0; margin: 0 -0.12em -0.2em 0; }
