/* Future Finds — site-wide additions for multi-page polish.
   Loaded AFTER styles.css. */

/* ---------- Hero carousel ---------- */
.hero-carousel {
  isolation: isolate;
}
.hero-carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 700ms var(--ff-ease-standard);
  pointer-events: none;
}
.hero-carousel-img.is-active {
  opacity: 1;
}
.hero-carousel-tag {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 320ms var(--ff-ease-standard), transform 320ms var(--ff-ease-standard);
  pointer-events: none;
}
.hero-carousel-tag.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-carousel-dot {
  background: transparent;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.hero-carousel-dot .bar {
  display: block;
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
  transition: background 200ms var(--ff-ease-standard), width 200ms var(--ff-ease-standard);
}
.hero-carousel-dot:hover .bar { background: white; }
.hero-carousel-dot.is-active .bar {
  background: var(--ff-primary);
  width: 44px;
}

/* Hero carousel arrows */
.hero-h1 {
  font-size: clamp(40px, 9vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 600px;
}
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ff-ink-1000);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 1;
  transition: background 200ms var(--ff-ease-standard),
              transform 200ms var(--ff-ease-standard),
              box-shadow 200ms var(--ff-ease-standard);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.25);
}
.hero-carousel:hover .hero-carousel-arrow { background: white; }
.hero-carousel-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.35);
}
.hero-carousel-arrow-prev { left: 14px; }
.hero-carousel-arrow-next { right: 14px; }
.hero-carousel-arrow svg { display: block; }
@media (max-width: 720px) {
  .hero-carousel-arrow { width: 38px; height: 38px; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ff-ease-standard), transform 600ms var(--ff-ease-standard);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header polish ---------- */
.header {
  background: rgba(255, 255, 255, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 200ms var(--ff-ease-standard),
              border-color 200ms var(--ff-ease-standard),
              box-shadow 200ms var(--ff-ease-standard);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--ff-border);
}
.header-logo {
  text-decoration: none;
  display: inline-block;
}
.header-nav a {
  text-decoration: none;
  padding: 6px 0;
}
.header-nav a.is-active {
  color: var(--ff-primary-press);
}
.header-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--ff-primary);
}
.btn { text-decoration: none; }
.header-burger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--ff-ink-1000);
  cursor: pointer;
  padding: 8px;
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; align-items: start; }
  .header-logo { align-self: start; padding-top: 16px; }
  .header-actions { grid-column: 3; justify-self: end; align-self: start; padding-top: 12px; }
  .header-nav {
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--ff-border);
    padding: 8px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all 200ms var(--ff-ease-standard);
  }
  .header-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--ff-border);
    width: 100%;
  }
  .header-burger { display: inline-grid; place-items: center; }
  .header-actions .btn { display: none; }
  .header-actions .btn:last-of-type { display: inline-flex; }
}

/* ---------- Marquee (surprise moment) ---------- */
.marquee {
  background: var(--ff-ink-1000);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid var(--ff-ink-1000);
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  padding-left: 0;
}
.marquee-item {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.marquee-item .raised {
  color: var(--ff-primary);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.marquee-item .dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--ff-primary);
  display: inline-block;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Trustpilot section ---------- */
.tp-band {
  background: white;
  border-top: 2px solid var(--ff-ink-1000);
  border-bottom: 2px solid var(--ff-ink-1000);
}
.tp-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 40px;
}
.tp-rating {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  background: var(--ff-paper-200);
  border-radius: 14px;
  border: 1px solid var(--ff-border);
}
.tp-rating .row { display: flex; align-items: center; gap: 12px; }
.tp-rating .score {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ff-ink-1000);
}
.tp-stars {
  display: inline-flex;
  gap: 3px;
}
.tp-star {
  width: 26px; height: 26px;
  background: #00B67A;
  display: inline-grid; place-items: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.tp-star.muted { background: #DCDCE0; }
.tp-star.half {
  background: linear-gradient(90deg, #00B67A 0 50%, #DCDCE0 50% 100%);
}
.tp-star svg { width: 16px; height: 16px; }
.tp-rating .label {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}
.tp-rating .logo {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ff-ink-1000);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tp-rating .logo .tp-dot { width: 18px; height: 18px; background: #00B67A; display: inline-block; }

.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tp-card {
  background: white;
  border: 1px solid var(--ff-border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 200ms var(--ff-ease-standard), transform 200ms var(--ff-ease-standard);
}
.tp-card:hover { border-color: var(--ff-ink-1000); transform: translateY(-2px); }
.tp-card .tp-mini-stars { display: inline-flex; gap: 2px; }
.tp-card .tp-mini-stars .tp-star { width: 20px; height: 20px; }
.tp-card .tp-mini-stars .tp-star svg { width: 12px; height: 12px; }
.tp-card .quote {
  font-family: var(--ff-font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ff-ink-1000);
  flex: 1;
}
.tp-card .who {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  padding-top: 14px;
  border-top: 1px solid var(--ff-border);
}
.tp-card .who strong { color: var(--ff-ink-1000); font-weight: 800; }
.tp-cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ---------- Generic page hero (sub-pages) ---------- */
.page-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--ff-border);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 104px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ff-ink-1000);
  margin: 0 0 24px;
  max-width: 1100px;
}
.page-hero h1 em { font-style: normal; color: var(--ff-primary); }
.page-hero .lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ff-fg-2);
  max-width: 720px;
}
.page-hero .meta-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid var(--ff-ink-1000);
}
.page-hero .meta-row .item .l {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}
.page-hero .meta-row .item .v {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ff-ink-1000);
  margin-top: 4px;
}

