/* Self-hosted Poppins (same files/pattern as the main site, src/styles/tokens.css) —
   only the weights this page uses: 400 (body), 600 (buttons), 700 (headings/strong). */
@font-face { font-family: Poppins; font-weight: 400; font-style: normal; font-display: swap; src: url(/fonts/poppins-400.woff2) format("woff2"); }
@font-face { font-family: Poppins; font-weight: 600; font-style: normal; font-display: swap; src: url(/fonts/poppins-600.woff2) format("woff2"); }
@font-face { font-family: Poppins; font-weight: 700; font-style: normal; font-display: swap; src: url(/fonts/poppins-700.woff2) format("woff2"); }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-underline-position: under !important;
    text-decoration-thickness: .07em !important;
    text-underline-offset: .1em !important;
}

body {
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #010727;
    color: #fff;
    margin: 0;
}

.hidden {
    display: none !important;
}

.fireworks-wrapper {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.fireworks-wrapper canvas {
    display: block;
}

.feedback-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
}

.feedback-container::before {
    position: absolute;
    width: 2000px;
    height: 2000px;
    right: -800px;
    top: -700px;
    border-radius: 100%;
    background: radial-gradient(circle, rgb(31, 65, 225) 0%, rgba(1, 7, 39, 0) 50%);
    opacity: .5;
    content: "";
    z-index: 1;
}

.feedback-container::after {
    position: absolute;
    width: 2000px;
    height: 2000px;
    left: -800px;
    bottom: -1000px;
    border-radius: 100%;
    background: radial-gradient(circle, rgb(31, 65, 225) 0%, rgba(1, 7, 39, 0) 50%);
    opacity: .5;
    content: "";
    z-index: 1;
}

.site-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    z-index: 2;
}

.site-header .logo {
    max-width: 340px;
    height: auto;
}

.container {
    max-width: 1660px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

.feedback-content {
    position: relative;
    z-index: 3;
}

.love-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.love-header .stars {
    max-width: 300px;
    height: auto;
    margin-bottom: 24px;
}

.love-header .title {
    font-size: 48px;
    margin: 0;
}

.love-header .lead {
    font-size: 20px;
    margin: 0;
    max-width: 680px;
}

.love-header .lead strong {
    color: #FCB223;
}

.site-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.love-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 80px 0;
}

.love-grid .love-col {
    position: relative;
    border-radius: 32px 32px 0 0;
    padding: 40px 80px;
    min-height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.love-grid .love-col::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.love-grid .love-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    pointer-events: none;
    opacity: 0.6;
}

.love-grid .love-col .title {
    font-size: 32px;
    margin: 0 0 40px;
    text-align: center;
}

.review-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.review-wrapper .review-col{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.review-wrapper .review-col .brand-logo{
    flex: 0 1 auto;
    min-width: 0;
}

.review-wrapper .review-col .brand-logo img{
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 60px;
}

.review-wrapper .review-col .post-btn{
    display: inline-flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FCB223;
    text-decoration: none;
    transition: all ease-in-out .3s;
}
/* Hover-capable devices only, so taps on touch screens don't leave stuck hover states */
@media (hover: hover) {
    .review-wrapper .review-col .post-btn:hover{
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

.social-wrapper{
    display: grid;
    grid-template-columns: repeat(4, 64px);
    gap: 58px 64px;
}

.social-wrapper .social-col{
    width: 100%;
    display: flex;
    align-items: center;
}

.social-wrapper .social-col a{
    display: inline-block;
    position: relative;
}

.social-wrapper .social-col a .arrow{
    position: absolute;
    color: #fff;
    transform: rotate(40deg) translateY(10px);
    top: 0;
    right: -18px;
    opacity: 0;
    transition: all ease-in-out .3s;
}
.social-wrapper .social-col a img{
    display: block;
    max-width: 100%;
    height: auto;
    transition: all ease-in-out .3s;
}

/* Hover-capable devices only, so taps on touch screens don't leave stuck hover states */
@media (hover: hover) {
    .social-wrapper .social-col a:hover .arrow{
        opacity: 1;
        transform: rotate(40deg) translateY(0);
    }

    .social-wrapper .social-col a:hover img{
        opacity: 0.6;
    }
}


.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .copyright,
.site-footer .address {
    font-size: 14px;
    margin: 0;
}

@media screen and (max-width: 1280px) {
    .site-header .logo {
        max-width: 280px;
    }
}

@media screen and (max-width: 1024px) {
    .love-grid{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .love-header .stars{
        max-width: 240px;
    }

    .love-header .title{
        font-size: 38px;
    }

    .love-header .lead{
        font-size: 18px;
    }

    .love-grid .love-col{
        padding: 20px;
    }

    .love-grid .love-col .title{
        font-size: 24px;
    }

    .review-wrapper .review-col .brand-logo img{
        max-height: 30px;
    }

    .review-wrapper .review-col .post-btn{
        font-size: 12px;
        height: 34px;
        padding: 0 12px;
    }

    .social-wrapper {
        grid-template-columns: repeat(4, 34px);
        gap: 24px 34px;
    }
    .site-footer .container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}