@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap");

:root {
  --navy: #07192d;
  --ink: #061427;
  --red: #df3134;
  --paper: #f6f2ea;
  --blue: #1d5298;
  --line: rgba(7, 25, 45, 0.18);
  --frame: min(1200px, calc(100vw - 80px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
body:has(.is-open) {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.frame {
  width: var(--frame);
  margin: 0 auto;
}
.section {
  padding: 132px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateY(-110%);
  padding: 12px 18px;
  background: white;
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid #f4be31;
  outline-offset: 4px;
}
.eyebrow,
.mini-label {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 20px;
}
.eyebrow span {
  display: inline-block;
  width: 29px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.eyebrow.red {
  color: var(--red);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3,
.wordmark {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(54px, 7.1vw, 112px);
  line-height: 0.81;
  letter-spacing: -0.045em;
  margin: 0;
}
h2 em,
h1 em {
  color: var(--red);
  font-style: italic;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-width: 170px;
  padding: 15px 19px 14px;
  border: 1px solid var(--red);
  color: white;
  background: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.11em;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translate(-3px, -3px);
  background: white;
  color: var(--red);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button-light:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.site-header {
  height: 82px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition:
    background 0.25s,
    height 0.25s;
}
.site-header.is-scrolled {
  position: fixed;
  height: 66px;
  background: rgba(5, 18, 35, 0.96);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nav-logo img {
  width: 100%;
  height: 100%;
}
.wordmark {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  width: 145px;
  color: #fff;
  line-height: 0.7;
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 31px;
}
.wordmark span {
  color: #e8e7e4;
}
.wordmark b {
  color: var(--red);
}
.wordmark small {
  grid-column: 1 / -1;
  font-family: "DM Sans";
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 6px;
  margin: 6px 0 0 1px;
  font-weight: 700;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}
.site-header nav > a:not(.button) {
  opacity: 0.9;
}
.site-header nav > a:not(.button):hover {
  color: #f2c6c6;
}
.nav-ticket {
  margin-left: 4px;
  min-width: 142px;
  padding: 12px 15px;
}
.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  min-height: 100svh;
  display: flex;
  color: white;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.hero::before,
.ticket-banner::before,
.final-cta::before,
.hotel-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(3, 13, 29, 0.88) 0%,
      rgba(3, 13, 29, 0.65) 45%,
      rgba(3, 13, 29, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(3, 13, 29, 0.8) 0%, transparent 50%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.21;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.65) 0.55px,
    transparent 0.7px
  );
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(160px, 18vh, 235px);
  padding-bottom: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 6.5vw, 104px);
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin: 0;
  text-shadow: 0 2px 35px rgba(0, 0, 0, 0.2);
}
.hero-subhead {
  max-width: 600px;
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 1.55;
}
.hero h1 em {
  color: white;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  text-shadow: none;
}
.hero-bottom {
  margin-top: auto;
  padding-top: 72px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.event-place {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  line-height: 1.55;
}
.event-place strong {
  font-family: "Barlow Condensed";
  font-size: 25px;
  letter-spacing: 0.02em;
}
.event-place span {
  opacity: 0.83;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.text-link {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.text-link span {
  margin-left: 7px;
  font-size: 18px;
  color: var(--red);
}
.hero-urgency {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  padding-top: 14px;
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.025em;
}
.hero-urgency b {
  color: #ffb6b6;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.hero-urgency i {
  margin-left: 0;
  color: white;
  font-style: normal;
  font-weight: 700;
}
.hero-index {
  position: absolute;
  right: 40px;
  bottom: 45px;
  z-index: 1;
  font-family: "Barlow Condensed";
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.04em;
}
.hero-index b {
  color: var(--red);
}

.credibility {
  color: white;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.credibility-grid {
  min-height: 198px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  align-items: center;
}
.credibility-grid > * {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.credibility-grid > * + * {
  padding-left: 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.23);
}
.attendance span {
  display: block;
  min-width: 4.5ch;
  font-family: "Barlow Condensed";
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.attendance p,
.largest p,
.as-seen p {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 700;
  margin: 10px 0 0;
}
.largest p {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-family: "Barlow Condensed";
}
.largest strong {
  color: #e94646;
  font-weight: 500;
}
.as-seen p {
  color: #abb5c0;
  margin: 0 0 19px;
}
.as-seen > div {
  display: flex;
  align-items: center;
  gap: 23px;
}
.as-seen img {
  width: 68px;
  height: 23px;
  object-fit: contain;
  filter: brightness(0) invert(1) grayscale(1);
  opacity: 0.9;
}

.about {
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 58px 80px;
}
.about-heading h2 {
  font-size: clamp(54px, 6.4vw, 96px);
}
.speakers .section-heading h2,
.video-section .section-heading h2,
.schedule .section-heading h2,
.faq .section-heading h2 {
  font-size: clamp(52px, 5.8vw, 90px);
}
.about-copy {
  align-self: end;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.57;
}
.about-copy p {
  max-width: 100%;
}
.about-copy p:first-child {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
}
.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  max-width: 660px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.benefit-list li {
  padding-top: 11px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
}
.benefit-list b {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 0.13em;
}
@media (prefers-reduced-motion: no-preference) {
  .benefit-reveal {
    opacity: 0;
    transform: translateX(-46px);
    transition:
      opacity 0.6s ease,
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .benefit-reveal:nth-child(even) {
    transform: translateX(46px);
  }
  .benefit-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
  }
}
.video-section {
  background: #e9e4db;
}
.video-section .section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}
.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.underlined-link {
  display: inline-flex;
  gap: 15px;
  margin-top: 15px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-image {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  height: min(39vw, 510px);
  position: relative;
  overflow: hidden;
}
.about-image::after {
  content: "TEXAS YOUTH SUMMIT";
  position: absolute;
  bottom: 0;
  left: -3px;
  color: white;
  font-family: "Barlow Condensed";
  font-size: clamp(65px, 10vw, 155px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.015em;
  opacity: 0.94;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.82) contrast(1.09);
}
.about-image figcaption {
  position: absolute;
  top: 17px;
  right: 20px;
  color: white;
  z-index: 1;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: right;
}

.speakers {
  color: white;
  background: var(--navy);
}
.speakers .section-heading {
  margin-bottom: 67px;
}
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}
.split-heading > p {
  width: min(340px, 35%);
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.6;
}
.mini-label {
  color: #fa7373;
  margin-bottom: 14px;
}
.featured-speakers {
  display: grid;
  grid-template-columns: 1.27fr 1.27fr 0.85fr;
  grid-template-rows: 310px 310px;
  gap: 13px;
}
.speaker {
  position: relative;
  min-width: 0;
}
.featured-speakers .speaker:nth-child(1),
.featured-speakers .speaker:nth-child(2) {
  grid-row: span 2;
}
.featured-speakers .speaker:nth-child(3) {
  grid-column: 3;
}
.speaker-image {
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #142b44;
}
.speaker-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 53%);
  pointer-events: none;
}
.speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
}
.speaker:hover img {
  transform: scale(1.045);
}
.speaker-copy {
  padding-top: 11px;
}
.speaker-featured .speaker-copy {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
}
.speaker-copy h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.speaker-copy p {
  margin: 5px 0 0;
  max-width: 280px;
  font-size: 10px;
  line-height: 1.35;
}
.speaker-featured .speaker-copy h3 {
  font-size: 36px;
}
.speaker-featured .speaker-copy p {
  font-size: 11px;
}
.speaker-transition {
  margin-top: 28px;
}
.speaker-transition > p {
  max-width: 520px;
  margin: 0;
  color: #c7d1db;
  font-size: 14px;
  line-height: 1.5;
}
.speaker-break {
  margin: 28px 0 36px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.speaker-break span {
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
  flex: 1;
}
.speaker-break p {
  margin: 0;
  color: #c7d1db;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 700;
}
.speaker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  gap: 50px 17px;
}
.speaker-grid .speaker-image {
  aspect-ratio: 1 / 1.13;
}
.speaker-grid .speaker-copy h3 {
  font-size: 22px;
}
.speaker-grid .speaker-copy p {
  color: #bbc7d4;
  min-height: 30px;
}
.speaker-lineup {
  margin-top: 0;
}
.music-feature {
  position: relative;
  z-index: 0;
  min-height: min(72svh, 760px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: #02070d;
}
.music-feature::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--music-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.music-feature::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 9, 19, 0.8), transparent 62%);
}
.music-row {
  width: var(--frame);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
}
.music-row p {
  margin: 0;
  font-family: "Barlow Condensed";
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.01em;
}
.music-row p b {
  color: #e44444;
}
.music-row .star {
  color: var(--red);
}

.ticket-banner {
  position: relative;
  z-index: 1;
  isolation: isolate;
  color: white;
  padding: 125px 0 58px;
  background: #09284c;
  overflow: hidden;
  margin-top: -82px;
  box-shadow: 0 -24px 48px rgba(1, 7, 16, 0.35);
}
.ticket-banner::before {
  background-image: var(--banner-image);
  background-position: center;
}
.ticket-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 12, 28, 0.93), rgba(2, 12, 28, 0.35)),
    linear-gradient(0deg, rgba(2, 12, 28, 0.83), transparent);
}
.ticket-banner h2 {
  max-width: 950px;
  font-size: clamp(59px, 8.3vw, 130px);
}
.ticket-banner h2 em {
  color: white;
}
.ticket-banner-copy {
  max-width: 670px;
  margin: 32px 0 0;
  color: #d5dde6;
  font-size: 18px;
  line-height: 1.6;
}
.banner-bottom {
  margin-top: 85px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.banner-bottom p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.banner-bottom b {
  color: #ffb6b6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.schedule {
  background: #e9e4db;
}
.schedule .section-heading {
  margin-bottom: 60px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink);
}
.schedule-day {
  padding: 37px 38px 16px;
}
.schedule-day + .schedule-day {
  border-left: 1px solid var(--ink);
}
.schedule-day.is-red {
  background: var(--red);
  color: white;
}
.day-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid currentColor;
}
.day-heading p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.day-heading h3 {
  margin: 0;
  font-size: 37px;
  line-height: 0.8;
  font-weight: 600;
}
.day-heading b {
  font-size: 77px;
  letter-spacing: -0.07em;
}
.schedule-day ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.schedule-day li {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 25, 45, 0.24);
}
.schedule-day li:last-child {
  border: 0;
}
.schedule-day time {
  color: var(--red);
  font-family: "Barlow Condensed";
  font-weight: 700;
  font-size: 21px;
  line-height: 1;
}
.is-red time {
  color: #fff;
}
.schedule-day h3 {
  font-family: "DM Sans";
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  margin: 0 0 5px;
  line-height: 1.25;
}
.schedule-day li p {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.tickets {
  background: var(--paper);
}
.tickets .section-heading {
  margin-bottom: 67px;
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ticket-tier {
  min-height: 310px;
  border-top: 4px solid var(--ink);
  padding: 19px 0 0;
  display: flex;
  flex-direction: column;
}
.ticket-tier.ticket-youth {
  border-color: var(--red);
}
.ticket-tier.ticket-dark {
  padding: 23px 20px 20px;
  border: 0;
  color: white;
  background: var(--navy);
}
.ticket-tier > div > p {
  min-height: 25px;
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--red);
}
.ticket-tier h3 {
  font-size: 31px;
  line-height: 0.87;
  letter-spacing: -0.03em;
  margin: 0;
}
.ticket-tier > strong {
  font-family: "Barlow Condensed";
  font-size: 70px;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 27px 0 15px;
}
.tier-note {
  min-height: 55px;
  font-size: 11px;
  line-height: 1.45;
  margin: 0 0 15px;
}
.ticket-tier .button {
  margin-top: auto;
  width: 100%;
  min-width: auto;
}
.ticket-tier:not(.ticket-dark) .button {
  background: transparent;
  color: var(--red);
}
.ticket-tier:not(.ticket-dark) .button:hover {
  background: var(--red);
  color: white;
}
.breakfast {
  margin-top: 65px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px;
  color: white;
  background: var(--navy);
}
.breakfast::after {
  content: "TULSI";
  position: absolute;
  right: -5px;
  top: -31px;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Barlow Condensed";
  font-size: 270px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.breakfast > * {
  position: relative;
  z-index: 1;
}
.breakfast-star {
  color: var(--red);
  font-size: 80px;
  text-align: center;
}
.breakfast .eyebrow {
  margin-bottom: 9px;
}
.breakfast h3 {
  font-size: 48px;
  line-height: 0.78;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
.breakfast h3 em {
  font-style: italic;
  color: #f8e6da;
}
.breakfast p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}
.breakfast-cta {
  text-align: right;
}
.breakfast-cta > strong {
  display: block;
  font-family: "Barlow Condensed";
  font-size: 67px;
  line-height: 0.8;
  margin-bottom: 19px;
  letter-spacing: -0.055em;
}

.hotel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  color: white;
  background: var(--navy);
}
.hotel-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hotel-photo::before {
  background-image: var(--hotel-image);
  background-position: center;
  filter: saturate(0.75);
}
.hotel-photo::after {
  background: linear-gradient(0deg, rgba(2, 12, 28, 0.8), transparent 60%);
}
.hotel-photo span {
  position: absolute;
  left: 38px;
  bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  font-weight: 700;
}
.hotel-info {
  align-self: center;
  padding: 80px max(45px, calc((100vw - 1200px) / 2));
  padding-right: calc((100vw - 1200px) / 2);
}
.hotel-info h2 {
  font-size: clamp(44px, 4.8vw, 74px);
  margin-bottom: 15px;
}
.hotel-info h3 {
  margin: 0 0 35px;
  color: #c4d1de;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 0.9;
}
.hotel-info > p:not(.eyebrow):not(.hotel-rate) {
  max-width: 430px;
  color: #c4d1de;
  font-size: 15px;
  line-height: 1.65;
}
.hotel-rate {
  border-left: 2px solid var(--red);
  padding-left: 16px;
  margin: 30px 0;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.13em;
}
.hotel-rate b {
  display: block;
  font-family: "Barlow Condensed";
  color: white;
  letter-spacing: 0;
  font-size: 31px;
  line-height: 1;
}

.partners {
  background: #e9e4db;
}
.partners .section-heading {
  align-items: center;
}
.partner-copy {
  margin: 32px 0 0 !important;
  width: auto !important;
  max-width: 310px;
  font-size: 12px !important;
}
.partner-logos {
  margin-top: 70px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}
.partner-logos img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.12);
}

