:root {
    --navy: #020c22;
    --navy-2: #07162f;

    --text: #07132d;
    --text-2: #566984;
    --text-3: #7b8da8;

    --cyan: #08ccc9;
    --cyan-2: #08d9c9;
    --blue: #078fce;
    --blue-2: #008cdc;

    --green: #1dcc8f;
    --red: #ff525c;
    --gold: #efb72f;

    --border: #dbe6f3;
    --border-soft: #e8eff7;

    --chip: #f5f8fd;
    --panel: #ffffff;

    --gradient:
        linear-gradient(
            100deg,
            #09d1c5 0%,
            #09caca 45%,
            #078fd1 100%
        );

    --shadow:
        0 4px 16px rgba(8, 28, 60, .045);

    --radius: 16px;
}


/* ------------------------------------------------------------------------- */
/* RESET */
/* ------------------------------------------------------------------------- */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    min-width: 320px;

    background: #fff;

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 14px;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


/* ------------------------------------------------------------------------- */
/* HEADER */
/* ------------------------------------------------------------------------- */

.site-header {
    height: 60px;

    background:
        linear-gradient(
            90deg,
            #01091c 0%,
            #020d23 55%,
            #01091b 100%
        );

    color: #fff;

    position: relative;
    z-index: 20;
}


.header-inner {
    width: min(100%, 1664px);
    height: 60px;

    margin: 0 auto;

    padding: 0 50px;

    display: grid;
    grid-template-columns:
        330px
        1fr
        330px;

    align-items: center;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    width: max-content;
}


.brand img {
    width: 56px;
    height: 28px;

    object-fit: contain;
}


.brand-word {
    color: white;

    font-size: 21px;
    line-height: 1;

    font-weight: 400;

    letter-spacing: .24em;
}


.brand-word span {
    color: var(--cyan);
}


.main-nav {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 40px;
}


.main-nav a {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;

    font-size: 13px;
    font-weight: 500;

    color: rgba(255,255,255,.92);
}


.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 10px;

    height: 2px;

    border-radius: 100px;

    background: var(--cyan);
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 16px;
}


.search-button {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border: 0;
    background: transparent;

    color: white;
}


.search-button svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.7;
}


.button {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 6px;

    font-weight: 600;
}


.button-login {
    min-width: 112px;

    border: 1px solid #243653;

    background: rgba(4,16,40,.65);

    color: white;
}


.button-primary {
    color: white;

    border: 0;

    background: var(--gradient);

    box-shadow:
        0 4px 12px rgba(0,158,210,.15);
}


.header-signup {
    min-width: 138px;
}


/* ------------------------------------------------------------------------- */
/* HERO */
/* ------------------------------------------------------------------------- */

main {
    width: min(100%, 1664px);

    margin: 0 auto;

    padding:
        28px
        50px
        32px;
}


.hero {
    min-height: 280px;

    display: grid;
    grid-template-columns:
        minmax(520px, .92fr)
        minmax(650px, 1.08fr);

    align-items: center;

    gap: 48px;
}


.hero-copy {
    align-self: center;

    padding-bottom: 6px;
}


.eyebrow {
    margin-bottom: 13px;

    display: flex;
    align-items: center;

    gap: 6px;

    color: #08a8d6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .16em;
}


.eyebrow-symbol {
    color: var(--cyan);

    font-size: 15px;
}


.hero h1 {
    margin: 0;

    color: #040c1e;

    font-size: clamp(46px, 3.25vw, 58px);
    line-height: .99;

    letter-spacing: -.045em;

    font-weight: 750;
}


.hero h1 span {
    display: block;

    margin-top: 9px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #12cdbd 0%,
            #09c2cf 50%,
            #098ed0 100%
        );

    -webkit-background-clip: text;
    background-clip: text;
}


.hero-description {
    margin:
        18px
        0
        0;

    color: #596983;

    font-size: 15.5px;
    line-height: 1.52;

    letter-spacing: -.005em;
}


.hero-description strong {
    color: #44536e;
}


.hero-actions {
    margin-top: 18px;

    display: flex;

    gap: 20px;
}


.hero-primary {
    min-width: 160px;
}


.button-outline {
    min-width: 205px;

    color: #087cc0;

    border: 1px solid #9ad8f0;

    background: white;
}


.mini-network-icon {
    margin-right: 8px;

    font-size: 17px;
}


