/* =========================================
   ROOT
========================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f5;
    --card: #ffffff;

    --text: #181818;
    --text-dark: #101010;

    --muted: #6f6f6f;
    --muted-light: #909090;

    --line: #e5e5e5;
    --line-soft: #eeeeee;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff1e8;

    --container: 1240px;

    --transition: all 0.3s ease;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(100% - 40px, var(--container));
    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--orange);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;

    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a {
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--orange);
}

.nav-cta {
    background: var(--text-dark);
    color: #fff !important;

    padding: 12px 20px;
    border-radius: 5px;

    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--orange);
}

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    width: 40px;
    height: 40px;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--text);

    margin: 5px auto;
}

.mobile-menu {
    display: none;
}


/* =========================================
   HERO
========================================= */

.legal-hero {
    position: relative;

    padding: 125px 0 115px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(249, 115, 22, 0.09),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 60%,
            #fff8f3 100%
        );

    border-bottom: 1px solid var(--line);
}

.hero-content {
    max-width: 950px;
}

.eyebrow {
    display: inline-block;

    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.legal-hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(58px, 8vw, 105px);
    line-height: 0.95;

    letter-spacing: -5px;
    font-weight: 800;

    margin-bottom: 35px;
}

.legal-hero h1 span {
    color: var(--orange);
}

.hero-content > p {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.8;
}

.policy-meta {
    display: flex;
    gap: 55px;

    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid var(--line);

    max-width: 650px;
}

.policy-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-meta span {
    color: var(--muted-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.policy-meta strong {
    font-size: 14px;
}


/* =========================================
   INTRO
========================================= */

.intro-section {
    padding: 110px 0;

    background: var(--bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
}

.intro-label span {
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--orange);
}

.intro-content {
    max-width: 850px;
}

.intro-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 5vw, 62px);
    line-height: 1.05;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.intro-content h2 span {
    color: var(--orange);
}

.intro-content > p {
    color: var(--muted);

    font-size: 17px;

    margin-bottom: 18px;
}

.intro-note {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 25px;

    margin-top: 35px;

    background: var(--orange-light);

    border-left: 3px solid var(--orange);
}

.note-icon {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--orange);

    color: #fff;

    border-radius: 50%;

    font-weight: 800;
}

.intro-note strong {
    display: block;

    margin-bottom: 4px;

    font-size: 15px;
}

.intro-note p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================
   POLICY
========================================= */

.policy-section {
    padding: 100px 0;

    background: var(--bg-soft);
}

.policy-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 80px;
}

.policy-sidebar {
    position: relative;
}

.sidebar-title {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--muted-light);

    margin-bottom: 20px;
}

.policy-nav {
    position: sticky;
    top: 110px;

    display: flex;
    flex-direction: column;
}

.policy-nav a {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 13px 15px;

    border-left: 1px solid var(--line);

    color: var(--muted);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}

.policy-nav a span {
    width: 25px;

    color: var(--muted-light);

    font-size: 10px;
}

.policy-nav a:hover,
.policy-nav a.active {
    color: var(--text);
    border-left: 2px solid var(--orange);

    background: #fff;
}

.policy-nav a.active span {
    color: var(--orange);
}


/* =========================================
   POLICY BLOCK
========================================= */

.policy-content {
    min-width: 0;
}

.policy-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 30px;

    padding: 75px 0;

    border-bottom: 1px solid var(--line);
}

.policy-block:first-child {
    padding-top: 0;
}

.section-number {
    color: var(--orange);

    font-family: "Manrope", sans-serif;

    font-size: 14px;
    font-weight: 800;
}

.section-body {
    max-width: 800px;
}

.section-body h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.15;

    letter-spacing: -1.8px;

    margin-bottom: 22px;
}

.section-body > p {
    color: var(--muted);

    font-size: 16px;

    margin-bottom: 18px;
}


/* =========================================
   HIGHLIGHT CARD
========================================= */

.highlight-card {
    margin-top: 30px;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 6px;
}

.card-label {
    display: block;

    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.highlight-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 26px;

    margin-bottom: 8px;
}

.highlight-card p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================
   INFO CARDS
========================================= */

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-top: 30px;
}

.info-card {
    padding: 25px;

    background: #fff;

    border: 1px solid var(--line);

    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);

    border-color: rgba(249, 115, 22, 0.4);
}

.info-icon {
    display: block;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    margin-bottom: 20px;
}

.info-card strong {
    display: block;

    font-size: 16px;

    margin-bottom: 5px;
}

.info-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   DELIVERY GRID
========================================= */

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    margin-top: 30px;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    background: #fff;

    border: 1px solid var(--line);
}

.delivery-item span {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 10px;
    font-weight: 800;
}

.delivery-item strong {
    font-size: 14px;
}


/* =========================================
   PROCESS CARD
========================================= */

.process-card {
    margin-top: 35px;

    padding: 30px;

    background: #fff;

    border: 1px solid var(--line);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.process-step > span {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);

    color: #fff;

    font-size: 11px;
    font-weight: 800;
}

.process-step strong {
    display: block;

    margin-bottom: 4px;

    font-size: 15px;
}

.process-step p {
    color: var(--muted);

    font-size: 13px;
}

.process-line {
    width: 1px;
    height: 25px;

    margin: 4px 0 4px 17px;

    background: var(--line);
}


/* =========================================
   WARNING CARD
========================================= */

