/* ============================================================
   TuffLabs redesign 2026
   Dark cinematic theme · Space Grotesk display · 3D hero
   ============================================================ */

:root {
  --ink: #030304;
  --panel: #0b0e12;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --soft: rgba(255, 255, 255, 0.7);
  --muted: rgba(255, 255, 255, 0.46);
  --faint: rgba(255, 255, 255, 0.28);
  --white: #f7f7f2;
  --cream: #efeadf;
  --blue: #4b72ff;
  --blue-hot: #79a3ff;
  --coral: #ff5a4d;
  --mint: #3ddc97;
  --violet: #a78bfa;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.5, 0, 0.75, 0);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::before {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(52% 38% at 72% 10%, rgba(75, 114, 255, 0.11), transparent 70%),
    radial-gradient(40% 30% at 12% 82%, rgba(75, 114, 255, 0.05), transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

::selection {
  background: rgba(75, 114, 255, 0.45);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-track {
  background: var(--ink);
}

main {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
}

/* The inner bar is what morphs: full-bleed at the top of the page,
   then it contracts into a floating pill once you scroll. */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 3.4vw, 40px);
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transform: translateY(0);
  transition:
    max-width 350ms var(--ease-out),
    height 350ms var(--ease-out),
    padding 350ms var(--ease-out),
    transform 350ms var(--ease-out),
    border-radius 350ms var(--ease-out),
    border-color 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease;
}

.site-header.scrolled .header-inner {
  max-width: 1120px;
  height: 60px;
  padding: 0 clamp(16px, 2.4vw, 28px);
  transform: translateY(12px);
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(10, 11, 14, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1180px) {
  .site-header.scrolled .header-inner {
    max-width: calc(100% - 28px);
  }
}

.brand-lockup,
.nav-links,
.discord-pill,
.hero-actions,
.founder-links {
  display: flex;
  align-items: center;
}

.brand-lockup {
  gap: 11px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: #101014;
}

.brand-mark::after {
  position: absolute;
  inset: -40%;
  content: "";
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.75), transparent 65%);
  transform: translateX(-72%) rotate(8deg);
  animation: shine 5.2s ease-in-out infinite;
}

@keyframes shine {
  0%, 62% {
    transform: translateX(-72%) rotate(8deg);
  }
  86%, 100% {
    transform: translateX(72%) rotate(8deg);
  }
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  gap: 26px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  content: "";
  background: var(--blue-hot);
  border-radius: 2px;
  transition: right 260ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  right: 0;
}

/* magnetic buttons share these custom props */
.discord-pill,
.primary-action,
.secondary-action,
.community-action,
.service-cta,
.social-count-link,
.founder-links a {
  transform: translate(var(--btn-shift-x, 0), var(--btn-shift-y, 0));
  transition: transform 220ms var(--ease-out), border-color 200ms ease,
    background 200ms ease, color 200ms ease, box-shadow 260ms ease;
}

.discord-pill {
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    radial-gradient(120px 60px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.14), transparent 70%),
    rgba(255, 255, 255, 0.03);
  font-size: 13.5px;
  font-weight: 700;
}

.discord-pill img {
  width: 17px;
}

.discord-pill:hover {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 6px 26px rgba(75, 114, 255, 0.22);
}

/* ============================================================
   Hero
   ============================================================ */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 120px clamp(18px, 4vw, 56px) 40px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 48% at 74% 34%, rgba(75, 114, 255, 0.13), transparent 68%),
    radial-gradient(46% 40% at 18% 78%, rgba(121, 163, 255, 0.06), transparent 70%),
    var(--ink);
}

.hero-grid {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -6%;
  height: 44%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 46px 100%;
  transform: perspective(620px) rotateX(64deg);
  transform-origin: top;
  mask-image: linear-gradient(180deg, transparent 0%, #000 34%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 34%, transparent 92%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  width: min(1240px, 100%);
  margin: 0 auto;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.8);
  }
}

.hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(52px, 7.6vw, 108px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  animation: rise 900ms var(--ease-out) both;
}

.hero-copy h1 span:nth-child(2) {
  animation-delay: 120ms;
}

