/* ============================================================
   AgeInnovate — pitch-event.css
   Page-specific styles for pitch-event.html.
   Extends style.css — never duplicates base tokens.
   ============================================================ */


/* === EVENT HERO ===
   Dark navy + teal glow. Big year treatment + tagline.
   "Presented by" lockup floats above the heading.
*/
.event-hero {
  background:
    radial-gradient(ellipse 65% 70% at 80% 10%, rgba(34, 201, 151, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 85%, rgba(34, 201, 151, 0.06) 0%, transparent 50%),
    var(--color-surface-dark);
  padding-block: var(--space-8) var(--space-9);
}

/* Hero photo — standout card with teal glow, sits below the text block */
.event-hero__photo {
  margin-top: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(34, 201, 151, 0.2),
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(34, 201, 151, 0.08);
}
.event-hero__photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 65vh;
  object-fit: cover;
  object-position: center 25%;
}

.event-hero__inner {
  max-width: var(--container-lg);
}

/* "Presented by Prudential Peak" lockup */
.event-hero__presented-by {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.event-hero__presented-label {
  font-size: var(--fs-sm);
  color: var(--color-ink-muted-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}
.event-hero__presented-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-line-dark);
  vertical-align: middle;
  margin-left: var(--space-3);
}
.event-hero__presented-logo {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-lg);
  color: var(--color-ink-light);
  letter-spacing: -0.01em;
}

/* Main heading — "Congratulations, SpendCare." */
.event-hero h1 {
  font-size: clamp(var(--fs-4xl), 7vw, 5rem);
  color: var(--color-ink-light);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
  margin-top: var(--space-4);
}

/* Italic teal tagline — big, loud */
.event-hero__tagline {
  display: block;
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-style: italic;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: var(--space-2);
}

/* Stats strip below heading */
.event-hero__stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-7);
  flex-wrap: wrap;
}
.event-hero__stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.event-hero__stat-num {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-3xl);
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.event-hero__stat-cap {
  font-size: var(--fs-sm);
  color: var(--color-ink-muted-dark);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.event-hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-line-dark);
  flex-shrink: 0;
}


/* === WINNER ANNOUNCEMENT ===
   Light gray. Celebration moment: badge + heading + full photo.
*/
.winner-announcement {
  background: var(--color-surface-light);
  padding-block: var(--space-8) 0;
  text-align: center;
}

.winner-announcement__text {
  padding-bottom: var(--space-7);
}

/* === WINNER BIO ===
   White. Company description below the photo.
*/
.winner-bio {
  background: var(--color-surface-white);
  padding-block: var(--space-7) var(--space-8);
}

/* Floating badge above eyebrow */
.winner__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.winner-announcement h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  color: var(--color-ink);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.winner__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-7);
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
  box-shadow: var(--shadow-md);
}
@media (min-width: 640px) {
  .winner__card {
    grid-template-columns: 200px 1fr;
    align-items: start;
  }
}

.winner__logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  background: var(--color-surface-light);
  border-radius: var(--radius-md);
  min-height: 100px;
}
.winner__logo-placeholder {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  color: var(--color-ink);
  letter-spacing: -0.02em;
  text-align: center;
}

.winner__founder {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-3);
}
.winner__body {
  font-size: var(--fs-lg);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-5);
  max-width: 55ch;
}

.winner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.winner__tag {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: var(--color-accent-tint);
  border: 1px solid rgba(34, 201, 151, 0.2);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
}


/* === EVENT PHOTO BAND ===
   Full-bleed photo below the winner hero.
*/
.event-photo-band {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* removes inline gap below img */
}
.event-photo-band img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}


/* === 2025 EVENT DETAILS ===
   Light gray. Provides event context beneath the photo.
   Left: presented-by + title. Right: stats strip.
*/
.event-details {
  background: var(--color-surface-light);
  padding-block: var(--space-8);
}
.event-details__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  align-items: flex-start;
}
@media (min-width: 900px) {
  .event-details__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-10);
  }
}

