*:root {
  /* Base White */
  --service-card-white: #fcfbf8;

  /* Base Blue */
  --deep-space-blue: #1f3249;

  /* Darks */
  --deep-charcoal: #2a2a2a;
  --rich-black: #0e121a;

  /* Ambers */
  --amber: #ffc107;
  --amber-hover: #ffdb6f;
  --amber-hover-cta: #fde18d;
  --amber-dark-hover: #d19139;

  /*Teals*/
  --sky-aqua: #7fcfe2;
  --sky-aqua-hover: #a3dff0;

  /* Neutrals */
  --muted-charcoal: #B9BBBD;
  --slate-silver: #7b8a99;

  /*Light Blues*/
  --cool-light-blue: #a2b9d7;
  --silver-glow: #cfdde7;
}

@font-face {
  font-family: Oswald;
  src: url("/fonts/Oswald-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Oswald;
  src: url("/fonts/Oswald-Medium.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Italic.ttf");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Lato;
  src: url("/fonts/Lato-Bold.woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  background-color: var(--deep-space-blue);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button,
.cta-btn {
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

p,
li {
  line-height: 1.8;
  margin: .5rem 0;
}

ul li {
  list-style: none;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background: radial-gradient(circle at 40% 50%, #1f3249 0%, #0e121a 80%);
  background-attachment: fixed;
  color: var(--service-card-white);
    -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

header picture {
  position: relative;
  display: flex
}

section .wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  text-align: left;
  justify-content: center;
  min-height: fit-content;
  border-radius: 12px;
}

.hero .wrapper {
  padding: 0 1rem 2rem;
}

.amber {
  color: var(--amber) !important;
}

.sky-aqua {
  color: var(--sky-aqua-hover) !important;
}

.headline,
#how-it-works h2.what-you-do-get {
  background: linear-gradient(90deg, #fcfbf8, #d5d6d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-color,
.highlight {
  background: linear-gradient(90deg, #ffc107, #e5c07b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  margin-top: 0;
  letter-spacing: -.75px;
  font-family: 'Oswald', sans-serif;
  text-align: left;
  background: linear-gradient(90deg, var(--amber), var(--amber-hover-cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.value-list {
  padding: .25rem 1rem;
  width: 100%;
  text-align: left;
  color: var(--service-card-white);
}

.value-list li {
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.reason-list b,
.pain-list b,
.bold-line b,
.sub-eyebrow b,
#foundingForm b {
  color: var(--amber) !important;
}

.oswald {
  font-family: 'Oswald';
  text-transform: uppercase;
}

ul li {
  padding-bottom: .25rem;
  max-width: fit-content;
  line-height: 1.8;
}

ul.features li::before {
  content: '✅ ';
}

form {
  margin-top: 0;
  padding: 1rem 0;
  position: relative;
}

input[type="email"] {
  border: 2px solid var(--amber);
  padding: 1rem;
  position: relative;
  border-radius: 6px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 1rem;
  min-height: 61px;
  font-size: 1rem;
}

input[type="email"]:focus {
  outline: none;
  border-color: var(--amber-hover);
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.3);
}

.cta-btn {
  background-color: var(--amber);
  color: var(--deep-space-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.375rem;
  letter-spacing: -.25px;
  text-align: center;
  border: none;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  max-width: 500px;
  padding: .5rem 1rem;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn.loading::after {
  content: "";
  margin-left: 10px;
  width: 1rem;
  height: 1rem;
  border: 4px solid rgba(255, 255, 255, 0.6);
  border-top-color: var(--deep-space-blue);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cta-btn:hover {
  background-color: var(--amber-hover);
}

.strikethrough {
  text-decoration: line-through;
}

.thank-you {
  display: none;
  color: var(--amber);
  text-underline-offset: 0.3125rem;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--deep-space-blue);
  font-size: 1.25rem;
  text-align: center;
  border-radius: 6px;
  text-transform: uppercase;
  margin: 1.5rem 0 0;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.hero-flex-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

header {
  align-items: center;
  display: flex;
  justify-content: center;
}

footer {
  position: relative;
  padding: 2rem 1rem 3rem;
  text-align: center;
  color: var(--service-card-white);
  font-size: 0.9rem;
}

.footer-wrapper {
  max-width: 800px;
  margin: auto;
}

.footer-headline {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.footer-sub {
  margin: 0.25rem 0;
}

footer a {
  color: var(--amber-hover);
  font-weight: 600;
}

footer a:hover {
  color: var(--amber-dark-hover);
}

footer .second-line {
  margin-top: .25rem;
  margin-bottom: .25rem;
}

footer img {
  width: 100%;
  height: 100%;
  max-width: fit-content;
  display: block;
  object-position: center;
  margin: 1.75rem auto .75rem;
}

hr {
  width: 100%;
  border: none;
  background-color: var(--silver-glow);
  height: 1px;
  border-radius: 2px;
}

.footer-note {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--silver-glow);
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0px rgba(255, 193, 7, 0.2);
  }

  50% {
    box-shadow: 0 0 12px 4px rgba(255, 193, 7, 0.4);
  }

  100% {
    box-shadow: 0 0 0px rgba(255, 193, 7, 0.2);
  }
}

@keyframes badgePop {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.trust-badge-bar {
  width: 100%;
  max-width: 600px;
  margin: 0;
  text-align: center;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
}

.trust-badge-bar p {
  letter-spacing: unset !important;
  font-weight: 400;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #cfd8e3;
  line-height: 1.6;
  opacity: 0;
  animation: badgePop 0.8s ease-out 1s forwards;
}

.trust-badge-bar img {
  height: auto;
  width: 100%;
  max-width: 110px;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: badgePop 0.8s ease-out 1s forwards;
}

.badge-wrapper {
  background-color: var(--service-card-white);
  padding: .25rem;
  border-radius: 6px;
  backdrop-filter: blur(6px);
  border: 2px solid #cfd8e3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: badgePop 0.8s ease-out 1s forwards;
}



header .cta-btn,
#hero .cta-btn,
#foundingForm .cta-btn {
  animation: glowPulse 4s infinite ease-in-out;
  box-shadow: 0 0 0px rgba(255, 193, 7, 0.4);
}


#hero .value-list-flex {
  display: flex;
  align-items: center;
}

.how-steps {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0 .5rem;
}

.how-steps h3 {
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.how-steps p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--service-card-white);
}

#testimonials h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonial img {
  width: 90px;
  height: 90px;
  display: block;
  object-fit: cover;
  align-self: center;
  margin: 1rem auto;
  grid-row: 2;
  grid-column: 1 / span 1;
  border-radius: 50%;
  border: 2px solid var(--silver-glow);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
}

.testimonial {
  padding: 1rem 2rem;
  display: grid;
  margin: 1rem auto;
  border-radius: 4px;
  background: linear-gradient(to bottom right, rgba(14, 18, 26, 0.3), rgba(162, 185, 215, 0.3));
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(127, 207, 226, 0.3),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 216, 227, 0.35);
  position: relative;
  opacity: 0;
}

.testimonial .name {
  grid-column: 1 / span 1;
  grid-row: 3;
  margin-top: 0;
  font-weight: 700;
  text-align: center;
  color: var(--amber);
}

.quote {
  grid-column: 1 / span 1;
  grid-row: 1;
  font-style: italic;
}

.ian-photo {
  z-index: 1;
  display: block;
  object-fit: cover;
  align-self: center;
  margin: auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #ffda70, #ffe5b4);
  padding: 2px;
  box-shadow: 0 0 10px rgba(180, 154, 70, 0.4), 0 0 8px rgba(192, 192, 192, 0.4);
  background-clip: padding-box;
}

#how-it-works {
  padding: 3rem 0 0;
}

#faq {
  padding: 3rem 0 0;
}

#rally-recap {
  padding: 3rem 0 2rem;
}

#faq h2 {
  padding-bottom: 0;
}

#faq hr {
  border: none;
  background-color: var(--silver-glow);
  height: 1px;
  margin: .5rem 0 2rem;
}

#faq h3 {
  color: var(--amber-hover) !important
}

.faq-item {
  padding-bottom: 1rem;
}

#why-doers h2,
#why-this-offer h2 {
  text-align: center;
}

