:root {
    --bg: #090909;
    --bg-soft: #101010;
    --card: #151515;
    --card-light: #1b1b1b;

    --text: #f5f1eb;
    --muted: #98938d;
    --muted-light: #bdb7af;

    --accent: #ff8a3d;
    --accent-light: #ffb06d;
    --accent-dark: #d85f1b;

    --border: rgba(255, 255, 255, 0.08);

    --radius: 24px;
    --radius-small: 14px;

    --max-width: 1240px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--bg);
    color: var(--text);

    font-family: "DM Sans", sans-serif;

    line-height: 1.5;

    overflow-x: hidden;
}


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


button,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


.site-shell {
    width: 100%;
    overflow: hidden;
}


/* ============================================================
   NAVIGATION
============================================================ */

.navbar {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    height: 90px;

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

    position: relative;
    z-index: 20;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 20px;
    font-weight: 700;

    letter-spacing: -0.8px;
}


.logo-mark {
    width: 34px;
    height: 34px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    background: var(--accent);

    color: #111;

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


.logo-accent {
    color: var(--accent);
}


.nav-links {
    display: flex;
    gap: 38px;

    color: var(--muted);

    font-size: 14px;
    font-weight: 500;
}


.nav-links a {
    transition: color 0.2s ease;
}


.nav-links a:hover {
    color: var(--text);
}


.nav-button {
    padding: 11px 17px;

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

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

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

    transition: all 0.2s ease;
}


.nav-button:hover {
    border-color: rgba(255, 138, 61, 0.5);
    color: var(--accent);
}


/* ============================================================
   HERO
============================================================ */

.hero {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    min-height: 680px;

    margin: 40px auto 0;

    display: grid;
    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 60px;

    position: relative;
}


.hero-content {
    position: relative;
    z-index: 2;
}


.eyebrow,
.section-label {
    color: var(--accent);

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

    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 25px;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow: 0 0 16px var(--accent);
}


.hero h1 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(58px, 7vw, 96px);

    line-height: 0.94;

    letter-spacing: -5px;

    max-width: 800px;
}


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


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

    margin-top: 32px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;
}


.hero-actions {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}


.button {
    min-height: 48px;

    padding: 0 20px;

    border-radius: 100px;

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

    gap: 12px;

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

    border: 1px solid transparent;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


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


.button-primary {
    background: var(--accent);
    color: #111;
}


.button-primary:hover {
    background: var(--accent-light);
}


.button-ghost {
    border-color: var(--border);
    color: var(--text);
}


.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.2);
}


.hero-stats {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 60px;
}


.hero-stats div:not(.stat-divider) {
    display: flex;
    flex-direction: column;
}


.hero-stats strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;
}


.hero-stats span {
    color: var(--muted);

    font-size: 11px;

    margin-top: 2px;
}


.stat-divider {
    width: 1px;
    height: 32px;

    background: var(--border);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.hero-visual {
    min-height: 540px;

    position: relative;

    display: grid;
    place-items: center;
}


.hero-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: var(--accent);

    filter: blur(150px);

    opacity: 0.15;
}


.hero-card-back {
    position: absolute;

    width: 360px;
    height: 460px;

    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 138, 61, 0.12),
            rgba(255, 255, 255, 0.02)
        );

    border: 1px solid rgba(255, 255, 255, 0.05);

    transform: rotate(7deg);
}


.hero-product-card {
    position: relative;

    width: min(360px, 85%);

    padding: 17px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #1c1c1c,
            #111
        );

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

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5);

    transform: rotate(-3deg);

    transition: transform 0.4s ease;
}


.hero-product-card:hover {
    transform: rotate(0deg) translateY(-5px);
}


.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.rank-badge {
    background: rgba(255, 138, 61, 0.12);

    color: var(--accent);

    border: 1px solid rgba(255, 138, 61, 0.2);

    border-radius: 100px;

    padding: 6px 10px;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}


.heart-button {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.05);

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

    color: var(--text);

    font-size: 18px;

    transition: all 0.2s ease;
}