@keyframes rise {
  from {
    transform: translateY(105%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-lede {
  max-width: 46ch;
  margin: 0 0 30px;
  color: var(--soft);
  font-size: clamp(15.5px, 1.5vw, 18px);
  line-height: 1.65;
  animation: fade-up 900ms var(--ease-out) 260ms both;
}

.hero-actions {
  gap: 14px;
  flex-wrap: wrap;
  animation: fade-up 900ms var(--ease-out) 380ms both;
}

@keyframes fade-up {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background:
    radial-gradient(140px 70px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(75, 114, 255, 0.35), transparent 72%),
    var(--white);
  color: #08080a;
  font-size: 15px;
  font-weight: 800;
}

.primary-action img {
  width: 18px;
  filter: invert(1);
}

.primary-action:hover {
  box-shadow: 0 10px 40px rgba(247, 247, 242, 0.25);
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    radial-gradient(140px 70px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.13), transparent 72%),
    transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.secondary-action:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 40px;
  animation: fade-up 900ms var(--ease-out) 500ms both;
}

.hero-stat {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-stat span:not(.count-up) {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- logo stage (the 3D canvas spans the whole hero; this column
       just reserves the space the logo is pinned to) --- */

.hero-stage {
  position: relative;
  height: clamp(380px, 56vh, 620px);
  animation: fade-up 1100ms var(--ease-out) 300ms both;
}

.hero-stage-glow {
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(48% 42% at 50% 46%, rgba(121, 163, 255, 0.13), transparent 70%);
  filter: blur(6px);
}

.hero-logo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.hero-logo-fallback img {
  width: min(78%, 460px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero-stage.no-webgl .hero-logo-fallback {
  display: flex;
}

/* ============================================================
   Status strip — the lab's current state, not a marquee
   ============================================================ */

.status-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.016);
}

.status-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 18px clamp(16px, 2.4vw, 32px);
}

.status-item + .status-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.status-item:first-child {
  padding-left: 0;
}

.status-key {
  color: var(--faint);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-key::before {
  content: "● ";
  font-size: 8px;
  color: var(--blue-hot);
}

.status-item:first-child .status-key::before {
  color: var(--coral);
}

.status-item:nth-child(2) .status-key::before {
  color: var(--mint);
}

.status-value {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============================================================
   Shared section chrome
   ============================================================ */

.section {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 136px) clamp(18px, 4vw, 56px) 0;
}

.section:last-of-type {
  padding-bottom: clamp(84px, 10vw, 136px);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

/* mono "mission log" voice for section labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--faint);
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--blue-hot);
}

/* scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* tilt cards */
.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
}

.reveal.tilt-card {
  transition: opacity 800ms var(--ease-out), transform 300ms ease-out;
}

.reveal.tilt-card:not(.in) {
  opacity: 0;
  transform: perspective(900px) translateY(28px);
}

/* ============================================================
   Apps — the launch manifest
   Full-width rows instead of clone cards. Each project gets a
   status lane, real copy, and a small CSS sketch of its own UI.
   ============================================================ */

.manifest {
  margin-top: clamp(36px, 4.4vw, 56px);
  border-top: 1px solid var(--line);
}

.manifest-row {
  --accent: var(--blue);
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr) clamp(190px, 22vw, 250px);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 44px) clamp(4px, 1vw, 14px);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.manifest-row::before {
  position: absolute;
  left: -1px;
  top: 18%;
  bottom: 18%;
  width: 2px;
  content: "";
  background: var(--accent);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 260ms var(--ease-out);
}

.manifest-row:hover {
  background: rgba(255, 255, 255, 0.018);
}

.manifest-row:hover::before {
  transform: scaleY(1);
}

.manifest-row[data-accent="coral"] {
  --accent: var(--coral);
}

.manifest-row[data-accent="blue"] {
  --accent: var(--blue-hot);
}

.manifest-row[data-accent="mint"] {
  --accent: var(--mint);
}

.manifest-row[data-accent="violet"] {
  --accent: var(--violet);
}

.manifest-status {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

.manifest-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-wordmark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.app-wordmark em {
  font-style: normal;
  color: var(--accent);
}

.manifest-copy p {
  max-width: 52ch;
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.65;
}

.manifest-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
}

.manifest-link span {
  transition: transform 200ms var(--ease-out);
}

.manifest-link:hover {
  color: var(--accent);
}

.manifest-link:hover span {
  transform: translateX(4px);
}

/* ---------- vignettes: tiny CSS sketches of each product ---------- */

.vignette {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(90% 90% at 70% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

/* — TuffCut: clip tracks and a playhead — */

.vg-cut-preview {
  position: absolute;
  inset: 12% 30% 52% 12%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(70% 80% at 35% 40%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 72%),
    rgba(0, 0, 0, 0.4);
}

.vg-cut-tracks {
  position: absolute;
  inset: auto 12% 14% 12%;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.vg-cut-track {
  display: flex;
  gap: 5px;
  height: 12px;
}

.vg-cut-track i {
  width: var(--w, 30%);
  border-radius: 4px;
  background: color-mix(in srgb, var(--accent) 55%, transparent);
}

.vg-cut-track i:nth-child(even) {
  background: color-mix(in srgb, var(--accent) 26%, transparent);
}

.vg-cut-playhead {
  position: absolute;
  top: 38%;
  bottom: 9%;
  left: 30%;
  width: 1.5px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  animation: playhead-drift 7s ease-in-out infinite alternate;
}

.vg-cut-playhead::before {
  position: absolute;
  top: -5px;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--white);
}

@keyframes playhead-drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(clamp(70px, 9vw, 100px));
  }
}

/* — TuffType: a doc with a blinking caret — */

.vg-type-bar {
  position: absolute;
  inset: 11% 12% auto 12%;
  display: flex;
  gap: 5px;
}

.vg-type-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.vg-type-lines {
  position: absolute;
  inset: 30% 12% 16% 12%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vg-type-lines span {
  display: block;
  width: var(--w, 70%);
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}

.vg-type-lines .vg-type-last {
  position: relative;
  background: color-mix(in srgb, var(--accent) 45%, transparent);
}

.vg-type-lines .vg-type-last::after {
  position: absolute;
  top: -3px;
  right: -8px;
  width: 2px;
  height: 14px;
  content: "";
  background: var(--accent);
  animation: caret-blink 1.1s steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

/* — Tuff.: load ring and rep bars — */

.vg-fit {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.vg-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 34%;
  aspect-ratio: 1;
}

/* the conic ring lives on a masked layer so the number stays visible */
.vg-ring::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0 84%, rgba(255, 255, 255, 0.1) 84% 100%);
  -webkit-mask: radial-gradient(closest-side, transparent 72%, #000 73%);
  mask: radial-gradient(closest-side, transparent 72%, #000 73%);
}

.vg-ring b {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
}

.vg-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52%;
  width: 34%;
}

.vg-bars i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: color-mix(in srgb, var(--accent) 40%, transparent);
}

.vg-bars i:nth-child(4) {
  background: var(--accent);
}

/* — Roblox: a voxel stack — */

.vg-blox {
  display: grid;
  place-items: center;
}

.vg-voxels {
  position: relative;
  width: 44%;
  aspect-ratio: 1.6;
  transform: rotate(-4deg);
}

.vg-voxels i {
  position: absolute;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1.5px solid color-mix(in srgb, var(--accent) 70%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}

.vg-voxels i:nth-child(1) {
  left: 8%;
  bottom: 0;
}

.vg-voxels i:nth-child(2) {
  left: 42%;
  bottom: 0;
  background: color-mix(in srgb, var(--accent) 30%, transparent);
}

.vg-voxels i:nth-child(3) {
  left: 25%;
  bottom: 52%;
  background: color-mix(in srgb, var(--accent) 42%, transparent);
}

.vg-voxels i:nth-child(4) {
  left: 76%;
  bottom: 26%;
  width: 22%;
  opacity: 0.6;
}

.vg-blox-stat {
  position: absolute;
  right: 10%;
  bottom: 9%;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Services — one band: statement left, offers right
   ============================================================ */

.services-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.services-intro h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.services-intro p {
  max-width: 34ch;
  margin: 0;
  color: var(--soft);
  font-size: 15.5px;
  line-height: 1.65;
}

.services-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2.6vw, 40px);
  align-items: center;
  padding: clamp(24px, 2.8vw, 34px) 4px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.018);
}

.service-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.service-copy p {
  max-width: 44ch;
  margin: 0;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.service-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.service-proof {
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-cta {
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    radial-gradient(130px 60px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(75, 114, 255, 0.25), transparent 72%),
    transparent;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.service-cta:hover {
  border-color: var(--blue-hot);
}

/* ============================================================
   Journey / reel
   ============================================================ */

.build-section .section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.build-section .section-heading > h2 {
  flex: 1 1 320px;
}

.journey-socials {
  display: flex;
  gap: 12px;
}

.social-count-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    radial-gradient(130px 70px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.08), transparent 72%),
    rgba(255, 255, 255, 0.02);
}

.social-count-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.social-count-link strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.social-count-link span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reel-strip {
  position: relative;
  margin-top: clamp(32px, 4vw, 48px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 18px 0;
}

.reel-track {
  display: flex;
  width: max-content;
  animation: reel-scroll var(--reel-duration, 70s) linear infinite;
}

.reel-strip:hover .reel-track {
  animation-play-state: paused;
}

@keyframes reel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reel-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.reel-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(168px, 16vw, 208px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(0);
  transition: transform 320ms var(--ease-out), border-color 240ms ease, box-shadow 320ms ease;
}

.reel-card.raised {
  transform: translateY(-14px);
}

.reel-card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-0.6deg);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.reel-card.raised:hover {
  transform: translateY(-20px) scale(1.03) rotate(0.6deg);
}

.reel-card img {
  width: 100%;
  aspect-ratio: 9 / 15.5;
  object-fit: cover;
}

.reel-card span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 14px 13px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ============================================================
   Community / Discord
   ============================================================ */

.discord-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.community-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.community-copy > p {
  margin: 0 0 26px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.6;
}

.community-actions-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.community-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background:
    radial-gradient(140px 70px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.28), transparent 72%),
    var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 10px 34px rgba(75, 114, 255, 0.35);
}

.community-action img {
  width: 18px;
}

.community-action:hover {
  box-shadow: 0 14px 44px rgba(75, 114, 255, 0.5);
}

.community-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.server-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 24, 32, 0.92), rgba(10, 12, 16, 0.94));
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.server-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
}

