:root {
    --background: #050505;
    --panel: #111111;
    --panel-soft: #171717;

    --gold: #dcbb6c;
    --gold-light: #f2db98;

    --text: #f7f3e8;
    --muted: #aaa38f;

    --border: rgba(220, 187, 108, .22);

    --max-width: 1180px;
}


/* ==========================================================================
   Base
   ========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);
    background: var(--background);

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

a {
    color: inherit;
}

img {
    max-width: 100%;
}


/* ==========================================================================
   Background
   ========================================================================== */

.site-background {
    position: fixed;
    inset: 0;

    z-index: -1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(220, 187, 108, .13),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 45%,
            rgba(220, 187, 108, .07),
            transparent 30%
        );
}


/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    display: flex;

    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    min-height: 96px;

    margin: 0 auto;

    align-items: center;
    justify-content: space-between;

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

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

    text-decoration: none;
}

.brand-logo {
    display: block;

    width: auto;
    height: 64px;

    object-fit: contain;
}

.header-shop-link {
    display: inline-flex;

    gap: 8px;

    align-items: center;

    color: var(--gold-light);

    font-size: .86rem;
    font-weight: 800;

    text-decoration: none;
}


/* ==========================================================================
   Main
   ========================================================================== */

main {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, .86fr);

    gap: clamp(42px, 7vw, 90px);

    min-height: auto;

    padding: 70px 0;

    align-items: center;
}


/* --------------------------------------------------------------------------
   Hero text
   -------------------------------------------------------------------------- */

.eyebrow {
    display: block;

    margin-bottom: 14px;

    color: var(--gold);

    font-size: .76rem;
    font-weight: 850;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
    margin: 0;

    letter-spacing: -.045em;
}

.hero h1 {
    max-width: 720px;

    font-size: clamp(
        3.5rem,
        7vw,
        7rem
    );

    line-height: .92;
}

.hero h1 span {
    display: block;

    color: var(--gold);
}

.hero-lead {
    max-width: 660px;

    margin: 30px 0 0;

    font-size: clamp(
        1.14rem,
        2vw,
        1.4rem
    );

    line-height: 1.55;
}

.hero-text {
    max-width: 660px;

    margin: 18px 0 0;

    color: var(--muted);

    line-height: 1.75;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 34px;
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.button {
    display: inline-flex;

    min-height: 52px;

    padding: 0 20px;

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

    gap: 10px;

    border-radius: 14px;

    font-weight: 800;

    text-align: center;
    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #0b0b0b;

    background:
        linear-gradient(
            180deg,
            var(--gold-light),
            var(--gold)
        );
}

.button-secondary {
    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, .035);
}


/* ==========================================================================
   Hero image
   ========================================================================== */

.hero-visual {
    position: relative;

    width: 100%;

    padding-bottom: 70px;
}

.hero-image-wrap {
    position: relative;

    width: 100%;

    min-height: 560px;

    overflow: hidden;

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

    background: var(--panel);

    box-shadow:
        0 30px 90px rgba(0, 0, 0, .48);
}

.hero-image {
    display: block;

    width: 100%;

    height: 560px;
    min-height: 560px;

    object-fit: cover;
    object-position: center;
}

.hero-image-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, .55)
        );
}


/* --------------------------------------------------------------------------
   Mobile-only hero message
   -------------------------------------------------------------------------- */

.mobile-hero-message {
    display: none;
}

/*
 * Old version retained as hidden in case it is still
 * present in the HTML.
 */
.mobile-hero-eyebrow {
    display: none;
}


/* ==========================================================================
   Construction card
   ========================================================================== */

.coming-soon-card {
    position: absolute;

    left: -34px;
    right: 34px;
    bottom: 0;

    z-index: 2;

    margin: 0;

    padding: 25px;

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

    background:
        rgba(17, 17, 17, .96);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .48);

    backdrop-filter: blur(12px);
}

