@font-face {
  font-family: "Boldoa Mat";
  src: url("assets/fonts/Boldoa-Mat.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BYB Hand Drawn";
  src: url("assets/fonts/BYBHandDrawn.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --byb-color-dark: #000000;
  --byb-color-orange: #fd8164;
  --byb-color-purple: #d01ba4;
  --byb-color-yellow: #fec52e;
  --byb-color-green: #18a953;
  --byb-color-blue: #1996fc;
  --byb-color-white: #ffffff;
  --byb-color-tinted-orange: #ffcdbf;
  --byb-color-light-tinted-orange: #ffe3db;
  --byb-color-very-light-tinted-orange: #fff5f2;
  --byb-color-tinted-purple: #f6c8eb;
  --byb-color-tinted-yellow: #ffe899;
  --byb-color-tinted-green: #c8ebd8;
  --byb-color-tinted-blue: #c8e6ff;
  --byb-color-grey-text: #707070;
  --byb-color-grey: #dbdbdb;
  --byb-color-grey-divider: #e9e9e9;
  --byb-color-grey-bg-light: #f5f5f5;
  --byb-font-hero: "Boldoa Mat", Impact, sans-serif;
  --byb-font-display: "Roboto", Arial, sans-serif;
  --byb-font-hand: "BYB Hand Drawn", "Comic Sans MS", cursive;
  --byb-radius: 8px;
  --byb-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--byb-color-dark);
  font-family: var(--byb-font-display);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--byb-color-white);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--byb-color-grey-divider);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 14px 32px;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header__brand img {
  height: 42px;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 6px 0;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--byb-color-orange);
}

.hero {
  background: var(--byb-color-very-light-tinted-orange);
  isolation: isolate;
  min-height: 640px;
  overflow: hidden;
  padding: 88px 32px 96px;
  position: relative;
}

.hero__image {
  bottom: 22px;
  height: min(76%, 620px);
  object-fit: contain;
  object-position: right center;
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  width: min(58%, 760px);
  z-index: -1;
}

.hero__content {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}