/* ---------- Case-study editorial styles ---------- */
.cs-cover {
  margin: 48px 0 64px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--ff-paper-300);
}
.cs-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cs-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 64px 0;
}
.cs-aside {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-aside h6 {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  margin: 0 0 8px;
}
.cs-aside .toc {
  display: flex; flex-direction: column; gap: 8px;
}
.cs-aside .toc a {
  text-decoration: none;
  color: var(--ff-ink-1000);
  font-size: 14px;
  padding: 4px 0;
  border-bottom: 1px solid var(--ff-border);
}
.cs-aside .toc a:hover { color: var(--ff-primary-press); }

.cs-body { max-width: 760px; }
.cs-body h2 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ff-ink-1000);
  margin: 64px 0 24px;
}
.cs-body h2:first-child { margin-top: 0; }
.cs-body h2 em { font-style: normal; color: var(--ff-primary); }
.cs-body h3 {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ff-ink-1000);
  margin: 40px 0 12px;
}
.cs-body p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ff-ink-800);
  margin: 0 0 20px;
}
.cs-body p.lead-p {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ff-ink-1000);
  font-weight: 500;
}
.cs-body ul {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ff-ink-800);
  padding-left: 0;
  list-style: none;
}
.cs-body ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--ff-border);
}
.cs-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 18px; height: 2px;
  background: var(--ff-primary);
}
.cs-body figure { margin: 32px 0; }
.cs-body figure img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.cs-body figcaption {
  font-family: var(--ff-font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  margin-top: 10px;
}
.cs-pullquote {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 2px solid var(--ff-ink-1000);
  border-bottom: 2px solid var(--ff-ink-1000);
}
.cs-pullquote .q {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ff-ink-1000);
  margin: 0 0 14px;
}
.cs-pullquote .q em { font-style: normal; color: var(--ff-primary); }
.cs-pullquote .who {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0;
  border-top: 2px solid var(--ff-ink-1000);
  border-bottom: 2px solid var(--ff-ink-1000);
}
.cs-stats .item {
  padding: 24px 16px;
  border-right: 1px solid var(--ff-border);
}
.cs-stats .item:last-child { border-right: 0; }
.cs-stats .v {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ff-primary-press);
}
.cs-stats .l {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  margin-top: 10px;
}

/* ---------- Creators page ---------- */
.creators-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.creators-pillar {
  background: white;
  border: 2px solid var(--ff-ink-1000);
  border-radius: 14px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.creators-pillar h4 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ff-ink-1000);
}
.creators-pillar p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ff-fg-2);
  margin: 0;
}
.creators-pillar .num {
  font-family: var(--ff-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ff-fg-2);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  padding: 96px 0;
  align-items: start;
}
.apply-form {
  background: white;
  border: 2px solid var(--ff-ink-1000);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apply-form .step-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 2px solid var(--ff-ink-1000);
  padding-bottom: 14px;
  margin-bottom: 6px;
}
.apply-form .step-head h3 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.apply-form .step-num {
  font-family: var(--ff-font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ff-fg-2);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}
.field input, .field select, .field textarea {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--ff-border);
  background: white;
  color: var(--ff-ink-1000);
  font-family: var(--ff-font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 160ms var(--ff-ease-standard);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ff-ink-1000);
}
.field textarea { min-height: 100px; resize: vertical; }
.field .helper {
  font-size: 12px;
  color: var(--ff-fg-2);
}
.stage-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.stage-option {
  border: 1.5px solid var(--ff-border);
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: var(--ff-font-body);
  font-size: 14px;
  color: var(--ff-ink-1000);
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 160ms, background 160ms;
}
.stage-option:hover { border-color: var(--ff-ink-1000); }
.stage-option.is-active { border-color: var(--ff-primary); background: var(--ff-green-50); }
.stage-option strong {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stage-option span { color: var(--ff-fg-2); font-size: 12px; }
.apply-form .step-actions { display: flex; gap: 10px; align-items: center; justify-content: space-between; margin-top: 12px; }
.success-state {
  text-align: center;
  padding: 32px 16px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.success-state .check {
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--ff-primary);
  color: var(--ff-on-primary);
  display: grid; place-items: center;
}
.success-state h3 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.success-state p { color: var(--ff-fg-2); margin: 0; max-width: 360px; }

.apply-side h3 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--ff-ink-1000);
}
.apply-side h3 em { font-style: normal; color: var(--ff-primary); }
.apply-side .lead {
  font-size: 19px; line-height: 1.5;
  color: var(--ff-fg-2);
  max-width: 480px;
  margin-bottom: 32px;
}
.apply-checklist {
  display: flex; flex-direction: column; gap: 0;
  border-top: 2px solid var(--ff-ink-1000);
}
.apply-checklist .row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ff-border);
  align-items: start;
}
.apply-checklist .row .ic {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--ff-primary);
  color: var(--ff-on-primary);
  display: grid; place-items: center;
}
.apply-checklist .row .ic svg { width: 14px; height: 14px; stroke-width: 2.5; }
.apply-checklist .row h6 {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ff-ink-1000);
}
.apply-checklist .row p { font-size: 14px; color: var(--ff-fg-2); margin: 0; line-height: 1.45; }