.status-heading {
    display: flex;

    gap: 10px;

    align-items: center;

    color: var(--gold);

    font-size: .76rem;
    font-weight: 850;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.status-dot {
    position: relative;

    width: 9px;
    height: 9px;

    flex: 0 0 auto;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 0 6px rgba(220, 187, 108, .10),
        0 0 12px rgba(220, 187, 108, .45);

    animation:
        status-pulse 1.8s ease-in-out infinite;
}

.status-dot::after {
    content: "";

    position: absolute;
    inset: -6px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    opacity: 0;

    animation:
        status-ring 1.8s ease-out infinite;
}

@keyframes status-pulse {

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

    50% {
        transform: scale(1.25);
        opacity: .8;
    }
}

@keyframes status-ring {

    0% {
        transform: scale(.6);
        opacity: .7;
    }

    70%,
    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

.coming-soon-card h2 {
    margin: 10px 0;

    font-size: 1.9rem;
}

.coming-soon-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}

.dog-note {
    margin-top: 18px;

    padding-top: 16px;

    border-top:
        1px solid
        rgba(220, 187, 108, .14);

    color: var(--gold-light);

    font-size: .86rem;

    line-height: 1.5;
}


/* ==========================================================================
   Mission
   ========================================================================== */

.mission-section {
    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(0, 1.1fr);

    gap: 60px;

    padding: 100px 0;

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

.section-heading h2 {
    max-width: 560px;

    font-size: clamp(
        2.7rem,
        5vw,
        5rem
    );

    line-height: 1;
}

.mission-copy {
    max-width: 650px;
}

.mission-copy p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 1.05rem;

    line-height: 1.8;
}

.mission-copy blockquote {
    margin: 34px 0 0;

    padding:
        0
        0
        0
        22px;

    border-left:
        3px solid
        var(--gold);

    color: var(--text);

    font-size: clamp(
        1.25rem,
        2vw,
        1.6rem
    );

    font-weight: 750;

    line-height: 1.5;
}


/* ==========================================================================
   Link cards
   ========================================================================== */

.links-section {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 18px;

    padding:
        0
        0
        100px;
}

.link-card {
    display: grid;

    grid-template-columns:
        auto
        1fr;

    gap: 20px;

    padding: 30px;

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

    border-radius: 24px;

    background: var(--panel);
}

.link-icon {
    display: grid;

    width: 52px;
    height: 52px;

    place-items: center;

    border-radius: 16px;

    background:
        rgba(220, 187, 108, .11);

    font-size: 1.4rem;
}

.link-card h3 {
    margin: 0;

    font-size: 1.45rem;
}

.link-card p {
    margin: 10px 0 0;

    color: var(--muted);

    line-height: 1.6;
}

.link-card > a {
    grid-column: 2;

    width: fit-content;

    color: var(--gold-light);

    font-weight: 800;

    text-decoration: none;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    display: grid;

    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 30px 0 42px;

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

    align-items: center;

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

    color: var(--muted);

    font-size: .82rem;
}

.footer-logo {
    width: auto;
    height: 45px;

    object-fit: contain;

    justify-self: start;
}

.site-footer p {
    margin: 0;

    text-align: center;
}

.site-footer small {
    text-align: right;
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 900px) {

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

        min-height: 0;

        padding:
            68px
            0
            76px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        max-width: 720px;
    }

    .mission-section {
        grid-template-columns: 1fr;

        gap: 34px;

        padding: 80px 0;
    }

    .links-section {
        grid-template-columns: 1fr;

        padding-bottom: 80px;
    }
}

/* ==========================================================================
   Tablet construction card - 601px to 900px
   ========================================================================== */

