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

:root {
  --red:       #e8001d;
  --red-dark:  #b5001a;
  --black:     #0a0a0a;
  --charcoal:  #141414;
  --off-white: #f7f6f4;
  --white:     #ffffff;
  --muted:     #888;
  --display:   'Barlow Condensed', sans-serif;
  --body:      'Barlow', sans-serif;
  --expo:      cubic-bezier(0.16, 1, 0.3, 1);
  --max:       1200px;
  --pad:       7%;
}

html { scroll-behavior: smooth; }
body { font-family: var(--body); background: var(--white); color: var(--black); overflow-x: hidden; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ── Shared ── */
.label {
  font-family: var(--display);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.label::before { content: ''; width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }

h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--red); }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
  transition: gap 0.2s;
}
.btn-line:hover { gap: 16px; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 500px;
  max-height: 580px;
  background: var(--black);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad) 9vh;
  max-width: 680px;
}
.hero-content .label { color: rgba(255,255,255,0.45); }
.hero-content .label::before { background: var(--red); }
.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 em { color: var(--red); font-style: italic; }
.hero-para {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-content .btn-line { color: var(--white); border-color: rgba(255,255,255,0.5); }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: var(--pad); z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
}
.scroll-track { width: 40px; height: 1px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; }
.scroll-thumb {
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--red);
  animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove { 0% { left: -100%; } 50% { left: 0; } 100% { left: 100%; } }

/* ── Ticker ── */
.ticker { background: var(--red); padding: 13px 0; overflow: hidden; user-select: none; }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 22px;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── CTA Trio ── */
.cta-trio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cta-card {
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
  overflow: hidden;
}
.cta-card:hover { background: rgba(255,255,255,0.04); }
.cta-card:nth-child(2) { border-right: none; }
.cta-card--fs {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  flex-direction: row;
  align-items: center;
}

.cta-img {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) saturate(0.8);
  transition: filter 0.4s, transform 0.5s var(--expo);
  flex-shrink: 0;
}
.cta-card:hover .cta-img { filter: brightness(0.75) saturate(1); transform: scale(1.03); }

.cta-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cta-card--fs .cta-body { padding: 36px var(--pad); max-width: 640px; }
.cta-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.cta-card p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; flex: 1; }
.cta-card .btn-line { color: var(--white); border-color: rgba(255,255,255,0.3); margin-top: 10px; align-self: flex-start; }

/* ── Feed ── */
.feed { padding: 88px 0; background: var(--off-white); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0 0;
  align-items: start;
}
.feed-col { display: flex; flex-direction: column; gap: 14px; }
.feed-source {
  font-family: var(--display); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.feed-card {
  background: var(--white);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--black);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  /* equal height: all cards same fixed height */
  height: 625px;
  transition: transform 0.25s var(--expo), box-shadow 0.25s;
}
.feed-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); }

/* Blog */
.feed-card--blog .feed-card-img-wrap { height: 180px; overflow: hidden; flex-shrink: 0; }
.feed-card--blog .feed-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--expo); }
.feed-card--blog:hover .feed-card-img-wrap img { transform: scale(1.05); }
.feed-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; overflow: hidden; }
.feed-meta { font-family: var(--display); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.feed-card-body h3 { font-family: var(--display); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.feed-excerpt { font-size: 0.83rem; color: #666; line-height: 1.6; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }

/* Instagram embed — constrained */
.feed-card--embed {
  height: 625px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
}
.feed-card--embed:hover { transform: none; box-shadow: none; }
.feed-card--embed .instagram-media {
  width: 100% !important;
  min-width: unset !important;
  max-width: 100% !important;
}

/* LinkedIn */
.feed-card--linkedin { height: 420px; justify-content: center; }
.feed-card--linkedin .feed-card-body { padding: 28px; gap: 16px; justify-content: center; }
.linkedin-header { display: flex; align-items: center; gap: 12px; }
.linkedin-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: contain; background: var(--black); padding: 6px; flex-shrink: 0; }
.linkedin-header strong { display: block; font-family: var(--display); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; }
.linkedin-header span { font-size: 0.72rem; color: var(--muted); }
.feed-card--linkedin p { font-size: 0.875rem; line-height: 1.7; color: #444; }
.linkedin-cta { font-family: var(--display); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 8px; }

/* ── Sponsors ── */
.sponsors { padding: 88px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,0.06); }
.sponsors-sub { font-size: 0.95rem; line-height: 1.7; color: #555; margin-bottom: 48px; }

.sponsors-tier-label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.sponsors-grid {
  display: grid;
  align-items: center;
  justify-items: center;
  margin-bottom: 48px;
}
.sponsors-grid--exec {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 48px;
}
.sponsors-grid--exec img { max-height: 64px; max-width: 180px; }

.sponsors-grid--plat {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 28px 32px;
}
.sponsors-grid--plat img { max-height: 44px; max-width: 130px; }

.sponsors-grid img {
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s, transform 0.3s;
}
.sponsors-grid img:hover { filter: grayscale(0) opacity(1); transform: scale(1.07); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s cubic-bezier(.16,1,.3,1),
    transform 0.5s cubic-bezier(.16,1,.3,1);
}

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

/* ── Responsive ── */
@media (max-width: 960px) {
  .cta-trio { grid-template-columns: 1fr; }
  .cta-card { border-right: none; }
  .cta-card--fs { grid-column: auto; flex-direction: column; }
  .cta-card--fs .cta-body { padding: 28px 32px 32px; max-width: none; }

  .feed-grid { grid-template-columns: 1fr; }
  .feed-card, .feed-card--embed, .feed-card--linkedin { height: auto; min-height: 320px; }
  .feed-card--blog .feed-card-img-wrap { height: 200px; }

  .stats { gap: 0; }
  .stat { padding: 0 24px; }

  .sponsors-grid--exec { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --pad: 5%; }
  .hero-scroll { display: none; }
  .hero-content { max-width: none; max-height: 275px;}

  .stats { flex-direction: column; gap: 24px; padding: 44px var(--pad); }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

  .ticker-track span { padding: 0 14px; font-size: 0.75rem; }

  .cta-body { padding: 22px 20px 26px; }
  .sponsors-grid--exec { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}