/* ------------------------------------------------------------------------- */
/* FREQUENCY CARD */
/* ------------------------------------------------------------------------- */

.frequency-card {
    min-height: 284px;

    border:
        1px solid
        var(--border);

    border-radius: 20px;

    display: grid;
    grid-template-columns:
        36%
        64%;

    overflow: hidden;

    box-shadow:
        0 2px 13px rgba(16,44,80,.02);

    background: white;
}


.frequency-left {
    padding:
        22px
        22px
        18px;

    border-right:
        1px solid
        var(--border-soft);
}


.section-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 16px;

    margin-bottom: 14px;

    font-size: 11px;
}


.section-label-row a {
    color: #06a4d1;

    font-size: 10px;
}


.interest-badges {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}


.interest-badges span {
    padding:
        6px
        15px;

    border:
        1px solid
        #cfe0f3;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #f7faff,
            #f0f5fc
        );

    color: #365277;

    font-size: 10px;
}


.add-interest {
    margin-top: 10px;

    min-height: 26px;

    padding: 0 12px;

    border:
        1px solid
        #d9e5f1;

    border-radius: 999px;

    background: white;

    color: #71829c;

    font-size: 10px;
}


.frequency-divider {
    height: 1px;

    margin:
        18px
        0
        16px;

    background: #e7edf5;
}


.people-title-row {
    margin-bottom: 12px;
}


.mini-people {
    display: flex;
    align-items: center;

    gap: 9px;
}


.mini-avatar,
.mini-more {
    width: 42px;
    height: 42px;

    border-radius: 50%;
}


.mini-avatar {
    position: relative;

    padding: 2px;

    border:
        1px solid
        #d8e2ef;
}


.mini-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.online::after {
    content: "";

    position: absolute;

    right: -1px;
    bottom: 1px;

    width: 8px;
    height: 8px;

    background: #15cf8b;

    border:
        2px solid
        white;

    border-radius: 50%;
}


.mini-more {
    display: grid;
    place-items: center;

    border:
        1px solid
        #d8e3f3;

    background: #f3f7fd;

    color: #22334f;

    font-weight: 700;

    font-size: 14px;
}


/* ------------------------------------------------------------------------- */
/* NETWORK */
/* ------------------------------------------------------------------------- */

.frequency-network {
    position: relative;

    min-height: 282px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 52% 51%,
            rgba(13,209,212,.07),
            rgba(255,255,255,0) 39%
        ),
        radial-gradient(
            circle,
            rgba(20,67,108,.055) 1px,
            transparent 1px
        );

    background-size:
        auto,
        8px 8px;
}


.network-title {
    position: absolute;

    top: 21px;
    left: 52px;

    z-index: 5;

    font-size: 11px;
}


.network-lines {
    position: absolute;

    inset:
        24px
        18px
        5px
        18px;

    width: calc(100% - 36px);
    height: calc(100% - 29px);

    overflow: visible;
}


.network-lines line {
    stroke: #15c7d3;
    stroke-width: 1.3;

    opacity: .95;
}


.network-center {
    position: absolute;

    left: 49%;
    top: 51%;

    width: 67px;
    height: 67px;

    transform:
        translate(-50%,-50%);

    display: grid;
    place-items: center;

    z-index: 4;

    border:
        3px solid
        #04c7d1;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            #102a45,
            #020b1c 75%
        );

    box-shadow:
        0 7px 18px
        rgba(0,118,182,.22);
}


.network-center img {
    width: 45px;
}


.network-person {
    position: absolute;

    z-index: 3;

    width: 49px;
    height: 49px;

    padding: 2px;

    border:
        2px solid
        #16c7d3;

    border-radius: 50%;

    background: white;

    box-shadow:
        0 3px 8px
        rgba(10,40,70,.15);
}


.network-person img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.node-a {
    left: 28%;
    top: 30%;
}


.node-b {
    left: 65%;
    top: 10%;
}


.node-c {
    left: 84%;
    top: 35%;
}


.node-d {
    left: 70%;
    top: 66%;
}


.node-e {
    left: 17%;
    top: 67%;
}


/* ------------------------------------------------------------------------- */
/* INTEREST STRIP */
/* ------------------------------------------------------------------------- */