#why-this-offer {
  padding-top: 3rem;
  padding-bottom: 0;
}

.ghost-button {
  margin-top: 1rem;
  background-color: transparent;
  border: 2px solid var(--amber);
  color: var(--amber);
  box-shadow: none;
  transition: all 0.3s ease;
}

.ghost-button:hover {
  background-color: transparent !important;
  border: 2px solid var(--amber-hover);
  color: var(--amber-hover);
}

.pain-list {
  margin-bottom: .5rem;
  padding: 1rem 1rem 0
}

.reason-list {
  padding: 1rem;
}

.reason-list li {
  padding-bottom: 1rem
}

.pain-list li:nth-child(1) {
  background: linear-gradient(to bottom right, rgba(255, 205, 210, 0.2), rgba(255, 255, 255, 0.2));
}

.pain-list li:nth-child(2) {
  background: linear-gradient(to bottom right, rgba(255, 241, 118, 0.2), rgba(255, 255, 255, 0.2));
}

.pain-list li:nth-child(3) {
  background: linear-gradient(to bottom right, rgba(129, 212, 250, 0.2), rgba(255, 255, 255, 0.2));
}

.pain-list li:nth-child(4) {
  background: linear-gradient(to bottom right, rgba(200, 200, 255, 0.2), rgba(255, 255, 255, 0.2));
}