.server-identity img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.server-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.server-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2.2s ease-in-out infinite;
}

.channel-list {
  display: flex;
  flex-direction: column;
}

.channel-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 200ms ease, padding-left 200ms ease;
}

.channel-list > div:last-child {
  border-bottom: 0;
}

.channel-list > div:hover {
  background: rgba(255, 255, 255, 0.035);
  padding-left: 28px;
}

.channel-main {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: baseline;
}

.channel-main em {
  color: var(--blue-hot);
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
}

.channel-main b {
  font-size: 14.5px;
  font-weight: 700;
}

.channel-main small {
  grid-column: 2;
  color: var(--muted);
  font-size: 12.5px;
}

.channel-list strong {
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   Founders
   ============================================================ */

/* the duo: two cards joined by one signal line. The four rows
   (head / bio / socials / profile link) are shared parent tracks,
   so both cards' content lines up whatever the bios wrap to. */
.founder-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(48px, 6vw, 96px) minmax(0, 1fr);
  grid-template-rows: repeat(4, auto);
  row-gap: 16px;
  align-items: stretch;
  margin-top: clamp(36px, 4.4vw, 56px);
}

.founder {
  position: relative;
  grid-row: 1 / -1;
  display: grid;
  grid-template-rows: subgrid;
  justify-items: start;
  align-items: start;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease;
}