.interest-strip {
    min-height: 74px;

    margin-top: 2px;

    padding:
        12px
        20px;

    border:
        1px solid
        var(--border-soft);

    border-radius: 14px;

    display: flex;
    align-items: center;

    gap: 28px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fefeff
        );
}


.strip-heading {
    flex: 0 0 150px;

    font-size: 13px;
}


.strip-scroller {
    flex: 1;

    display: grid;
    grid-template-columns:
        repeat(10, minmax(90px, 1fr))
        minmax(90px, 1fr);

    gap: 10px;
}


.interest-item {
    min-width: 0;
    height: 44px;

    padding:
        0
        12px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border:
        1px solid
        #e5ebf3;

    border-radius: 10px;

    box-shadow:
        0 3px 7px rgba(15,43,80,.045);

    background: white;

    color: #17233c;

    font-size: 10px;
    font-weight: 600;
}


.interest-icon,
.interest-grid-icon {
    color: #318cc7;

    font-size: 21px;

    line-height: 1;
}


/* ------------------------------------------------------------------------- */
/* MAIN GRID */
/* ------------------------------------------------------------------------- */

.content-grid {
    margin-top: 15px;

    display: grid;

    grid-template-columns:
        2.55fr
        1.27fr
        1.48fr
        1.15fr;

    gap: 16px;
}


.panel-heading {
    min-height: 28px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 16px;
}


.panel-heading h2 {
    margin: 0;

    font-size: 13px;
    font-weight: 700;
}


.panel-heading > a {
    color: #079bd0;

    font-size: 10px;
}


.heading-icon {
    color: #08bfc8;

    margin-right: 6px;

    font-size: 16px;
}


/* ------------------------------------------------------------------------- */
/* ROOMS */
/* ------------------------------------------------------------------------- */

.room-cards {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0,1fr));

    gap: 10px;
}


.room-card {
    position: relative;

    min-width: 0;
    height: 227px;

    overflow: hidden;

    border-radius: 11px;

    background:
        var(--room-image)
        center /
        cover
        no-repeat;

    color: white;

    box-shadow:
        0 2px 8px
        rgba(0,0,0,.08);
}


.room-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(1,9,17,.36) 0%,
            rgba(2,8,13,.72) 67%,
            rgba(0,4,9,.92) 100%
        );
}


.room-content {
    position: relative;

    z-index: 2;

    height: 100%;

    padding:
        15px
        14px;
}


.room-category {
    margin-bottom: 18px;

    color: #10d8d2;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .08em;
}


.room-chat-icon {
    position: absolute;

    right: 13px;
    top: 12px;

    color: white;

    font-size: 19px;
}


.room-card h3 {
    margin:
        0
        0
        10px;

    font-size: 15px;
    line-height: 1.1;
}


.room-members {
    margin-bottom: 22px;

    font-size: 10px;
}


.room-card p {
    margin: 0;

    min-height: 55px;

    font-size: 10px;
    line-height: 1.62;

    color:
        rgba(
            255,
            255,
            255,
            .93
        );
}


.room-bottom {
    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 14px;
}


.room-avatars {
    display: flex;
    align-items: center;
}


.room-avatars span {
    width: 29px;
    height: 29px;

    margin-right: -6px;

    padding: 2px;

    border:
        1px solid
        rgba(255,255,255,.75);

    border-radius: 50%;

    background: #fff;
}


.room-avatars img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.room-avatars b {
    margin-left: 10px;

    font-size: 10px;
}


/* ------------------------------------------------------------------------- */
/* PEOPLE */
/* ------------------------------------------------------------------------- */

.suggested-panel {
    padding:
        0
        0
        0
        0;

    border-left:
        1px solid
        var(--border-soft);

    padding-left: 14px;
}


.suggested-list {
    margin-top: 7px;
}


.suggested-person {
    min-height: 73px;

    display: grid;

    grid-template-columns:
        54px
        1fr
        auto;

    align-items: center;

    gap: 8px;
}


.person-avatar {
    width: 48px;
    height: 48px;
}


.person-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}


.person-info {
    min-width: 0;
}


.person-info strong {
    display: block;

    margin-bottom: 4px;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 11px;
}


.verified {
    color: #0a9fdd;

    font-size: 9px;
}


.person-info small {
    display: block;

    color: #7a8da9;

    font-size: 9px;
}


.person-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 4px;

    margin-top: 5px;
}