.pain-list li:nth-child(5) {
  background: linear-gradient(to bottom right, rgba(255, 204, 128, 0.2), rgba(255, 255, 255, 0.2));
}

.pain-list li {
  opacity: 0;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pain-list li.visible.fade-in {
  opacity: 1;
  transform: translateY(0);
}

#why-doers p b {
  color: var(--amber-dark-hover);
}

#why-doers p b.cool-light-blue {
  color: var(--cool-light-blue);
}

#why-doers p b.why-doers-intro {
  font-size: 1.375rem;
  color: var(--service-card-white);
  letter-spacing: -.25px;
}

.reason-list i,
.pain-list i,
.bold-line i,
#foundingForm i,
.accordion b {
  color: var(--sky-aqua)
}

li.golden-border .list-emoji {
  display: inline-block;
  animation: bounceEmoji 1s infinite ease-in-out;
}

@keyframes bounceEmoji {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.list-emoji {
  font-size: 1.375rem;
  margin-right: .5rem;
}

.bold-line {
  border-left: 3px solid var(--silver-glow);
  padding-left: .75rem;
}

#lead .bold-line,
#rally-recap .bold-line,
#how-it-works .bold-line,
#foundingForm .bold-line,
#why-doers .bold-line {
  background: rgba(207, 216, 227, 0.145);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: 1rem;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.1),
    0 4px 14px rgba(126, 222, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

#foundingForm {
  padding: 2rem 0 0;
}

#foundingForm .wrapper {
  padding-bottom: 0
}

footer {
  padding-top: 0;
}

#foundingForm,
footer {
  position: relative;
  z-index: 9;
}

.security-blurb {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.dont-get,
.do-get {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  border-radius: 4px;
  max-width: 600px;
  border: 1px solid rgba(164, 214, 255, 0.3);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(163, 223, 240, 0.15), inset 0 0 5px rgba(255, 255, 255, 0.05);
}

.dont-get .value-list,
.do-get .value-list {
  background: transparent;
  border-left: none;
  box-shadow: none;
}

#how-it-works h2.what-you-dont-get {
  background: linear-gradient(90deg, #ff4d4f, #d42222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#how-it-works h2,
#how-it-works .center-desktop {
  text-align: center;
}


#why-doers .bold-line .larger {
  font-size: 1.375rem;
  font-weight: 700;
  font-family: 'Oswald';
  display: flex;
  padding-top: .125rem;
  justify-content: center;
}

.do-get .sub-line {
  color: var(--amber)
}

#rally-recap img {
  max-width: 500px;
  max-height: 700px;
  height: 100%;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--silver-glow);
  margin: 2rem auto;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(163, 223, 240, 0.15), inset 0 0 5px rgba(255, 255, 255, 0.05);
}

.ig-pic {
  display: block;
}

main .accordion-panel.active {
  background-color: rgba(207, 216, 227, 0.145);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(126, 222, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

main .accordion-panel {
  padding: .25em 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease
}

.friction-remover b {
  color: var(--amber)
}

.urgency-blurb {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: bold;
  color: #ffc94d;
  text-align: center;
}

#lead hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.picture-sub {
  color: var(--amber-hover-cta);
  font-size: .85rem;
  text-align: center;
  margin-bottom: 3rem;
}

#lead .sub-line.desktop-only, #lead .sub-line.mobile-only {
  color: var(--service-card-white);
  font-weight: 700;
  font-size: 1.25rem;
}