.faq {
  background: var(--paper);
}
.faq .section-heading {
  margin-bottom: 68px;
}
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px 4px;
  list-style: none;
  text-transform: uppercase;
  font-family: "Barlow Condensed";
  font-size: 30px;
  letter-spacing: -0.01em;
  font-weight: 700;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  font-family: "DM Sans";
  color: var(--red);
  font-weight: 400;
  font-size: 29px;
  transition: transform 0.2s;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq-answer {
  max-width: 700px;
  padding: 0 4px 26px;
  font-size: 14px;
  line-height: 1.6;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  isolation: isolate;
  color: white;
  padding: 130px 0 0;
  background: #09264a;
}
.final-cta::before {
  background-image: var(--final-image);
  background-position: center 45%;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 13, 29, 0.92), rgba(3, 13, 29, 0.42)),
    linear-gradient(0deg, rgba(3, 13, 29, 0.78), transparent);
}
.final-cta h2 {
  max-width: 930px;
  font-size: clamp(54px, 6.8vw, 108px);
  margin-bottom: 35px;
}
.final-cta .frame {
  position: relative;
  min-height: 100%;
}
.final-logo {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 118px;
}
.final-logo img {
  width: 100%;
  height: auto;
}
.final-cta h2 em {
  color: white;
}
.final-cta > .frame > p:not(.eyebrow) {
  max-width: 450px;
  font-size: 16px;
  line-height: 1.55;
}
.final-info {
  margin-top: 20px;
  padding-top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
}