.person-tags span {
    padding:
        2px
        7px;

    border:
        1px solid
        #d6e4f4;

    border-radius: 999px;

    color: #5f7494;

    font-size: 8px;
}


.connect-button {
    min-width: 63px;
    height: 28px;

    padding:
        0
        9px;

    border:
        1px solid
        #48cfdf;

    border-radius: 6px;

    background: white;

    color: #0997c4;

    font-size: 9px;
}


.connect-button.connected {
    border-color: #b6ead9;

    background: #eefbf7;

    color: #16a66f;
}


/* ------------------------------------------------------------------------- */
/* STORE */
/* ------------------------------------------------------------------------- */

.store-panel {
    border-left:
        1px solid
        var(--border-soft);

    padding-left: 14px;
}


.product-grid {
    display: grid;
    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 12px;

    margin-top: 7px;
}


.product-visual {
    height: 108px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    margin-bottom: 8px;

    border-radius: 4px;

    background:
        linear-gradient(
            135deg,
            #f8f5ef,
            #eaf3f6
        );
}


.product-visual img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.mug {
    position: relative;

    width: 70px;
    height: 62px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius:
        4px
        4px
        11px
        11px;

    background:
        linear-gradient(
            145deg,
            #121820,
            #010204
        );

    box-shadow:
        0 8px 15px
        rgba(0,0,0,.23);

    color: white;
}


.mug::after {
    content: "";

    position: absolute;

    right: -19px;
    top: 14px;

    width: 26px;
    height: 30px;

    border:
        7px solid
        #090e13;

    border-left: 0;

    border-radius:
        0
        18px
        18px
        0;
}


.mug-logo {
    color: #13d7d1;

    font-size: 26px;
    line-height: 1;
}


.mug small {
    margin-top: 3px;

    color: white;

    font-size: 6px;

    letter-spacing: .16em;
}


.mini-product > strong {
    display: block;

    font-size: 10px;
}


.mini-product > small {
    display: block;

    margin-top: 3px;

    color: #778aa7;

    font-size: 9px;
}


.product-type {
    display: block;

    margin-top: 7px;

    color: #6381a9;

    font-size: 8px;
}


.product-price-row {
    margin-top: 5px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.product-price-row b {
    color: #078ecf;

    font-size: 10px;
}


.product-price-row button {
    width: 24px;
    height: 24px;

    border:
        1px solid
        #8bd8eb;

    border-radius: 5px;

    background: white;

    color: #149bd1;
}


.store-dots,
.testimonial-dots {
    display: flex;
    justify-content: center;

    gap: 4px;

    margin-top: 8px;
}


.store-dots span,
.testimonial-dots span {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #d2dae6;
}


.store-dots span.active,
.testimonial-dots span.active {
    background: #0a9bd4;
}


/* ------------------------------------------------------------------------- */
/* PREMIUM */
/* ------------------------------------------------------------------------- */

.premium-panel {
    padding:
        17px
        17px
        13px;

    border:
        1px solid
        var(--border-soft);

    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fbfcfe
        );
}


.premium-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 8px;
}


.premium-title-row h2 {
    margin: 0;

    font-size: 14px;
}


.premium-badge {
    padding:
        3px
        7px;

    border:
        1px solid
        #f0bc2f;

    border-radius: 999px;

    color: #dda400;

    font-size: 7px;

    letter-spacing: .08em;
}


.premium-panel > p {
    margin:
        6px
        0
        14px;

    color: #536682;

    font-size: 10px;
}


.premium-panel ul {
    padding: 0;
    margin: 0;

    list-style: none;
}


.premium-panel li {
    display: flex;
    align-items: center;

    gap: 9px;

    min-height: 29px;

    color: #536783;

    font-size: 9.5px;
}


.premium-panel li span {
    width: 17px;

    color: #1787c6;

    font-size: 15px;
}


.premium-button {
    width: 100%;
    min-height: 38px;

    margin-top: 12px;

    font-size: 11px;
}


.benefits-link {
    margin-top: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    color: #137cae;

    font-size: 10px;
}


/* ------------------------------------------------------------------------- */
/* SOCIAL PROOF */
/* ------------------------------------------------------------------------- */

.social-proof {
    min-height: 132px;

    margin-top: 18px;

    padding:
        17px
        28px;

    border:
        1px solid
        var(--border-soft);

    border-radius: 14px;

    display: grid;

    grid-template-columns:
        .86fr
        1px
        1.14fr;

    align-items: stretch;

    background:
        linear-gradient(
            180deg,
            #fff,
            #fdfefe
        );
}


