:root {
  --accent-primary-color: #12eced;
  --accent-secondary-color: #ff0033;
  --accent-tertiary-color: #2ba640;

  --text-primary-color: #000;
  --text-secondary-color: #fff;
  --text-tertiary-color: #6b6b6c;
  --background-primary-color: #fff;
  --background-secondary-color: #0f0f12;
  --border-primary-color: #ddd;
  --border-secondary-color: #000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  background-color: var(--background-primary-color);
}

body {
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background-color: var(--background-primary-color);
  color: var(--text-primary-color);

  padding: 24px;
  max-width: 980px;
  margin: auto;

  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  body {
    display: block;
    width: 100%;
  }

  body .navigation {
    display: none;
  }

  body .header-container {
    display: block;
    text-align: center;
  }

  body section.hero {
    margin-top: 120px;
  }

  body .valueprop-container {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }

  body .video iframe {
    margin: auto;
    width: 320px !important;
    height: 180px !important;
  }

  body .about-us .channels {
    flex-direction: column;
  }

  body .objection-item svg {
    display: none;
  }

  body .objection-conclusion svg {
    display: none;
  }

  body footer {
    flex-direction: column;
    align-items: center;
  }
}

em {
  font-style: normal;
  font-weight: 600;
}

.cta-form {
  display: flex;
  gap: 8px;
  /* border-radius: 32px; */
  /* padding: 6px; */
  /* border: 1px solid var(--border-primary-color); */
}

.cta-form:has(input:focus) {
  /* border: 1px solid var(--accent-primary-color); */
}

.cta-input {
  background-color: transparent;
  border: 0;
  padding: 6px 10px;
  font-family: "Reddit Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  width: 280px;
  outline: 0;
}

.cta-button {
  background-color: var(--accent-primary-color);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 18px;
  border: 0;
  border-radius: 26px;
  font-weight: 700;
  transition: background-color .2s;
  cursor: pointer;

  &:hover {
    background-color: color-mix(in srgb, var(--accent-primary-color) 60%, transparent);
  }

  &:active {
    background-color: var(--accent-primary-color);
  }
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-primary-color);
}

.header-container {
  max-width: 980px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  color: var(--text-primary-color);
  text-decoration: none;
  font-size: 38px;
  font-weight: 800;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  list-style-type: none;
  font-weight: 400;

  & a {
    font-size: 18px;
    color: var(--text-primary-color);
    transition: color .2s;
    text-decoration: none;

    &:hover {
      color: var(--accent-primary-color);
    }
  }
}

section.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  margin-top: 140px;
}

h1.title {
  font-size: 54px;
  line-height: 60px;
  font-weight: 800;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

h2.title {
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

p.subtitle {
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
  text-align: center;

  & em {
    font-weight: 600;
    font-style: normal;
    text-decoration-line: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 4px;
    text-decoration-color: var(--accent-primary-color);

  }
}

section.valueprop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 96px;
}

.valueprop-container {
  display: flex;
  align-items: start;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.valueprop-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.valueprop-item {
  display: flex;
  align-items: start;
  gap: 16px;
}

.valueprop-paragraph {
  margin: 0;
  font-size: 18px;

  & em {
    font-style: normal;
    font-weight: 700;
  }
}

.danger {
  text-decoration: var(--accent-secondary-color) wavy underline;
  font-weight: 700;
}

section.objections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 96px;
  font-size: 18px;
}

.objection-list {
  padding: 0px;
  list-style-type: none;
  list-style-position: outside;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.objection-item {
  display: flex;
  flex-direction: column;
  gap: 8px;

  & + .objection-item {
    border-top: 1px dotted var(--border-primary-color);
    padding-top: 24px;
  }
}

.objection {
  display: flex;
  align-items: center;
  font-weight: 800;
  gap: 2px;

  & svg path {
    color: var(--accent-secondary-color);
  }
}

.counter {
  display: flex;
  align-items: center;
  gap: 2px;

  & svg path {
    color: var(--accent-tertiary-color);
  }
}

.explanation {
  margin-top: 8px;
  font-size: 16px;
  color: var(--text-tertiary-color);
}

.objection-conclusion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.objection-conclusion-main {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 6px;

  & svg path {
    color: var(--accent-tertiary-color);
  }
}

.objection-conclusion-add {
  margin: 0;
  text-align: center;
  font-size: 16px;
}

section.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-top: 96px;
}

.channels {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.channel {
  color: var(--text-primary-color);
  border: 1px solid var(--border-primary-color);
  border-radius: 24px;
  padding: 32px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color .2s;

  &:visited {
    color: var(--text-primary-color);
  }

  &:hover {
    border: 1px solid var(--accent-primary-color);
  }
}

.channel-avatar {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 100%;
}

.channel-name {
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;

  color: #000;
  text-decoration: none;
}

.youtube-icon path {
  fill: var(--accent-secondary-color);
}

.channel-bio {
  margin: 0;
  line-height: 24px;

  & a {
    color: #000;
    text-decoration: underline;
  }
}

.mission {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
  text-align: center;

  &.bad {
    text-decoration: line-through;
  }
}

section.cta {
  background-color: color-mix(in srgb, var(--accent-primary-color) 20%, transparent);
  border: 4px solid color-mix(in srgb, var(--accent-primary-color) 20%, transparent);
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 96px;
  padding: 32px;
  border-radius: 32px;

  & .cta-form {
    border: 1px solid color-mix(in srgb, var(--accent-primary-color) 40%, transparent);
    background-color: var(--background-primary-color);
  }

  & .cta-form.cta-form:has(input:focus) {
    border: 1px solid var(--accent-primary-color);
  }

  & .cta-input, & .cta-input::placeholder {
    color: var(--text-primary-color);
  }
}

.subscribe-instructions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  & .instructions {
    margin: 0;
  }
}

section.faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 96px;
}

.questions {
  display: flex;
  flex-direction: column;
}

.question-container {
  border-bottom: 1px solid var(--border-primary-color);
}

.question-container:last-of-type {
  border-bottom: 0;
}

.question {
  padding: 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.answer {
  margin: 0;
  padding: 0 32px 32px;
  font-weight: 300;
}

footer {
  max-width: 980px;
  margin: auto;
  padding: 96px 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;

  & .logo {
    font-size: 24px;
    line-height: 24px;
    vertical-align: bottom;
  }

  & .copyright {
    vertical-align: bottom;
  }
}
