/* Cats by Adam — dark interface system inspired by Vercel */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: dark;
  --bg: #000;
  --surface: #0a0a0a;
  --surface-2: #111;
  --surface-3: #1a1a1a;
  --text: #ededed;
  --muted: #a1a1a1;
  --dim: #666;
  --accent: #fff;
  --line: #262626;
  --line-strong: #3f3f3f;
  --success: #45d483;
  --content-width: 1200px;
  --radius: 8px;
  --nav-height: 64px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, "Geist Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -12rem, rgba(255, 255, 255, .09), transparent 32rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 46rem);
}

::selection { background: #fff; color: #000; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 300;
  padding: .65rem .9rem;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: .8rem;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

canvas#galaxy { display: none; }
.content { position: relative; z-index: 1; }

/* Header */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(0, 0, 0, .78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

#site-header nav {
  display: flex;
  align-items: center;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

#site-header .logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: max-content;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.025em;
}

.logo-mark {
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-bottom: 16px solid #fff;
  border-left: 9px solid transparent;
  transform: translateY(-1px);
}

#site-header .logo span { color: var(--muted); font-weight: 400; }

#site-header .links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: 2rem;
}

#site-header .links a {
  padding: .45rem .7rem;
  border-radius: 6px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 450;
  transition: color .2s, background .2s;
}

#site-header .links a:hover,
#site-header .links a.active {
  background: var(--surface-3);
  color: #fff;
}

.nav-cta {
  margin-left: auto;
  padding: .45rem .8rem;
  border: 1px solid #fff;
  border-radius: 6px;
  background: #fff;
  color: #000;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, border-color .2s, transform .2s;
}

.nav-cta:hover { border-color: #ccc; background: #ccc; }
.nav-cta:active { transform: scale(.97); }

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  width: 14px;
  height: 1px;
  background: #fff;
  content: "";
  transition: transform .2s var(--ease);
}

.nav-toggle::before { transform: translate(-7px, -3px); }
.nav-toggle::after { transform: translate(-7px, 3px); }
.nav-toggle[aria-expanded="true"]::before { transform: translate(-7px, 0) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translate(-7px, 0) rotate(-45deg); }

/* Shared layout */
.page {
  width: min(100% - 3rem, var(--content-width));
  margin: 0 auto;
  padding: calc(var(--nav-height) + 5rem) 0 2rem;
}

.section {
  position: relative;
  margin-top: 8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.section-label,
.plan-tag,
.timeline-tag,
.cat-info .role,
.profile-info .role {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.35rem;
}

.section-label::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .55fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading .section-label { grid-column: 1 / -1; margin-bottom: -.8rem; }
.section-heading h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 55ch;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  text-wrap: pretty;
}

/* Home hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: min(880px, 100dvh);
  padding: calc(var(--nav-height) + 5rem) 1.5rem 8rem;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  position: absolute;
  top: 16%;
  left: 50%;
  width: min(1000px, 92vw);
  height: 460px;
  border: 1px solid var(--line);
  background:
    linear-gradient(to right, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px)),
    linear-gradient(to bottom, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px));
  content: "";
  mask-image: radial-gradient(ellipse at center, #000 0, transparent 70%);
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255,255,255,.025), 0 0 0 144px rgba(255,255,255,.015);
  content: "";
  transform: translateX(-50%);
}

.hero > * { position: relative; z-index: 1; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.8rem;
  padding: .35rem .65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,10,10,.8);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .72rem;
}

.hero-kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(69,212,131,.65);
  content: "";
}

.hero h1 {
  max-width: 1100px;
  margin-bottom: 1.6rem;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .84;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
  text-wrap: balance;
}

.hero .subtitle {
  max-width: 630px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions { display: flex; gap: .75rem; margin-bottom: 2.2rem; }

.hero .stats {
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0,0,0,.72);
  color: var(--dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  letter-spacing: 0;
}

.scroll-hint { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .65rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-size: .86rem;
  font-weight: 550;
  transition: background .2s, border-color .2s, color .2s, transform .2s var(--ease);
}

.btn::after { margin-left: .55rem; content: "→"; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary { border-color: #fff; background: #fff; color: #000; }
.btn-primary:hover { border-color: #d4d4d4; background: #d4d4d4; }
.btn-secondary { background: var(--surface); color: #fff; }
.btn-secondary:hover { border-color: #666; background: var(--surface-3); }

/* Home: executives */
#cats {
  width: min(100% - 3rem, var(--content-width));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #000;
}