#hero .value-list li{
  color: var(--silver-glow);
  font-size: 1.125rem;
  margin-top: .25rem;
  }




@media screen and (max-width: 768px) {

  html {
    background: var(--rich-black);
    scroll-padding-top: 56px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    background: none !important;
    background-attachment: scroll !important;
  }

  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 40% 50%, #1f3249 0%, #0e121a 80%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    opacity: 1;
  }

  .hero-bg-flip,
  .desktop-only {
    display: none;
  }

  section .wrapper {
    padding: 1rem 1rem 2rem;
  }

  header {
    padding: .125rem 20px;
    height: 75px;
    width: 100%;
    position: fixed;
    background: radial-gradient(circle at 40% 50%, #1f3249 0%, #0e121a 80%);
    z-index: 10;
    top: 0;
    border-bottom: 1px solid var(--silver-glow)
  }

  header .wrapper {
    align-items: center;
    display: flex;
    position: relative;
    justify-content: space-between;
    width: 100%;
    height: 75px;
  }

  header img {
    width: 150px;
    height: 50px;
  }

  header .cta-btn {
    padding: .5rem .8375rem;
    font-size: .9375rem;
    width: fit-content;
    margin-right: 0;
  }

  .cta-btn {
    padding: .5em 1em;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
  }

  #hero .wrapper {
    padding: 75px 0 2rem;
  }

  .headline {
    margin-bottom: 0;
    margin-top: 1.25rem;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -.75px;
    font-family: 'Oswald', sans-serif;
    text-align: left;
    line-height: 1.15;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .highlight {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -.75px;
    font-family: 'Oswald', sans-serif;
    text-align: left;
    line-height: 1.3;
  }

  .friction-remover {
    font-size: .9375rem;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
  }

  .friction-remover b {
    font-size: 1.125rem;
  }

  .sub-eyebrow {
    line-height: 1.9;
    margin: .5rem 0 0;
    text-align: left;
    word-wrap: normal;
  }

  #hero .cta-btn {
    margin-top: .5rem;
    text-align: center;
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3125rem
  }

  #hero .bold-line,
  #lead .bold-line,
  #rally-recap .bold-line,
  #how-it-works .bold-line,
  #foundingForm .bold-line,
  #why-doers .bold-line {
    padding: 1rem 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  #foundingForm .bold-line {
    margin-bottom: 2rem;
  }

  #hero .bold-line {
    margin-top: 1rem;
    width: calc(100% - 2rem);
    margin-left: auto;
    margin-right: auto;
  }

  #hero .sub-line {
    padding: 0 1rem;
  }

  .bold-line {
    border-left-width: 2px;
  }

  #hero .oswald {
    color: var(--silver-glow) !important;
    font-size: 1.5rem;
  }

  #hero .value-list {
    border-left: none;
    font-size: .9375rem;
    margin: 0;
    padding-top: 0;
  }

  #hero .value-list-flex {
        font-size: .9375rem;
  }

  #hero .value-list b{
    font-size: 1rem;
    color: var(--service-card-white)
  }

  #hero .value-list .list-emoji {
    display: flex;
    width: fit-content;
    font-size: 1rem;
  }

  .trust-badge-bar {
    border-radius: 0;
    padding-top: .5rem;
  }

  #lead .bold-line {
    margin-bottom: 2rem;
  }

  #lead .mobile-only {
    text-align: center
  }

  #why-doers {
    padding: 3rem 0 2rem;
  }

  #how-it-works {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .header-cta p {
    display: none;
  }

  .ian-photo.desktop-ian {
    display: none;
  }

  .mobile-only:not(h1 span) {
    display: block;
    margin: auto auto 2rem;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    max-height: 300px;
    max-width: 300px;
    border-radius: 12px;
  }

  .mobile-only.larger {
    max-height: unset;
    max-width: unset;
    margin-bottom: 1rem
  }

  .middle-section {
    margin: 1rem auto 0;
  }

  .why-this-offer-desktop-wrapper,
  .why-doers-offer-desktop-wrapper {
    display: flex;
    flex-direction: column;
    position: relative
  }

  #why-this-offer {
    padding-top: 0;
  }

  #why-doers .mobile-only {
    margin-bottom: 2rem;
  }

  #why-doers .cta-btn {
    margin-top: 2rem;
  }

  #rally-recap .mobile-only {
    margin-top: 2rem
  }

  .dont-get {
    margin-top: 1rem;
  }

  .do-get {
    margin-top: 3rem;
  }

  #how-it-works h2.main-how-it-works {
    padding-bottom: .5rem;
  }

  #how-it-works .bold-line {
    margin-top: 3rem;
  }

  #how-it-works p.sub-line.center-desktop.mobile-left {
    text-align: center;
  }

  .testimonial {
    transition: all 0.8s ease-out;
  }

  .testimonial-left {
    transform: translateX(-50vw);
  }

  .testimonial-left:last-of-type {
    margin-top: 2rem;
  }

  .testimonial-right {
    transform: translateX(50vw);
  }

  .testimonial-right.visible {
    transition-delay: 0.3s;
  }

  .testimonial.visible {
    opacity: 1;
    transform: translateX(0);
  }

  #why-doers p,
  #why-doers h2 {
    margin-bottom: 1.25rem
  }

  .testimonial-right {
    margin-top: 2rem;
  }

  #lead h2 {
    text-align: center;
    padding-bottom: 1rem;
  }

  #lead .sub-line {
    margin-top: 1rem;
  }

  .ian-photo {
    width: 128px;
    height: 128px;
  }

  .reason-list {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .reason-list li {
    list-style: none;
    counter-increment: reason-counter;
    position: relative;
    transition: all 0.4s ease;
    padding: .5rem .5rem .75rem 3.25rem;
    border-radius: 4px;
    background-color: transparent;
  }

  .reason-list li.golden-border {
    background-color: rgba(94, 192, 247, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(126, 222, 255, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  }

  .reason-list li.golden-border::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--silver-glow);
    box-shadow: 0 0 2px var(--silver-glow);
    border-radius: 2px;
    opacity: 1;
    transition: all 0.4s ease;
  }

  .reason-list li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: transparent;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .reason-list li::before {
    content: counter(reason-counter) ".";
    position: absolute;
    top: .5rem;
    left: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber);
    font-family: 'Oswald', sans-serif;
  }

  main .accordion-trigger[aria-expanded="true"] {
    color: var(--amber);
    transition: color 0.2s ease !important;
  }

  #why-doers .bold-line {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  footer img {
    max-height: 50px;
  }

  .ig-pic p {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #rally-recap img {
    border: none;
    margin-bottom: 0;
    margin-top: 1rem
  }

  #lead .lead-finish img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/5;
    transition: filter 0.75s ease;
  }

  #lead .lead-finish img.hover-website {
    filter: brightness(0.5);

  }
  
  #lead .lead-finish img.hover-website.active-brightness {
    filter: brightness(1); /* brighten when active */
  }


}