.heart-button:hover {
    color: var(--accent);
    border-color: rgba(255, 138, 61, 0.4);
}


.hero-product-image {
    height: 285px;

    margin-top: 13px;

    border-radius: 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(255, 138, 61, 0.25),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #292929,
            #101010
        );

    display: grid;
    place-items: center;
}


.placeholder-product {
    width: 170px;
    height: 190px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #ff9c4b,
            #a83e0e
        );

    transform: rotate(-7deg);

    display: flex;
    flex-direction: column;

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

    text-align: center;

    color: #170b05;

    font-family: "Space Grotesk", sans-serif;

    font-size: 17px;
    font-weight: 700;

    line-height: 1;
    
    box-shadow:
        15px 25px 40px rgba(0, 0, 0, 0.4);
}


.placeholder-bowl {
    font-size: 45px;
    margin-bottom: 15px;
}


.hero-product-info {
    display: flex;
    justify-content: space-between;
    align-items: end;

    padding: 20px 5px 12px;
}


.product-category {
    color: var(--accent);

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

    letter-spacing: 1.5px;
}


.hero-product-info h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-top: 4px;
}


.rating-large {
    font-family: "Space Grotesk", sans-serif;

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


.rating-large span {
    color: var(--accent);
}


.rating-bar {
    height: 4px;

    margin: 0 5px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.07);

    overflow: hidden;
}


.rating-bar-fill {
    height: 100%;

    background: var(--accent);
}


.review-count {
    display: block;

    color: var(--muted);

    font-size: 10px;

    margin: 10px 5px 2px;
}


.floating-rating {
    position: absolute;

    right: 5px;
    bottom: 70px;

    padding: 12px 16px;

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

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

    backdrop-filter: blur(12px);

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

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);

    transform: rotate(4deg);
}


.floating-star {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    background: var(--accent);

    color: #111;

    border-radius: 9px;

    font-size: 15px;
}


.floating-rating div {
    display: flex;
    flex-direction: column;
}


.floating-rating strong {
    font-size: 12px;
}


.floating-rating span:not(.floating-star) {
    color: var(--muted);

    font-size: 9px;

    margin-top: 2px;
}


/* ============================================================
   SECTIONS
============================================================ */

.section {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 130px auto 0;
}


.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;

    margin-bottom: 45px;
}


.section-heading h2,
.review-content h2,
.stats-intro h2 {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 0.98;

    letter-spacing: -3px;

    margin-top: 13px;
}


.section-heading h2 span,
.review-content h2 span,
.stats-intro h2 span {
    color: var(--accent);
}


.section-heading > p {
    max-width: 310px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   RANKING
============================================================ */

.ranking-grid {
    display: grid;

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

    gap: 15px;
}


.ranking-card {
    position: relative;

    min-height: 390px;

    padding: 20px;

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #191919,
            #111
        );

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

    overflow: hidden;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}


.ranking-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 138, 61, 0.25);
}


.ranking-card.first {
    min-height: 440px;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(255, 138, 61, 0.12),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            #1b1b1b,
            #111
        );
}


.ranking-number {
    font-family: "Space Grotesk", sans-serif;

    color: rgba(255, 255, 255, 0.18);

    font-size: 44px;
    font-weight: 700;

    line-height: 1;
}


.ranking-image {
    height: 200px;

    margin: 5px 20px 15px;

    display: grid;
    place-items: center;

    border-radius: 20px;

    background:
        radial-gradient(
            circle,
            rgba(255, 138, 61, 0.14),
            transparent 65%
        );
}


.ranking-card.first .ranking-image {
    height: 235px;
}


.ranking-product-placeholder {
    width: 115px;
    height: 145px;

    display: grid;
    place-items: center;

    text-align: center;

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #ff9b4d,
            #b54b16
        );

    color: #1a0b04;

    font-family: "Space Grotesk", sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    transform: rotate(-6deg);

    box-shadow:
        15px 20px 35px rgba(0, 0, 0, 0.4);
}


.ranking-info {
    display: flex;
    align-items: end;
    justify-content: space-between;
}


