/* ========== Base / tokens ========== */
:root {
    --brand-black: #000000;
    --brand-yellow: #FFDC1E;
    --text-light: #FFFFFF;

    /* Figma fixed widths for the header */
    --header-viewport: 1440px; /* outer width */
    --header-height: 188px; /* outer height */
    --inner-width: 1262px; /* inner frame */
    --logo-w: 402px;
    --logo-h: 110px;
    --menu-gap: 31px;
}

html, body {
    height: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* kill horizontal gutters but keep vertical overflow visible */
.section-signup {
    position: relative;
    overflow-x: hidden;     /* or clip (modern) */
    overflow-y: visible;    /* allow tall/wide decor to show */
}

@supports (overflow: clip) {
    .section-signup {
        overflow-x: clip;     /* preferred when supported */
    }
}

body {
    font-family: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    background: #000;
    color: #111;
}

.btn {
    width: 480px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    font: 400 16px / 150% "Roboto", system-ui, sans-serif;
    box-sizing: border-box;
    padding: 0;
}

.btn:hover,
.btn:focus{
    filter: brightness(0.97);
}

/* Desktop default: hide the mobile toggle */
.site-header .nav-toggle{
    display: none;
}

/* Simple page wrapper for regular content */
.page-wrap {
    max-width: var(--inner-width);
    margin-inline: auto;
    padding: 32px 16px;
}

/* Placeholder blocks so you can “see” sections */
.placeholder-box {
    background: #111;
    color: #fff;
    border-radius: 8px;
    padding: 48px;
    text-align: center;
}

.form-error {
    color: red;
}

/* ========== Header ========== */
.site-header {
    background: var(--brand-black);
    border-bottom: 1px solid #000; /* matches Figma */
    height: var(--header-height);
    display: grid;
    place-items: center; /* vertically center the inner frame */
}

/* Outer band with fixed 1440 width and 64px side padding from Figma */
.nav-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-inline: 64px; /* 0 64px in Figma  */
    box-sizing: border-box;
}