@media (min-width: 601px) and (max-width: 900px) {

    .hero-visual {
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0;
    }

    .coming-soon-card {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: calc(100% - 80px);
        max-width: 480px;

        margin: -45px auto 0;

        padding: 22px;

        border-radius: 20px;
    }

    .coming-soon-card h2 {
        font-size: 1.65rem;
    }

    .coming-soon-card p {
        font-size: .9rem;
    }

    .dog-note {
        font-size: .8rem;
    }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 600px) {

    /* ----------------------------------------------------------------------
       Header
       ---------------------------------------------------------------------- */

    .site-header {
        width: calc(100% - 28px);

        min-height: 74px;
    }

    .brand-logo {
        height: 48px;

        max-width: 190px;
    }

    .header-shop-link {
        font-size: .76rem;
    }


    /* ----------------------------------------------------------------------
       Full-width mobile hero
       ---------------------------------------------------------------------- */

    main {
        width: 100%;
    }

    .hero {
        position: relative;

        display: flex;

        flex-direction: column;

        width: 100%;

        min-height: 0;

        gap: 0;

        padding:
            0
            0
            62px;
    }


    /* ----------------------------------------------------------------------
       Image
       ---------------------------------------------------------------------- */

    .hero-visual {
        order: 1;

        width: 100%;

        max-width: none;

        margin: 0;

        padding: 0;
    }

    .hero-image-wrap {
        width: 100%;

        min-height: 520px;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }

    .hero-image {
        width: 100%;

        height: 520px;
        min-height: 520px;

        object-fit: cover;
        object-position: center;
    }

    .hero-image-shade {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .05) 0%,
                rgba(0, 0, 0, .10) 35%,
                rgba(0, 0, 0, .78) 75%,
                #050505 100%
            );
    }


    /* ----------------------------------------------------------------------
       Fancy image message
       ---------------------------------------------------------------------- */

    .mobile-hero-message {
        position: absolute;

        left: 50%;
        bottom: 65px;

        z-index: 6;

        display: flex;

        gap: 10px;

        align-items: center;

        max-width:
            calc(100% - 60px);

        padding:
            10px
            14px;

        border:
            1px solid
            rgba(220, 187, 108, .4);

        border-radius: 14px;

        background:
            rgba(5, 5, 5, .72);

        backdrop-filter: blur(10px);

        box-shadow:
            0 10px 30px
            rgba(0, 0, 0, .35);

        transform:
            translateX(-50%);
    }

    .mobile-hero-message__sparkle {
        flex: 0 0 auto;

        color: var(--gold);

        font-size: 1rem;
    }

    .mobile-hero-message > span:last-child {
        color: var(--text);

        font-size: .72rem;
        font-weight: 700;

        line-height: 1.25;

        letter-spacing: .04em;

        text-transform: uppercase;
    }

    .mobile-hero-message strong {
        display: block;

        color: var(--gold-light);

        font-size: .9rem;
        font-weight: 850;
    }


    /* ----------------------------------------------------------------------
       Construction card
       ---------------------------------------------------------------------- */

    .coming-soon-card {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: calc(100% - 28px);

        margin:
            -34px
            auto
            0;

        padding: 20px;

        border-radius: 19px;
    }

    .coming-soon-card h2 {
        font-size: 1.55rem;
    }


    /* ----------------------------------------------------------------------
       Hero copy
       ---------------------------------------------------------------------- */

    .hero-copy {
        order: 2;

        position: relative;

        z-index: 3;

        width: calc(100% - 28px);

        max-width: none;

        margin: 0 auto;

        padding-top: 38px;
    }

    .hero-copy > .eyebrow {
        display: none;
    }

    .hero h1 {
        max-width: 100%;

        margin: 0;

        font-size: clamp(
            3rem,
            15vw,
            4.3rem
        );

        line-height: .92;
    }

    .hero-lead {
        margin-top: 24px;

        font-size: 1.05rem;

        line-height: 1.55;
    }

    .hero-text {
        margin-top: 16px;

        font-size: .93rem;

        line-height: 1.65;
    }

    .hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 28px;
    }

    .hero .button {
        width: 100%;

        min-height: 50px;
    }


    /* ----------------------------------------------------------------------
       Mission
       ---------------------------------------------------------------------- */

    .mission-section {
        gap: 26px;

        padding: 66px 14px;
    }

    .section-heading h2 {
        font-size: 2.65rem;
    }

    .mission-copy p {
        font-size: .95rem;

        line-height: 1.7;
    }

    .mission-copy blockquote {
        margin-top: 28px;

        font-size: 1.15rem;
    }


    /* ----------------------------------------------------------------------
       Link cards
       ---------------------------------------------------------------------- */

    .links-section {
        gap: 14px;

        padding:
            0
            14px
            66px;
    }

    .link-card {
        grid-template-columns: 1fr;

        gap: 14px;

        padding: 22px;

        border-radius: 20px;
    }

    .link-card > a {
        grid-column: 1;
    }


    /* ----------------------------------------------------------------------
       Footer
       ---------------------------------------------------------------------- */

    .site-footer {
        width: calc(100% - 28px);

        gap: 12px;

        padding:
            26px
            0
            34px;

        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-logo {
        height: 42px;

        justify-self: center;
    }

    .site-footer small {
        text-align: center;
    }
}


/* ==========================================================================
   Very small phones
   ========================================================================== */