/* Heading inside event-details — uses tagline em like the old hero */
.event-details h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  color: var(--color-ink);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  margin-top: var(--space-2);
}
.event-details .event-hero__tagline {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  color: var(--color-accent);
}

/* Presented-by lockup on light bg */
.event-details .event-hero__presented-label {
  color: var(--color-ink-muted);
}
.event-details .event-hero__presented-label::after {
  background: var(--color-line);
}
.event-details .event-hero__presented-logo {
  color: var(--color-ink);
}

/* Stats on light bg — override dark-bg defaults */
.event-details__stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.event-details__stats .event-hero__stat-num {
  color: var(--color-accent-dark);
}
.event-details__stats .event-hero__stat-cap {
  color: var(--color-ink-muted);
}
.event-details__stats .event-hero__stat-divider {
  background: var(--color-line);
}


/* === THE FINALISTS ===
   Dark navy. Three cards side by side.
   Winner card gets a teal top border to distinguish.
*/
.finalists {
  background: var(--color-surface-dark);
  padding-block: var(--space-8);
}
.finalists h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink-light);
  margin-bottom: var(--space-7);
  letter-spacing: -0.02em;
}

.finalists__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) {
  .finalists__grid { grid-template-columns: repeat(3, 1fr); }
}

.finalist-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Winner card: teal top accent line */
.finalist-card--winner {
  border-top: 3px solid var(--color-accent);
  position: relative;
}

.finalist-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.finalist-card__logo-placeholder {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--color-ink-light);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.finalist-card__logo-placeholder span {
  color: var(--color-accent);
}

.finalist-card__winner-badge {
  flex-shrink: 0;
  background: var(--color-accent);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px var(--space-2);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.finalist-card__presenter {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.finalist-card__body {
  font-size: var(--fs-base);
  color: var(--color-ink-muted-dark);
  line-height: var(--lh-loose);
  flex: 1;
}
.finalist-card__location {
  font-size: var(--fs-sm);
  color: var(--color-ink-muted-dark);
  opacity: 0.6;
  font-style: italic;
}


/* === TENNESSEE SHOWCASE ===
   Light gray. Two-column: content + stat block.
   TN badge echoes the submissions page treatment.
*/
.tn-showcase {
  background: var(--color-surface-light);
  padding-block: var(--space-8);
}

.tn-showcase__inner {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 1024px) {
  .tn-showcase__inner {
    grid-template-columns: 1fr 340px;
    gap: var(--space-10);
    align-items: center;
  }
}

/* TN badge circle — matches submissions page style */
.tn-showcase__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent-tint);
  border: 2px solid rgba(34, 201, 151, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--color-accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-5);
}

.tn-showcase__content h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.tn-showcase__content > p {
  font-size: var(--fs-lg);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
  max-width: 50ch;
  margin-bottom: var(--space-6);
}

.tn-showcase__card {
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.tn-showcase__logo-placeholder {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--color-ink);
  margin-bottom: var(--space-3);
}
.tn-showcase__presenter {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-3);
}
.tn-showcase__body {
  font-size: var(--fs-base);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
}

/* TheraVista photo — replaces the old stat block */
.tn-showcase__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  align-self: stretch;
}
.tn-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 300px;
}


/* === THE JUDGES ===
   Dark navy. Three-column grid, photo + bio card layout.
*/
.judges {
  background: var(--color-surface-dark);
  padding-block: var(--space-8);
}
.judges h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink-light);
  margin-bottom: var(--space-7);
  letter-spacing: -0.02em;
}

.judges__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .judges__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .judges__grid { grid-template-columns: repeat(3, 1fr); }
}

.judge-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  background: var(--color-surface-card);
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.judge-card__photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.judge-card__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: var(--color-accent-tint);
  border: 1px solid rgba(34, 201, 151, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.judge-card__name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xl);
  color: var(--color-ink-light);
  margin-bottom: var(--space-1);
  line-height: var(--lh-snug);
}
.judge-card__title {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}
.judge-card__body {
  font-size: var(--fs-base);
  color: var(--color-ink-muted-dark);
  line-height: var(--lh-loose);
}