.ranking-info h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 21px;

    margin-top: 5px;
}


.ranking-rating {
    font-family: "Space Grotesk", sans-serif;

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


.ranking-rating span {
    color: var(--accent);
}


.ranking-reviews {
    color: var(--muted);

    font-size: 10px;

    margin-top: 4px;
}


.ranking-card .section-label {
    font-size: 9px;
}


/* ============================================================
   PRODUCTS
============================================================ */

.products-heading {
    align-items: center;
}


.filter-buttons {
    display: flex;
    gap: 6px;

    flex-wrap: wrap;
}


.filter {
    padding: 9px 15px;

    border-radius: 100px;

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

    background: transparent;

    color: var(--muted);

    font-size: 11px;

    transition: all 0.2s ease;
}


.filter:hover,
.filter.active {
    color: #111;

    background: var(--accent);

    border-color: var(--accent);
}


.products-grid {
    display: grid;

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

    gap: 14px;
}


.product-card {
    padding: 12px;

    border-radius: 19px;

    background: var(--card);

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

    transition: all 0.25s ease;
}


.product-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(255, 138, 61, 0.25);
}


.product-image {
    height: 190px;

    border-radius: 14px;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 138, 61, 0.12),
            transparent 65%
        ),
        #101010;
}


.product-placeholder {
    width: 80px;
    height: 105px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    text-align: center;

    color: #170b05;

    background:
        linear-gradient(
            145deg,
            #ff9c4b,
            #a83e0e
        );

    font-family: "Space Grotesk", sans-serif;

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

    line-height: 1;

    transform: rotate(-5deg);
}


.product-details {
    padding: 16px 5px 5px;
}


.product-details h3 {
    font-family: "Space Grotesk", sans-serif;

    font-size: 16px;
}


.product-details .product-category {
    font-size: 8px;
}


.product-bottom {
    display: flex;

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

    margin-top: 12px;
}


.product-rating {
    color: var(--accent);

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


.product-rating span {
    color: var(--text);
}


.product-reviews {
    color: var(--muted);

    font-size: 9px;
}


/* ============================================================
   REVIEW SECTION
============================================================ */

.review-section {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 150px auto 0;

    padding: 70px;

    border-radius: 32px;

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns: 0.8fr 1fr;

    gap: 80px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0e0e0e
        );

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


.review-background-glow {
    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    left: -150px;

    border-radius: 50%;

    background: var(--accent);

    filter: blur(160px);

    opacity: 0.12;
}


.review-content {
    position: relative;
    z-index: 1;
}


.review-content > p {
    color: var(--muted);

    max-width: 340px;

    font-size: 14px;

    line-height: 1.7;

    margin-top: 25px;
}


.review-form-card {
    position: relative;
    z-index: 1;

    padding: 27px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.035);

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


.form-group {
    margin-bottom: 22px;
}


.form-group label,
.rating-field-header label {
    display: block;

    color: var(--muted-light);

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

    margin-bottom: 9px;
}


.form-group label span {
    color: var(--muted);

    font-size: 9px;

    margin-left: 5px;
}


.select-wrapper {
    position: relative;
}


.select-wrapper::after {
    content: "↓";

    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--accent);

    pointer-events: none;
}


select,
textarea {
    width: 100%;

    border-radius: 12px;

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

    background: #101010;

    color: var(--text);

    outline: none;

    transition: border-color 0.2s ease;
}


select {
    height: 48px;

    padding: 0 42px 0 14px;

    appearance: none;

    font-size: 12px;
}


textarea {
    min-height: 90px;

    resize: vertical;

    padding: 13px;

    font-size: 12px;
}


select:focus,
textarea:focus {
    border-color: rgba(255, 138, 61, 0.5);
}


.rating-field {
    margin-bottom: 20px;
}


.rating-field-header {
    display: flex;

    justify-content: space-between;
}


.rating-field-header label {
    margin: 0;
}


.rating-field-header strong {
    color: var(--accent);

    font-size: 11px;
}


.stars-input {
    display: flex;

    gap: 5px;
}