.founder:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.founder-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder .founder-initials {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 18px;
}

.founder-name h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.founder-role {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-role em {
  font-style: normal;
  color: var(--cream);
}

.founder-role em::before {
  content: "· ";
  color: var(--faint);
}

.founder-line {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.65;
}

.founder-line::first-letter {
  color: var(--white);
}

/* the line both of them push */
.founder-signal {
  position: relative;
  grid-row: 1 / -1;
  align-self: center;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.founder-signal i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--blue-hot);
  box-shadow: 0 0 12px var(--blue-hot);
  animation: signal-travel 2.6s ease-in-out infinite alternate;
}

@keyframes signal-travel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(clamp(48px, 6vw, 96px) - 6px));
  }
}

.founder-initials {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(121, 163, 255, 0.4);
  border-radius: 18px;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(75, 114, 255, 0.28), transparent 70%),
    rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* .founder-roles is kept for the founder profile pages */
.founder-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.founder-roles span {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-roles .role-special {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.founder-links {
  gap: 10px;
  margin-top: 8px;
}

.founder-links a {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    radial-gradient(110px 50px at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.1), transparent 72%),
    transparent;
  font-size: 13px;
  font-weight: 700;
}

.founder-links a:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: clamp(60px, 8vw, 110px);
  padding: 54px 24px 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--soft);
  font-size: 13.5px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social {
  color: var(--muted);
  font-size: 13px;
}

