html {
    scroll-behavior: smooth;
}

/* PICO OVERRIDES */
[data-theme="dark"] {
    /* General Pico */
    --pico-background-color: #0e0e0e;
    --pico-color: #e4e8ee;
    --pico-border-radius: 0.25rem;
    --pico-border-width: 1px;
    --pico-spacing: 1.5rem;

    /* Typography */
    --pico-typography-spacing-vertical: 1rem;
    --pico-line-height: 1.5;
    --pico-font-weight: 400;
    /* --pico-font-size: 95%; */

    /* Cards */
    --pico-card-background-color: #171718;
    --pico-card-border-color: #363a3f;
    --pico-card-box-shadow: 0 0 0 1px var(--pico-card-border-color), var(--pico-box-shadow);
    --pico-card-sectioning-background-color: #111720;
    --pico-card-border-width: var(--pico-border-width);

    /* Forms */
    --pico-form-element-background-color: rgb(35, 35, 38);
    --pico-form-element-selected-background-color: rgb(46, 46, 50);
    --pico-form-element-active-background-color: rgb(46, 46, 50);
    --pico-form-element-border-color: #363a3f;
    --pico-form-element-spacing-vertical: 0.6rem;
    --pico-form-element-spacing-horizontal: 0.85rem;

    /* Range */
    --pico-range-border-color: rgb(35, 35, 38);
    --pico-range-active-border-color: rgb(46, 46, 50);

    /* Switch */
    --pico-switch-background-color: rgb(35, 35, 38);
}

/* ------------------------- */

/* UTILS */
.sig-gradient {
    background: -webkit-linear-gradient(45deg, #338CF5, #4FD1C5);
    background: linear-gradient(45deg, #338CF5, #4FD1C5);
    /* optional for completeness */
    background-clip: text;
    /* <- standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.max-w-56 {
    max-width: 56rem;
}

.mb-0 {
    margin-bottom: 0px;
}

.mab-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.pad-left-0 {
    padding-left: 0px;
}

@media (max-width: 1100px) and (min-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.section-border {
    border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
}

.section-top-padding {
    padding-top: 5rem;
}

.section-bottom-padding {
    padding-bottom: 5rem;
}

.lst-none {
    list-style-type: none;
}

.h1-style {
    font-weight: 700;
    margin-top: 0;
    font-size: 2rem;
}

.section-heading {
    text-align: center;
    padding-top: 1rem;
}

.section-subheading {
    text-align: center;
}

.flex-1 {
    flex: 1;
}

.anchor-margin {
    scroll-margin-top: 80px;
}

.glow {
    filter: drop-shadow(0 0 50px rgba(58, 79, 151, 0.7));
    border-radius: var(--pico-border-radius)
}

.fh-section {
    min-height: 80vh;
}

/* --------------------------- */

/* HEADER */
.landing-header {
    padding-top: 0.3rem;
    padding-bottom: 2rem;
}

.site-name {
    font-size: 1.6rem;
    padding-bottom: 0px;
}

.site-logo {
    width: 1.8rem;
    height: 1.8rem;
}

.site-logo-link {
    all: unset;
    cursor: pointer;
}

.site-name-and-logo {
    display: flex;
    align-items: center;
    column-gap: 0.1rem;
}

/* ------------------- */

/* HERO SECTION */

.hero-text {
    font-size: 3.5rem;
}

.hero-button {
    margin-bottom: 2rem;
}

.image-glow {
    filter: drop-shadow(0 0 50px rgba(58, 79, 151, 0.7));
    border-radius: 50px;
}

@media (min-width: 767px) {
    .hero-image {
        width: 85%;
        display: block;
        margin: 0 auto;
    }
}

/* FLAG ROW */
.flag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.flag-row-1,
.flag-row-2 {
    display: contents;
}

.flag-row-flag {
    font-size: 2.5rem;
    margin: 0;
    flex: 0 0 auto;
}

.flag-section {
    padding: 2rem;
}

/* ------------------------- */


/* FEATURES */
.svg-bullets {
    height: 1.3rem;
    color: #77dd77;
}

/* ----------------------- */

/* PRICING SECTION */
.pricing-section-background {
    background-color: var(--pico-card-background-color);
}

.plan-article {
    background-color: var(--pico-background-color);
}

.yearly-plan {
    border: var(--pico-card-border-width) solid #338CF5;
    box-shadow: none;
}

.plan-duration {
    color: white;
    font-size: 1.3rem;
}

.plan-price {
    font-size: 2rem;
    color: white;
}

.plan-button {
    width: 100%;
}

.plan-features-ul {
    padding-left: 0px;
    padding-top: 1rem;
}

.plan-savings-chip {
    background-color: #182449;
    border-color: #338CF5;
    border-radius: 1rem;
    border-style: solid;
    border-width: 2px;
    padding: 0.3rem;
    font-size: 0.6rem;
    color: white;
}

/* ------------------------ */

/* FAQs */
.faqs-div {
    max-width: 75%;
    margin: auto;
}

/* ------------------------- */

/* FOOTER */
.footer-logo-and-name-div {
    display: flex;
    align-items: center;
    column-gap: 0.1rem;
    padding-bottom: 2rem;
    vertical-align: top;
}

.footer-div {
    display: flex;
    width: 100%;
}

.footer-ul {
    padding-left: 0px;
}

.footer-link {
    all: unset;
    cursor: pointer;
}

.footer-line {
    margin-top: 2rem;
}

.footer-copyright-and-social-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: gray;
    margin-bottom: 0px;
}

.footer-social-div {
    display: flex;
    column-gap: 1rem;
}

.footer-social-logo {
    height: 1rem;
}