/* === SPONSORS ===
   Light gray. Tiered rows: Presenting → Investment → Spotlight.
*/
.sponsors {
  background: var(--color-surface-light);
  padding-block: var(--space-8);
}
.sponsors h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink);
  margin-bottom: var(--space-8);
  letter-spacing: -0.02em;
}

.sponsors__tier {
  margin-bottom: var(--space-8);
}
.sponsors__tier:last-child { margin-bottom: 0; }

.sponsors__tier-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-line);
}

.sponsors__tier-logos {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Presenting sponsor — bigger block */
.sponsors__tier-logos--presenting .sponsor-logo-block {
  padding: var(--space-6) var(--space-8);
  min-width: 240px;
  min-height: 80px;
}

.sponsor-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 64px;
  padding: var(--space-4) var(--space-6);
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-ink);
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}
.sponsor-logo-block--lg {
  font-size: var(--fs-2xl);
}
.sponsor-logo-block__sub {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  color: var(--color-ink-muted);
  display: block;
  margin-top: var(--space-1);
}


/* === COMMUNITY EQUITY PARTNERS ===
   Light gray. Two-column: copy left, stat block right.
*/
.cep-section {
  background: var(--color-surface-light);
  padding-block: var(--space-8);
}
.cep-section__inner {
  display: grid;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 1024px) {
  .cep-section__inner {
    grid-template-columns: 1fr 340px;
    gap: var(--space-10);
    align-items: center;
  }
}
.cep-section__content h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.cep-section__content p {
  font-size: var(--fs-lg);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
  max-width: 55ch;
  margin-bottom: var(--space-4);
}
.cep-section__content p:last-of-type { margin-bottom: var(--space-5); }
.cep-section__stat-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  padding: var(--space-7) var(--space-6);
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.cep-section__stat-block .stat__num { font-size: var(--fs-5xl); }


/* === SPOTLIGHT SPONSORS ===
   Featured card treatment for 40AU; smaller secondary for Olomon.
*/
.spotlight-sponsor {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-top: var(--space-5);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 640px) {
  .spotlight-sponsor {
    grid-template-columns: 160px 1fr;
    align-items: start;
  }
}

/* Presenting sponsor card — slightly elevated, teal left accent */
.spotlight-sponsor--presenting {
  border-left: 3px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

.spotlight-sponsor--secondary {
  background: var(--color-surface-light);
  box-shadow: none;
}

.spotlight-sponsor__logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-sponsor__name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-xl);
  color: var(--color-ink);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.spotlight-sponsor__body {
  font-size: var(--fs-base);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
  max-width: 55ch;
  margin-bottom: var(--space-4);
}


/* === COMMUNITY PARTNERS ===
   Light gray. Logo cards in a responsive grid.
*/
.partners {
  background: var(--color-surface-light);
  padding-block: var(--space-8);
}
.partners h2 {
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  color: var(--color-ink);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.partners__intro {
  font-size: var(--fs-lg);
  color: var(--color-ink-muted);
  line-height: var(--lh-loose);
  max-width: 55ch;
  margin-bottom: var(--space-7);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  padding: var(--space-4) var(--space-4);
  background: var(--color-surface-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.partner-logo-card img {
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  /* Remove filter below if using full-color logos */
  opacity: 0.75;
}

.partner-logo-card__name {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  color: var(--color-ink-muted);
  line-height: var(--lh-snug);
  text-align: center;
}
.partner-logo-card__sub {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-regular);
  color: var(--color-ink-muted);
  opacity: 0.7;
  margin-top: 2px;
}

/* Active nav state */
.site-nav__list a[aria-current="page"] {
  color: var(--color-ink-light);
  font-weight: var(--fw-semibold);
}

/* Finalist card links — teal to match brand accent */
.finalist-card .finalist-card__link,
.finalist-card .link-arrow {
  color: var(--color-accent);
}
.finalist-card .finalist-card__link:hover,
.finalist-card .link-arrow:hover {
  color: var(--color-accent-dark);
}