@media (max-width: 390px) {

    .header-shop-link span {
        display: none;
    }

    .section-heading h2 {
        font-size: 2.35rem;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-page {
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact-intro {
    max-width: 760px;
    margin-bottom: 60px;
}

.contact-intro h1 {
    margin: 0;

    font-size: clamp(
        3.5rem,
        7vw,
        6.5rem
    );

    line-height: .95;

    letter-spacing: -.045em;
}

.contact-intro h1 span {
    display: block;

    color: var(--gold);
}

.contact-intro > p {
    max-width: 640px;

    margin: 25px 0 0;

    color: var(--muted);

    font-size: 1.05rem;

    line-height: 1.75;
}


/* --------------------------------------------------------------------------
   Contact layout
   -------------------------------------------------------------------------- */

.contact-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .75fr)
        minmax(420px, 1.25fr);

    gap: 50px;

    align-items: start;
}


/* --------------------------------------------------------------------------
   Contact information
   -------------------------------------------------------------------------- */

.contact-info {
    display: grid;

    gap: 18px;
}

.contact-info-card {
    display: grid;

    gap: 20px;

    padding: 28px;

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

    border-radius: 24px;

    background: var(--panel);
}

.contact-icon {
    display: grid;

    width: 58px;
    height: 58px;

    place-items: center;

    border-radius: 18px;

    background:
        rgba(220, 187, 108, .12);

    font-size: 1.5rem;
}

.contact-info-card h2 {
    margin: 0;

    font-size: 1.65rem;
}

.contact-info-card p {
    margin: 10px 0 0;

    color: var(--muted);

    line-height: 1.6;
}

.contact-note {
    padding: 20px;

    border:
        1px solid
        rgba(220, 187, 108, .15);

    border-radius: 18px;

    background:
        rgba(220, 187, 108, .05);
}

.contact-note strong {
    color: var(--gold-light);
}

.contact-note p {
    margin: 8px 0 0;

    color: var(--muted);

    font-size: .9rem;

    line-height: 1.6;
}


/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

.contact-form-card {
    padding: 32px;

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

    border-radius: 28px;

    background: var(--panel);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, .35);
}

.contact-form {
    display: grid;

    gap: 20px;
}

.contact-field {
    display: grid;

    gap: 8px;
}

.contact-field label {
    color: var(--gold-light);

    font-size: .82rem;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;

    padding: 13px 14px;

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

    border-radius: 13px;

    outline: none;

    color: var(--text);

    background:
        rgba(0, 0, 0, .42);

    font: inherit;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
    min-height: 50px;
}

.contact-field textarea {
    min-height: 170px;

    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(220, 187, 108, .10);
}

.contact-submit {
    width: 100%;

    border: 0;

    cursor: pointer;

    font: inherit;
}


/* --------------------------------------------------------------------------
   Errors / success
   -------------------------------------------------------------------------- */

.contact-errors {
    margin-bottom: 22px;

    padding: 16px 18px;

    border:
        1px solid
        rgba(220, 100, 100, .35);

    border-radius: 14px;

    background:
        rgba(170, 50, 50, .12);
}

.contact-errors ul {
    margin:
        10px
        0
        0;

    padding-left: 20px;
}

.contact-success {
    padding: 40px 20px;

    text-align: center;
}

.contact-success-icon {
    display: grid;

    width: 70px;
    height: 70px;

    margin:
        0
        auto
        20px;

    place-items: center;

    border-radius: 22px;

    background: var(--gold);

    font-size: 2rem;
}

.contact-success h2 {
    margin: 0;

    font-size: 2rem;
}

.contact-success p {
    max-width: 480px;

    margin:
        14px
        auto
        25px;

    color: var(--muted);

    line-height: 1.65;
}


/* --------------------------------------------------------------------------
   Spam field
   -------------------------------------------------------------------------- */

.contact-honeypot {
    position: absolute !important;

    left: -10000px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}


/* ==========================================================================
   Contact - Tablet
   ========================================================================== */

@media (max-width: 900px) {

    .contact-page {
        padding-top: 60px;
    }

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .contact-info {
        grid-template-columns:
            1fr
            1fr;
    }
}


/* ==========================================================================
   Contact - Mobile
   ========================================================================== */