#cats::before {
  display: block;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .7rem;
  content: "team / live operators";
}

.cat-section { min-height: auto; padding: 0; }
.cat-section + .cat-section { border-top: 1px solid var(--line); }

.cat-card-home,
.cat-card-home.reverse {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  min-height: 430px;
  background: var(--bg);
  cursor: pointer;
  transition: background .25s;
}

.cat-card-home:hover { background: var(--surface); }
.cat-card-home.reverse { direction: ltr; }

.cat-card-home .cat-image-wrap {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--surface);
}

.cat-card-home .cat-image-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  content: "";
  pointer-events: none;
}

.cat-image-wrap img,
.profile-avatar-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.8) contrast(1.06);
  transition: filter .45s, transform .6s var(--ease);
}

.cat-card-home:hover .cat-image-wrap img { filter: saturate(1) contrast(1.02); transform: scale(1.025); }
.orbit-ring, .orbit-ring-2 { display: none; }

.cat-index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 4;
  display: inline-flex;
  padding: .32rem .5rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .66rem;
  backdrop-filter: blur(10px);
}

.cat-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.cat-info .role { margin-bottom: 1.1rem; }
.cat-info h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .95;
}

.cat-tags, .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.chip {
  display: inline-flex;
  padding: .32rem .55rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .68rem;
}