.site-footer small {
  color: var(--faint);
  font-size: 12px;
}

/* ============================================================
   Responsive
   ============================================================ */

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

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    height: clamp(280px, 40vh, 420px);
  }

  .hero-section {
    padding-top: 96px;
  }

  .services-band,
  .discord-section {
    grid-template-columns: 1fr;
  }

  /* manifest rows: status folds above the copy, vignette keeps its lane */
  .manifest-row {
    grid-template-columns: minmax(0, 1fr) clamp(170px, 30vw, 230px);
  }

  .manifest-meta {
    grid-column: 1 / -1;
  }

  /* the duo stacks; shared rows no longer apply, and the signal
     line turns vertical between the cards */
  .founder-duo {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 0;
  }

  .founder {
    grid-row: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .founder-signal {
    grid-row: auto;
    width: 1px;
    height: clamp(40px, 6vh, 64px);
    margin: 0 auto;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  }

  .founder-signal i {
    top: 0;
    left: 50%;
    margin-top: 0;
    margin-left: -3px;
    animation-name: signal-travel-v;
  }

  @keyframes signal-travel-v {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(calc(clamp(40px, 6vh, 64px) - 6px));
    }
  }
}

@media (max-width: 700px) {
  .status-strip-inner {
    grid-template-columns: 1fr;
  }

  .status-item {
    padding: 13px 0;
  }

  .status-item + .status-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .manifest-row {
    grid-template-columns: 1fr;
  }

  .vignette {
    max-width: 320px;
  }

  .service-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-side {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header.scrolled .header-inner {
    height: 56px;
    transform: translateY(10px);
    max-width: calc(100% - 20px);
  }

  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 18px;
  }

  .discord-pill {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
}

/* ============================================================
   Scroll-scrubbed motion (progressive enhancement)
   When the browser supports scroll-driven animations, script.js
   adds .scrub to <html>. Reveals then follow the scroll position:
   they play in as they enter, reverse when you scroll back up,
   and ease away as they leave the top of the screen. Browsers
   without support keep the observer-based reveals above.
   ============================================================ */

html.scrub .reveal,
html.scrub .product-section,
html.scrub .product-cta,
html.scrub .product-more {
  opacity: 1;
  transition: none;
  animation-name: scrub-in, scrub-out;
  animation-timing-function: ease-out, linear;
  animation-fill-mode: both, none;
  animation-timeline: view(), view();
  animation-range: entry 0% entry 85%, exit 55% exit 100%;
}

html.scrub .reveal:not(.tilt-card) {
  transform: none;
}

@keyframes scrub-in {
  from {
    opacity: 0;
    translate: 0 var(--travel, 36px);
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes scrub-out {
  to {
    opacity: 0.15;
    translate: 0 -26px;
  }
}

/* the hero copy hands off as you scroll away, and reassembles on
   the way back up; product-page heroes get the same treatment */
html.scrub .hero-copy,
html.scrub .product-hero {
  animation-name: hero-away;
  animation-timing-function: linear;
  animation-fill-mode: none;
  animation-timeline: view();
  animation-range: exit 0% exit 75%;
}

@keyframes hero-away {
  to {
    opacity: 0;
    translate: 0 -64px;
  }
}

/* the reel strip drifts sideways with the scroll, on top of its marquee */
html.scrub .reel-strip {
  animation-name: scrub-in, scrub-out, reel-drift;
  animation-timing-function: ease-out, linear, linear;
  animation-fill-mode: both, none, both;
  animation-timeline: view(), view(), view();
  animation-range: entry 0% entry 85%, exit 55% exit 100%, entry 0% exit 100%;
}

@keyframes reel-drift {
  from {
    transform: translateX(34px);
  }
  to {
    transform: translateX(-34px);
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-copy h1 span,
  .hero-lede,
  .hero-actions,
  .hero-stats,
  .hero-stage {
    animation: none;
  }

  .reel-track,
  .brand-mark::after,
  .hero-logo-fallback img,
  .vg-cut-playhead,
  .founder-signal i {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tilt-card {
    transform: none;
  }

  .header-inner {
    transition: none;
  }
}

/* ============================================================
   Product pages (/tuffcut, /tufftype, /tuff-fitness, /roblox)
   ============================================================ */

.product-page {
  --accent: var(--blue-hot);
}

.product-page[data-accent="coral"] {
  --accent: var(--coral);
}
.product-page[data-accent="blue"] {
  --accent: var(--blue-hot);
}
.product-page[data-accent="mint"] {
  --accent: var(--mint);
}
.product-page[data-accent="violet"] {
  --accent: var(--violet);
}

.product-hero {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(130px, 15vw, 190px) clamp(18px, 4vw, 56px) clamp(50px, 6vw, 80px);
}

.product-hero::before {
  position: absolute;
  inset: 0 0 auto 0;
  height: 420px;
  content: "";
  background: radial-gradient(46% 60% at 22% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
  pointer-events: none;
}

.back-link {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  transition: color 180ms ease;
}

.back-link:hover {
  color: var(--white);
}

.product-status {
  position: relative;
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.product-title {
  position: relative;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.product-title em {
  font-style: normal;
  color: var(--accent);
}

.product-lede {
  position: relative;
  max-width: 54ch;
  margin: 0 0 34px;
  color: var(--soft);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.product-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.product-stats {
  position: relative;
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 40px;
}

.product-stats div {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.product-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-stats span {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .product-stats {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.product-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(60px, 7vw, 96px);
}

.product-section h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.product-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  max-width: 100%;
}

.product-body p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 15.5px;
  line-height: 1.7;
}

.product-body p:last-child {
  margin-bottom: 0;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.point-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 220ms ease;
}

.point-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.point-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.point-card p {
  margin: 0;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.65;
}

.product-cta {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(70px, 8vw, 110px);
}

.product-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.product-cta-inner h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-cta-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* sibling product nav */
.product-more {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(70px, 8vw, 100px);
}

.product-more h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.more-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 220ms ease, transform 260ms var(--ease-out);
}

.more-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.more-card strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.more-card span {
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .product-body,
  .point-grid,
  .more-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Founder profiles (/jinshuo-ye, /charlie-leung)
   ============================================================ */

/* home cards link through to the profiles; the whole card is the
   target, with the social pills kept clickable above the overlay */
.founder .founder-links {
  position: relative;
  z-index: 1;
}

.founder-profile-link {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  transition: color 200ms ease;
}

.founder-profile-link::after {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  content: "";
}

.founder-profile-link span {
  display: inline-block;
  transition: translate 220ms var(--ease-out);
}

.founder:hover .founder-profile-link {
  color: var(--white);
}

.founder:hover .founder-profile-link span {
  translate: 4px 0;
}

/* profile hero */
.founder-hero .founder-initials {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 24px;
  background:
    radial-gradient(80% 80% at 30% 20%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 70%),
    rgba(255, 255, 255, 0.03);
  font-size: 28px;
}

.founder-hero .product-title {
  margin-bottom: 18px;
}

.founder-hero .founder-roles {
  position: relative;
  margin-bottom: 26px;
}
