@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic|Fira+Sans:400,700,400italic,700italic");

:root {
  --kajabi-dark: #161e2a;
  --kajabi-blue: #0072ef;
  --kajabi-text: #595959;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--kajabi-text);
  background: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding-right: 40px;
  padding-left: 40px;
}

.hero {
  padding: 100px 0;
  background: var(--white);
}
.hero__inner { text-align: center; }
.eyebrow,
h1,
h2 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
}
.eyebrow,
h1 {
  color: var(--kajabi-dark);
  font-size: 36px;
}
.eyebrow { margin: 0; }
h1 { margin: 0 0 30px; }

.video-card {
  width: 66.666667%;
  margin: 0 auto 30px;
  padding: 30px;
  border: 4px double #000000;
  border-radius: 4px;
  background: var(--white);
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #000000;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card__footer {
  width: 33.333333%;
  margin: 0 auto;
}
.button,
.text-link {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--kajabi-blue);
  border-radius: 4px;
  color: var(--white);
  background: var(--kajabi-blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: filter 0.2s ease;
}
.button:hover,
.text-link:hover { filter: brightness(120%); }
.button:focus-visible,
.text-link:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 4px;
}
.button {
  width: 100%;
  min-height: 50px;
  padding: 9.5px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about {
  padding: 100px 0;
  color: var(--white);
  background-image:
    linear-gradient(rgba(22, 30, 42, 0.86), rgba(22, 30, 42, 0.86)),
    url("background.jpg");
  background-position: center;
  background-size: cover;
}
.about__grid { display: block; }
.about__heading,
.about__body {
  width: 66.666667%;
  margin-right: auto;
  margin-left: auto;
}
.about h2 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 36px;
}
.about__body p {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
}
.text-link {
  width: fit-content;
  min-height: 50px;
  margin: 48px auto 0;
  padding: 9.5px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--kajabi-dark);
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.site-footer p { margin: 0; font-size: 16px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: var(--white); text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; }

@media (min-width: 768px) {
  body { font-size: 18px; }
  .site-footer p { font-size: 18px; }
}

@media (max-width: 767px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .hero,
  .about { padding: 40px 0; }
  .eyebrow,
  h1,
  .about h2 { font-size: 30px; }
  .eyebrow,
  h1 { line-height: 1.25; }
  h1 { margin-bottom: 30px; }
  .video-card {
    width: 100%;
    padding: 20px;
  }
  .video-card__footer,
  .about__heading,
  .about__body { width: 100%; }
  .about__body p { font-size: 16px; }
  .text-link { width: 100%; margin-top: 32px; }
  .site-footer__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button,
  .text-link { transition: none; }
}