.stars-input button {
    padding: 0;

    border: none;

    background: transparent;

    color: #3b3b3b;

    font-size: 24px;

    line-height: 1;

    transition:
        color 0.15s ease,
        transform 0.15s ease;
}


.stars-input button:hover {
    color: var(--accent);

    transform: scale(1.1);
}


.stars-input button.active {
    color: var(--accent);
}


.submit-button {
    width: 100%;

    margin-top: 5px;

    border: none;
}


.form-message {
    min-height: 18px;

    margin-top: 12px;

    text-align: center;

    color: var(--accent);

    font-size: 11px;
}


/* ============================================================
   STATISTICS
============================================================ */

.stats-section {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 150px auto 0;

    padding-bottom: 130px;

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 80px;

    align-items: end;
}


.big-stats {
    display: grid;

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

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


.big-stat {
    padding: 28px 20px 0 0;

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


.big-stat:not(:first-child) {
    padding-left: 25px;
}


.big-stat:last-child {
    border-right: none;
}


.big-stat strong {
    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(38px, 5vw, 64px);

    letter-spacing: -3px;
}


.big-stat span {
    display: block;

    color: var(--muted);

    font-size: 10px;

    margin-top: 5px;
}


/* ============================================================
   FOOTER
============================================================ */

footer {
    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 25px 0 40px;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--muted);

    font-size: 10px;
}


.footer-logo {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text);

    font-family: "Space Grotesk", sans-serif;

    font-weight: 700;

    font-size: 15px;
}


.footer-logo .logo-mark {
    width: 25px;
    height: 25px;

    border-radius: 7px;

    font-size: 12px;
}


.footer-copy {
    color: #5d5954;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1000px) {

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

        padding-top: 50px;

        text-align: center;
    }


    .hero-content {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .hero-text {
        max-width: 600px;
    }


    .hero-visual {
        min-height: 520px;
    }


    .ranking-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .products-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


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

        gap: 45px;

        padding: 50px;
    }


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

        gap: 50px;
    }

}


@media (max-width: 700px) {

    .navbar {
        height: 75px;
    }


    .nav-links {
        display: none;
    }


    .nav-button {
        padding: 9px 13px;
    }


    .hero {
        width: min(
            calc(100% - 28px),
            var(--max-width)
        );

        margin-top: 25px;
    }


    .hero h1 {
        font-size: 57px;

        letter-spacing: -3.5px;
    }


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


    .hero-actions {
        width: 100%;

        flex-direction: column;
    }


    .hero-actions .button {
        width: 100%;
    }


    .hero-stats {
        margin-top: 45px;

        gap: 13px;
    }


    .hero-visual {
        min-height: 450px;
    }


    .hero-product-card {
        width: 290px;
    }


    .hero-product-image {
        height: 230px;
    }


    .floating-rating {
        right: 0;

        bottom: 40px;
    }


    .section,
    .review-section,
    .stats-section,
    footer {
        width: min(
            calc(100% - 28px),
            var(--max-width)
        );
    }


    .section {
        margin-top: 95px;
    }


    .section-heading {
        display: block;
    }


    .section-heading > p {
        margin-top: 20px;
    }


    .products-heading {
        display: block;
    }


    .filter-buttons {
        margin-top: 25px;
    }


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


    .ranking-card,
    .ranking-card.first {
        min-height: 390px;
    }


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

        gap: 9px;
    }


    .product-image {
        height: 145px;
    }


    .product-details h3 {
        font-size: 14px;
    }


    .review-section {
        margin-top: 100px;

        padding: 35px 20px;

        border-radius: 24px;
    }


    .review-form-card {
        padding: 20px 16px;
    }


    .stats-section {
        margin-top: 100px;

        padding-bottom: 80px;
    }


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


    .big-stat,
    .big-stat:not(:first-child) {
        padding: 20px 0;

        border-right: none;

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


    .big-stat:last-child {
        border-bottom: none;
    }


    footer {
        flex-wrap: wrap;

        gap: 15px;
    }


    footer p {
        order: 3;

        width: 100%;
    }

}
