/* ============================================================
   JBS Media — style.css
   Palette locked to original site:
   black #000, gray-950 #030712, gray-900 #111827, gray-800 #1f2937,
   gray-700 #374151, gray-400 #9ca3af, gray-300 #d1d5db, white,
   teal accent #0D8B8E (hover #0B7A7D), blue-400 #60a5fa,
   blue-600 #2563eb → cyan-600 #0891b2 gradient,
   blue-500 #3b82f6 / cyan-500 #06b6d4 orbs,
   brand gradients: blue-500→cyan-500, purple-500→pink-500,
   orange-500→red-500, green-500→emerald-500
   ============================================================ */

:root {
  --black: #000000;
  --gray-950: #030712;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;

  --teal: #0D8B8E;
  --teal-hover: #0B7A7D;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --purple-500: #a855f7;
  --pink-500: #ec4899;
  --orange-500: #f97316;
  --red-500: #ef4444;
  --green-500: #22c55e;
  --emerald-500: #10b981;

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 72rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--teal); color: var(--white); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.875rem 1.75rem;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn svg { width: 1.125rem; height: 1.125rem; transition: transform 0.2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(13, 139, 142, 0);
}
.btn-primary:hover {
  background: var(--teal-hover);
  box-shadow: 0 8px 30px -6px rgba(13, 139, 142, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--gray-700);
  color: var(--gray-300);
  background: rgba(31, 41, 55, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; border-radius: 0.625rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom-color: var(--gray-800);
}

.nav-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}
.nav-logo img { height: 34px; width: auto; object-fit: contain; }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-300);
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--blue-400); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--white); }

.nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: grid;
  gap: 0.25rem;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid transparent;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.mobile-menu.open {
  max-height: 26rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top-color: var(--gray-800);
}
.mobile-link {
  padding: 0.75rem 0.25rem;
  font-weight: 500;
  color: var(--gray-300);
  border-bottom: 1px solid var(--gray-800);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--blue-400); }
.mobile-cta { margin-top: 1rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 0 6rem;
  background: linear-gradient(to bottom, var(--black), var(--gray-950) 50%, var(--black));
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-teal {
  top: 8%; right: 4%;
  width: 28rem; height: 28rem;
  background: rgba(13, 139, 142, 0.16);
}
.orb-blue {
  bottom: 12%; left: 2%;
  width: 24rem; height: 24rem;
  background: rgba(59, 130, 246, 0.12);
  animation-delay: -7s;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3rem, 2.5rem) scale(1.12); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 65, 81, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 65, 81, 0.16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  background: rgba(17, 24, 39, 0.7);
  border: 1px solid var(--gray-800);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(13, 139, 142, 0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(13, 139, 142, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(13, 139, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 139, 142, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 17ch;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.09em;
  background: linear-gradient(to right, var(--blue-600), var(--cyan-600));
  border-radius: 2px;
  opacity: 0.85;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--gray-300);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.nav-logo, .footer-brand img { cursor: zoom-in; }

.logo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.logo-lightbox[hidden] { display: none; }
.logo-lightbox.open { opacity: 1; }
.logo-lightbox img {
  max-width: min(70vw, 420px);
  max-height: 70vh;
  transform: scale(0.92);
  transition: transform 0.25s ease;
}
.logo-lightbox.open img { transform: scale(1); }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0 0 2.75rem;
  padding: 0;
}
.hero-tags li {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gray-300);
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--gray-800);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 56rem;
  background: var(--gray-800);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-stat {
  background: rgba(3, 7, 18, 0.85);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.3rem;
}
.hero-stat dd {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-stat dt {
  font-size: 0.78rem;
  color: var(--gray-400);
  line-height: 1.35;
}
@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 1;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  color: var(--gray-400);
  animation: bob 2.2s ease-in-out infinite;
  transition: color 0.2s;
}
.scroll-cue:hover { color: var(--teal); }
.scroll-cue svg { width: 20px; height: 20px; }
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--gray-800);
  overflow: hidden;
}
.section-deep {
  background: linear-gradient(to bottom, var(--gray-950), var(--black));
}

.section-head { margin-bottom: 3.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--teal);
  background: var(--gray-900);
  border: 1px solid rgba(13, 139, 142, 0.25);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.eyebrow-num {
  color: var(--gray-400);
  font-weight: 600;
  padding-right: 0.65rem;
  border-right: 1px solid var(--gray-700);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 24ch;
}
.title-accent { color: var(--gray-400); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}

.about-media { display: flex; justify-content: center; }
.portrait-wrap {
  position: relative;
  width: min(100%, 24rem);
}
.portrait-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(13, 139, 142, 0.35), rgba(6, 182, 212, 0.12) 55%, transparent 75%);
  filter: blur(40px);
}
.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(13, 139, 142, 0.5);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
}
.portrait-chip {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-300);
  background: rgba(17, 24, 39, 0.92);
  border: 1px solid var(--gray-700);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.7);
}
.chip-top { top: 8%; right: -4%; animation: float 5s ease-in-out infinite; }
.chip-bottom { bottom: 10%; left: -6%; animation: float 5s ease-in-out -2.5s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.lead {
  font-size: 1.25rem;
  color: var(--gray-300);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.lead strong { color: var(--white); }
.about-copy > p:not(.lead) {
  color: var(--gray-300);
  margin-bottom: 2.25rem;
}

.stat-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 640px) {
  .stat-row { grid-template-columns: repeat(3, 1fr); }
}
.stat-card {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(13, 139, 142, 0.2);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.stat-card:hover {
  border-color: rgba(13, 139, 142, 0.6);
  transform: translateY(-4px);
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  line-height: 1.4;
}

.about-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gray-300);
  padding-left: 1.5rem;
  border-left: 3px solid var(--teal);
}

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }

