/* Readability and header refinements */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: max-content;
  line-height: .82;
}

.brand-name {
  display: block;
  font-size: 34px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.brand-name strong { text-shadow: 2px 2px 0 #000; }

.brand-sub {
  display: block;
  margin-top: 7px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 3.7px;
  color: #fff;
  white-space: nowrap;
}

.header-logo {
  display: block;
  width: 185px;
  height: 68px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: 200px;
  height: auto;
}

.site-header { background: linear-gradient(#000d, transparent); }

.hero-shade {
  background:
    linear-gradient(90deg, #050505 0%, #050505f2 38%, #07070773 68%, #08080866),
    linear-gradient(0deg, #0d0d0d 0%, transparent 38%);
}

.hero {
  height: auto;
  min-height: max(900px, 100svh);
  max-height: none;
  padding: 120px 0 80px;
}

.hero-content {
  padding-top: 0;
  padding-right: 1rem;
}

.hero-facts {
  width: max-content;
  max-width: 100%;
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
  background: #050505e8;
  border: 1px solid #ffffff2b;
}

.hero-facts strong,
.hero-facts span { color: #fff; }

.hero h1,
.hero-content > p,
.eyebrow { text-shadow: 0 2px 10px #000, 0 1px 2px #000; }

.affiliation {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  color: #fff;
}

.affiliation img {
  width: 112px;
  height: 36px;
  padding: 4px 8px;
  object-fit: contain;
  background: #fff;
  border-radius: 3px;
}

.affiliation b {
  font-size: .78rem;
  letter-spacing: .16em;
}

.track-feature {
  position: relative;
  overflow: hidden;
  background: #080808;
  border-top: 4px solid #8a2be2;
  border-bottom: 4px solid #39b54a;
}

.track-feature > img {
  display: block;
  width: 100%;
  height: auto;
}

.track-feature-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #050505e8 0%, #050505a8 34%, transparent 68%), linear-gradient(0deg, #05050599, transparent 55%);
}

.track-feature-copy {
  position: absolute;
  z-index: 2;
  left: clamp(1.25rem, 8vw, 9rem);
  bottom: clamp(2rem, 6vw, 6rem);
  width: min(590px, 44vw);
}

.track-feature-copy .kicker { color: #9be6a5; }

.track-feature h2 {
  margin: .4rem 0 1rem;
  color: #fff;
  font: clamp(3.8rem, 7vw, 7.5rem)/.9 var(--display);
  letter-spacing: .015em;
  text-transform: uppercase;
  text-shadow: 0 3px 14px #000;
}

.track-feature-copy > p:last-child {
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 8px #000;
}

.intro h2,
.classes-section h2,
.partners h2 { color: #111; }

.dark-section h2,
.family-panel h2,
.launch-section h2 { color: #fff; }

.family-panel h2 span { color: #b96cff; }

.quote-panel {
  color: #fff;
  background: linear-gradient(145deg, #52138b, #26073f);
}

.quote-panel blockquote,
.quote-panel span {
  color: #fff;
  text-shadow: 0 2px 8px #19002b;
}

.button-primary {
  color: #fff;
  background: #6f16bd;
}

.launch-section {
  color: #fff;
  background: linear-gradient(100deg, #090909, #180d20);
}

.launch-content { max-width: 820px !important; }

.signup-form {
  margin-top: 2rem;
  padding: 1.6rem;
  color: #fff;
  background: #050505b8;
  border: 1px solid #ffffff2b;
  border-left: 4px solid var(--green);
}

.signup-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signup-fields label { display: block; }
.signup-fields .email-field { grid-column: 1 / -1; }

.signup-fields label > span {
  display: block;
  margin-bottom: .35rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signup-fields input {
  width: 100%;
  min-height: 50px;
  padding: .75rem .9rem;
  border: 1px solid #ffffff42;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: 1rem var(--body);
}

.signup-fields input:focus {
  outline: 3px solid var(--purple);
  outline-offset: 2px;
}

.signup-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: 1.1rem 0 1.3rem;
  color: #ddd;
  font-size: .82rem;
  line-height: 1.5;
}

.signup-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--green);
}

.signup-button {
  border: 0;
  cursor: pointer;
  font-family: var(--body);
}

.signup-form > small {
  display: block;
  margin-top: 1rem;
  color: #aaa;
  font-size: .75rem;
  line-height: 1.5;
}

.signup-trap {
  position: absolute;
  left: -5000px;
}

.social-buttons span {
  color: #fff;
  background: #0008;
}

.season-card dl div {
  align-items: center;
  gap: 1rem;
}

.season-card dd { text-align: right; }

@media (max-width: 620px) {
  .brand { grid-template-rows: none; }
  .brand-name { font-size: 29px; }
  .brand-sub {
    display: block;
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 3px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

  .hero-facts {
    width: 100%;
    padding: 1rem .7rem;
  }

  .header-logo {
    width: 145px;
    height: 56px;
  }

  .track-feature > img {
    min-height: 280px;
    object-fit: cover;
    object-position: 56% center;
  }

  .track-feature-shade {
    background: linear-gradient(0deg, #050505 0%, #050505d9 35%, transparent 78%);
  }

  .track-feature-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: -1px;
    padding: 2.5rem 1.25rem 3rem;
    background: #050505;
  }

  .track-feature h2 { font-size: 3.8rem; }

  .signup-form { padding: 1.25rem; }
  .signup-fields { grid-template-columns: 1fr; }
  .signup-fields .email-field { grid-column: auto; }
  .signup-button { width: 100%; }
}