.cat-stats { display: grid; gap: .85rem; max-width: 450px; margin-bottom: 1.8rem; }
.cat-stat { display: grid; grid-template-columns: 130px 1fr 58px; gap: 1rem; align-items: center; }
.cat-stat .label { color: var(--muted); font-size: .75rem; }
.cat-stat .bar { height: 2px; overflow: hidden; background: var(--line); }
.cat-stat .bar-fill { width: 0; height: 100%; background: #fff; transition: width 1.2s var(--ease); }
.cat-stat .value {
  color: #fff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .73rem;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.instagram-link,
.profile-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  color: var(--muted);
  font-size: .78rem;
  transition: color .2s;
}

.instagram-link:hover, .profile-link:hover { color: #fff; }
.instagram-link svg { width: 14px; height: 14px; fill: currentColor; }
.profile-link { margin-top: 1rem; color: #fff; }
.profile-link::after { content: "↗"; }

/* Home products */
.products-section,
.pricing-section {
  width: min(100% - 3rem, var(--content-width));
  margin: 9rem auto 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  align-items: stretch;
}

.products-section h2,
.pricing-section > h2 {
  margin-bottom: .8rem !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  font-weight: 600 !important;
  letter-spacing: -.06em !important;
  line-height: 1 !important;
  text-align: left !important;
}

.products-section .section-sub,
.pricing-section > p:not(.section-label) {
  max-width: 580px !important;
  margin: 0 0 3rem !important;
  color: var(--muted) !important;
  font-size: .95rem !important;
  line-height: 1.65;
  text-align: left !important;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  border: 1px solid var(--line);
}

.product-card {
  position: relative;
  min-height: 235px;
  padding: 2.2rem;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #000;
  transition: background .25s;
}

.product-card:nth-child(odd) { border-right: 1px solid var(--line); }
.product-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
.product-card:hover { background: var(--surface); }
.product-card::before {
  position: absolute;
  top: 2.2rem;
  right: 2.2rem;
  color: var(--dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .72rem;
  content: "0" counter(product);
}
.products-grid { counter-reset: product; }
.product-card { counter-increment: product; }
.product-card .badge, .badge {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--dim);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-card h3 { margin-bottom: .6rem; font-size: 1.3rem; font-weight: 550; letter-spacing: -.025em; }
.product-card p { max-width: 52ch; color: var(--muted); font-size: .86rem; line-height: 1.65; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  border: 1px solid var(--line);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 510px;
  padding: 2rem;
  border: 0;
  border-radius: 0;
  background: #000;
}
.pricing-card + .pricing-card { border-left: 1px solid var(--line); }
.pricing-card-featured { position: relative; background: var(--surface); box-shadow: inset 0 2px #fff; }
.pricing-card h3 { font-size: 1.25rem !important; font-weight: 550 !important; }
.plan-tag { min-height: 1rem; color: var(--dim); }
.price {
  margin: .8rem 0;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}
.price span { color: var(--muted); font-size: .82rem; font-weight: 400; letter-spacing: 0; }
.plan-copy { min-height: 4.8rem; color: var(--muted); font-size: .86rem; line-height: 1.6; }
.detail-list, .portfolio-list, .plan-list { display: grid; gap: .75rem; margin: .5rem 0 2rem; list-style: none; }
.detail-list li, .portfolio-list li, .plan-list li { position: relative; padding-left: 1.2rem; color: var(--text); font-size: .84rem; line-height: 1.5; }
.detail-list li::before, .portfolio-list li::before, .plan-list li::before { position: absolute; top: .08rem; left: 0; color: var(--dim); content: "✓"; }
.pricing-card .btn { margin-top: auto; }

/* Subpages */
.subpage-hero {
  position: relative;
  max-width: 920px;
  min-height: 430px;
  padding-top: 3rem;
}
.subpage-hero::after {
  position: absolute;
  top: 0;
  right: -12%;
  width: 420px;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.01);
  content: "";
  mask-image: linear-gradient(to left, #000, transparent 88%);
  pointer-events: none;
}
.subpage-hero > * { position: relative; z-index: 1; }
.subpage-hero h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.6rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .92;
  text-wrap: balance;
}
.subpage-hero .lede { max-width: 620px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

/* Product page */
.product-stack { display: grid; border: 1px solid var(--line); }
.product-card-full {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
  gap: 4rem;
  padding: 2.25rem;
  border: 0;
  border-radius: 0;
  background: #000;
  transition: background .25s;
}
.product-card-full + .product-card-full { border-top: 1px solid var(--line); }
.product-card-full:hover { background: var(--surface); }
.product-card-full .badge { margin-bottom: 2rem; }
.product-card-full h3 { font-size: 1.5rem !important; font-weight: 550 !important; letter-spacing: -.03em; }
.product-card-full > div > p { color: var(--muted) !important; font-size: .88rem !important; line-height: 1.65 !important; }
.product-body { display: grid; align-content: start; }
.product-spec { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.product-spec:first-child { padding-top: 0; }
.product-spec:last-child { border-bottom: 0; }
.spec-label { color: var(--dim); font-family: "SFMono-Regular", Consolas, monospace; font-size: .7rem; text-transform: uppercase; }
.spec-value { color: var(--text); font-size: .82rem; font-weight: 500; line-height: 1.45; text-align: left; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.feature-card {
  min-height: 220px;
  padding: 2rem;
  border: 0;
  border-radius: 0;
  background: #000;
  transition: background .25s;
}
.feature-card + .feature-card { border-left: 1px solid var(--line); }
.feature-card:hover { background: var(--surface); }
.feature-card::before { display: block; margin-bottom: 4rem; color: var(--dim); font-family: monospace; font-size: .72rem; content: "0" counter(feature); }
.feature-grid { counter-reset: feature; }
.feature-card { counter-increment: feature; }
.feature-card h3 { margin-bottom: .7rem; font-size: 1rem; font-weight: 550; }
.feature-card p { color: var(--muted); font-size: .84rem; line-height: 1.65; }

/* Roadmap */
.timeline { position: relative; display: grid; padding-left: 0; border: 1px solid var(--line); }
.timeline::before { display: none; }
.timeline-item { position: relative; display: grid; grid-template-columns: 160px 1fr; min-height: 160px; }
.timeline-item + .timeline-item { border-top: 1px solid var(--line); }
.timeline-dot { position: absolute; top: 2rem; left: 2rem; width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.45); }
.timeline-content { display: contents; }
.timeline-tag { display: flex; align-items: end; padding: 2rem; border-right: 1px solid var(--line); color: var(--dim); }
.timeline-content h3 { align-self: end; padding: 2rem 2rem .45rem; font-size: 1.4rem; font-weight: 550; letter-spacing: -.025em; }
.timeline-content > p:last-child { padding: 0 2rem 2rem; color: var(--muted); font-size: .86rem; line-height: 1.6; }

/* Investors */
.split-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--line); }
.memo-panel { min-height: 350px; padding: 2.25rem; border: 0; border-radius: 0; background: #000; }
.memo-panel + .memo-panel { border-left: 1px solid var(--line); background: var(--surface); }
.memo-panel h2 { margin-bottom: 1.5rem; font-size: 1.7rem; font-weight: 550; letter-spacing: -.035em; }
.metric-list { display: grid; margin-top: 2rem; }
.metric-line { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.metric-line:first-child { border-top: 1px solid var(--line); }
.metric-line span { color: var(--dim); font-family: monospace; font-size: .72rem; text-transform: uppercase; }
.metric-line strong { font-size: .84rem; font-weight: 500; line-height: 1.45; text-align: left; }
.investor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.investor-card { min-height: 230px; padding: 2rem; border: 0; border-radius: 0; background: #000; transition: background .25s; }
.investor-card:nth-child(3n+2), .investor-card:nth-child(3n+3) { border-left: 1px solid var(--line); }
.investor-card:nth-child(n+4) { border-top: 1px solid var(--line); }
.investor-card:hover { background: var(--surface); }
.investor-card h3 { margin-bottom: .7rem; font-size: 1rem; font-weight: 550; }
.investor-card p { color: var(--muted); font-size: .84rem; line-height: 1.65; }
.portfolio-list { margin-top: 1rem; }

/* Profiles */
.profile-hero { padding-top: 2rem; }
.profile-card {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1fr);
  min-height: 510px;
  border: 1px solid var(--line);
}
.profile-avatar-wrap { position: relative; overflow: hidden; border-right: 1px solid var(--line); background: var(--surface); }
.profile-avatar-wrap img { position: absolute; inset: 0; }
.profile-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 6vw, 5rem); }
.profile-info h1 { margin: 1rem 0 .8rem; font-size: clamp(4rem, 9vw, 7rem); font-weight: 600; letter-spacing: -.075em; line-height: .88; }
.profile-info .role { margin-bottom: .9rem; color: #fff; }
.profile-info .tagline { max-width: 480px; margin-bottom: 1.5rem !important; color: var(--muted) !important; font-size: 1rem; line-height: 1.6; }
.profile-links { margin-top: .25rem; }
.about-text { max-width: 760px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.stat-card { min-height: 180px; padding: 2rem; border: 0; border-radius: 0; background: #000; text-align: left; }
.stat-card + .stat-card { border-left: 1px solid var(--line); }
.stat-label { color: var(--dim); font-family: monospace; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.stat-value { margin-top: 3.5rem; color: #fff; font-size: 2.5rem; font-weight: 600; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }

.gallery-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 1px; overflow: hidden; border: 1px solid var(--line); background: var(--line); }
.gallery-item { min-height: 330px; padding: 0; overflow: hidden; border: 0; border-radius: 0; background: #000; cursor: zoom-in; appearance: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); transition: filter .35s, transform .5s var(--ease); }
.gallery-item:hover img { filter: saturate(1); transform: scale(1.025); }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 2 / 4; }

.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 2rem; background: rgba(0,0,0,.9); backdrop-filter: blur(18px); }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; width: min(100%, 1000px); padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.lightbox-content img { width: 100%; max-height: 78vh; border-radius: 4px; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.75rem; right: 1.75rem; z-index: 2; padding: .5rem .75rem; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: #000; font-size: .75rem; font-weight: 600; cursor: pointer; }

.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--line); }
.mini-cat-card { display: grid; grid-template-columns: 120px 1fr; align-items: center; min-height: 120px; padding: 0; border: 0; border-radius: 0; background: #000; transition: background .25s; }
.mini-cat-card + .mini-cat-card { border-left: 1px solid var(--line); }
.mini-cat-card:hover { background: var(--surface); }
.mini-cat-card img { width: 120px; height: 120px; border: 0; border-radius: 0; object-fit: cover; filter: saturate(.8); }
.mini-cat-card div { padding: 1.25rem; }
.mini-cat-card h3 { margin-bottom: .3rem; font-size: 1rem; font-weight: 550; }
.mini-cat-card .card-role { color: var(--muted); font-size: .75rem; }

/* Footer */
.finale {
  width: min(100% - 3rem, var(--content-width));
  margin: 9rem auto 0;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  text-align: left;
}
.finale h2 { margin-bottom: .8rem; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -.055em; }
.status-dot { display: inline-block; width: 9px; height: 9px; margin-right: .65rem; border-radius: 50%; background: var(--success); box-shadow: 0 0 15px rgba(69,212,131,.5); vertical-align: .25em; }
.finale-sub { max-width: 540px; margin-bottom: 4rem; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-links a { color: var(--muted); font-size: .78rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { padding-top: 1.25rem; color: var(--dim); font-family: monospace; font-size: .68rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading .section-label { margin-bottom: .2rem; }
  .cat-card-home, .cat-card-home.reverse { grid-template-columns: minmax(250px, .75fr) 1fr; }
  .cat-info { padding: 2.5rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card + .pricing-card { border-top: 1px solid var(--line); border-left: 0; }
  .pricing-card { min-height: 450px; }
  .product-card-full { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid, .investor-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; }
  .investor-card:nth-child(3n+2), .investor-card:nth-child(3n+3) { border-left: 0; }
  .investor-card:nth-child(even) { border-left: 1px solid var(--line); }
  .investor-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .split-section { grid-template-columns: 1fr; }
  .memo-panel + .memo-panel { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 720px) {
  :root { --nav-height: 58px; }
  body::before { background-size: 48px 48px; }
  #site-header nav { padding: 0 1rem; }
  .nav-toggle { position: relative; display: block; }
  .nav-cta { display: none; }
  #site-header .links {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: .65rem;
    border-bottom: 1px solid var(--line);
    background: rgba(0,0,0,.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s;
  }
  #site-header .links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  #site-header .links a { padding: .8rem; }
  .hero { min-height: 760px; padding-inline: 1rem; }
  .hero h1 { font-size: clamp(3.6rem, 20vw, 6.5rem); }
  .hero::after { width: 280px; height: 280px; }
  .hero-actions { flex-direction: column; width: min(100%, 320px); }
  .hero .stats { max-width: 340px; line-height: 1.8; }
  #cats, .products-section, .pricing-section, .finale { width: min(100% - 2rem, var(--content-width)); }
  .cat-card-home, .cat-card-home.reverse { grid-template-columns: 1fr; }
  .cat-card-home .cat-image-wrap { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--line); }
  .cat-info { padding: 2rem; }
  .cat-info h2 { font-size: 3.8rem; }
  .cat-stat { grid-template-columns: 110px 1fr 54px; gap: .75rem; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(odd) { border-right: 0; }
  .product-card + .product-card { border-top: 1px solid var(--line); }
  .product-card:nth-child(-n+2) { border-bottom: 0; }
  .page { width: min(100% - 2rem, var(--content-width)); padding-top: calc(var(--nav-height) + 3rem); }
  .section { margin-top: 6rem; }
  .subpage-hero { min-height: 420px; }
  .subpage-hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .feature-grid, .investor-grid, .stats-row { grid-template-columns: 1fr; }
  .feature-card + .feature-card, .feature-card:nth-child(3), .investor-card:nth-child(even), .stat-card + .stat-card { grid-column: auto; border-top: 1px solid var(--line); border-left: 0; }
  .investor-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .timeline-item { grid-template-columns: 110px 1fr; }
  .timeline-tag { padding: 1.4rem; }
  .timeline-content h3 { padding: 1.4rem 1.4rem .4rem; }
  .timeline-content > p:last-child { padding: 0 1.4rem 1.4rem; }
  .timeline-dot { top: 1.4rem; left: 1.4rem; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-avatar-wrap { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-info { padding: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item:nth-child(4) { grid-column: auto; }
  .gallery-item { min-height: 360px; }
  .mini-grid { grid-template-columns: 1fr; }
  .mini-cat-card + .mini-cat-card { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 430px) {
  .hero .stats { display: none; }
  .cat-card-home .cat-image-wrap, .profile-avatar-wrap { min-height: 330px; }
  .cat-stat { grid-template-columns: 1fr auto; }
  .cat-stat .bar { grid-row: 2; grid-column: 1 / -1; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-tag { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-line { grid-template-columns: 1fr; }
}

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