.eyebrow {
  color: var(--byb-color-purple);
  font-family: var(--byb-font-hand);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.eyebrow--dark {
  color: var(--byb-color-dark);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  font-family: var(--byb-font-hero);
  font-size: 86px;
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
  max-width: 680px;
}

h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.hero__lede {
  color: var(--byb-color-orange);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 18px 0 16px;
  max-width: 520px;
}

.hero__body {
  font-size: 1.15rem;
  margin: 0;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 2px solid var(--byb-color-dark);
  border-radius: var(--byb-radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.button--primary {
  background: var(--byb-color-dark);
  color: var(--byb-color-white);
}

.button--secondary {
  background: var(--byb-color-white);
}

.button:hover,
.button:focus-visible,
.product-card:hover,
.product-card:focus-visible,
.channel-card--live:hover,
.channel-card--live:focus-visible {
  transform: translateY(-2px);
}

.section {
  padding: 76px 32px;
}

.section__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro {
  background: var(--byb-color-white);
  border-bottom: 1px solid var(--byb-color-grey-divider);
}

.intro__grid {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 0.9fr 1.1fr;
}

.intro__copy {
  color: var(--byb-color-grey-text);
  font-size: 1.18rem;
  margin: 34px 0 0;
}

.feature-band {
  background: var(--byb-color-grey-bg-light);
  padding: 38px 32px;
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  background: var(--byb-color-white);
  border: 1px solid var(--byb-color-grey-divider);
  border-radius: var(--byb-radius);
  min-height: 220px;
  padding: 24px;
}

.feature img {
  height: 58px;
  margin-bottom: 18px;
  width: 58px;
}

.feature:nth-child(1) {
  border-top: 6px solid var(--byb-color-blue);
}

.feature:nth-child(2) {
  border-top: 6px solid var(--byb-color-orange);
}

.feature:nth-child(3) {
  border-top: 6px solid var(--byb-color-green);
}

.feature p,
.section-heading p,
.buy-copy p,
.faq-list p {
  color: var(--byb-color-grey-text);
  margin: 0;
}

.app-section {
  background: var(--byb-color-tinted-blue);
}

.section-heading {
  max-width: 720px;
}

.section-heading p {
  font-size: 1.1rem;
  margin-top: 14px;
}

.channel-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.channel-card {
  align-content: start;
  background: var(--byb-color-white);
  border: 2px solid var(--byb-color-dark);
  border-radius: var(--byb-radius);
  color: var(--byb-color-dark);
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.channel-card--live {
  box-shadow: 8px 8px 0 var(--byb-color-yellow);
}

.channel-card--soon {
  border-color: var(--byb-color-grey);
  color: var(--byb-color-grey-text);
}

.channel-card__media {
  align-items: center;
  background: var(--byb-color-very-light-tinted-orange);
  border-radius: var(--byb-radius);
  display: flex;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.channel-card__icon {
  height: 30px;
  width: 30px;
}

.channel-card__copy {
  display: grid;
  gap: 6px;
}

.channel-card__name {
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.15;
}

.channel-card__description {
  font-size: 0.9rem;
  line-height: 1.35;
}

.channel-card__status {
  align-self: end;
  border-top: 1px solid var(--byb-color-grey-divider);
  font-size: 0.82rem;
  font-weight: 900;
  padding-top: 12px;
  text-transform: uppercase;
}

.buy-section {
  background: var(--byb-color-white);
}

.buy-layout {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: 0.86fr 1.14fr;
}

.buy-copy p {
  font-size: 1.1rem;
  margin-top: 18px;
}

.product-card {
  background: var(--byb-color-white);
  border: 2px solid var(--byb-color-dark);
  border-radius: var(--byb-radius);
  box-shadow: var(--byb-shadow);
  color: var(--byb-color-dark);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 320px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 160ms ease;
}

.product-card__image-wrap {
  align-items: center;
  background: var(--byb-color-light-tinted-orange);
  display: flex;
  min-height: 320px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.product-card__image-wrap img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-card__badge {
  background: var(--byb-color-purple);
  border-radius: var(--byb-radius);
  color: var(--byb-color-white);
  font-size: 0.8rem;
  font-weight: 900;
  left: 18px;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 18px;
}

.product-card__content {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.product-card__title {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.product-card__price {
  color: var(--byb-color-orange);
  font-size: 2rem;
  font-weight: 900;
}

.product-card__meta {
  color: var(--byb-color-grey-text);
}

.product-card__cta {
  align-self: end;
  background: var(--byb-color-dark);
  border-radius: var(--byb-radius);
  color: var(--byb-color-white);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 12px 16px;
  width: max-content;
}

.faq-section {
  background: var(--byb-color-tinted-green);
}

.faq-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: var(--byb-color-white);
  border: 1px solid var(--byb-color-dark);
  border-radius: var(--byb-radius);
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 18px 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--byb-color-orange);
  content: "+";
  float: right;
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  border-top: 1px solid var(--byb-color-grey-divider);
  padding: 0 22px 20px;
}

.site-footer {
  background: var(--byb-color-dark);
  color: var(--byb-color-white);
  padding: 34px 32px;
}

.site-footer__inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.site-footer img {
  background: var(--byb-color-white);
  border-radius: var(--byb-radius);
  height: 38px;
  padding: 4px 8px;
  width: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--byb-color-white);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--byb-color-yellow);
}

.site-footer__meta {
  color: var(--byb-color-grey);
  font-size: 0.8rem;
  margin: 18px auto 0;
  max-width: 1180px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 700px;
    padding-top: 64px;
  }

  .hero__image {
    bottom: -24px;
    height: auto;
    opacity: 0.45;
    right: -120px;
    width: 760px;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 34px;
  }

  .intro__grid,
  .buy-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .feature-band,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header__brand img {
    height: 34px;
  }

  .hero {
    min-height: 660px;
    padding-bottom: 72px;
  }

  .hero__image {
    bottom: -12px;
    opacity: 0.36;
    right: -190px;
    width: 680px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  .hero__lede {
    font-size: 1.55rem;
  }

  .hero__body,
  .intro__copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__image-wrap {
    min-height: 240px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