@media (max-width: 600px) {

    .contact-page {
        width: calc(100% - 28px);

        margin: 0 auto;

        padding:
            45px
            0
            65px;
    }

    .contact-intro {
        margin-bottom: 35px;
    }

    .contact-intro h1 {
        font-size: clamp(
            3rem,
            14vw,
            4.2rem
        );
    }

    .contact-intro > p {
        font-size: .94rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 22px;

        border-radius: 20px;
    }

    .contact-form-card {
        padding: 20px;

        border-radius: 20px;
    }

    .contact-field input,
    .contact-field select {
        min-height: 48px;
    }

    .contact-submit {
        min-height: 52px;
    }
}

.header-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.header-links > a {
    color: var(--gold-light);
    font-size: .86rem;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 600px) {

    .header-links {
        gap: 12px;
    }

    .header-links > a {
        font-size: .72rem;
    }
}

.brand-picture {
    display: block;
}

.brand-picture img {
    display: block;
}

@media (max-width: 600px) {
    .brand-logo {
        height: 48px;
        max-width: 190px;
    }
}

@media (max-width: 375px) {
    .brand-logo {
        height: 42px;
        max-width: 70px;
    }
}


.header-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-links > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 8px 14px;

    border: 1px solid rgba(220, 187, 108, .45);
    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            rgba(220, 187, 108, .10),
            rgba(220, 187, 108, .035)
        );

    color: var(--gold-light);

    font-size: .78rem;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.03);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.header-links > a:hover {
    transform: translateY(-2px);

    border-color: var(--gold);

    background:
        rgba(220, 187, 108, .12);

    box-shadow:
        0 6px 18px rgba(220, 187, 108, .12);
}

.header-links .header-shop-link {
    color: #0b0b0b;

    border-color: var(--gold);

    background:
        linear-gradient(
            180deg,
            var(--gold-light),
            var(--gold)
        );
}

@media (max-width: 600px) {

    .header-links {
        gap: 6px;
    }

    .header-links > a {
        min-height: 34px;
        padding: 6px 10px;
        font-size: .68rem;
    }
}

/* =========================================================
   BARKBUDDY APP REGISTRATION CTA
   ========================================================= */

.bb-register-section {
  position: relative;
  padding: 110px 0;
}

.bb-register-section__container {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.bb-register-section__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 7vw, 95px);

  padding: clamp(48px, 7vw, 82px);

  overflow: hidden;

  border: 1px solid rgba(223, 188, 106, 0.42);
  border-radius: 38px;

  background:
    radial-gradient(
      circle at 88% 20%,
      rgba(223, 188, 106, 0.14),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(23, 23, 23, 0.97),
      rgba(7, 7, 7, 0.98)
    );

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.bb-register-section__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.bb-register-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: #f1d58d;

  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bb-register-section__eyebrow > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #dfbc6a;

  box-shadow:
    0 0 0 6px rgba(223, 188, 106, 0.12);
}

