@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --orange: #D0402A;
}

html,body {
    font-family: "Archivo", sans-serif;
    background: #060B14;
}

html {
  scroll-behavior: smooth;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1260px;
}

h1, h2, h3 {
    font-family: 'Saira Condensed', sans-serif;
}

a {
    font-family: "Archivo", sans-serif;
}

.eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.cta-orange {
    background: var(--orange);
    padding: 15px 30px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.82px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.cta-orange:hover {
    background: #FFFFFF;
    text-decoration: none;
    color: #0B1220;
}

.cta-white {
    background: #ffffff;
    padding: 15px 30px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.82px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.cta-white:hover {
    background: #0B1220;
    text-decoration: none;
    color: #FFFFFF;
}

.cta-underline {
    font-size: 13px;
    color: #FFFFFF;
    font-weight: bold;
    letter-spacing: 0.96px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.cta-underline:hover {
    color: #0B1220;
    text-decoration: none;
}

.cta-underline:hover:after {
    background: #0B1220;
}

.cta-underline:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: all .3s ease-in-out;
}

.cta-border {
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.45);
    padding: 12px 27px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.82px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.cta-border:hover {
    border-color: var(--orange);
    background-color: var(--orange);
    color: #FFFFFF;
    text-decoration: none;
}

.main-nav {
    background: rgba(11, 18, 32, 0.86);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.main-nav__desktop-left {
    display: flex;
    align-items: center;
}

.main-nav__desktop__menus ul {
    list-style: none;
    display: flex;
    padding-left: 65px;
    margin-bottom: 0;
}

.main-nav__desktop__menus ul li {
    padding-right: 25px;
}

.main-nav__desktop__menus ul li a {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.3px;
    transition: color .3s ease-in-out;
}

.main-nav__desktop__menus ul li a:hover {
    color: var(--orange);
    text-decoration: none;
}

.main-nav__desktop__menus ul li:last-child {
    padding-right: 0;
}

.main-nav__desktop-container {
    display: flex;
    justify-content: space-between;
}

.main-nav__burger-line-3 {
    margin-bottom: 0;
}

.main-nav__burger-nav-line {
    width: 30px;
    height: 3px;
    display: block;
    background: #FFFFFF;
    margin-bottom: 8px;
    transition: all .3s ease-in-out;
}

.main-nav__mobile-container {
    display: flex;
    justify-content: space-between;
}

.main-nav__mobile {
    display: none;
}

.main-nav__desktop {
    display: block;
}

.main-nav__mobile-menu-container ul {
    margin: 0;
    padding: 25px 0;
    list-style: none;
}

.main-nav__mobile-menu-container ul li:last-child {
    padding-bottom: 0;
}

.main-nav__mobile-menu-container ul li {
    padding-bottom: 15px;
}

.main-nav__mobile-menu-container ul li a {
    color: #FFFFFF;
}

.main-nav__mobile-left {
    display: flex;
    align-items: center;
}

.main-nav__burger-line-3 {
    margin-bottom: 0;
}

.main-nav__mobile-burger {
    margin-right: 15px;
}

.main-nav__mobile-menu {
    display: none;
}

.burger-line-1-open {
    transform: rotate(45deg);
    transform-origin: left;
    width: 32px;
}

.burger-line-2-open {
    opacity: 0;
}

.burger-line-3-open {
    transform: rotate(-45deg);
    transform-origin: left;
    width: 32px;
}


.hero-banner {
    width: 100%;
    height: 100vh;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow-y: hidden;
}

.hero-banner__title h1 {
    font-size: 82px;
    letter-spacing: -1.15px;
    font-weight: bold;
    margin: 0;
    line-height: 80px;
    padding-bottom: 25px;
}

.hero-banner__title h1 span {
    color: var(--orange);
}

.hero-banner__content {
    max-width: 680px;
}

.hero-banner__eyebrow {
    padding-bottom: 25px;
}

.hero-banner__description p {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.86);
}

.hero-banner__description p:last-child {
    margin-bottom: 0;
}

.hero-banner__cta-wrapper a {
    width: calc(50% - 15px);
    text-align: center;
    font-size: 14px;
}

.hero-banner__cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 35px;
    max-width: 600px;
}

.hero-banner__disclaimer {
    color: #5B7A9C;
    font-size: 13px;
    padding-top: 15px;
    letter-spacing: 0.25px;
}

.hero-banner-scroll {
    position: absolute;
    bottom: 60px;
    left: 50%;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-banner-scroll-text:after {
    content: '';
    height: 80px;
    width: 1px;
    background: var(--orange);
    display: block;
    position: absolute;
    left: 50%;
    margin-top: 16px;
}


/* ============================ */








/* Section Background */
.mission-video {
    background-color: #0d1b2a; /* Dark navy backup fallback */
    background-size: cover;
    background-position: center;
}

/* Custom Text styling to match screenshot */
.text-muted-custom {
    color: #a0aec0;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* Video Responsive Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    min-height: 450px;
}

/* Poster Image Setup */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Play Button Design */
.play-btn {
    background: #0B1220;
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.video-poster:hover .play-btn {
    transform: scale(1.1);
    background: rgba(13, 27, 42, 1);
}

/* Video Player Box */
.video-target,
.video-target iframe,
.video-target video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mission-video__title {
    font-size: 48px;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1;
}

.mission-video__desc p {
    font-size: 22px;
    margin-bottom: 22px;
}

.mission-video__right {
    max-width: 500px;
    margin: 0 auto;
}

.substack {
    background: #E8E4DC;
    padding: 100px 0;
}

.substack__eyebrow {
    color: #D0402A;
    text-transform: uppercase;
    padding-bottom: 18px;
}

.substack__title {
    font-size: 62px;
    font-family: 'Saira Condensed', arial;
    letter-spacing: -0.39px;
    font-weight: bold;
    line-height: 1;
    max-width: 460px;
}

.substack__desc p:last-child {
    margin-bottom: 0;
}

.substack__desc p {
    font-size: 22px;
    margin-bottom: 35px;
}

.substack_cta a:after {
    content: '';
    display: block;
    height: 2px;
    width: 100%;
    background: var(--orange);
    margin-top: 5px;
}

.substack_cta a {
    font-size: 14px;
    font-weight: bold;
    color: #0B1220;
    letter-spacing: 1.68px;
    margin-top: 40px;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.substack__cards-wrapper {
    display: flex;
    border-top: 5px solid #0B1220;
    margin-top: 50px;
}

.substack__card {
    flex: 1;
    padding-right: 50px;
    padding-left: 30px;
    padding-bottom: 30px;
}

.substack__card:first-child {
    padding-left: 0;
}

.substack__card-badge-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.substack__card-badge {
    color: var(--orange);
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    background: #0F1A2E;
    padding: 5px 10px;
    border-radius: 50px;
    letter-spacing: 1.2px;
    margin-right: 11px;
}

.substack__card-date {
    color: #5B7A9C;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.6px;
}

.substack__card-title {
    font-size: 31px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    letter-spacing: -0.14px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.substack__card-desc {
    font-size: 18px;
}

.substack__card-cta {
    padding-top: 50px;
}

.substack__card-cta a {
    text-transform: uppercase;
    letter-spacing: 0.96px;
    font-size: 13px;
    font-weight: bold;
    color: #0B1220;
    display: inline-block;
    transition: all .3s ease-in-out
}

.substack__card-cta a:hover {
    text-decoration: none;
    color: var(--orange);
}

.substack__card-cta a:after {
    width: 100%;
    height: 5px;
    background: var(--orange);
    display: block;
    content: '';
}

.substack__card-cta-paid {
    display: flex;
    align-items: center;
    padding-top: 50px;
}

.cta-paid-text {
    line-height: 1;
}

.cta-paid-icon {
    padding-right: 10px;
}

.cta-paid-text {
    line-height: 1;
    color: var(--orange);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.96px;
    transform: translateY(3px);
}

.substack__locked .substack__card-badge {
    color: #FFFFFF;
    background: var(--orange);
}

.substack__locked {
    padding-right: 0;
}

.substack__locked .substack__card-desc {
    filter: blur(13.82px);
    color: #41506A;
}

.substack__card {
    border-right: 3px solid rgba(11, 18, 32, 0.14);
}

.substack__card:last-child {
    border-right: none;
}

.substack__card {
    padding-top: 30px;
}


.subscribe-banner__title {
    font-size: 79px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    letter-spacing: -0.39px;
    line-height: 1;
    margin-bottom: 17px;
}

.subscribe-banner__content {
    text-align: center;
    color: #FFFFFF;
}

.subscribe-banner {
    padding: 80px 0;
    background: #0F1A2E;
}

.subscribe-banner__desc {
    font-size: 21px;
    color: #AEBED2;
    margin-bottom: 17px;
}

.paid-benefits {
    padding: 100px 0;
}

.paid-benefits__eyebrow {
    padding-bottom: 17px;
    color: var(--orange);
}

.paid-benefits__title {
    font-size: 79px;
    font-weight: bold;
    letter-spacing: -0.39px;
    color: #ffffff;
    line-height: 1;
    font-family: 'Saira Condensed', arial;
    margin-bottom: 17px;
}

.paid-benefits__desc {
    font-size: 42px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    letter-spacing: 0.44px;
    color: var(--orange);
}

.paid-benefits__headings {
    max-width: 800px;
    padding-bottom: 50px;
}

.paid-benefits__featured {
    background: #16243C;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 5px solid #D0402A;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.paid-benefits__left {
    max-width: 760px;
    margin: 0 auto;
}

.paid-benefits__right {
    max-width: 355px;
    margin: 0 auto;
}

.paid-featured-title {
    font-size: 42px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
}

.paid-featured-title span {
    color: var(--orange);
    padding-right: 10px;
}

.paid-featured-desc p {
    font-size: 22px;
    margin-bottom: 0;
    padding-bottom: 17px;
}

.paid-featured-subdesc {
    font-size: 20px;
    color: #AEBED2;
}

.paid-benefits__paid-img-container {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.paid-benefits__paid-badge {
    background: var(--orange);
    position: absolute;
    display: flex;
    padding: 7px 12px;
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.4px;
    top: 14px;
    left: 14px;
}

.paid-benefits-icon {
    padding-right: 8px;
}

.paid-benefits__paid-lock {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.68px;
}

.paid-benefits__paid-lock span {
    padding-top: 14px;
    display: block;
}

.paid-benefits__paid-card:nth-child(2) {
    padding-left: 0;
}

.paid-benefits__paid-card:nth-child(3) {
    padding-right: 0;
}

.paid-benefits-card-card__number {
    font-size: 42px;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: var(--orange);
    line-height: 1;
    padding-bottom: 15px;
}

.paid-benefits-paid-card__title {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 38px;
    letter-spacing: -0.18px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    line-height: 1;
}

.paid-benefits-paid-card__content {
    background: #0F1A2E;
    padding: 30px;
}

.paid-benefits-paid-card__desc {
    font-size: 19px;
    color: #AEBED2;
    line-height: 1.5;
    padding-top: 15px;
}


.comparison-cards {
    background: #E8E4DC;
    padding: 100px 0;
}

.comparison-cards-free {
    background: #FFFFFF;
    padding: 55px 40px;
}

.comparison-cards__free-list {
    padding-left: 0;
    list-style: none;
    padding-top: 40px;
}

.comparison-cards__free-list li {
    font-size: 18px;
    padding-bottom: 11px;
}

.comparison-cards__free-list .check-icon:before {
    content: '✓';
    font-weight: bold;
    padding-right: 15px;
    color: var(--orange);
}

.comparison-cards__free-list .check-icon {
    color: #41506A;
}



.comparison-cards__free-list .dash-icon {
    color: #B3A9A0;
}

.comparison-cards__free-list .dash-icon:before {
    content: '—';
    font-weight: bold;
    padding-right: 15px;
    color: #B3A9A0;
}


.comparison-cards__free-title {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: #0B1220;
}

.comparison-cards__free-pricing {
    font-size: 62px;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: #0B1220;
}

.comparison-cards__free-pricing span {
    font-size: 17px;
    font-weight: 600;
    color: #8A93A6;
}

.comparison-cards__free-desc {
    font-size: 17px;
    color: #41506A;
}

.comparison-cards__title {
    font-size: 80px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding-bottom: 30px;
    color: #0B1220;
}

.comparison-cards-paid {
    background: #0B1220;
    padding: 55px 25px 55px 40px;
    position: relative;
}

.comparison-cards__paid-list {
    padding-left: 0;
    list-style: none;
    padding-top: 40px;
}

.comparison-cards__paid-list li {
    font-size: 18px;
    padding-bottom: 11px;
}

.comparison-cards__paid-list .check-icon:before {
    content: '✓';
    font-weight: bold;
    padding-right: 15px;
    color: var(--orange);
}

.comparison-cards__paid-list .check-icon {
    color: #FFFFFF;
}

.comparison-cards__paid-list .dash-icon {
    color: #B3A9A0;
}

.comparison-cards__paid-list .dash-icon:before {
    content: '—';
    font-weight: bold;
    padding-right: 15px;
    color: #B3A9A0;
}


.comparison-cards__paid-title {
    font-size: 27px;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: #FFFFFF;
}

.comparison-cards__paid-pricing {
    font-size: 62px;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: #ffffff;
}

.comparison-cards__paid-pricing span {
    font-size: 17px;
    font-weight: 600;
    color: #8A93A6;
}

.comparison-cards__paid-desc {
    font-size: 17px;
    color: #8A93A6;
}

.comparison-cards-free {
    max-width: 430px;
    width: 100%;
}

.comparison-cards-paid {
    max-width: 525px;
    width: 100%;
}

.comparison-cards__container {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-cards__free-cta a {
    border: 3px solid rgba(11, 18, 32, 0.14);
    padding: 15px;
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #0B1220;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.96px;
    transition: all .3s ease-in-out;
}

.comparison-cards__free-cta a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #FFFFFF;
    text-decoration: none;
}

.comparison-cards__paid-cta a {
    background: var(--orange);
    color: #FFFFFF;
    padding: 15px;
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1.96px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.comparison-cards__paid-cta a:hover {
    background: #FFFFFF;
    text-decoration: none;
    color: #0B1220;
}

.comparison-card-badge {
    padding: 7px 15px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.54px;
    background: var(--orange);
    display: inline-block;
    position: absolute;
    top: -15px;
    right: 35px;
}

.timeline-slide {
    color: #FFFFFF;
}

.about-timeline {
    padding: 100px 0;
}

.timeline-container {
    padding: 70px 0 0 0;
}

.timeline-slide__dot {
    background: var(--orange);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 10px;
}

.timeline-slide__line {
    width: calc(100% - 30px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-slide__line-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: space-between;
    margin-right: 15px;
}
 
.timeline-slide p {
    padding-right: 35px;
}

.timeline-slide .date {
    font-size: 23px;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    color: var(--orange);
}

.timeline-slide h3 {
    text-transform: uppercase;
    font-size: 23px;
    font-weight: bold;
}

.timeline-slide p {
    font-size: 16px;
    color: #AEBED2;
}

.about-timeline .next-btn,
.about-timeline .prev-btn {
    background: none;
    border: none;
}

.timeline-slider__title {
    font-size: 36px;
    color: #FFFFFF;
    font-weight: 600;
    font-family: 'Saira Condensed', arial;
    letter-spacing: 0.68px;
}

.timeline-slider__arrow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
}

.timeline-heading__left {
    max-width: 530px;
}

.timeline-heading__right {
    max-width: 650px;
    color: #FFFFFF;
}

.timeline-heading-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-heading__eyebrow {
    color: var(--orange);
    line-height: 1;
    padding-bottom: 17px;
}

.timeline-heading__title {
    font-size: 58px;
    font-weight: bold;
    font-family: 'Saira Condensed';
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.35px;
    padding-bottom: 20px;
}

.timeline-heading__title span {
    color: var(--orange);
}

.timeline-heading__desc p {
    font-size: 21px;
    color: #AEBED2;
}

.timeline-heading__desc p:last-child {
    margin-bottom: 0;
}

.the-books {
    padding: 100px 0;
    background: #E8E4DC;
}

.the-books__card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(50% - 15px);
    background: #EFECE4;
    padding: 30px 30px 30px 0;
    border: 1px solid rgba(11, 18, 32, 0.14);
}

.the-books__card-image {
    width: 40%;
}

.the-books__card-content {
    width: 60%;
}

.the-books__card-image img {
    width: 100%;
}

.the-books__cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.the-books-card-eyebrow {
    font-size: 13px;
    color: var(--orange);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1.76px;
}

.the-books-card-title {
    font-size: 58px;
    text-transform: uppercase;
    font-family: 'Saira Condensed', arial;
    letter-spacing: -0.28px;
    font-weight: bold;
    line-height: 1;
    position: relative;
}

.the-books-card-title:after {
    content: '';
    width: 55px;
    height: 3px;
    display: block;
    background: var(--orange);
    margin-top: 5px;
    margin-bottom: 15px;
}

.the-books-card-subtitle {
    color: #0B1220;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Saira Condensed', arial;
}

.the-books-card-author {
    font-size: 15px;
    color: #41506A;
    padding-bottom: 15px;
}

.the-books-card-desc {
    font-size: 18px;
    color: #0B1220;
    padding-bottom: 20px;
}

.the-books__eyebrow {
    color: var(--orange);
    padding-bottom: 15px;
}

.the-books__title {
    font-size: 80px;
    font-weight: bold;
    font-family: 'Saira Condensed', arial;
    letter-spacing: -0.40px;
    line-height: 1;
    padding-bottom: 30px;
}

.the-books__desc {
    padding-bottom: 20px;
    font-size: 22px;
    color: #41506A;
}

.substack-banner {
    color: #ffffff;
    padding: 100px 0;
    background: var(--orange);
    text-align: center;
}

.substack-banner__title {
    text-transform: uppercase;
    font-size: 80px;
    font-family: 'Saira Condensed', arial;
    font-weight: bold;
    letter-spacing: -0.39px;
    line-height: 1;
    padding: 25px 0;
}

.substack-banner__desc p {
    font-size: 22px;
    line-height: 1.5;
}

.substack-banner__desc p:last-child {
    margin-bottom: 0;
}

.substack-banner__desc {
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 35px;
}

.substack-banner__cta-wrapper a:first-child {
    margin-right: 40px;
}

.main-footer {
    padding: 80px 0 40px 0;
}

.main-footer__wrapper {
    display: flex;
}

.main-footer__card {
    flex: 1;
}

.main-footer__card-logo {
    flex: 1.5;
}

.footer-description p {
    font-size: 18px;
    padding: 15px 0;
    color: #5B7A9C;
    margin-bottom: 0;
}

.main-footer-card-list-title {
    font-size: 13px;
    font-weight: bold;
    color: #5B7A9C;
    letter-spacing: 1.54px;
    padding-bottom: 25px;
}

.main-footer__card ul {
    list-style: none;
    padding-left: 0;
}

.main-footer-card-list-links {
    padding-bottom: 15px;
}

.main-footer-card-list-links a {
    font-size: 16px;
    color: #AEBED2;
}

.main-footer-copyright__cta a:after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--orange);
    display: block;
}

.main-footer-copyright__cta a {
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    letter-spacing: 1.2px;
    font-weight: bold;
    display: inline-block;
    transition: all .3s ease-in-out;
}

.main-footer__copyright-wrapper {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 30px;
    margin-top: 30px;
}

.main-footer-copyright {
    font-size: 14px;
    color: #5B7A9C;
}

.main-footer-card-list-links a:hover {
    color: var(--orange);
    text-decoration: none;
}

.substack_cta a:hover {
    text-decoration: none;
    color: var(--orange);
}

.main-footer-copyright__cta a:hover {
    color: var(--orange);
    text-decoration: none;
}

.paid-benefits .row {
    margin-right: 0;
    margin-left: 0;
}


.hero-banner-popup {
    position: fixed;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.hero-banner-popup.is-visible {
  display: flex;
  opacity: 1;
}

.substack-form {
    background: #ffffff;
    padding: 25px;
    position: relative;
}

.substack-form-close i {
    font-size: 20px;
    cursor: pointer;
}

.substack-form-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* ============================ */

@media(max-width: 992px){
    .main-nav__mobile {
        display: block;
    }

    .main-nav__desktop {
        display: none;
    }

    .hero-banner-scroll {
        display: none;
    }

    .hero-banner__title h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-banner__description p {
        font-size: 18px;
    }

    .hero-banner__title h1 {
        padding-bottom: 15px;
    }

    .hero-banner__cta-wrapper {
        padding-top: 20px;
    }

    .hero-banner__eyebrow {
        padding-bottom: 15px;
    }

    .hero-banner__cta-wrapper {
        flex-direction: column;
    }

    .hero-banner__cta-wrapper a {
        width: fit-content;
    }

    .hero-banner__cta-wrapper a {
        font-size: 12px;
    }

    .main-nav__mobile-logo img {
        max-width: 120px;
    }

    .hero-banner {
        height: calc(100vh + 200px);
        align-items: end;
        padding-bottom: 50px;
    }

    .video-wrapper {
        min-height: 300px;
    }

    .substack__cards-wrapper {
        flex-direction: column;
    }

    .substack__card {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 3px solid rgba(11, 18, 32, 0.14);
    }

    .substack__card:last-child {
        border-bottom: none;
    }

    .substack__card-cta {
        padding-top: 30px;
    }

    .substack {
        padding: 50px 0;
    }

    .substack__title {
        font-size: 48px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .hero-banner__content {
        max-width: 100%;
    }

    .mission-video__right {
        max-width: 100%;
    }

    .subscribe-banner__title {
        font-size: 60px;
    }

    .subscribe-banner__desc {
        font-size: 19px;
    }

    .subscribe-banner {
        padding: 40px 0;
    }

    .paid-benefits__paid-card:nth-child(2) {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 25px;
    }

    .paid-benefits__paid-card:nth-child(3) {
        padding: 0;
    }

    .paid-benefits__featured {
        margin: 0 0 25px 0;
        flex-direction: column-reverse;
    }

    .paid-benefits__title {
        font-size: 60px;
    }

    .paid-benefits__desc {
        font-size: 36px;
        line-height: 1.2;
    }

    .paid-benefits__headings {
        padding-bottom: 25px;
    }

    .paid-benefits {
        padding: 50px 0;
    }

    .paid-featured-title {
        font-size: 32px;
        padding-top: 20px;
    }

    .paid-featured-desc p {
        font-size: 18px;
    }

    .paid-featured-subdesc {
        font-size: 16px;
    }

    .paid-benefits-paid-card__title {
        font-size: 32px;
    }

    .paid-benefits-paid-card__desc {
        font-size: 18px;
    }

    .paid-benefits-paid-card__content {
        padding: 15px;
    }

    .comparison-cards__container {
        flex-direction: column;
    }

    .comparison-cards__title {
        font-size: 60px;
    }

    .comparison-cards-free {
        margin-bottom: 50px;
    }

    .comparison-cards {
        padding: 50px 0;
    }

    .comparison-cards__card {
        padding: 25px !important;
    }

    .timeline-heading-container {
        flex-direction: column;
    }

    .timeline-heading__left {
        padding-bottom: 35px;
    }

    .timeline-heading__desc p {
        font-size: 18px;
        color: #AEBED2;
    }

    .the-books__card {
        width: 100%;
        padding: 20px;
        margin-bottom: 25px;
    }

    .the-books__card-image,
    .the-books__card-content {
        width: 100%;
    }

    .timeline-heading__title,
    .the-books-card-title {
        font-size: 48px;
    }

    .about-timeline {
        padding: 50px 0;
    }

    .timeline-container {
        padding: 30px 0 0 0;
    }

    .the-books__title {
        font-size: 60px;
        padding-bottom: 15px;
    }

    .the-books__desc {
        font-size: 18px;
    }

    .the-books {
        padding: 50px 0;
    }

    .substack-banner__title {
        font-size: 60px;
        padding: 15px 0;
    }

    .substack-banner__desc p {
        font-size: 18px;
    }

    .substack-banner__cta-wrapper a:first-child {
        margin-right: 20px;
    }

    
    .substack-banner {
        padding: 50px 0;
    }

    .main-footer__wrapper {
        flex-direction: column;
    }

    .main-footer__card-logo {
        padding-bottom: 50px;
    }

    .main-footer__copyright-wrapper {
        flex-direction: column;
    }

    .main-footer-copyright {
        padding-bottom: 25px;
    }

    .main-footer {
        padding: 40px 0 40px 0;
    }

    .mission-video__desc p,
    .substack__desc p,
    .subscribe-banner__desc {
        font-size: 18px;
    }

    .substack-form {
        width: 100%;
        display: flex;
    }

    .hero-banner-popup iframe {
        height: 550px;
    }

}