.audience-card {
  position: relative;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: var(--radius);
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  overflow: hidden;
}
.audience-card:hover {
  border-color: var(--teal);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -18px rgba(13, 139, 142, 0.35);
}
.audience-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.audience-label {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.audience-bar {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: var(--w, 0%);
  max-width: 0;
  background: linear-gradient(to right, var(--teal), var(--cyan-500));
  transition: max-width 1.1s var(--ease) 0.3s;
}
.audience-card.in-view .audience-bar { max-width: var(--w, 0%); }

/* ---------- Callout ---------- */
.callout {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(31, 41, 55, 0.3);
  border: 1px solid var(--gray-700);
  backdrop-filter: blur(8px);
}
.callout-icon {
  flex-shrink: 0;
  width: 3rem; height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.875rem;
  background: rgba(13, 139, 142, 0.12);
  border: 1px solid rgba(13, 139, 142, 0.3);
  color: var(--teal);
}
.callout-icon svg { width: 1.5rem; height: 1.5rem; }
.callout h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.callout p { color: var(--gray-300); }
.callout p strong { color: var(--white); }
.callout-muted {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-400) !important;
}
@media (max-width: 560px) {
  .callout { flex-direction: column; }
}

/* ---------- How it works ---------- */
.pillar-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  padding: 2.25rem 1.9rem;
  border-radius: var(--radius-lg);
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.pillar-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(13, 139, 142, 0.35);
}
.pillar-icon {
  width: 3.25rem; height: 3.25rem;
  display: grid;
  place-items: center;
  border-radius: 0.95rem;
  background: rgba(13, 139, 142, 0.12);
  border: 1px solid rgba(13, 139, 142, 0.3);
  color: var(--teal);
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 1.6rem; height: 1.6rem; }
.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.pillar-card p { color: var(--gray-300); }

/* ---------- Partnerships ---------- */
.format-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .format-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .format-grid { grid-template-columns: repeat(3, 1fr); } }

.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid var(--gray-700);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.format-card:hover {
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(13, 139, 142, 0.3);
}
.format-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.format-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.format-icon {
  width: 1.5rem; height: 1.5rem;
  color: var(--gray-400);
  transition: color 0.3s, transform 0.3s var(--ease);
}
.format-card:hover .format-icon {
  color: var(--teal);
  transform: scale(1.12);
}
.format-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.format-card:hover h3 { color: var(--teal); }
.format-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.format-flagship { border-color: rgba(13, 139, 142, 0.5); }
.flagship-tag {
  position: absolute;
  top: -0.8rem;
  right: 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--teal);
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -4px rgba(13, 139, 142, 0.6);
}

/* ---------- Content universe ---------- */
.brand-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

.brand-card {
  position: relative;
  padding: 2.5rem 2rem;
  min-height: 13rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-700);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.35s;
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.brand-card:hover::before { background: rgba(0, 0, 0, 0.1); }

/* original gradient pairs — unchanged */
.brand-fog       { background: linear-gradient(to bottom right, var(--blue-500), var(--cyan-500)); }
.brand-picture   { background: linear-gradient(to bottom right, var(--purple-500), var(--pink-500)); }
.brand-weeds     { background: linear-gradient(to bottom right, var(--orange-500), var(--red-500)); }
.brand-spotlight { background: linear-gradient(to bottom right, var(--green-500), var(--emerald-500)); }

.brand-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}
.brand-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}
.brand-arrow {
  position: absolute;
  z-index: 1;
  top: 1.75rem;
  right: 1.75rem;
  width: 1.6rem; height: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s var(--ease);
}
.brand-card:hover .brand-arrow { transform: translate(4px, -4px); }

/* ---------- Process ---------- */
.process-track {
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
  position: relative;
}
@media (min-width: 900px) {
  .process-track { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
  .process-track::before {
    content: "";
    position: absolute;
    top: 1.45rem;
    left: 4rem; right: 4rem;
    height: 1px;
    background: linear-gradient(to right, var(--gray-800), var(--gray-700), var(--gray-800));
  }
}

.process-step { position: relative; }
.process-marker {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  background: var(--gray-900);
  border: 1px solid rgba(13, 139, 142, 0.45);
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 6px var(--black);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact-card {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 2rem;
  background: rgba(17, 24, 39, 0.55);
  border: 1px solid var(--gray-700);
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.contact-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 42rem; height: 24rem;
  background: radial-gradient(ellipse, rgba(13, 139, 142, 0.28), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.contact-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.contact-sub {
  position: relative;
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.contact-actions {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.contact-details {
  position: relative;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-800);
}
.contact-eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.contact-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-line { color: var(--gray-400); }
.contact-line a {
  color: var(--teal);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-line a:hover { color: var(--teal-hover); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-950);
  border-top: 1px solid var(--gray-800);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img { height: 30px; width: auto; }
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue-400); }
.footer-copy {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }
.d-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .audience-card .audience-bar { max-width: var(--w, 0%); }
}

/* ---------- Hero host chip ---------- */
.hero-host {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem 0.35rem 0.35rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--gray-800);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.hero-host-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal);
}
.hero-host-label {
  font-size: 0.82rem;
  color: var(--gray-300);
  text-align: left;
  line-height: 1.3;
}
.hero-host-label strong { color: #fff; }

/* ---------- Testimonials ---------- */
.tm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .tm-grid { grid-template-columns: repeat(3, 1fr); }
}
.tm-card {
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.tm-card blockquote {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gray-200);
}
.tm-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-800);
}
.tm-name { font-weight: 600; color: #fff; }
.tm-role { font-size: 0.85rem; color: var(--gray-400); }

/* ---------- Contact person ---------- */
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-avatar {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: rgba(13, 139, 142, 0.18);
  border: 2px solid var(--teal);
}