.stats {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    align-items: center;
}


.stat {
    display: flex;
    align-items: center;

    gap: 10px;

    padding-right: 13px;
}


.stat-icon {
    color: #08c8cc;

    font-size: 28px;
}


.stat strong {
    display: block;

    color: #07132b;

    font-size: 18px;
    line-height: 1;
}


.stat span {
    display: block;

    margin-top: 9px;

    color: #667b99;

    font-size: 9px;
}


.proof-divider {
    width: 1px;

    background: #e5ecf5;
}


.testimonials {
    position: relative;

    padding-left: 24px;
}


.testimonials h2 {
    margin:
        0
        0
        13px;

    font-size: 12px;
}


.testimonial-list {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 30px;
}


.testimonial {
    display: grid;

    grid-template-columns:
        42px
        1fr;

    gap: 10px;
}


.testimonial img {
    width: 42px;
    height: 42px;

    object-fit: cover;

    border-radius: 50%;
}


.testimonial p {
    margin: 0;

    color: #536783;

    font-size: 9px;
    line-height: 1.48;
}


.testimonial span {
    display: block;

    margin-top: 7px;

    color: #8c9bb0;

    font-size: 8px;
}


.testimonial-dots {
    margin-top: 10px;
}


/* ------------------------------------------------------------------------- */
/* RESPONSIVE */
/* ------------------------------------------------------------------------- */

@media (max-width: 1450px) {

    .header-inner {
        grid-template-columns:
            270px
            1fr
            290px;

        padding:
            0
            32px;
    }

    main {
        padding-left: 32px;
        padding-right: 32px;
    }

    .main-nav {
        gap: 28px;
    }

    .strip-scroller {
        overflow-x: auto;

        display: flex;
    }

    .interest-item {
        min-width: 105px;
    }

}


@media (max-width: 1180px) {

    .header-inner {
        grid-template-columns:
            auto
            1fr
            auto;
    }

    .main-nav {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .frequency-card {
        min-height: 300px;
    }

    .content-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .rooms-panel {
        grid-column:
            1 /
            -1;
    }

    .premium-panel {
        min-height: 100%;
    }

    .social-proof {
        grid-template-columns: 1fr;
    }

    .proof-divider {
        display: none;
    }

    .testimonials {
        padding:
            24px
            0
            0;
    }

}


@media (max-width: 760px) {

    .site-header {
        height: 64px;
    }

    .header-inner {
        height: 64px;

        padding:
            0
            18px;
    }

    .brand-word {
        font-size: 17px;
    }

    .brand img {
        width: 45px;
    }

    .button-login,
    .search-button {
        display: none;
    }

    .header-signup {
        min-width: auto;

        min-height: 37px;

        padding:
            0
            15px;

        font-size: 11px;
    }

    main {
        padding:
            25px
            18px
            25px;
    }

    .hero {
        min-height: auto;

        gap: 28px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 14px;
    }

    .desktop-break {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .frequency-card {
        grid-template-columns: 1fr;
    }

    .frequency-left {
        border-right: 0;
        border-bottom:
            1px solid
            var(--border-soft);
    }

    .frequency-network {
        min-height: 300px;
    }

    .interest-strip {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .strip-heading {
        flex: none;
    }

    .strip-scroller {
        width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .rooms-panel {
        grid-column: auto;
    }

    .room-cards {
        grid-template-columns: 1fr;
    }

    .room-card {
        height: 255px;
    }

    .suggested-panel,
    .store-panel {
        padding:
            15px
            0
            0;

        border-left: 0;
        border-top:
            1px solid
            var(--border-soft);
    }

    .premium-panel {
        margin-top: 4px;
    }

    .stats {
        grid-template-columns:
            1fr
            1fr;

        gap: 25px 15px;
    }

    .testimonial-list {
        grid-template-columns: 1fr;

        gap: 16px;
    }

}


@media (max-width: 430px) {

    .hero h1 {
        font-size: 36px;
    }

    .brand-word {
        letter-spacing: .14em;
    }

    .header-signup {
        padding:
            0
            11px;
    }

    .frequency-left {
        padding:
            19px
            16px;
    }

    .product-grid {
        gap: 7px;
    }

}