.bb-register-section__content h2 {
  max-width: 720px;

  margin: 0;

  color: #fffaf0;

  font-size: clamp(42px, 5vw, 68px);
  font-weight: 880;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.bb-register-section__content h2 span {
  display: block;

  color: transparent;

  background:
    linear-gradient(
      100deg,
      #b98c36,
      #f1d58d,
      #dfbc6a
    );

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

.bb-register-section__content > p {
  max-width: 680px;

  margin: 25px 0 0;

  color: rgba(255, 250, 240, 0.67);

  font-size: 17px;
  line-height: 1.8;
}

.bb-register-section__features {
  display: grid;
  gap: 5px;

  margin: 33px 0;
}

.bb-register-section__features > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;

  padding: 17px 0;

  border-bottom: 1px solid rgba(223, 188, 106, 0.14);
}

.bb-register-section__features > div > span {
  color: #dfbc6a;

  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.bb-register-section__features p {
  margin: 0;

  color: rgba(255, 250, 240, 0.55);

  font-size: 13px;
  line-height: 1.55;
}

.bb-register-section__features strong {
  display: block;

  margin-bottom: 4px;

  color: #fffaf0;

  font-size: 16px;
}

.bb-register-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 56px;

  padding: 0 28px;

  border: 1px solid #dfbc6a;
  border-radius: 999px;

  color: #111111;

  background:
    linear-gradient(
      135deg,
      #f1d58d,
      #dfbc6a
    );

  box-shadow:
    0 14px 34px rgba(223, 188, 106, 0.24);

  font-size: 14px;
  font-weight: 850;
  text-decoration: none;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.bb-register-section__button:hover,
.bb-register-section__button:focus-visible {
  color: #111111;

  background: #f1d58d;

  box-shadow:
    0 18px 42px rgba(223, 188, 106, 0.34);

  transform: translateY(-2px);
}


/* PHONE VISUAL */

.bb-register-section__visual {
  position: relative;

  display: grid;
  min-height: 570px;

  place-items: center;
}

.bb-register-section__glow {
  position: absolute;

  width: 90%;
  height: 75%;

  border-radius: 50%;

  background: rgba(223, 188, 106, 0.18);

  filter: blur(85px);
}

.bb-register-section__phone {
  position: relative;
  z-index: 2;

  width: min(315px, 82%);
  min-height: 550px;

  padding: 18px;

  overflow: hidden;

  border: 1px solid rgba(223, 188, 106, 0.62);
  border-radius: 46px;

  background:
    radial-gradient(
      circle at 50% 8%,
      rgba(223, 188, 106, 0.13),
      transparent 30%
    ),
    #080808;

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.48),
    inset 0 0 0 7px rgba(255, 255, 255, 0.025);

  transform: rotate(2deg);
}

.bb-register-section__phone-top {
  display: flex;
  justify-content: center;

  padding-top: 4px;
}

.bb-register-section__phone-top span {
  width: 80px;
  height: 7px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
}

.bb-register-section__app-logo {
  display: flex;
  justify-content: center;

  margin-top: 58px;
}

.bb-register-section__app-logo img {
  width: 190px;
  height: auto;
}

.bb-register-section__phone-content {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 48px 20px 20px;

  text-align: center;
}

.bb-register-section__phone-label {
  margin-bottom: 13px;

  color: #dfbc6a;

  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bb-register-section__phone-content strong {
  color: #fffaf0;

  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.bb-register-section__phone-content p {
  margin: 20px 0 27px;

  color: rgba(255, 250, 240, 0.55);

  font-size: 13px;
  line-height: 1.65;
}

.bb-register-section__phone-button {
  width: 100%;

  padding: 16px;

  border-radius: 999px;

  color: #111;

  background:
    linear-gradient(
      135deg,
      #f1d58d,
      #dfbc6a
    );

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

.bb-register-section__floating-card {
  position: absolute;
  z-index: 3;

  right: -18px;
  bottom: 45px;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 15px 17px;

  border: 1px solid rgba(223, 188, 106, 0.5);
  border-radius: 18px;

  color: #fffaf0;

  background: rgba(8, 8, 8, 0.9);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.38);

  backdrop-filter: blur(15px);
}

.bb-register-section__floating-card > span {
  display: grid;

  width: 42px;
  height: 42px;

  place-items: center;

  border-radius: 50%;

  background: rgba(223, 188, 106, 0.13);
}

.bb-register-section__floating-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bb-register-section__floating-card strong {
  font-size: 12px;
}

.bb-register-section__floating-card small {
  color: rgba(255, 250, 240, 0.55);
  font-size: 10px;
}


/* TABLET */

@media screen and (max-width: 1000px) {
  .bb-register-section__card {
    grid-template-columns: 1fr;
  }

  .bb-register-section__visual {
    width: min(620px, 100%);
    margin-inline: auto;
  }
}


/* MOBILE */

@media screen and (max-width: 700px) {
  .bb-register-section {
    padding: 78px 0;
  }

  .bb-register-section__container {
    width: min(100% - 24px, 1240px);
  }

  .bb-register-section__card {
    gap: 45px;

    padding: 38px 23px 46px;

    border-radius: 28px;
  }

  .bb-register-section__content h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .bb-register-section__content > p {
    font-size: 15px;
  }

  .bb-register-section__button {
    width: 100%;
  }

  .bb-register-section__visual {
    min-height: auto;

    padding-bottom: 65px;
  }

  .bb-register-section__phone {
    width: min(300px, 92%);
    min-height: 520px;

    transform: none;
  }

  .bb-register-section__floating-card {
    right: 0;
    bottom: 5px;
    left: 0;

    width: min(310px, 94%);
    margin-inline: auto;
  }
}

.bb-register-page {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: #070706;
}

@media screen and (max-width: 700px) {
    .bb-register-page {
        padding-top: 95px;
        padding-bottom: 50px;
    }
}