/* ---------- About / Team page ---------- */
.about-manifesto {
  padding: 64px 0 96px;
}
.about-manifesto .quote {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ff-ink-1000);
  max-width: 1100px;
  margin: 0;
}
.about-manifesto .quote em { font-style: normal; color: var(--ff-primary); }
.about-manifesto .who {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  margin-top: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ff-ink-1000);
}
.timeline .row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--ff-border);
}
.timeline .year {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ff-primary);
}
.timeline h4 {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ff-ink-1000);
}
.timeline p { font-size: 16px; line-height: 1.5; color: var(--ff-fg-2); margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.team-card {
  background: white;
  border: 1px solid var(--ff-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms var(--ff-ease-standard);
}
.team-card:hover { border-color: var(--ff-primary); }
.team-card .photo {
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--ff-paper-300), var(--ff-paper-400));
  position: relative;
  overflow: hidden;
}
.team-card .photo .initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 96px;
  letter-spacing: -0.02em;
  color: var(--ff-primary);
}
.team-card .photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  /* Unify the look across mixed B&W and color portraits */
  filter: grayscale(1) contrast(1.02) brightness(0.98);
}
.team-card .meta { padding: 18px 20px 22px; }
.team-card .meta h4 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--ff-ink-1000);
}
.team-card .meta .role {
  font-family: var(--ff-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}

/* ---------- Blog / Insights page ---------- */
.blog-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 32px 0 64px;
  align-items: center;
}
.blog-feature .art {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ff-paper-300);
}
.blog-feature .art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-feature .tag {
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ff-primary-press);
  margin-bottom: 14px;
}
.blog-feature h2 {
  font-family: var(--ff-font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--ff-ink-1000);
}
.blog-feature p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ff-fg-2);
  max-width: 520px;
}
.blog-feature .meta {
  margin-top: 24px;
  font-family: var(--ff-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0 96px;
}
.blog-card {
  background: white;
  border: 1px solid var(--ff-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color 200ms var(--ff-ease-standard);
}
.blog-card:hover { border-color: var(--ff-ink-1000); }
.blog-card:hover .blog-card-img-inner { transform: scale(1.04); }
.blog-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--ff-paper-300);
}
.blog-card-img-inner {
  position: absolute; inset: 0;
  transition: transform 320ms var(--ff-ease-out);
}
.blog-card-img-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card .body {
  padding: 22px 22px 26px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.blog-card .tag {
  font-family: var(--ff-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
}
.blog-card h3 {
  font-family: var(--ff-font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ff-ink-1000);
}
.blog-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ff-fg-2);
  margin: 0;
  flex: 1;
}
.blog-card .meta {
  font-family: var(--ff-font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ff-fg-2);
  margin-top: 6px;
}

.blog-categories {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--ff-border);
  margin-bottom: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { padding-top: 32px; padding-bottom: 64px; }
  .hero h1, .hero .hero-h1 { font-size: 58px; line-height: 0.92; margin: 16px 0 24px; }
  .section-title { font-size: 48px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .item { border-right: 1px solid var(--ff-border); }
  .stat-strip .item:nth-child(2n) { border-right: 0; }
  .stat-strip .item:nth-child(-n+2) { border-bottom: 1px solid var(--ff-border); }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero-grid > .hero-head { grid-column: 1; grid-row: 1; }
  .hero-grid > .hero-carousel-wrap { grid-column: 1; grid-row: 2; }
  .hero-grid > .hero-body { grid-column: 1; grid-row: 3; }
  .services-grid,
  .testi-grid,
  .tp-grid,
  .team-grid,
  .blog-grid,
  .portfolio-grid,
  .creators-pillars { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .stats-band .big-num { font-size: 128px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-title { font-size: 64px; }
  .cta-grid, .apply-grid, .blog-feature, .tp-head, .cs-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-aside { position: static; }
  .case-card { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 64px; }
  .about-manifesto .quote { font-size: 56px; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .timeline .row { grid-template-columns: 1fr; gap: 8px; }
}