footer {
  color: white;
  background: #030e1d;
  padding: 77px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 68px;
}
.footer-logo {
  display: block;
  align-self: start;
  width: 155px;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-top h2 {
  font-size: clamp(45px, 5.2vw, 76px);
  line-height: 0.82;
  margin: 0 0 30px;
}
.newsletter {
  display: flex;
  max-width: 560px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 13px 0;
  color: white;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 13px;
}
.newsletter input::placeholder {
  color: #a6b3c1;
}
.newsletter button {
  background: transparent;
  color: white;
  border: 0;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.newsletter button span {
  color: var(--red);
  font-size: 19px;
  margin-left: 9px;
}
.newsletter-note {
  margin: 9px 0 0;
  color: #9daebf;
  font-size: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  padding-top: 27px;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 30px;
  color: #aab9c7;
  font-size: 10px;
  line-height: 1.5;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 9px;
  color: white;
}
.footer-bottom nav a:hover {
  color: #ffaaaa;
}
.mobile-ticket {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --frame: min(100% - 46px, 1200px);
  }
  .site-header {
    padding: 0 23px;
    height: 66px;
  }
  .site-header nav {
    position: fixed;
    inset: 66px 0 auto;
    padding: 25px 23px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav .nav-ticket {
    margin: 19px 0 0;
    color: white;
    border: 0;
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 0;
    color: white;
    background: transparent;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .site-header:has(.is-open) {
    background: var(--paper);
    color: var(--ink);
  }
  .site-header:has(.is-open) .nav-toggle {
    color: var(--ink);
  }
  .site-header:has(.is-open) .nav-toggle span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }
  .site-header:has(.is-open) .nav-toggle span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }
  .hero {
    min-height: 780px;
  }
  .hero-bottom {
    padding-top: 60px;
  }
  .hero-urgency {
    flex-wrap: wrap;
    margin-top: 35px;
  }
  .hero-urgency i {
    margin-left: 0;
    width: 100%;
  }
  .credibility-grid {
    grid-template-columns: 1fr 1fr;
    padding: 35px 0;
  }
  .credibility-grid > * {
    min-height: 130px;
  }
  .credibility-grid .as-seen {
    grid-column: 1/-1;
    padding-left: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.23);
    min-height: auto;
    padding-top: 23px;
  }
  .about-grid {
    gap: 40px;
  }
  .featured-speakers {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 340px 250px;
  }
  .featured-speakers .speaker:nth-child(3) {
    grid-column: auto;
  }
  .featured-speakers .speaker:nth-child(5) {
    grid-column: 2;
  }
  .speaker-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ticket-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .ticket-tier {
    min-height: 285px;
  }
  .hotel-info {
    padding: 65px 45px;
  }
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom p:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom nav {
    justify-content: start;
  }
}
@media (max-width: 620px) {
  :root {
    --frame: calc(100vw - 36px);
  }
  .section {
    padding: 84px 0;
  }
  .site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
  .site-header.is-scrolled {
    height: 60px;
  }
  .wordmark {
    width: 123px;
    font-size: 27px;
  }
  .nav-logo {
    width: 48px;
    height: 48px;
  }
  .hero {
    min-height: 700px;
  }
  .hero::before {
    background-position: 58% center;
  }
  .hero h1 {
    font-size: clamp(42px, 10.5vw, 62px);
    line-height: 0.88;
  }
  .hero-subhead {
    margin-top: 20px;
    font-size: 14px;
  }
  .hero-inner {
    padding-top: 135px;
  }
  .hero-bottom {
    padding-top: 35px;
    align-items: start;
    flex-direction: column;
  }
  .hero-actions .button {
    min-width: 156px;
  }
  .text-link {
    display: none;
  }
  .event-place strong {
    font-size: 22px;
  }
  .hero-urgency {
    margin-top: 28px;
    gap: 7px;
    font-size: 10px;
  }
  .hero-urgency span {
    width: 100%;
  }
  .hero-urgency i {
    font-size: 9px;
    margin-top: 7px;
  }
  .hero-index {
    display: none;
  }
  .credibility-grid {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .credibility-grid > * {
    padding: 18px 0 !important;
    min-height: 0;
    border: 0 !important;
  }
  .credibility-grid > * + * {
    border-top: 1px solid rgba(255, 255, 255, 0.23) !important;
  }
  .attendance span {
    font-size: 90px;
  }
  .largest p {
    font-size: 21px;
  }
  .as-seen > div {
    gap: 18px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-copy {
    padding: 0;
  }
  .about-copy p:first-child {
    font-size: 18px;
  }
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .about-image {
    height: 330px;
    margin-top: 10px;
  }
  .about-image::after {
    content: "TEXAS\A YOUTH SUMMIT";
    white-space: pre;
    font-size: 68px;
    bottom: 5px;
    line-height: 0.78;
    letter-spacing: -0.01em;
  }
  .about-image figcaption {
    font-size: 8px;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p {
    width: auto;
    max-width: 380px;
    margin: 25px 0 0;
  }
  .speakers .section-heading,
  .tickets .section-heading,
  .faq .section-heading {
    margin-bottom: 43px;
  }
  .featured-speakers {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 280px 210px;
    gap: 8px;
  }
  .featured-speakers .speaker:nth-child(1),
  .featured-speakers .speaker:nth-child(2) {
    grid-row: span 1;
  }
  .featured-speakers .speaker:nth-child(3) {
    grid-column: 1;
  }
  .featured-speakers .speaker:nth-child(4) {
    grid-column: 2;
  }
  .featured-speakers .speaker:nth-child(5) {
    grid-column: 1 / -1;
  }
  .speaker-featured .speaker-copy {
    padding: 12px;
  }
  .speaker-featured .speaker-copy h3 {
    font-size: 27px;
  }
  .speaker-featured .speaker-copy p {
    font-size: 9px;
  }
  .speaker-break {
    margin: 58px 0 28px;
  }
  .speaker-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 10px;
  }
  .speaker-grid .speaker-copy h3 {
    font-size: 22px;
  }
  .speaker-grid .speaker-copy p {
    font-size: 9px;
  }
  .music-feature {
    min-height: 480px;
  }
  .music-feature::before {
    background-attachment: scroll;
    background-position: center calc(50% + var(--music-parallax-y, 0px));
  }
  .music-row {
    margin: 0 auto;
    gap: 14px;
  }
  .music-row p {
    font-size: 21px;
  }
  .ticket-banner {
    margin-top: -46px;
    padding: 86px 0 35px;
  }
  .ticket-banner h2 {
    font-size: clamp(50px, 13vw, 74px);
  }
  .banner-bottom {
    margin-top: 54px;
    flex-direction: column;
    align-items: start;
    gap: 23px;
  }
  .schedule .section-heading {
    margin-bottom: 43px;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .schedule-day {
    padding: 26px 20px 6px;
  }
  .schedule-day + .schedule-day {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }
  .day-heading h3 {
    font-size: 30px;
  }
  .day-heading b {
    font-size: 64px;
  }
  .schedule-day li {
    grid-template-columns: 88px 1fr;
    gap: 10px;
    padding: 20px 0;
  }
  .schedule-day time {
    font-size: 16px;
  }
  .schedule-day h3 {
    font-size: 13px;
  }
  .schedule-day li p {
    font-size: 11px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .ticket-tier {
    min-height: 255px;
  }
  .ticket-tier > strong {
    margin: 17px 0 11px;
  }
  .breakfast {
    margin-top: 44px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 25px 22px 28px;
  }
  .breakfast-star {
    display: none;
  }
  .breakfast h3 {
    font-size: 43px;
  }
  .breakfast-cta {
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .breakfast-cta > strong {
    margin: 0;
    font-size: 56px;
  }
  .hotel {
    grid-template-columns: 1fr;
  }
  .hotel-photo {
    min-height: 280px;
  }
  .hotel-info {
    padding: 60px 18px;
  }
  .hotel-info h2 {
    font-size: 49px;
  }
  .hotel-info h3 {
    font-size: 29px;
  }
  .partner-logos {
    margin-top: 45px;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .partner-logos img {
    max-height: 52px;
  }
  .faq summary {
    padding: 20px 0;
    font-size: 25px;
  }
  .faq-answer {
    padding-bottom: 20px;
    font-size: 13px;
  }
  .final-cta {
    padding: 90px 0 0;
  }
  .final-cta h2 {
    font-size: 54px;
  }
  .final-logo {
    width: 66px;
  }
  .final-info {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-top: 20px;
  }
  .final-info .button {
    width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 54px;
  }
  .footer-logo {
    width: 130px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-bottom nav {
    justify-content: start;
  }
  .footer-bottom p:last-child {
    order: 3;
  }
  .mobile-ticket {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 15px 17px;
    color: white;
    background: var(--red);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
  }
  .mobile-ticket.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-ticket span {
    font-size: 19px;
  }
  .mobile-ticket:hover {
    background: #f04d4f;
  }
  footer {
    padding: 77px 0 24px;
  }
}
/* Explicitly permit narrow grid tracks when titles are longer than their cards. */
.featured-speakers {
  grid-template-columns: minmax(0, 1.27fr) minmax(0, 1.27fr) minmax(0, 0.85fr);
}
.speaker-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.speaker-grid .speaker-image {
  height: auto;
  width: 100%;
}
@media (max-width: 900px) {
  .featured-speakers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .featured-speakers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .speaker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    row-gap: 9px;
  }
  .speaker-grid .speaker-image {
    aspect-ratio: 1 / 1;
  }
}
/* Featured speaker mosaic: every grid cell is intentionally occupied. */
@media (min-width: 901px) {
  .featured-speakers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 300px 360px;
  }
  .featured-speakers .speaker:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
  .featured-speakers .speaker:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
  .featured-speakers .speaker:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
  }
  .featured-speakers .speaker:nth-child(4) {
    grid-column: 3 / span 2;
    grid-row: 2;
  }
  .featured-speakers .speaker:nth-child(4) .speaker-image img {
    object-position: center 24%;
  }
}
@media (max-width: 900px) {
  .featured-speakers {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: none;
  }
  .featured-speakers .speaker:nth-child(1),
  .featured-speakers .speaker:nth-child(2),
  .featured-speakers .speaker:nth-child(3),
  .featured-speakers .speaker:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .featured-speakers .speaker {
    aspect-ratio: 1 / 1.22;
  }
}
/* Unified speaker card sizing and image-overlay treatment. */
@media (min-width: 621px) {
  .featured-speakers,
  .speaker-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
  }
  .featured-speakers .speaker,
  .speaker-grid .speaker {
    aspect-ratio: 1 / 1.13;
    grid-column: auto;
    grid-row: auto;
  }
  .featured-speakers .speaker:nth-child(1),
  .featured-speakers .speaker:nth-child(2),
  .featured-speakers .speaker:nth-child(3),
  .featured-speakers .speaker:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .featured-speakers .speaker-image,
  .speaker-grid .speaker-image {
    height: 100%;
    aspect-ratio: auto;
  }
  .speaker-grid .speaker-copy {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 16px;
    color: white;
  }
  .speaker-grid .speaker-copy h3 {
    font-size: 28px;
  }
  .speaker-grid .speaker-copy p {
    min-height: 0;
    color: white;
    font-size: 10px;
  }
}
@media (min-width: 621px) and (max-width: 900px) {
  .featured-speakers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .speaker-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .speaker-featured .speaker-copy,
  .speaker-grid .speaker-copy {
    padding: 11px;
  }
  .speaker-featured .speaker-copy h3,
  .speaker-grid .speaker-copy h3 {
    font-size: clamp(22px, 3.1vw, 29px);
    line-height: 0.88;
  }
  .speaker-featured .speaker-copy p,
  .speaker-grid .speaker-copy p {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.25;
  }
}
@media (max-width: 620px) {
  .featured-speakers .speaker,
  .speaker-grid .speaker {
    aspect-ratio: 1 / 1.22;
  }
  .speaker-grid .speaker-image {
    aspect-ratio: auto;
    height: 100%;
  }
}
/* One continuous speaker lineup. */
.speaker-lineup .speaker-copy {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: white;
}
.speaker-lineup .speaker-copy h3 {
  font-size: 28px;
}
.speaker-lineup .speaker-copy p {
  min-height: 0;
  color: white;
  font-size: 10px;
}
@media (max-width: 900px) {
  .speaker-lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .speaker-lineup .speaker-copy {
    padding: 11px;
  }
  .speaker-lineup .speaker-copy h3 {
    font-size: clamp(22px, 3.1vw, 29px);
    line-height: 0.88;
  }
  .speaker-lineup .speaker-copy p {
    margin-top: 4px;
    font-size: 9px;
    line-height: 1.25;
  }
}
@media (max-width: 620px) {
  .speaker-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    row-gap: 9px;
  }
  .speaker-lineup .speaker,
  .speaker-lineup .speaker-image {
    height: auto;
    aspect-ratio: 1 / 1.22;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