@media screen and (min-width: 769px) {

  body,
  html {
    width: 100%;
    overflow-x: hidden;
  }

  html {
    scroll-padding-top: 100px;
  }

  .wrapper {
    border-radius: 0;
  }

  section,
  footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
  }

  section .wrapper {
    padding: 2rem;
  }

  header {
    height: 100px;
    position: fixed;
    background: transparent;
    margin: 0 auto;
    top: 0;
    width: 100%;
        background: radial-gradient(circle at 40% 50%, #1f3249 0%, #0e121a 80%);
    border-bottom: 1px solid var(--silver-glow);
    z-index: 10;
  }

  p,
  li,
  ol {
    font-size: 1.125rem
  }

  header img:hover {
    filter: brightness(1.1);
  }


  main {
    margin-top: -35px;
    background: radial-gradient(circle at 40% 50%, #1f3249 0%, #0e121a 80%);
    background-attachment: fixed;
  }

  header .wrapper {
    align-items: center;
    display: flex;
    position: relative;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    margin: 0;
    height: 100%;
    padding: 0 2rem;

  }

  header img {
    max-width: 220px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.2s ease;
  }

  header .cta-btn {
    padding: .75rem 2rem;
    width: max-content;
    font-size: 1.125rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .headline,
  .highlight {
    font-size: 3rem;
    max-width: 685px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: .5rem;
    margin-top: 0;
    letter-spacing: -.75px;
    font-family: 'Oswald', sans-serif;
    text-align: left;
  }

  .headline {
    margin-bottom: 0;
  }

  h2 {
    font-size: 3.5rem
  }

  .sub-eyebrow {
    line-height: 2.2;
  }

  .value-list,
  .sub-eyebrow {
    max-width: 600px;
  }

  #hero {
    margin-top: 135px;
    position: relative;
    overflow: hidden;

  }

  .hero-bg-flip {
    position: absolute;
    inset: 0;
    background: url('/img/founding-five-hero-v2.webp');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .wrapper {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 163.2px);
    border-radius: 0;
    background-color: transparent;
    padding: 4rem 2rem 2rem;
  }

  #hero .bold-line {
    max-width: 600px;
  }

  #hero .oswald {
    color: var(--silver-glow) !important;
    font-size: 1.5rem;
  }

  #hero .value-list {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-left: none;
  }

  .details {
    margin: 2rem 0;
    max-width: 600px;
  }

  .header-cta {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .header-cta p {
    margin: .25rem auto 0;
    font-size: .9375rem;
  }

  .cta-btn:not(header .cta-btn) {
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
  }

  .cta-btn:hover {
    background-color: var(--amber-hover);
  }

  #hero .cta-btn {
    margin: 0rem 3rem .5rem;
    text-align: center;
    font-size: clamp(1rem, 1rem + .5rem, 1.1875rem);
  }

  #hero .sub-line {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .friction-remover {
    font-size: 0.9375rem;
    margin: 1rem 0 0;
    text-align: center;
    max-width: 600px;
  }

  .friction-remover b {
    font-size: 1.125rem;
  }

  #lead .wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
  }

  .reason-list {
    counter-reset: reason-counter;
    list-style: none;
    padding: 0;
  }

  .reason-list li {
    position: relative;
    counter-increment: reason-counter;
  }

  .reason-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .reason-list li {
    counter-increment: reason-counter;
    position: relative;
    padding: 2rem 2rem 2rem 4.5rem;
    background: linear-gradient(to bottom right, rgba(207, 216, 227, 0.1), rgba(73, 145, 247, 0.25));
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4), 0 0 10px rgba(126, 222, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }

  .reason-list .list-emoji {
    text-align: center;
    font-size: 2rem;
  }

  .reason-list b,
  .reason-list i,
  .reason-list u,
  .reason-list b u {
    display: contents
  }


  .reason-list li::before {
    content: counter(reason-counter) ".";
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--amber);
    font-family: 'Oswald', sans-serif;
  }

  .reason-list li.golden-border {
    background-color: rgba(94, 192, 247, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(126, 222, 255, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  }

  .reason-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--silver-glow);
    box-shadow: 0 0 6px var(--silver-glow);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
  }

  .reason-list li.golden-border::after {
    transform: scaleX(1);
  }

  #lead h2,
  #testimonials h2,
  #how-it-works h2.section-header.main-how-it-works,
  #foundingForm h2 {
    padding-bottom: 1.5rem
  }

  #why-this-offer h2 {
    padding-bottom: 4rem
  }

  .testimonial {
    max-width: 400px;
    margin: 1rem auto;
    min-height: 400px;
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity 0.3s ease-out,
      transform 0.3s ease-out,
      box-shadow 0.6s ease,
      filter 0.3s ease,
      border-color 0.6s ease;
    filter: brightness(0.8);
    pointer-events: none;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .testimonial.animate-in {
    pointer-events: auto;
    animation: fadeUp 0.8s ease-out forwards;
  }

  .testimonial.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .testimonial:hover,
  .testimonial.animate-in:hover {
    pointer-events: auto;
    filter: brightness(1);
    transform: translateY(-4px);
    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.1),
      0 4px 14px rgba(126, 222, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--silver-glow);
  }

  .do-get:hover,
  .dont-get:hover {
    filter: brightness(1.1);
    box-shadow:
      0 2px 6px rgba(0, 0, 0, 0.1),
      0 4px 14px rgba(126, 222, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--silver-glow);
  }

  .do-get,
  .dont-get {
    filter: brightness(0.9);
    background: linear-gradient(to bottom right, rgba(14, 18, 26, 0.3), rgba(162, 185, 215, 0.3));
    transition:box-shadow 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
  }

  #why-this-offer {
    min-height: 80vh;
    background-size: cover;
    background-position: 25% 100%;
    background-repeat: no-repeat;
    padding-top: 0;
  }

  #why-this-offer .wrapper {
    max-width: 1400px;
    height: 100%;
    min-height: inherit;
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 0;
    padding: 0;
  }

  #why-doers .wrapper {
    max-width: 1400px;
    height: 100%;
    min-height: inherit;
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 0;
    padding: 0;
  }

  .why-this-offer-desktop-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: inherit;
    margin-left: auto;
    margin-right: 0;
    padding: 4rem 2rem 2rem;
    align-items: center;
    justify-content: center;
  }

  .why-doers-desktop-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    min-height: inherit;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem;
    align-items: left;
    justify-content: center;
    gap: .5rem 0;
  }

  #why-doers .cta-btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
  }


  #why-doers {
    min-height: 80vh;
    background-size: cover;
    background-position: 75% 100%;
    background-repeat: no-repeat;
    margin-top: 2rem;
  }

  #testimonials {
    margin-top: 3rem;
  }

  .ian-photo.mobile-ian {
    display: none;
  }

  .mobile-only:not(#rally-recap .mobile-only) {
    display: none;
  }

  #lead {
    padding-top: 4rem;
  }

  #lead .wrapper p {
    text-align: left;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
    margin-bottom: 1.25rem;
  }

  #lead h2 {
    text-align: left;
    max-width: 600px;
  }

  #lead .lead-finish .bold-line,
  #lead .lead-finish .sub-line {
    background: none;
    border: none;
    box-shadow: none;
    margin-left: 0;
    text-align: left;
    padding-left: 0;
    font-size: 1.125rem;
  }

  .pain-list li {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    margin-bottom: 1.5rem;
    min-width: -webkit-fill-available;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 4px 14px rgba(126, 222, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .pain-list {
    padding-top: 2rem;
  }

  .bold-line {
    padding: 1rem 1.5rem;
  }

  #lead .bold-line {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  #testimonials {
    padding-bottom: 6rem;
  }

  #testimonials .faq-wrapper {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }

  #faq hr {
    margin: .5rem auto 5rem;
    max-width: 85%;
    width: 100%;
  }

  #faq h2 {
    text-align: center;
    padding-bottom: 0.5rem;
  }

  #faq .section-intro {
    padding-bottom: 0.25rem;
  }

  main .accordion-trigger:hover,
  main .accordion-trigger[aria-expanded="true"] {
    color: var(--amber)
  }

  .faq-wrapper {
    display: grid;
    align-items: start;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  }

  .faq-item {
    max-width: 450px;
    padding-bottom: 4rem;
  }

  #rally-recap .wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  #rally-recap {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
  }

  #rally-recap .bold-line {
    width: fit-content;
    margin: 2rem auto 2rem 0;
  }

  .ig-pic {
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 4 / 5;
    max-width: 700px;
    max-height: 700px;
    height: 100%;
    width: 100%;
  }

  #foundingForm .wrapper,
  #foundingForm h2 {
    text-align: center;
  }

  #foundingForm .bold-line {
    width: fit-content;
    margin: 2rem auto;
  }

  footer img {
    max-height: 60px;
  }

  form {
    padding: 3rem 0;
  }

  .ian-photo {
    height: 100%;
    width: 100%;
    max-width: 160px;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  #how-it-works {
    min-height: 60vh;
  }

  #how-it-works .bold-line {
    width: fit-content;
    margin: 2rem auto;
  }

  .what-you-get {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 4rem auto;
  }

  #faq .section-intro {
    text-align: center;
  }

  #lead .lead-finish img {
    width: 100%;
    height: 100%;
    max-width: 800px;
    max-height: 475px;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4/5;
    border: 1px solid rgba(164, 214, 255, 0.3);
    filter: brightness(0.8);
    transition: filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(163, 223, 240, 0.15), inset 0 0 5px rgba(255, 255, 255, 0.05);
  }

  #lead .lead-finish img:hover {
    filter: brightness(1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1), 0 4px 14px rgba(126, 222, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: var(--silver-glow);
  }

  #lead .lead-finish .picture-sub {
    font-size: .9375rem;
  } 

}

@media screen and (min-width: 769px) and (max-width: 1300px) {


  .headline {
    font-size: 3rem !important;
    max-width: 600px;
  }

  h2 {
    font-size: 2.5rem;
  }

  p,
  li,
  ol {
    font-size: 1rem;
  }

  .what-you-get {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: 4rem;
  }

  .why-doers-desktop-wrapper {
    max-width: 600px;
    margin-left: 0;
    margin-right: auto;
  }

  #lead .wrapper {
    justify-items: center;
  }

  #lead .lead-finish img {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    max-height: 800px;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/9;


  }

}