/* Inner frame: 1262 × 110, space-between, aligned to bottom */
.nav-inner {
    width: min(var(--inner-width), 100%);
    height: 110px; /* Figma: “Hug 110px” */
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

/* Brand block (402 × 110 in Figma) */
.brand {
    display: inline-flex;
    width: min(var(--logo-w), 45vw);
    height: var(--logo-h);
    align-items: center;
}

.brand img {
    height: 100%;
    width: auto;
    display: block;
}

/* Menu */
.main-menu ul {
    list-style: none;
    display: flex;
    gap: var(--menu-gap); /* 31px */
    margin: 0;
    padding: 0;
    align-items: flex-end;
}

.main-menu a {
    font-weight: 500; /* 500 Medium */
    font-size: 18px; /* 18px */
    line-height: 26px; /* 26px (identical to box height) */
    color: var(--text-light);
    text-decoration: none;
    display: inline-flex;
    height: 26px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-menu a:hover,
.main-menu a:focus {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-footer {
    background: #000;
    color: #fff;
    padding: 40px 64px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* keep items aligned inline */
    flex-wrap: wrap; /* allow wrapping on mobile */
    gap: 20px;
}

.footer-left p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 150%;
    margin: 0;
}

.footer-left .credits {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: white;
    margin-top: 4px;
    display: block;
}

.footer-left .credits > a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-menu ul {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
}

.footer-menu a:hover {
    text-decoration: underline;
}

/* CONTENT STYLES */
/* ===== PAGE 2: Hero (yellow) ===== */
.section-hero-yellow {
    isolation: isolate; /* per Figma */
    background: #FFDC1E;
    padding: 112px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    position: relative;
}

.hero-wrap {
    width: 100%;
    max-width: 1280px; /* container 1280 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* Text block */
.hero-content {
    width: 100%;
    max-width: 768px; /* content width */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    font-family: "Roboto", system-ui, sans-serif;
}

.hero-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-heading {
    margin: 0;
    width: 100%;
    font-weight: 900;
    font-size: 48px;
    line-height: 120%; /* ~58px */
    text-transform: uppercase;
    color: #000;
}

.hero-sub {
    margin: 15px 0;
    width: 100%;
    font-weight: 900;
    font-size: 24px;
    line-height: 150%; /* 36px */
    text-transform: uppercase;
    color: #000;
}

.hero-sub-min {
    margin: 0;
    width: 100%;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%; /* 36px */
    text-transform: uppercase;
    color: #000;
}

/* CTA */
.hero-actions {
    width: 480px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video placeholder 1280×738 with 20px radius */
.hero-video {
    width: 100%;
    max-width: 1280px;
}

.hero-frame {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== PAGE 2: How to enter (black) ===== */
.section-how-black {
    background: #000;
    padding: 64px 64px 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.how2-wrap {
    width: 100%;
    max-width: 1280px; /* container 1280 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.how2-heading {
    margin: 0;
    width: 100%;
    max-width: 768px;
    text-align: center;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 120%;
    color: #fff;
}

/* row of 3 columns */
.how2-row {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
}

.how2-col {
    flex: 1 1 0;
    max-width: 394.67px; /* Figma width per column */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* icon 48x48 in brand yellow */
.how2-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.how2-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.how2-icon [fill] {
    fill: #FFDC1E;
}

.how2-title {
    margin: 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
}

/* ===== PAGE 2: Yellow section with poster (desktop) ===== */
.section-poster-yellow {
    background: #FFDC1E;
    /* Figma frame uses side padding 64; add top space so the content breathes */
    padding: 96px 20px 0px; /* top, sides, bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19px; /* gap between text block and poster */
    isolation: isolate;
    position: relative;
}

/* 1280px inner plane */
.poster-wrap {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px; /* internal gap of the content block */
    z-index: 0;
}

/* 768px content column */
.poster-content {
    width: 100%;
    max-width: 768px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.poster-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* H1 */
.poster-heading {
    margin: 0;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000;
}

/* Sub */
.poster-sub {
    margin: 15px 0;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-transform: uppercase;
    color: #000;
    width: 80%;
}

.poster-sub-min {
    margin: 0;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%; /* 36px */
    text-transform: uppercase;
    color: #000;
}

/* CTA block – compact like Figma (480 × 48) */
.poster-actions {
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Poster image (964 × 1011 in Figma) */
.poster-figure {
    width: 100%;
    max-width: 964px;
    margin-bottom: 0;
}

.poster-figure img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Section: Înscrie bonul (Sign up / 9) ===== */
.section-signup {
    background: var(--brand-black);
    padding: 0 64px; /* Figma: 0px 64px */
}

.signup-wrap {
    max-width: 1280px; /* Figma content width plane */
    margin-inline: auto;
    min-height: auto; /* section height in Figma (optional) */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 110px; /* from “Content” (64 0 0) */
}

.signup-col {
    width: 480px; /* Figma column width */
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

/* Head */
.signup-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.signup-title {
    margin: 0;
    width: 100%;
    text-align: center;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    color: #fff;
    text-transform: uppercase;
}

.signup-sub {
    margin: 0;
    width: 100%;
    text-align: center;
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #fff;
}

/* Form */
.signup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px; /* Figma “Form” gap */
}

/* Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: "Roboto", system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
}

.form-input {
    height: 48px;
    padding: 12px;
    border: 1px solid #000;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    font: 400 16px/150% "Roboto", system-ui, sans-serif;
    color: #000;
}

.form-input::placeholder {
    color: rgba(0, 0, 0, .6);
}

/* Upload row (two 236×48 boxes in Figma) */
.upload-row {
    display: flex;
    gap: 8px;
}

.upload-btn {
    position: relative;
    width: 236px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    box-sizing: border-box;
    border: 1px solid #000;
    cursor: pointer;
    user-select: none;
    font: 400 16px/150% "Roboto", system-ui, sans-serif;
}

.upload-btn svg {
    flex: 0 0 24px;
}

.upload-btn input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-btn--light {
    background: #fff;
    color: rgba(0, 0, 0, .6);
}

.upload-btn--dark {
    background: #FFDC1E;
    color: #000;
}

/* Note under upload */
.upload-note {
    margin: 0;
    width: 100%;
    max-width: 455px; /* Figma text width */
    font: 400 13px/150% "Roboto", system-ui, sans-serif;
    color: #fff;
}

/* Submit */
.form-actions {
    width: 100%;
}

.btn-submit {
    width: 100%; /* 480 × 48 */
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid #000;
    background: #FFDC1E;
    color: #000;
    font: 400 16px/150% "Roboto", system-ui, sans-serif;
}

.btn-submit:hover {
    cursor: pointer;
    filter: brightness(0.9);
}

/* Decorative text image over black/yellow section */
.text-poster {
    position: absolute;
    top: -232px; /* adjust so it overlaps correctly */
    left: 50%;
    transform: translateX(-50%);
    width: 611px;
    height: auto;
    z-index: 6;
    pointer-events: none; /* avoid blocking clicks on form */
}

.upload-sub-message {
    color: white;
}

#form-messages {
    color: green;
    font-size: 22px;
}

.form-success{
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: #fff;
    padding: 10px 24px;
    border-radius: 2px;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideDown 0.4s ease-out, fadeOut 0.5s ease-in 6s forwards;
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}

.file-previews { margin-top: .5rem; display: grid; gap: .5rem; }
.file-chip{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border-radius:8px;background:#fff;border:1px solid #e5e5e5}
.file-chip img{width:56px;height:56px;object-fit:cover;border-radius:6px;flex:none}
.file-chip .meta{line-height:1.2}
.file-chip .name{
    font-weight:600;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-chip .size{font-size:.85em;opacity:.7}
.file-chip .remove{margin-left:auto;border:0;background:transparent;cursor:pointer;font-size:14px}

.upload-progress{position:relative;margin-top:.75rem;height:8px;background:#eee;border-radius:999px;overflow:hidden}
.upload-progress .bar{height:100%;width:0%;background:#ffdc1e;transition:width .2s}
.upload-progress .pct{position:absolute;top:100%;left:0;margin-top:.25rem;font-size:.85em}

.signup-form.is-locked { opacity: .7; pointer-events: none; }
.signup-form.is-locked .btn-submit { cursor: progress; }

@media only screen and (orientation: portrait) and (max-width: 540px),
only screen and (orientation: landscape) and (max-height: 540px) {
    .file-chip .name{
        max-width: 184px;
    }
}

/* ======================== =
   MOBILE NAV (portrait + landscape)
   ========================= */
@media (max-width: 480px),
(orientation: landscape) and (max-height: 500px),
(orientation: portrait) and (min-width: 600px) and (max-width: 1024px){

    :root{ --m-header-h: 106px; }

    /* Header size from your Figma specs */
    .site-header {
        background: #000;
        height: 66px;
        padding: 20px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    .nav-outer {
        width: 100%;
        padding: 0;
    }

    .nav-inner {
        width: 100%;
        max-width: 400px; /* 400 inner plane */
        height: 64px;
        padding: 0 12px 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo 201 × 54.44 */
    .brand {
        width: 201px;
        height: 54.44px;
        display: flex;
        align-items: center;
    }

    .brand img {
        height: 100%;
        width: auto;
        display: block;
    }

    /* Hamburger button (three lines → X) */
    .nav-toggle {
        -webkit-tap-highlight-color: transparent;
        appearance:none; border:0; background:transparent;
        width:48px; height:48px; position:relative; margin-left:auto;
        display: block !important;
    }

    .nav-toggle .bars,
    .nav-toggle .bars::before,
    .nav-toggle .bars::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 36px;
        height: 2px;
        background: #fff;
        transform: translate(-50%, -50%);
        transition: transform .25s ease, opacity .2s ease;
    }

    .nav-toggle .bars::before {
        transform: translate(-50%, -50%) translateY(-8px);
    }

    .nav-toggle .bars::after {
        transform: translate(-50%, -50%) translateY(8px);
    }

    /* Turn into X when menu is open */
    body.menu-open .nav-toggle .bars {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    body.menu-open .nav-toggle .bars::before {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    body.menu-open .nav-toggle .bars::after {
        opacity: 0;
    }

    /* Mobile menu container */
    .main-menu {
        position: fixed;
        top: var(--m-header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        padding: 32px 20px 24px;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 900;
        overflow: auto;
    }

    .main-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 31px;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
        text-align: left;
    }

    .main-menu li {
        width: 100%;
    }

    .main-menu a {
        display: inline-block;
        font: 500 18px/21px "Roboto", sans-serif;
        color: #fff;
        text-decoration: none;
        padding-left: 20px;
    }

    body.menu-open .main-menu {
        transform: translateX(0);
    }

    /* Lock page scroll while menu open */
    body.menu-open {
        overflow: hidden;
        touch-action: none;
        position: fixed;
        width: 100%;
    }
}

/* ===== PAGE 2 – FIRST YELLOW SECTION (mobile + landscape-short) ===== */
/* Portrait phones, plus short-height landscape phones */
@media (max-width: 480px), (max-height: 480px) and (orientation: landscape) {
    :root {
        --mw: 400px; /* inner plane from Figma */
    }

    #heroVideo {
        height: 627px !important;
    }

    .section-hero-yellow {
        background: #FFDC1E;
        padding: 43px 20px 35px; /* 43 / 20 / 35 */
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 80px; /* section gap */
        isolation: isolate;
    }

    .hero-wrap {
        width: 100%;
        max-width: var(--mw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    /* Content block */
    .hero-content {
        width: 100%;
        max-width: var(--mw);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .hero-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .hero-heading {
        margin: 0;
        width: 100%;
        font-family: "Roboto", system-ui, sans-serif;
        font-weight: 900;
        font-size: 36px; /* 36 / 120% */
        line-height: 120%;
        text-transform: uppercase;
        color: #000;
    }

    .hero-sub {
        margin: 0;
        width: 84%;
        font-family: "Roboto", system-ui, sans-serif;
        font-weight: 900;
        font-size: 24px; /* 24 / 150% */
        line-height: 150%;
        text-transform: uppercase;
        color: #000;
    }

    /* CTA – 400 × 48 */
    .hero-actions {
        width: 100%;
        max-width: var(--mw);
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }

    /* Poster / placeholder image – 400 × 627 with 20px radius */
    .hero-figure {
        width: 100%;
        max-width: var(--mw);
        border-radius: 20px;
        overflow: hidden; /* keeps corners rounded even if img overflows */
    }

    .hero-figure img {
        width: 100%;
        height: auto;
        display: block;
    }
}

@media (orientation: landscape)
and (max-height: 540px) {
    .section-hero-yellow {
        padding-top: 80px;
    }

    .hero-content {
        max-width: 80%;
    }

    #heroVideo {
        height: 90vh !important;
    }
}

/* ===== HOW TO ENTER (black section) – mobile + landscape ===== */
@media (max-width: 480px), (max-height: 480px) and (orientation: landscape) {
    .section-how-black {
        background: #000;
        padding: 64px 20px 112px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }

    .how2-wrap {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .how2-heading {
        margin: 0;
        width: 80%;
        max-width: 768px;
        text-align: center;
        font-family: "Roboto", system-ui, sans-serif;
        font-weight: 900;
        font-size: 48px; /* smaller for mobile */
        line-height: 120%;
        color: #fff;
    }

    /* Stack the 3 steps vertically */
    .how2-row {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .how2-col {
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

    .how2-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .how2-icon svg {
        width: 48px;
        height: 48px;
        display: block;
    }

    .how2-title {
        margin: 0;
        font-family: "Roboto", system-ui, sans-serif;
        font-weight: 700;
        font-size: 24px; /* slightly smaller than desktop 24px */
        line-height: 140%;
        text-transform: uppercase;
        color: #fff;
    }
}

@media (orientation: landscape)
and (max-height: 540px) {
    .how2-heading {
        width: 100%;
    }
}

/* =========================
   PAGE 2 – Yellow hero (mobile)
   Portrait ≤480px and small-height landscape
   ========================= */
@media (max-width: 480px),
(max-height: 480px) and (orientation: landscape) {
    .section-poster-yellow {
        padding: 116px 20px 0;
    }

    .poster-actions {
        width: 100%;
        max-width: var(--mw);
    }

    .poster-sub {
        width: 100%;
    }

    .poster-wrap {
        gap: 0;
    }

    .poster-figure {
        width: 140%;
    }

    .hero-wrap > *:nth-child(8) {
        margin-top: -50px; /* decreases only the first gap */
    }

    /* frame */
    .p2-hero {
        padding: 64px 20px 35px; /* more top air like Figma */
        background: #FFDC1E;
    }

    /* inner container */
    .p2-hero__wrap {
        max-width: 400px;
        margin: 0 auto;
        gap: 32px;
    }

    /* title block */
    .p2-hero__title {
        gap: 16px;
        text-align: center;
    }

    .p2-hero__heading {
        font-weight: 900;
        font-size: 36px; /* Figma mobile */
        line-height: 120%;
        margin: 0;
    }

    .p2-hero__sub {
        font-weight: 900;
        font-size: 24px;
        line-height: 150%;
        margin: 0;
    }

    /* actions row – make the button inset (not full width) */
    .p2-hero__actions {
        width: 360px; /* creates side spacing */
        height: 48px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* exact 48px-tall button */
    .p2-hero .hero-btn {
        width: 100%;
        height: 48px; /* fixed height */
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        /* visual spec */
        background: #fff;
        color: #000;
        border: 1px solid #000;

        /* 12px + 12px + 24px line-height = 48px total */
        padding: 12px 24px;
        font: 400 16px/24px "Roboto", system-ui, sans-serif;

        text-decoration: none;
    }

    /* be defensive: kill any inherited min-height/padding that could inflate the button */
    .p2-hero .hero-btn,
    .p2-hero .hero-btn * {
        min-height: 0;
    }
}

@media (orientation: landscape)
and (max-height: 540px) {
    .poster-figure img {
        width: 40%;
        margin: 0 auto;
    }
}

@media (orientation: landscape)
and (min-width: 900px)
and (min-height: 600px)
and (max-width: 1366px) {
    .poster-figure img {
        width: 60%;
        margin: 0 auto;
    }
}

/* =========================
   SIGNUP (Sign up / 9) – mobile
   ========================= */
@media (max-width: 480px),
(orientation: landscape) and (max-height: 500px) {
    .text-poster {
        top: -120px;
        width: 90%;
    }

    /* Section plane */
    .section-signup {
        background: var(--brand-black);
        padding: 0 20px 100px; /* Figma: 0px 20px */
    }

    /* Content frame (400 inner, centered) */
    .signup-wrap {
        width: 100%;
        max-width: 400px; /* Figma inner width */
        margin-inline: auto;
        min-height: auto; /* let content define height */
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 228px; /* Figma: (64 0 0) */
    }

    .signup-col {
        width: 100%;
        max-width: 400px; /* Figma: 400 */
        display: flex;
        flex-direction: column;
        gap: 32px; /* Figma: 32 */
        align-items: center;
    }

    /* ----- Header (H2 + sub) ----- */
    .signup-head {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px; /* Figma: 24 */
    }

    .signup-title {
        margin: 0;
        width: 100%;
        height: auto; /* no fixed 58px */
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-weight: 700;
        font-size: 48px;
        line-height: 120%;
        color: #ffffff;
        text-transform: uppercase;
    }

    .signup-sub {
        margin: 0;
        width: 100%;
        height: auto; /* no fixed 54px */
        text-align: center;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        color: #ffffff;
    }

    /* ----- Form ----- */
    .signup-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Figma centers groups */
        gap: 24px; /* Figma “Form” gap */
    }

    .form-group {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px; /* label → input */
    }

    .form-label {
        width: 100%;
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: #ffffff;
    }

    .form-input {
        width: 100%;
        height: 48px; /* Figma input height */
        padding: 12px;
        border: 1px solid #000;
        background: #fff;
        box-sizing: border-box;
        font: 400 16px/150% "Roboto", sans-serif;
        color: #000;
    }

    .form-input::placeholder {
        color: rgba(0, 0, 0, .6);
    }

    /* Upload row: two boxes 196×48 with 8px gap */
    .upload-row {
        display: flex;
        gap: 8px;
    }

    .upload-btn {
        position: relative;
        width: 196px; /* Figma half width */
        height: 48px;
        display: inline-flex;
        align-items: center;
        min-width: 0;
        gap: 12px;
        padding: 12px;
        box-sizing: border-box;
        border: 1px solid #000;
        cursor: pointer;
        user-select: none;
        font: 400 16px/150% "Roboto", sans-serif;
    }

    .upload-btn--light {
        background: #fff;
        color: rgba(0, 0, 0, .6);
    }

    .upload-btn--dark {
        background: #FFDC1E;
        color: #000;
        border-color: #FFDC1E;
    }

    .upload-btn input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .upload-note {
        margin: 0;
        width: 100%;
        max-width: 400px; /* keep within plane */
        font: 400 13px/150% "Roboto", sans-serif;
        color: #000;
    }

    /* Submit */
    .form-actions {
        width: 100%;
    }

    .btn-submit {
        width: 100%; /* 400 × 48 */
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        border: 1px solid #FFDC1E;
        background: #FFDC1E;
        color: #000;
        font: 400 16px/150% "Roboto", sans-serif;
    }
}

@media (orientation: landscape)
and (max-height: 540px) {
    .text-poster {
        top: -105px;
        width: 32%;
    }

    .signup-wrap {
        padding-top: 80px !important;
    }
}

@media (orientation: landscape)
and (min-width: 900px)
and (min-height: 600px)
and (max-width: 1366px) {
    .text-poster {
        top: -190px;
        width: 500px;
    }
}


/* ===== Optional: extra-tight landscape (very short viewports) ===== */
@media (orientation: landscape) and (max-height: 420px) {
    .signup-wrap {
        padding-top: 40px;
    }

    .signup-col {
        gap: 24px;
    }

    .signup-head {
        gap: 16px;
    }

    .signup-title {
        font-size: 40px;
    }

    /* slight downscale */
    .signup-sub {
        font-size: 16px;
    }

    /* Allow upload buttons to wrap if horizontal space is tight */
    .upload-row {
        flex-wrap: wrap;
    }

    .upload-btn {
        flex: 1 1 180px;
        min-width: 180px;
    }
}

/* =========================
   MOBILE FOOTER (phones)
   ========================= */
@media (max-width: 480px),
(orientation: landscape) and (max-height: 480px) {

    /* match the 87px black bar from Figma */
    .site-footer {
        background: #000;
        padding: 0; /* kill desktop padding */
        min-height: 87px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-inner {
        width: 100%;
        max-width: 90%; /* Figma artboard width */
        margin: 0 auto;
        padding: 12px 0; /* vertical spacing for the two lines */
        display: block; /* stop the desktop flex row */
        text-align: center;
        gap: 0;
    }

    .footer-left {
        width: 100%;
        padding: 0;
    }

    .footer-left p {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        color: #fff;
        margin: 0;
    }

    .footer-left .credits {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 14px; /* same size as the line above per Figma */
        line-height: 150%;
        color: #e6e6e6;
        display: block;
        margin-top: 4px;
    }

    /* Make the studio name bold like in Figma */
    .footer-left .credits a {
        color: #fff;
        font-weight: 700;
        text-decoration: none;
    }

    /* hide the desktop footer links on mobile */
    .footer-menu {
        display: none !important;
    }
}

/* ========== DECOR IMAGES ========== */
.hero-wrap,
.poster-wrap,
.signup-wrap {
    --base: 1440;            /* ← set to your Figma frame width */
    position: relative;
    width: min(100%, calc(var(--base) * 1px));
    margin-inline: auto;
}

.decor-wrapper-1-mobile,
.decor-wrapper-2-mobile,
.decor-wrapper-3-mobile,
.decor-wrapper-4-mobile,
.decor-wrapper-5-mobile,
.decor-wrapper-6-mobile,
.decor-wrapper-7-mobile {
    display: none;
}

.decor-wrapper-1 {
    position: relative;
    width: 400px;
    height: 50px;
}

.decor-wrapper-1 .decor-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.decor-wrapper-2 {
    position: absolute;
    left: calc(-228 / var(--base) * 100%);
    top: calc(-94 / var(--base) * 100%);
    width: calc(402 / var(--base) * 100%);
    aspect-ratio: 402 / 569;
    z-index: 12;
    pointer-events: none;
}

.decor-wrapper-2 > img {
    position: absolute;
    transform: scale(1.05);
}

.decor-wrapper-3 {
    position: absolute;
    left: calc(-75 / var(--base) * 100%);
    top: calc(207 / var(--base) * 100%);
    width: calc(388 / var(--base) * 100%);
    aspect-ratio: 388 / 136;
    z-index: 10;
    pointer-events: none;
}

.decor-wrapper-3 > img {
    position: absolute;
    transform: scale(1.05);
}

.decor-wrapper-4 {
    position: absolute;
    width: calc(392.07 / 1440 * 100%);
    right: calc(143 / 1440 * 100%);
    bottom: calc(-60 / 1440 * 100vw);
    aspect-ratio: 392.07 / 554.53;
    z-index: 11;
    pointer-events: none;
}

.decor-wrapper-4 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-5 {
    position: absolute;
    right: calc(26 / var(--base) * 100%);
    bottom: calc(-15 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 1;
    pointer-events: none;
}

.decor-wrapper-5 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-6 {
    position: absolute;
    left: calc(-212 / var(--base) * 100%);
    top: calc(-315 / var(--base) * 100%);
    width: calc(397.54 / var(--base) * 100%);
    aspect-ratio: 397.54 / 562.27;
    z-index: 14;
    pointer-events: none;
}

.decor-wrapper-6 > img {
    position: absolute;
    transform: scale(1);
}

.decor-wrapper-7 {
    position: absolute;
    right: calc(-50 / var(--base) * 100%);
    top: calc(30 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 16;
    pointer-events: none;
}

.decor-wrapper-7 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-8 {
    position: absolute;
    right: calc(-126 / var(--base) * 100%);
    top: calc(184 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 15;
    pointer-events: none;
}

.decor-wrapper-8 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-9 {
    position: absolute;
    left: calc(-40 / var(--base) * 100%);
    top: calc(-135 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 210;
    pointer-events: none;
}

.decor-wrapper-9 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-10 {
    position: absolute;
    left: calc(-107 / var(--base) * 100%);
    top: calc(-88 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 19;
    pointer-events: none;
}

.decor-wrapper-10 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-11 {
    position: absolute;
    right: calc(-20 / var(--base) * 100%);
    top: calc(202 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 18;
    pointer-events: none;
}

.decor-wrapper-11 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-12 {
    position: absolute;
    right: calc(-50 / var(--base) * 100%);
    top: calc(77 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 17;
    pointer-events: none;
}

.decor-wrapper-12 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-13 {
    position: absolute;
    left: calc(-190 / var(--base) * 100%);
    bottom: calc(210 / var(--base) * 100%);
    width: calc(402.51 / var(--base) * 100%);
    aspect-ratio: 402.51 / 569.29;
    z-index: 13;
    pointer-events: none;
}

.decor-wrapper-13 > img {
    position: absolute;
    transform: scale(1);
}

.decor-wrapper-14 {
    position: absolute;
    right: calc(-300 / var(--base) * 100%);
    bottom: calc(236 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 21;
    pointer-events: none;
}

.decor-wrapper-14 > img {
    position: absolute;
    transform: scale(1.1);
}

.decor-wrapper-15 {
    position: absolute;
    left: calc(-89 / var(--base) * 100%);
    top: calc(330 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 2;
    pointer-events: none;
}

.decor-wrapper-15 > img {
    position: absolute;
    transform: scale(1);
}

.decor-wrapper-16 {
    position: absolute;
    left: calc(-89 / var(--base) * 100%);
    top: calc(376 / var(--base) * 100%);
    width: calc(387.89 / var(--base) * 100%);
    aspect-ratio: 387.89 / 136.25;
    z-index: 3;
    pointer-events: none;
}

.decor-wrapper-16 > img {
    position: absolute;
    transform: scale(1);
}

/* === Mobile === */
@media (orientation: portrait)
and (max-width: 540px) {
    .hero-wrap,
    .poster-wrap,
    .signup-wrap{
        --base: 440;
        position: relative;
        width: 100%;
        margin-inline: auto;
    }

    .decor-wrapper-1,
    .decor-wrapper-2,
    .decor-wrapper-3,
    .decor-wrapper-4,
    .decor-wrapper-5,
    .decor-wrapper-6,
    .decor-wrapper-7,
    .decor-wrapper-8,
    .decor-wrapper-9,
    .decor-wrapper-10,
    .decor-wrapper-11,
    .decor-wrapper-12,
    .decor-wrapper-13,
    .decor-wrapper-14,
    .decor-wrapper-15,
    .decor-wrapper-16 {
        display: none;
    }

    .decor-wrapper-1-mobile {
        display: block;
        position: relative;
        width: calc(268 / 440 * 100%);   /* or 60vw if you prefer */
        aspect-ratio: 268 / 94;
        margin-top: 24px;
    }

    .decor-wrapper-1-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-2-mobile {
        display: block;
        position: absolute;
        right: calc(1 / var(--base) * 100%);
        bottom: calc(195 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 9;
        pointer-events: none;
    }

    .decor-wrapper-2-mobile > img{
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-3-mobile {
        display: block;
        position: absolute;
        left: calc(-68 / var(--base) * 100%);
        top: calc(-126 / var(--base) * 100%);
        width: calc(253.17 / var(--base) * 100%);
        aspect-ratio: 253.17 / 358.07;
        z-index: 8;
        pointer-events: none;
    }

    .decor-wrapper-3-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-4-mobile {
        display: block;
        position: absolute;
        left: calc(1 / var(--base) * 100%);
        top: calc(-70 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 7;
        pointer-events: none;
    }

    .decor-wrapper-4-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-5-mobile {
        display: block;
        position: absolute;
        left: calc(5 / var(--base) * 100%);
        top: calc(5 / var(--base) * 100%);
        width: calc(227.83 / var(--base) * 100%);
        aspect-ratio: 227.83 / 322.24;
        z-index: 2;
        pointer-events: none;
    }

    .decor-wrapper-5-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-6-mobile {
        display: block;
        position: relative;
        width: calc(268 / 440 * 100%);
        aspect-ratio: 268 / 94;
        margin-top: 24px;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
    }

    .decor-wrapper-6-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-7-mobile {
        display: block;
        position: absolute;
        left: calc(-136 / var(--base) * 100%);
        bottom: calc(-33 / var(--base) * 100%);
        width: calc(245.31 / var(--base) * 100%);
        aspect-ratio: 245.31 / 346.95;
        z-index: 10;
        pointer-events: none;
    }

    .decor-wrapper-7-mobile > img{
        position: absolute;
        transform: scale(1);
    }
}

@media (min-width: 320px) and (max-width: 390px) and (orientation: portrait) {
    .decor-wrapper-7-mobile {
        display: none;
    }
}

/* A centered color band behind the section */
.section-hero-yellow,
.section-poster-yellow{
    --band: 1440;                  /* Figma frame width */
    --band-color: #FFDC1E;         /* the yellow */
    position: relative;
    background: transparent;       /* let the page’s black show on the sides */
}

.section-hero-yellow::before,
.section-poster-yellow::before{
    content:"";
    position:absolute;
    inset:0;                       /* same height as the section */
    left:50%;
    transform:translateX(-50%);
    width:min(100%, calc(var(--band)*1px));   /* center-constrained band */
    background:var(--band-color);
    z-index:-1;                    /* sit behind the content */
}

@media (orientation: landscape)
and (max-height: 540px) {
    .hero-wrap,
    .poster-wrap,
    .signup-wrap {
        --base: 540 !important;
        position: relative;
        width: 100%;
        max-width: 100vw;  /* ensure it never exceeds viewport width */
        margin-inline: auto;
    }

    .decor-wrapper-1,
    .decor-wrapper-2,
    .decor-wrapper-3,
    .decor-wrapper-4,
    .decor-wrapper-5,
    .decor-wrapper-6,
    .decor-wrapper-7,
    .decor-wrapper-8,
    .decor-wrapper-9,
    .decor-wrapper-10,
    .decor-wrapper-11,
    .decor-wrapper-12,
    .decor-wrapper-13,
    .decor-wrapper-14,
    .decor-wrapper-15,
    .decor-wrapper-16 {
        display: none;
    }

    .decor-wrapper-2-mobile {
        display: block;
        position: absolute;
        right: calc(-111 / var(--base) * 100%);
        bottom: calc(218 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 9;
        pointer-events: none;
    }

    .decor-wrapper-2-mobile > img{
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-3-mobile {
        display: block;
        position: absolute;
        left: calc(121 / var(--base) * 100%);
        top: calc(-200 / var(--base) * 100%);
        width: calc(253.17 / var(--base) * 100%);
        aspect-ratio: 253.17 / 358.07;
        z-index: 8;
        pointer-events: none;
    }

    .decor-wrapper-3-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-4-mobile {
        display: block;
        position: absolute;
        left: calc(147 / var(--base) * 100%);
        top: calc(-116 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 7;
        pointer-events: none;
    }

    .decor-wrapper-4-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-7-mobile {
        display: block;
        position: absolute;
        left: calc(-38 / var(--base) * 100%);
        bottom: calc(-264 / var(--base) * 100%);
        width: calc(245.31 / var(--base) * 100%);
        aspect-ratio: 245.31 / 346.95;
        z-index: 10;
        pointer-events: none;
    }

    .decor-wrapper-7-mobile > img{
        position: absolute;
        transform: scale(1);
    }
}

@media (orientation: landscape)
and (max-height: 380px)
and (max-width: 740px) {
    .decor-wrapper-7-mobile {
        display: none;
    }
}

/* Tablets – portrait orientation (iPad, Samsung Tab, etc.) */
@media (orientation: portrait)
and (min-width: 600px)
and (min-height: 800px)
and (max-width: 1024px) {
    .hero-wrap,
    .poster-wrap,
    .signup-wrap {
        --base: 768;
        width: min(100%, calc(var(--base) * 1px));
    }

    .decor-wrapper-1,
    .decor-wrapper-2,
    .decor-wrapper-3,
    .decor-wrapper-4,
    .decor-wrapper-5,
    .decor-wrapper-6,
    .decor-wrapper-7,
    .decor-wrapper-8,
    .decor-wrapper-9,
    .decor-wrapper-10,
    .decor-wrapper-11,
    .decor-wrapper-12,
    .decor-wrapper-13,
    .decor-wrapper-14,
    .decor-wrapper-15,
    .decor-wrapper-16 {
        display: none;
    }

    .decor-wrapper-6-mobile {
        display: none;
    }

    body.menu-open .decor-wrapper-6-mobile {
        display: block;
    }

    .decor-wrapper-1-mobile {
        display: block;
        position: relative;
        aspect-ratio: 268 / 94;
        margin-top: 24px;
    }

    .decor-wrapper-1-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-2-mobile {
        display: block;
        position: absolute;
        right: calc(-35 / var(--base) * 100%);
        bottom: calc(247 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 9;
        pointer-events: none;
    }

    .decor-wrapper-2-mobile > img{
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-3-mobile {
        display: block;
        position: absolute;
        left: calc(144 / var(--base) * 100%);
        top: calc(-175 / var(--base) * 100%);
        width: calc(253.17 / var(--base) * 100%);
        aspect-ratio: 253.17 / 358.07;
        z-index: 8;
        pointer-events: none;
    }

    .decor-wrapper-3-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-4-mobile {
        display: block;
        position: absolute;
        left: calc(226 / var(--base) * 100%);
        top: calc(-100 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 7;
        pointer-events: none;
    }

    .decor-wrapper-4-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-6-mobile {
        position: relative;
        width: calc(268 / 440 * 100%);
        aspect-ratio: 268 / 94;
        margin-top: 24px;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.6);
    }

    .decor-wrapper-6-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-7-mobile {
        display: block;
        position: absolute;
        left: calc(-136 / var(--base) * 100%);
        bottom: calc(-144 / var(--base) * 100%);
        width: calc(245.31 / var(--base) * 100%);
        aspect-ratio: 245.31 / 346.95;
        z-index: 10;
        pointer-events: none;
    }

    .decor-wrapper-7-mobile > img{
        position: absolute;
        transform: scale(1);
    }
}

/* Tablets – landscape orientation */
@media (orientation: landscape)
and (min-width: 900px)
and (min-height: 600px)
and (max-width: 1366px) {
    .hero-wrap,
    .poster-wrap,
    .signup-wrap {
        --base: 1024;
        width: min(100%, calc(var(--base) * 1px));
    }

    .decor-wrapper-1,
    .decor-wrapper-2,
    .decor-wrapper-3,
    .decor-wrapper-4,
    .decor-wrapper-5,
    .decor-wrapper-6,
    .decor-wrapper-7,
    .decor-wrapper-8,
    .decor-wrapper-9,
    .decor-wrapper-10,
    .decor-wrapper-11,
    .decor-wrapper-12,
    .decor-wrapper-13,
    .decor-wrapper-14,
    .decor-wrapper-15,
    .decor-wrapper-16 {
        display: none;
    }

    .decor-wrapper-6-mobile {
        display: none;
    }

    body.menu-open .decor-wrapper-6-mobile {
        display: block;
    }

    .decor-wrapper-1-mobile {
        display: block;
        position: relative;
        aspect-ratio: 268 / 94;
        margin-top: 24px;
    }

    .decor-wrapper-1-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-2-mobile {
        display: block;
        position: absolute;
        right: calc(-26 / var(--base) * 100%);
        bottom: calc(417 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 9;
        pointer-events: none;
    }

    .decor-wrapper-2-mobile > img{
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-3-mobile {
        display: block;
        position: absolute;
        left: calc(278 / var(--base) * 100%);
        top: calc(-275 / var(--base) * 100%);
        width: calc(253.17 / var(--base) * 100%);
        aspect-ratio: 253.17 / 358.07;
        z-index: 8;
        pointer-events: none;
    }

    .decor-wrapper-3-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-4-mobile {
        display: block;
        position: absolute;
        left: calc(364 / var(--base) * 100%);
        top: calc(-160 / var(--base) * 100%);
        width: calc(236.39 / var(--base) * 100%);
        aspect-ratio: 236.39 / 83.04;
        z-index: 7;
        pointer-events: none;
    }

    .decor-wrapper-4-mobile > img {
        position: absolute;
        transform: scale(1);
    }

    .decor-wrapper-6-mobile {
        position: relative;
        width: calc(268 / 440 * 100%);
        aspect-ratio: 268 / 94;
        margin-top: 24px;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-6-mobile .decor-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .decor-wrapper-7-mobile {
        display: block;
        position: absolute;
        left: calc(-136 / var(--base) * 100%);
        bottom: calc(-144 / var(--base) * 100%);
        width: calc(245.31 / var(--base) * 100%);
        aspect-ratio: 245.31 / 346.95;
        z-index: 10;
        pointer-events: none;
    }

    .decor-wrapper-7-mobile > img{
        position: absolute;
        transform: scale(1);
    }
}