:root {
  --bg: #ffffff;
  --bg-2: #f2f0ea;
  --bg-3: #e8e5dc;
  --ink: #0a0a0a;
  --ink-2: #3a3a38;
  --muted: #7d7c75;
  --accent: #c8102e;
  --accent-hover: #a50d26;
  --link: #d45a1b;
  --card: #ffffff;
  --border: rgba(10,10,10,0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: #ffffff;
  border-bottom: 1px solid transparent;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  justify-self: start;
}
.brand-logo {
  width: 28px; height: 28px;
  object-fit: contain;
  display: block;
}
.brand-mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 800;
}
.brand-name {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  text-transform: none;
}
.nav-center {
  display: none;
  justify-self: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink);
}
.nav-center a { color: var(--ink); font-weight: 500; }
.nav-center a:hover { color: var(--muted); }
.nav-right {
  display: inline-flex; align-items: center; gap: 14px;
  justify-self: end;
}
.nav-right .link {
  font-size: 14px; color: var(--ink); font-weight: 500;
  display: none;
}
.nav-right .nav-cta {
  background: var(--ink); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  display: none;
  align-items: center; gap: 4px;
}
.nav-right .nav-cta:hover { background: #1a1a1a; }
.menu {
  background: none; border: 0; font-size: 22px; line-height: 1;
  padding: 6px 0; color: var(--ink); cursor: pointer;
}

/* HERO — Cursor screen 1 pattern */
.hero {
  padding: 56px 24px 40px;
  background: var(--bg);
  max-width: 1280px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(16px, 4.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: none;
  color: var(--ink);
  white-space: nowrap;
}
.br-mobile { display: inline; }
.br-desktop { display: none; }
@media (min-width: 900px) {
  .br-mobile { display: none; }
  .br-desktop { display: inline; }
}
.hero .sub {
  display: none;
}
.hero .cta-row {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: transform 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1a1a1a; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-2); }

.link-arrow {
  color: var(--link);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px;
}
.link-arrow:hover { color: var(--accent); }

/* HERO VISUAL — the big screenshot below the headline */
.hero-visual {
  margin: 40px auto 0;
  max-width: 1280px;
  border-radius: 18px;
  overflow: hidden;
  height: 100vh;
  min-height: 640px;
  background-image: url("coverportrait.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}
.hero-visual .placeholder-label { display: none; }
@media (min-width: 900px) {
  .hero-visual {
    aspect-ratio: 16/9;
    height: auto;
    min-height: 0;
    background-image: url("coverdesktop.jpeg");
    padding: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
  }
}

/* HERO WINDOW — Cursor-style macOS window overlay */
.hero-window {
  width: 118%;
  max-width: 920px;
  margin-left: 20%;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
@media (min-width: 900px) {
  .hero-window { width: 100%; margin-left: 0; }
}
.hw-chrome {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #ececec;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hw-dots { display: inline-flex; gap: 6px; }
.hw-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: #d5d5d5;
}
.hw-dots span:nth-child(1) { background: #ff5f57; }
.hw-dots span:nth-child(2) { background: #febc2e; }
.hw-dots span:nth-child(3) { background: #28c940; }
.hw-title {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 500;
  color: #555;
  letter-spacing: 0;
}
.hw-body {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 320px;
}
.hw-sidebar { display: none; }
.hw-main {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
}
@media (max-width: 899px) {
  .hw-main { padding-right: 34%; }
}
.hw-breadcrumb {
  font-size: 11px;
  color: #7d7c75;
  letter-spacing: 0;
}
.hw-breadcrumb strong { color: var(--ink); font-weight: 600; }
.hw-hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.hw-hero-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.hw-hero-sub {
  font-size: 11px;
  color: #7d7c75;
  margin-top: 2px;
}
.hw-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hw-pill.live {
  background: rgba(40,201,64,0.12);
  color: #1c8637;
}
.hw-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c940;
  box-shadow: 0 0 0 0 rgba(40,201,64,0.5);
  animation: hw-pulse 1.6s ease-out infinite;
}
@keyframes hw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(40,201,64,0.55); }
  70% { box-shadow: 0 0 0 6px rgba(40,201,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,201,64,0); }
}
.hw-steps {
  display: flex; flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hw-step {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 2px;
}
.hw-step-n {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  background: #f0ede3;
  color: #9b9891;
  flex-shrink: 0;
}
.hw-step.ok .hw-step-n { background: rgba(40,201,64,0.14); color: #1c8637; }
.hw-step.progress .hw-step-n { background: rgba(48,110,230,0.14); color: #2c66cc; }
.hw-step-main { flex: 1; min-width: 0; }
.hw-step-title {
  font-size: 12px; font-weight: 600;
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hw-step.pending .hw-step-title { color: #9b9891; font-weight: 500; }
.hw-step-meta {
  font-size: 10px; color: #7d7c75;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hw-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(40,201,64,0.14);
  color: #1c8637;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hw-check svg { width: 10px; height: 10px; }
.hw-spinner {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(48,110,230,0.18);
  border-top-color: #2c66cc;
  animation: hw-spin 0.9s linear infinite;
  flex-shrink: 0;
}
@keyframes hw-spin { to { transform: rotate(360deg); } }
.hw-counter {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-variant-numeric: tabular-nums;
}
.hw-sales { display: flex; flex-direction: column; gap: 4px; }
.hw-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b9891;
  margin: 4px 0 2px;
}
.hw-sale {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 12px;
}
.hw-sale:first-of-type { border-top: 0; }
.hw-sale-name {
  font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hw-sale-price {
  font-weight: 600;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
}
.hw-sale-badge {
  font-size: 9px; font-weight: 600;
  padding: 2px 7px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.hw-sale-badge.sold {
  background: rgba(34,139,80,0.16);
  color: #1f7a42;
}
.hw-sale-badge.drop {
  background: rgba(230,140,40,0.16);
  color: #c16a12;
}

/* DESKTOP WINDOW */
@media (min-width: 720px) {
  .hw-body {
    grid-template-columns: 240px 1fr;
  }
  .hw-sidebar {
    display: block;
    border-right: 1px solid rgba(0,0,0,0.06);
    padding: 14px 12px;
    background: #fafaf7;
    overflow: hidden;
  }
  .hw-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex; flex-direction: column; gap: 2px;
  }
  .hw-item {
    display: flex; align-items: center; gap: 9px;
    padding: 7px 8px;
    border-radius: 7px;
    cursor: default;
  }
  .hw-item.active { background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
  .hw-status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    flex-shrink: 0;
  }
  .hw-status-dot.live {
    background: #28c940;
    box-shadow: 0 0 0 0 rgba(40,201,64,0.6);
    animation: hw-pulse 1.6s ease-out infinite;
  }
  .hw-status-dot.queued {
    background: #d5d1c4;
  }
  .hw-status-dot.done {
    background: #1c8637;
  }
  .hw-item-main { flex: 1; min-width: 0; }
  .hw-item-title {
    font-size: 12px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    line-height: 1.2;
  }
  .hw-item-meta {
    font-size: 10px; color: #7d7c75;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .hw-item.done .hw-item-title { color: #555; }
}
@media (min-width: 900px) {
  .hero-window { max-width: 960px; }
  .hw-main { padding: 20px 24px 22px; gap: 16px; }
  .hw-hero-title { font-size: 18px; }
}

/* LOGOS BAR */
.logos-bar {
  max-width: 1280px; margin: 0 auto;
  padding: 8px 24px 24px;
  text-align: center;
}
.logos-caption {
  font-size: 11px; font-weight: 700;
  color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 5px 5px;
}
.logos-row span {
  padding: 4px 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}

/* FEATURE SECTIONS — Cursor screen 2 & 3 pattern */
.feature {
  padding: 28px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.feature-inner {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.feature-copy { display: flex; flex-direction: column; gap: 14px; }
.feature h2 {
  font-size: clamp(24px, 5.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 22ch;
}
.feature h2.h2-two {
  font-size: clamp(20px, 4.8vw, 28px);
  max-width: none;
}
.feature h2.h2-oneline {
  font-size: clamp(16px, 4vw, 26px);
  max-width: none;
  white-space: nowrap;
}
.feature h2.h2-wide { max-width: 28ch; }
.feature p {
  color: var(--ink);
  margin: 0;
  max-width: 44ch;
  font-size: 16px;
  line-height: 1.45;
}
.feature .link-arrow { margin-top: 2px; }

.feature-visual {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(10,10,10,0.03) 14px 28px),
    linear-gradient(180deg, #fafaf7 0%, #ece9df 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
  aspect-ratio: 16/11;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  text-align: center; padding: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 6px 20px rgba(0,0,0,0.05);
  position: relative;
}

/* FLOATING THUMBNAIL (like Cursor screen 3 corner) */
.feature-visual .thumb {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 120px; aspect-ratio: 16/10;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 2;
  display: none;
}

/* STAT VISUAL (alternative to image placeholder) */
.feature-visual.stat {
  background: var(--ink);
  color: #f5f3ee;
  flex-direction: column; gap: 8px;
  padding: 40px 28px;
  text-transform: none; letter-spacing: 0;
}
.feature-visual.stat .big {
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 700; letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 0.9;
}
.feature-visual.stat .label {
  font-size: 13px; color: rgba(245,243,238,0.8);
  font-weight: 400; letter-spacing: 0; text-transform: none;
  max-width: 28ch; margin-top: 10px;
  line-height: 1.4;
}
.feature-visual.collage,
.feature-visual.ball,
.feature-visual.jersey,
.feature-visual.disc,
.feature-visual.balvin {
  background-color: #ffffff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 3/4;
  padding: 0;
  border-color: rgba(10,10,10,0.06);
  box-shadow: none;
  overflow: visible;
  position: relative;
}
.feature-visual.collage { background-image: url("glove.jpeg"); }
.feature-visual.ball { background-image: url("ball.jpeg"); }
.feature-visual.jersey { background-image: url("jersey.jpg"); }
.feature-visual.disc { background-image: url("disc.jpeg"); }
.feature-visual.balvin {
  background-image: url("chetportait.png");
  background-size: cover;
}
@media (min-width: 900px) {
  .feature-visual.balvin {
    background-image: url("chetlandscape.png");
    background-size: cover;
  }
}
@media (min-width: 900px) {
  .feature-visual.collage,
  .feature-visual.ball,
  .feature-visual.jersey,
  .feature-visual.disc,
  .feature-visual.balvin {
    aspect-ratio: 16/11;
  }
}

/* CAVS VIDEO */
.feature-visual.cavs-video {
  background: #000;
  padding: 0;
  border-color: rgba(10,10,10,0.06);
  overflow: hidden;
  aspect-ratio: 599/1097;
  position: relative;
}
.feature-visual.cavs-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-visual.cavs-video .cavs-landscape { display: none; }
@media (min-width: 900px) {
  .feature-visual.cavs-video {
    aspect-ratio: 16/11;
  }
  .feature-visual.cavs-video .cavs-portrait { display: none; }
  .feature-visual.cavs-video .cavs-landscape { display: block; }
}

/* AUTH CARD STACK */
.auth-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(86%, 300px);
  height: 190px;
  transform: translate(-46%, -50%);
  pointer-events: none;
}
.auth-card {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 10px 12px;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
.auth-card.card-1 {
  top: 0;
  transform: translateX(-14px) scale(0.94);
  z-index: 1;
}
.auth-card.card-2 {
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.auth-card.card-3 {
  bottom: 0;
  transform: translateX(-14px) scale(0.94);
  z-index: 2;
}
.auth-card.muted {
  background: rgba(255,255,255,0.4);
  box-shadow: none;
}
.auth-card-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-icon {
  width: 24px; height: 24px;
  border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.auth-icon svg { width: 15px; height: 15px; }
.auth-icon.glove-icon {
  background: rgba(10,10,10,0.06);
  color: var(--ink-2);
}
.auth-icon.check-icon {
  background: rgba(34,139,80,0.14);
  color: #1f7a42;
}
.auth-icon.ball-icon {
  background: rgba(200,16,46,0.10);
  color: var(--accent);
}
.auth-icon.data-icon {
  background: rgba(120,80,200,0.12);
  color: #6d43c9;
}
.auth-icon.jersey-icon {
  background: rgba(10,10,10,0.06);
  color: var(--ink-2);
}
.auth-icon.resale-icon {
  background: rgba(230,140,40,0.14);
  color: #c16a12;
}
.auth-icon.royalty-icon {
  background: rgba(200,16,46,0.10);
  color: var(--accent);
}
.auth-icon.disc-icon {
  background: rgba(10,10,10,0.06);
  color: var(--ink-2);
}
.auth-icon.seat-icon {
  background: rgba(20,160,160,0.14);
  color: #0f8a8a;
}
.auth-icon.collab-icon {
  background: rgba(120,80,200,0.12);
  color: #6d43c9;
}
.auth-card-main {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column; gap: 1px;
  overflow: hidden;
}
.auth-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}
.auth-card-meta {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}
.auth-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-logged {
  background: rgba(48,110,230,0.14);
  color: #2c66cc;
}
.badge-authenticated {
  background: rgba(34,139,80,0.16);
  color: #1f7a42;
}
.badge-certificate {
  background: rgba(20,160,160,0.14);
  color: #0f8a8a;
}
.badge-listed {
  background: rgba(48,110,230,0.14);
  color: #2c66cc;
}
.badge-sold {
  background: rgba(34,139,80,0.16);
  color: #1f7a42;
}
.badge-data {
  background: rgba(120,80,200,0.14);
  color: #6d43c9;
}
.badge-resold {
  background: rgba(230,140,40,0.16);
  color: #c16a12;
}
.badge-royalty {
  background: rgba(200,16,46,0.12);
  color: var(--accent);
}
.badge-drop {
  background: rgba(34,139,80,0.16);
  color: #1f7a42;
}
.badge-upcycled {
  background: rgba(20,160,160,0.14);
  color: #0f8a8a;
}
.badge-collab {
  background: rgba(120,80,200,0.14);
  color: #6d43c9;
}
@media (min-width: 900px) {
  .auth-stack {
    width: min(60%, 320px);
    height: 170px;
    transform: translate(-62%, -50%);
  }
}
.feature-visual.flow {
  background: #fff;
  flex-direction: column;
  align-items: flex-start; justify-content: center;
  gap: 12px;
  padding: 32px 28px;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
.feature-visual.flow .step {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); font-size: 14px; font-weight: 500;
}
.feature-visual.flow .step .n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}

/* TESTIMONIALS SECTION */
/* RECORDS — "Recent highlights" style */
.records {
  padding: 56px 24px;
  background: transparent;
  max-width: 1280px;
  margin: 0 auto;
}
.records-inner { max-width: none; margin: 0; }
.records-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 500; letter-spacing: -0.025em;
  text-align: left;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: none;
}
.records-grid {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  margin: 0 -24px;
  padding: 4px 24px 16px;
  scrollbar-width: none;
}
.records-grid::-webkit-scrollbar { display: none; }
.record-card {
  flex: 0 0 78%;
  scroll-snap-align: center;
  background: var(--bg-2);
  border-radius: 14px;
  padding: 20px 20px 18px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.record-meta {
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0;
  font-weight: 400;
}
.record-card h4 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  flex: 1;
}
.record-byline {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.record-byline .avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 12px;
  letter-spacing: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.record-byline .avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@media (min-width: 700px) {
  .records-grid {
    overflow-x: visible;
    scroll-snap-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  .record-card { flex: 1; }
}
@media (min-width: 1000px) {
  .records { padding: 72px 40px; }
  .records-grid { grid-template-columns: repeat(4, 1fr); }
  .records-title { font-size: 32px; margin-bottom: 36px; }
  .record-card { padding: 22px 22px 20px; min-height: 240px; }
}

.testimonials {
  padding: 56px 24px;
  background: var(--bg-2);
}
.testimonials-inner { max-width: 1280px; margin: 0 auto; }
.testimonials h2 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 500; letter-spacing: -0.025em;
  text-align: center;
  max-width: 22ch; margin: 0 auto 28px;
}
.quote-scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  margin: 0 -24px;
  padding: 8px 24px 20px;
  scrollbar-width: none;
}
.quote-scroll::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 82%;
  scroll-snap-align: center;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.quote .stat {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--accent);
}
.quote .stat small {
  font-size: 12px; font-weight: 500; color: var(--ink-2); letter-spacing: 0;
  display: block; margin-top: 2px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.quote blockquote {
  margin: 0; font-size: 16px; line-height: 1.45;
  letter-spacing: -0.01em;
}
.quote figcaption {
  color: var(--muted); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* TRUST TRIO — "Stay on the frontier" style */
.trust {
  padding: 56px 24px;
  background: var(--bg-2);
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 40px auto;
  border-radius: 20px;
}
.trust .trust-title {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 500; letter-spacing: -0.025em;
  text-align: left;
  max-width: none; margin: 0 0 24px;
  color: var(--ink);
}
.trio-scroll {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 24px;
  margin: 0 -24px;
  padding: 8px 24px 20px;
  scrollbar-width: none;
}
.trio-scroll::-webkit-scrollbar { display: none; }
.trio-card {
  flex: 0 0 78%;
  scroll-snap-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.trio-card h3 {
  font-size: 18px; letter-spacing: -0.015em;
  font-weight: 600; line-height: 1.25;
  color: var(--ink);
}
.trio-card p {
  color: var(--ink); margin: 0; font-size: 14px; line-height: 1.5;
  flex: 0 0 auto;
}
.trio-card .link-arrow { margin: 2px 0 4px; }
.trio-card .trio-visual {
  margin-top: 12px;
  border-radius: 10px;
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(10,10,10,0.03) 14px 28px),
    linear-gradient(180deg, #eceadf 0%, #d8d3c3 100%);
  border: 1px solid var(--border);
}
.trio-card .trio-visual-security {
  background: #fff center/85% no-repeat url("security.png");
}
.trio-card .trio-visual-culture {
  background: #000 center/cover no-repeat url("skeelandscape.jpg");
}

/* FINAL CTA — dark */
.final-cta {
  background: var(--ink);
  color: #f5f3ee;
  padding: 80px 24px;
  text-align: center;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(200,16,46,0.2), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(200,16,46,0.1), transparent 55%);
}
.final-cta-inner { max-width: 900px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(36px, 9vw, 64px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 18px;
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta p {
  color: rgba(245,243,238,0.75);
  font-size: 16px;
  max-width: 48ch;
  margin: 0 auto 28px;
}
.final-cta .cta-row { justify-content: center; display: flex; flex-wrap: wrap; gap: 10px; }
.final-cta .btn-dark {
  background: var(--accent); color: #fff;
}
.final-cta .btn-dark:hover { background: var(--accent-hover); }
.final-cta .btn-ghost {
  color: #f5f3ee; border-color: rgba(255,255,255,0.3);
}
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* WORK (merged cases + press) */
.work {
  padding: 80px 24px;
  background: var(--bg);
}
.work .inner { max-width: 1280px; margin: 0 auto; }
.work .work-title {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 500; letter-spacing: -0.025em;
  text-align: center;
  margin: 0 0 36px;
  color: var(--ink);
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.work-card {
  background: var(--bg-2);
  border-radius: 16px;
  padding: 28px 24px 22px;
  margin: 0;
  display: flex; flex-direction: column; gap: 20px;
}
.work-card blockquote {
  margin: 0;
  font-size: 16px; line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.work-card figcaption {
  display: flex; align-items: center; gap: 12px;
}
.work-card figcaption .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: 0;
  flex-shrink: 0;
  overflow: hidden;
}
.work-card figcaption .avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.work-card figcaption .avatar img[src*="sbj"] {
  transform: scale(1.6);
}
.work-card figcaption div {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.work-card figcaption strong {
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.005em;
}
.work-card figcaption span {
  font-size: 13px; color: var(--ink);
}
@media (min-width: 700px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1000px) {
  .work { padding: 100px 40px; }
  .work-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .work-card { padding: 32px 28px 26px; }
  .work-card blockquote { font-size: 17px; }
}

/* TAIL: CASES */
.tail { padding: 60px 24px; max-width: 1280px; margin: 0 auto; }
.section-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 500; letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.cases-row {
  display: flex; flex-direction: column; gap: 14px;
}
.case {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.case .case-meta {
  font-size: 10px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
}
.case h4 { font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; }
.case p { color: var(--ink-2); margin: 0; font-size: 14px; }
.case .stats {
  display: flex; gap: 20px; flex-wrap: wrap; padding-top: 12px;
  border-top: 1px solid var(--border); margin-top: 4px;
}
.case .stats div { font-size: 12px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.case .stats div b {
  display: block; font-size: 20px; color: var(--ink);
  font-weight: 700; letter-spacing: -0.02em; text-transform: none;
}

/* TEAM BLOCK */
.team-block {
  background: transparent;
  padding: 40px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.team-block .inner {
  background: var(--bg-2);
  border-radius: 20px;
  padding: 40px 28px;
  max-width: none;
  margin: 0;
}
.team-block h2 {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 36ch;
}
.team-block p { color: var(--ink-2); margin-bottom: 16px; font-size: 15px; max-width: 60ch; }
.team-block .team-visual {
  margin-top: 22px;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  border-radius: 14px;
  background-image: url("profskeeportrait.jpeg");
  background-size: cover;
  background-position: center;
  color: transparent;
}
@media (min-width: 900px) {
  .team-block .team-visual {
    aspect-ratio: 16/10;
    background-image: url("profskeelandscape.jpeg");
  }
}

/* HIGHLIGHTS */
.highlights { background: var(--bg); padding: 60px 24px; }
.highlights .inner { max-width: 1280px; margin: 0 auto; }
.highlights-row {
  display: flex; flex-direction: column; gap: 12px;
}
.highlight {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px;
}
.highlight .meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.highlight h4 { font-size: 16px; margin: 8px 0; line-height: 1.3; font-weight: 600; letter-spacing: -0.01em; }
.highlight .byline { font-size: 12px; color: var(--muted); }
.view-all { margin-top: 18px; display: inline-block; }

/* FOOTER */
.footer {
  background: var(--ink);
  color: rgba(245,243,238,0.75);
  padding: 56px 24px 30px;
}
.footer .container { max-width: 1280px; margin: 0 auto; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.footer-brand .brand-name { color: #f5f3ee; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,243,238,0.5);
  margin-bottom: 4px;
  font-weight: 700;
}
.footer-col a { color: rgba(245,243,238,0.85); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(245,243,238,0.12);
  font-size: 12px;
  color: rgba(245,243,238,0.5);
}

/* DESKTOP */
@media (min-width: 900px) {
  .nav {
    padding: 20px 40px;
  }
  .nav-center { display: inline-flex; }
  .nav-right .link { display: inline-block; }
  .nav-right .nav-cta { display: inline-flex; }

  .hero { padding: 96px 40px 60px; }
  .hero h1 {
    font-size: 52px;
    max-width: none;
    line-height: 1.05;
    white-space: nowrap;
  }
  .hero-visual { margin-top: 56px; aspect-ratio: 16/8.5; }

  .logos-bar { margin-top: 0; padding: 16px 40px 24px; }
  .logos-row { gap: 10px 14px; }
  .logos-row span { padding: 6px 14px; font-size: 12px; letter-spacing: 0.1em; }

  .feature { padding: 28px 40px; }
  .feature-inner {
    padding: 72px 80px;
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: 56px;
    min-height: 520px;
  }
  .feature.alt .feature-copy { order: 2; }
  .feature.alt .feature-visual { order: 1; }

  .feature h2 { font-size: 32px; max-width: 18ch; }
  .feature h2.h2-wide { max-width: 24ch; }
  .feature p { font-size: 16px; max-width: 38ch; }

  .feature-visual .thumb { display: block; }

  .testimonials { padding: 80px 40px; }
  .quote-scroll {
    scroll-snap-type: none;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  .quote { flex: 1; padding: 26px; }
  .quote blockquote { font-size: 17px; }

  .trust { padding: 56px 40px; }
  .trust .trust-title { font-size: 32px; margin-bottom: 28px; }
  .trio-scroll {
    scroll-snap-type: none;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
  }
  .trio-card { flex: 1; padding: 32px 28px 28px; }
  .trio-card h3 { font-size: 22px; min-height: calc(22px * 1.25 * 2); }
  .trio-card .trio-visual { aspect-ratio: 16/11; margin-top: 16px; }

  .final-cta { padding: 120px 40px; }

  .tail { padding: 80px 40px; }
  .cases-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .team-block { padding: 40px 40px; }
  .team-block .inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 56px;
  }
  .team-block h2 { font-size: 22px; max-width: none; line-height: 1.3; }
  .team-block .team-visual { margin-top: 0; }

  .highlights { padding: 80px 40px; }
  .highlights-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

  .footer { padding: 72px 40px 30px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); }
}