.warning-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-top: 20px;

    padding: 22px;

    background: var(--orange-light);

    border-left: 3px solid var(--orange);
}

.warning-icon {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--orange);

    color: #fff;

    font-weight: 800;
}

.warning-card strong {
    display: block;

    margin-bottom: 4px;

    font-size: 14px;
}

.warning-card p {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================
   RESPONSIBILITY CARD
========================================= */

.responsibility-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-top: 30px;

    padding: 25px;

    background: #fff;

    border: 1px solid var(--line);
}

.responsibility-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--orange-light);

    color: var(--orange);

    border-radius: 50%;

    font-weight: 800;
}

.responsibility-card strong {
    display: block;

    margin-bottom: 5px;
}

.responsibility-card p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================
   FUTURE PRODUCT
========================================= */

.future-card {
    margin-top: 30px;

    padding: 35px;

    background: var(--text-dark);

    color: #fff;

    position: relative;

    overflow: hidden;
}

.future-card::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.12);

    right: -80px;
    top: -80px;
}

.future-card .card-label {
    color: var(--orange);
}

.future-card h3 {
    position: relative;
    z-index: 1;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    max-width: 550px;

    margin-bottom: 12px;
}

.future-card p {
    position: relative;
    z-index: 1;

    max-width: 600px;

    color: #bdbdbd;

    font-size: 14px;
}


/* =========================================
   FINAL NOTE
========================================= */

.final-note {
    padding: 100px 0;

    background: #fff;
}

.final-note-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;

    align-items: end;

    padding-bottom: 70px;

    border-bottom: 1px solid var(--line);
}

.final-note h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(35px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.final-note h2 span {
    color: var(--orange);
}

.final-note-inner > p {
    color: var(--muted);

    font-size: 15px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 80px 0;

    background: var(--bg-soft);
}

.cta-box {
    padding: 90px 60px;

    background: var(--text-dark);

    text-align: center;

    position: relative;

    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.08);

    top: -250px;
    left: -100px;
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(249, 115, 22, 0.07);

    right: -150px;
    bottom: -200px;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p,
.cta-button {
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-family: "Manrope", sans-serif;

    color: #fff;

    font-size: clamp(40px, 6vw, 70px);

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 20px;
}

.cta-box h2 span {
    color: var(--orange);
}

.cta-box > p {
    max-width: 520px;

    margin: auto auto 30px;

    color: #a9a9a9;

    font-size: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    background: var(--orange);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    border-radius: 4px;

    transition: var(--transition);
}

.cta-button:hover {
    background: #fff;

    color: var(--text-dark);

    transform: translateY(-2px);
}

.cta-button span {
    font-size: 17px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    padding: 75px 0 25px;

    background: #111;

    color: #fff;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 55px;

    border-bottom: 1px solid #292929;
}

.footer-logo {
    font-family: "Manrope", sans-serif;

    font-size: 22px;
    font-weight: 800;
}

.footer-logo span {
    color: var(--orange);
}

.footer-brand p {
    max-width: 390px;

    margin-top: 18px;

    color: #8f8f8f;

    font-size: 13px;

    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column > span {
    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.footer-column a {
    color: #a5a5a5;

    font-size: 13px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 22px;

    color: #777;

    font-size: 11px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 20px;
    }

    .policy-layout {
        grid-template-columns: 220px 1fr;

        gap: 50px;
    }

    .intro-grid {
        gap: 50px;
    }

    .final-note-inner {
        gap: 50px;
    }
}


@media (max-width: 768px) {

    .container {
        width: min(100% - 30px, var(--container));
    }

    .nav-wrapper {
        height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;

        flex-direction: column;

        gap: 0;

        max-height: 0;

        overflow: hidden;

        background: #fff;

        border-top: 1px solid transparent;

        transition: max-height 0.35s ease,
                    border-color 0.35s ease;
    }

    .mobile-menu.open {
        max-height: 400px;

        border-color: var(--line);
    }

    .mobile-menu a {
        padding: 15px 20px;

        border-bottom: 1px solid var(--line-soft);

        font-size: 14px;
        font-weight: 600;
    }

    .mobile-menu a:hover {
        color: var(--orange);
    }

    .mobile-menu .mobile-cta {
        margin: 15px;

        padding: 13px;

        background: var(--text-dark);

        color: #fff;

        text-align: center;

        border: 0;
    }

    .legal-hero {
        padding: 90px 0 80px;
    }

    .legal-hero h1 {
        letter-spacing: -3px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .policy-meta {
        gap: 25px;
        flex-wrap: wrap;
    }

    .intro-section {
        padding: 75px 0;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .policy-section {
        padding: 75px 0;
    }

    .policy-layout {
        display: block;
    }

    .policy-sidebar {
        display: none;
    }

    .policy-block {
        grid-template-columns: 1fr;
        gap: 12px;

        padding: 55px 0;
    }

    .section-number {
        margin-bottom: 5px;
    }

    .info-grid,
    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .final-note {
        padding: 75px 0;
    }

    .final-note-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 70px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 500px) {

    .legal-hero h1 {
        font-size: 52px;
        letter-spacing: -2.5px;
    }

    .policy-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .intro-content h2 {
        letter-spacing: -2px;
    }

    .section-body h2 {
        letter-spacing: -1px;
    }

    .process-card {
        padding: 22px;
    }

    .future-card {
        padding: 28px 22px;
    }

    .cta-box h2 {
        letter-spacing: -2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}