@import url('https://fonts.googleapis.com/css2?family=Lalezar&family=Marhey:wght@400;600;700&family=Rubik:wght@400;500;700;800;900&family=Aref+Ruqaa:wght@700&display=swap');

/* =========================================================
   طلبات × صالح السندي — "Paper & Stickers" design system
   ========================================================= */

:root {
    --paper: #FBF5EC;
    --paper-2: #F3EADB;
    --grid: rgba(23, 18, 14, 0.055);
    --ink: #17120E;
    --ink-soft: #4A4038;
    --muted: #7A6E63;
    --orange: #FF5A00;
    --orange-dark: #D94A00;
    --tape: #FFC93C;
    --lilac: #B8A4FF;
    --lilac-deep: #7B5CFF;
    --sky: #7CC6FF;
    --mint: #5FD39A;
    --pen: #2B45D1;
    --white: #FFFFFF;

    --border: 2.5px solid var(--ink);
    --shadow: 5px 5px 0 var(--ink);
    --shadow-lg: 8px 8px 0 var(--ink);
    --radius: 18px;

    --f-display: 'Lalezar', 'Rubik', sans-serif;
    --f-body: 'Rubik', sans-serif;
    --f-hand: 'Marhey', 'Rubik', sans-serif;
    --f-script: 'Aref Ruqaa', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink);
    background-color: var(--paper);
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 30px 30px;
    overflow-x: clip;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* crumpled-paper texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='7'/%3E%3CfeDiffuseLighting lighting-color='%23fff' surfaceScale='2.2'%3E%3CfeDistantLight azimuth='45' elevation='55'/%3E%3C/feDiffuseLighting%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 600px 600px;
}

main,
footer,
header {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--f-display);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    width: min(1200px, 100% - 32px);
    margin-inline: auto;
}

.ltr {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--paper-2);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border: 3px solid var(--paper-2);
    border-radius: 10px;
}

/* ---------- Navbar ---------- */
.nav {
    position: fixed;
    top: 14px;
    inset-inline: 0;
    z-index: 60;
}

.nav-inner {
    width: min(1200px, 100% - 24px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--paper);
    border: var(--border);
    border-radius: 999px;
    box-shadow: 4px 4px 0 var(--ink);
    padding: 8px 10px 8px 18px;
    padding-inline-start: 22px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .saleh {
    height: 26px;
    width: auto;
    filter: brightness(0);
}

.brand .x {
    font-family: var(--f-display);
    color: var(--orange);
    font-size: 26px;
    line-height: 1;
    transition: transform .3s;
}

.brand:hover .x {
    transform: rotate(90deg) scale(1.2);
}

.brand .talabat {
    height: 20px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:not(.btn) {
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background .2s, color .2s;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
    background: var(--ink);
    color: var(--paper);
}

.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: var(--border);
    background: var(--tape);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.menu-btn svg {
    width: 22px;
    height: 22px;
}

.mobile-menu {
    display: none;
}

@media (max-width: 820px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .brand .saleh {
        height: 20px;
    }

    .brand .talabat {
        height: 15px;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: min(1200px, 100% - 24px);
        margin: 10px auto 0;
        background: var(--paper);
        border: var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 14px;
        animation: pop .25s ease-out;
    }

    .mobile-menu a:not(.btn) {
        font-weight: 700;
        font-size: 18px;
        padding: 12px 16px;
        border-radius: 14px;
        border: 2px dashed transparent;
    }

    .mobile-menu a:not(.btn):hover,
    .mobile-menu a.active {
        border-color: var(--ink);
        background: var(--paper-2);
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--f-body);
    font-weight: 800;
    font-size: 17px;
    padding: 14px 26px;
    border: var(--border);
    border-radius: 999px;
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, background .2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--ink);
}

.btn:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--ink);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.btn-ink {
    background: var(--ink);
    color: var(--paper);
}

.btn-paper {
    background: var(--paper);
    color: var(--ink);
}

.btn-tape {
    background: var(--tape);
    color: var(--ink);
}

.btn-sm {
    font-size: 15px;
    padding: 9px 18px;
    box-shadow: 3px 3px 0 var(--ink);
}

.btn-lg {
    font-size: 20px;
    padding: 18px 34px;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex: none;
}

/* ---------- Type helpers ---------- */
.kicker {
    direction: ltr;
    unicode-bidi: isolate;
    font-family: var(--f-body);
    font-weight: 800;
    letter-spacing: .35em;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--ink);
}

.hand {
    font-family: var(--f-hand);
    color: var(--pen);
}

.script {
    font-family: var(--f-script);
    font-weight: 700;
    color: var(--ink);
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
    position: relative;
}

.section-head h2 {
    font-size: clamp(40px, 6vw, 72px);
    margin: 14px 0 18px;
}

.section-head p {
    font-size: 19px;
    color: var(--ink-soft);
}

.hl {
    position: relative;
    white-space: nowrap;
    z-index: 0;
}

.hl::after {
    content: '';
    position: absolute;
    inset-inline: -6px;
    bottom: .08em;
    height: .38em;
    background: var(--tape);
    z-index: -1;
    transform: skew(-8deg) rotate(-1deg);
    border-radius: 4px;
}

.hl-orange::after {
    background: var(--orange);
    opacity: .9;
}

.hl-lilac::after {
    background: var(--lilac);
}

/* ---------- "Selection box" (Figma-style handles) ---------- */
.sel {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .25em;
    background: var(--orange);
    color: var(--white);
    padding: .08em .35em .02em;
    outline: 2px solid var(--ink);
    outline-offset: 7px;
}

.sel>i {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--white);
    border: 2px solid var(--ink);
}

.sel>i:nth-of-type(1) {
    top: -14px;
    right: -14px;
}

.sel>i:nth-of-type(2) {
    top: -14px;
    left: -14px;
}

.sel>i:nth-of-type(3) {
    bottom: -14px;
    right: -14px;
}

.sel>i:nth-of-type(4) {
    bottom: -14px;
    left: -14px;
}

/* ---------- Tape, stickers, doodles ---------- */
.tape {
    position: absolute;
    width: 110px;
    height: 30px;
    background: rgba(255, 201, 60, .82);
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    z-index: 3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
    clip-path: polygon(3% 0, 97% 4%, 100% 50%, 96% 100%, 2% 96%, 0 50%);
}

.tape.lilac {
    background: rgba(184, 164, 255, .85);
}

.tape.sky {
    background: rgba(124, 198, 255, .85);
}

.tape.mint {
    background: rgba(95, 211, 154, .85);
}

.float {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.bob {
    animation: bob 5s ease-in-out infinite;
}

.bob.d1 {
    animation-delay: -1.3s;
}

.bob.d2 {
    animation-delay: -2.6s;
}

.bob.d3 {
    animation-delay: -3.9s;
}

@keyframes bob {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -12px;
    }
}

/* app-icon sticker with cursor (ref: portfolio stickers) */
.app {
    width: 74px;
    height: 74px;
    border-radius: 20px;
    border: var(--border);
    box-shadow: 4px 4px 0 var(--ink);
    display: grid;
    place-items: center;
    color: var(--white);
    position: relative;
}

.app svg.logo {
    width: 36px;
    height: 36px;
}

.app .cursor {
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -14px;
    left: -12px;
}

.app.tt {
    background: #111;
}

.app.ig {
    background: linear-gradient(45deg, #FEC53B, #F24E5C 45%, #A437C8);
}

.app.yt {
    background: #FF1E1E;
}

.app.sc {
    background: #FFFC00;
    color: var(--ink);
}

/* starburst number badge */
.burst {
    width: 110px;
    height: 110px;
    position: relative;
    display: grid;
    place-items: center;
    flex: none;
}

.burst svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 18s linear infinite;
}

.burst span {
    position: relative;
    font-family: var(--f-display);
    font-size: 46px;
    color: var(--ink);
    line-height: 1;
    padding-top: 6px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- Marquee band ---------- */
.band {
    background: var(--tape);
    border-block: var(--border);
    overflow: hidden;
    position: relative;
    z-index: 2;
    direction: ltr;
}

.band.tilt {
    transform: rotate(-1.6deg);
    margin-inline: -20px;
}

.band.ink {
    background: var(--ink);
    color: var(--paper);
}

.band.orange {
    background: var(--orange);
    color: var(--white);
}

.band-track {
    display: flex;
    width: max-content;
    animation: marquee 38s linear infinite;
}

.band-track>span {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 14px;
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
    direction: rtl;
}

.band-track>span b {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 24px;
}

.band-track .star {
    width: 20px;
    height: 20px;
    flex: none;
}

.band:hover .band-track {
    animation-play-state: paused;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* ---------- Reveal animation ---------- */
.reveal {
    opacity: 0;
    transform: translateY(34px) rotate(var(--r, 0deg)) scale(.96);
    transition: opacity .7s cubic-bezier(.2, .8, .2, 1), transform .7s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--d, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) rotate(var(--r, 0deg)) scale(1);
}

@keyframes pop {
    from {
        opacity: 0;
        transform: scale(.94) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   HOME — hero
   ========================================================= */
.hero {
    padding-top: 112px;
    text-align: center;
    position: relative;
}

.hero .kicker {
    margin-bottom: 18px;
    display: block;
}

.stage {
    position: relative;
    height: 300px;
    border-block: var(--border);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0) 0 49.8%, var(--ink) 49.8% 50.2%, rgba(0, 0, 0, 0) 50.2%),
        linear-gradient(90deg, var(--orange) 0 50%, var(--lilac-deep) 50%);
    overflow: visible;
}

/* brick wall on the orange half, tiles on the purple half */
.stage::before,
.stage::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: .28;
}

.stage::before {
    left: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .55) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 0, 0, .55) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 0, 0, .55) 2px, transparent 2px);
    background-size: 100% 36px, 84px 72px, 84px 72px;
    background-position: 0 0, 0 0, 42px 36px;
}

.stage::after {
    right: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .5) 2px, transparent 2px),
        linear-gradient(90deg, rgba(255, 255, 255, .5) 2px, transparent 2px);
    background-size: 120px 120px;
}

.peek {
    position: absolute;
    bottom: -53px;
    left: 50%;
    translate: -50% 0;
    height: 330px;
    width: auto;
    z-index: 3;
    filter: drop-shadow(6px 6px 0 rgba(23, 18, 14, .9));
}

/* fallback when the illustrated peek image isn't there yet: a TV-screen photo */
.peek-fallback {
    display: none;
    position: absolute;
    left: 50%;
    bottom: -40px;
    translate: -50% 0;
    width: 280px;
    aspect-ratio: 4/5;
    border: var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    rotate: -3deg;
    z-index: 3;
    background: var(--ink);
}

.peek-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%;
}

.stage.no-peek .peek {
    display: none;
}

.stage.no-peek .peek-fallback {
    display: block;
}

.stage.no-peek {
    margin-bottom: 40px;
}

.stage .float .app {
    transform: rotate(var(--r, 0));
}

.lockup {
    position: relative;
    margin: 70px auto 0;
    width: fit-content;
    z-index: 4;
}

.lockup .script {
    display: block;
    font-size: clamp(56px, 10vw, 128px);
    line-height: .9;
    transform: rotate(-4deg);
    margin-bottom: -.02em;
    margin-inline-start: -.8em;
    position: relative;
    z-index: 2;
}

.lockup .sel {
    font-family: var(--f-display);
    font-size: clamp(54px, 10vw, 132px);
    line-height: 1;
    gap: .22em;
    padding: .12em .3em .02em;
}

.lockup .sel img {
    height: .56em;
    width: auto;
    filter: brightness(0) invert(1);
    margin-top: -.06em;
}

.lockup .sel .xx {
    font-size: .7em;
    color: var(--ink);
}

.hero-bar {
    margin-top: 58px;
}

.hero-sub {
    max-width: 720px;
    margin: 46px auto 0;
    font-size: clamp(18px, 2.2vw, 23px);
    color: var(--ink-soft);
    padding-inline: 16px;
}

.hero-sub strong {
    color: var(--orange);
    font-weight: 900;
}

.hero-cta {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    padding-inline: 16px;
}

.hero-note {
    position: absolute;
    font-size: 22px;
    line-height: 1.3;
    z-index: 5;
}

.hero-note svg {
    width: 70px;
    height: 60px;
    display: block;
}

@media (max-width: 820px) {
    .stage {
        height: 210px;
    }

    .peek {
        height: 230px;
        bottom: -37px;
    }

    .peek-fallback {
        width: 190px;
    }

    .stage .float {
        scale: .72;
    }

    .hero-note {
        display: none;
    }

    .lockup {
        margin-top: 60px;
    }
}

/* =========================================================
   HOME — partner pass (ID badge) + stats
   ========================================================= */
.pass-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.lanyard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: 50% 0;
    animation: sway 6s ease-in-out infinite;
}

@keyframes sway {

    0%,
    100% {
        rotate: -2.5deg;
    }

    50% {
        rotate: 2.5deg;
    }
}

.strap {
    width: 46px;
    height: 120px;
    background: repeating-linear-gradient(180deg, var(--ink) 0 34px, var(--orange) 34px 40px);
    border-inline: 2px solid var(--ink);
    position: relative;
    color: var(--paper);
    font-weight: 900;
    font-size: 11px;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .2em;
}

.clip {
    width: 40px;
    height: 40px;
    border: 5px solid #9aa0a6;
    border-radius: 10px 10px 16px 16px;
    margin-top: -6px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.pass {
    margin-top: -14px;
    width: min(400px, 100%);
    background: rgba(255, 255, 255, .55);
    border: var(--border);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
    position: relative;
    backdrop-filter: blur(3px);
}

.pass .slot {
    width: 90px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    margin: 0 auto 14px;
    background: var(--paper);
}

.pass-card {
    background: var(--orange);
    border: var(--border);
    border-radius: 18px;
    padding: 16px;
    color: var(--white);
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.pass-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -60px auto;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .13);
}

.pass-photo {
    border: var(--border);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--paper);
    rotate: -2deg;
}

.pass-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 15%;
}

.pass-card .who {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.pass-card .who img {
    height: 22px;
    width: auto;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.pass-card .name {
    font-family: var(--f-display);
    font-size: 30px;
    line-height: 1.1;
}

.pass-card .role {
    font-size: 13px;
    font-weight: 700;
    opacity: .9;
}

.pass-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    gap: 10px;
}

.barcode {
    height: 34px;
    flex: 1;
    background: repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 5px, var(--ink) 5px 6px, transparent 6px 9px, var(--ink) 9px 12px, transparent 12px 14px);
}

.pass-foot .tag {
    font-family: var(--f-hand);
    font-weight: 700;
    background: var(--tape);
    border: 2px solid var(--ink);
    padding: 2px 12px;
    border-radius: 999px;
    rotate: 4deg;
    font-size: 14px;
}

.name-sticker {
    position: absolute;
    bottom: -46px;
    left: -30px;
    background: var(--white);
    border: var(--border);
    border-radius: 50%;
    width: 170px;
    height: 104px;
    display: grid;
    place-items: center;
    rotate: -10deg;
    box-shadow: 4px 4px 0 var(--ink);
    font-family: var(--f-display);
    font-size: 34px;
}

.pass-note {
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 21px;
    line-height: 1.3;
    rotate: 6deg;
    text-align: center;
}

.pass-note svg {
    width: 60px;
    height: 60px;
    margin: 4px auto 0;
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.stat {
    border: var(--border);
    border-radius: var(--radius);
    padding: 26px 22px 22px;
    box-shadow: var(--shadow);
    position: relative;
    background: var(--white);
}

.stat:nth-child(1) {
    --r: -2deg;
    background: var(--ink);
    color: var(--paper);
}

.stat:nth-child(2) {
    --r: 1.5deg;
    background: var(--orange);
    color: var(--white);
}

.stat:nth-child(3) {
    --r: 2deg;
    background: var(--tape);
}

.stat:nth-child(4) {
    --r: -1.5deg;
    background: var(--lilac);
}

.stat .num {
    font-family: var(--f-display);
    font-size: clamp(46px, 6vw, 68px);
    line-height: 1;
    display: block;
    direction: ltr;
    text-align: right;
}

.stat .lbl {
    font-weight: 800;
    font-size: 17px;
    margin-top: 6px;
    display: block;
}

.stat:hover {
    rotate: 0deg;
}

@media (max-width: 900px) {
    .pass-wrap {
        grid-template-columns: 1fr;
        gap: 90px;
    }

    .pass-note {
        right: 0;
    }
}

@media (max-width: 480px) {
    .pass-card {
        grid-template-columns: 105px 1fr;
    }

    .pass-card .name {
        font-size: 24px;
    }

    .name-sticker {
        width: 130px;
        height: 80px;
        font-size: 26px;
        left: -8px;
    }

    .stats-grid {
        gap: 14px;
    }

    .stat {
        padding: 18px 14px;
    }
}

/* =========================================================
   Sticky notes (vision)
   ========================================================= */
.notes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.note {
    padding: 36px 24px 28px;
    border: var(--border);
    border-radius: 6px 6px 30px 6px;
    box-shadow: var(--shadow);
    position: relative;
    transition: rotate .3s, translate .3s;
}

.note:nth-child(1) {
    --r: -3deg;
    background: #FFE08A;
}

.note:nth-child(2) {
    --r: 2deg;
    background: #D9CCFF;
}

.note:nth-child(3) {
    --r: -1.5deg;
    background: #FFB98F;
}

.note:nth-child(4) {
    --r: 2.5deg;
    background: #B7EBCF;
}

.note:hover {
    rotate: calc(var(--r) * -1);
    translate: 0 -6px;
}

.note .ico {
    width: 58px;
    height: 58px;
    border: var(--border);
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--white);
    margin-bottom: 18px;
    box-shadow: 3px 3px 0 var(--ink);
}

.note .ico svg {
    width: 30px;
    height: 30px;
}

.note h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.note p {
    font-size: 16px;
    color: var(--ink-soft);
    font-weight: 500;
}

@media (max-width: 1000px) {
    .notes {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .notes {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Series polaroids
   ========================================================= */
.polaroids {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 44px;
}

.polaroid {
    background: var(--white);
    border: var(--border);
    border-radius: 10px;
    padding: 14px 14px 22px;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: block;
    transition: rotate .35s, translate .35s, box-shadow .35s;
}

.polaroid:nth-child(1) {
    --r: -2deg;
}

.polaroid:nth-child(2) {
    --r: 1.8deg;
}

.polaroid:nth-child(3) {
    --r: 1.5deg;
}

.polaroid:nth-child(4) {
    --r: -1.8deg;
}

.polaroid:hover {
    rotate: 0deg;
    translate: 0 -8px;
    box-shadow: 12px 12px 0 var(--ink);
}

.polaroid .ph {
    aspect-ratio: 16/10;
    border: 2px solid var(--ink);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.polaroid .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s;
}

.polaroid:hover .ph img {
    transform: scale(1.07);
}

.polaroid .burst {
    position: absolute;
    top: -40px;
    right: -34px;
    z-index: 4;
}

.polaroid .body {
    padding: 18px 6px 0;
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: space-between;
}

.polaroid h3 {
    font-size: clamp(30px, 3.6vw, 42px);
}

.polaroid p {
    color: var(--ink-soft);
    margin-top: 6px;
    font-weight: 500;
}

.polaroid .go {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: var(--border);
    display: grid;
    place-items: center;
    flex: none;
    background: var(--tape);
    transition: transform .3s;
}

.polaroid:hover .go {
    transform: rotate(-45deg);
}

.polaroid .go svg {
    width: 24px;
    height: 24px;
}

.chip {
    display: inline-block;
    font-weight: 800;
    font-size: 13px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 3px 12px;
    background: var(--paper);
}

.gen-sticker {
    position: absolute;
    width: 120px;
    height: auto;
    z-index: 5;
    filter: drop-shadow(4px 4px 0 var(--ink));
    pointer-events: none;
}

@media (max-width: 820px) {
    .polaroids {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .polaroid .burst {
        width: 84px;
        height: 84px;
        right: -14px;
        top: -34px;
    }

    .polaroid .burst span {
        font-size: 34px;
    }

    .gen-sticker {
        width: 86px;
    }
}

/* =========================================================
   Platforms
   ========================================================= */
.platforms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.plat {
    background: var(--white);
    border: var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px;
    display: block;
    transition: translate .25s, box-shadow .25s;
}

.plat:hover {
    translate: -3px -5px;
    box-shadow: 9px 10px 0 var(--ink);
}

.plat .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
}

.plat .app {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    box-shadow: 3px 3px 0 var(--ink);
}

.plat .app svg.logo {
    width: 28px;
    height: 28px;
}

.plat .handle {
    font-weight: 700;
    font-size: 13px;
    color: var(--muted);
}

.plat .views {
    font-family: var(--f-display);
    font-size: 54px;
    line-height: 1;
    direction: ltr;
    text-align: right;
}

.plat .cap {
    font-weight: 700;
    color: var(--muted);
    font-size: 14px;
}

.plat .foll {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 2px dashed rgba(23, 18, 14, .25);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 800;
}

.plat .foll b {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 28px;
    direction: ltr;
}

@media (max-width: 1000px) {
    .platforms {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .platforms {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Tickets (packages)
   ========================================================= */
.tickets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1040px;
    margin-inline: auto;
    align-items: start;
}

.ticket {
    position: relative;
    border: var(--border);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.ticket.hot {
    background: var(--orange);
    color: var(--white);
    --r: 1.5deg;
}

.ticket:not(.hot) {
    --r: -1.2deg;
}

.ticket .t-head {
    padding: 30px 30px 24px;
}

.ticket .t-name {
    font-size: 36px;
}

.ticket .t-desc {
    margin-top: 8px;
    font-weight: 500;
    opacity: .85;
}

.ticket .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 18px;
}

.ticket .price b {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 72px;
    line-height: 1;
}

.ticket .price span {
    font-weight: 800;
    font-size: 20px;
}

.ticket .perf {
    position: relative;
    height: 0;
    border-top: 3px dashed currentColor;
    opacity: .5;
    margin-inline: 26px;
}

.ticket .notch {
    position: relative;
    height: 0;
}

.ticket .notch::before,
.ticket .notch::after {
    content: '';
    position: absolute;
    top: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--paper);
    border: var(--border);
}

.ticket .notch::before {
    right: -22px;
    clip-path: inset(-4px 50% -4px -4px);
}

.ticket .notch::after {
    left: -22px;
    clip-path: inset(-4px -4px -4px 50%);
}

.ticket ul {
    list-style: none;
    padding: 26px 30px 6px;
    margin: 0;
    display: grid;
    gap: 16px;
}

.ticket li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 600;
}

.ticket li .ck {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: var(--tape);
    display: grid;
    place-items: center;
    flex: none;
    margin-top: 1px;
    color: var(--ink);
}

.ticket li .ck svg {
    width: 15px;
    height: 15px;
}

.ticket li small {
    display: block;
    font-weight: 500;
    opacity: .8;
    font-size: 14px;
}

.ticket .t-foot {
    padding: 24px 30px 30px;
}

.ticket .t-foot .btn {
    width: 100%;
}

.ticket .badge-burst {
    position: absolute;
    top: -46px;
    left: -30px;
    width: 124px;
    height: 124px;
    z-index: 5;
}

.ticket .badge-burst span {
    font-size: 20px;
    color: var(--ink);
    text-align: center;
    line-height: 1.1;
    padding-top: 4px;
}

@media (max-width: 860px) {
    .tickets {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .ticket .badge-burst {
        left: -6px;
        width: 104px;
        height: 104px;
    }
}

/* comparison */
.compare {
    max-width: 1040px;
    margin: 90px auto 0;
    background: var(--white);
    border: var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.compare h3 {
    font-size: 32px;
    padding: 24px 28px;
    border-bottom: var(--border);
    background: var(--tape);
}

.compare-scroll {
    overflow-x: auto;
}

.compare table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
    text-align: right;
}

.compare th,
.compare td {
    padding: 18px 24px;
    border-bottom: 2px dashed rgba(23, 18, 14, .18);
}

.compare th {
    font-weight: 900;
    font-size: 15px;
    background: var(--paper-2);
}

.compare td:first-child {
    font-weight: 800;
}

.compare .col-hot {
    background: rgba(255, 90, 0, .08);
    font-weight: 800;
}

.compare th.col-hot {
    background: var(--orange);
    color: var(--white);
}

.compare tr:last-child td {
    border-bottom: 0;
}

.yes,
.no {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 900;
}

.yes::before,
.no::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    flex: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
}

.yes::before {
    background-color: var(--mint);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317120E' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

.no::before {
    background-color: #FF9C9C;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317120E' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

/* =========================================================
   Closing ("thank you" style)
   ========================================================= */
.closing {
    text-align: center;
    padding: 120px 0 130px;
    position: relative;
}

.closing .big {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.closing .sel {
    font-family: var(--f-display);
    font-size: clamp(64px, 13vw, 170px);
    line-height: 1;
    rotate: -3deg;
    padding: .14em .35em 0;
}

.closing .script {
    display: block;
    font-size: clamp(52px, 9vw, 116px);
    line-height: 1;
    rotate: -8deg;
    margin-top: -.25em;
    margin-inline-start: 30%;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.contact-card {
    margin: 70px auto 0;
    max-width: 780px;
    background: var(--white);
    border: var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    text-align: right;
    flex-wrap: wrap;
}

.contact-card .who small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.contact-card .who strong {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 36px;
    display: block;
    line-height: 1.2;
}

.contact-card .lines {
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.contact-card .lines a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink-soft);
}

.contact-card .lines a:hover {
    color: var(--orange);
}

.contact-card .lines svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

@media (max-width: 640px) {
    .contact-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .contact-card .lines a {
        justify-content: center;
    }

    .closing .script {
        margin-inline-start: 10%;
    }
}

/* =========================================================
   Page header (inner pages)
   ========================================================= */
.page-head {
    padding: 150px 0 70px;
    text-align: center;
    position: relative;
}

.page-head h1 {
    font-size: clamp(52px, 9vw, 116px);
    margin-top: 14px;
}

.page-head h1 .sel {
    font-size: .95em;
    padding: .1em .3em 0;
    rotate: -2deg;
}

.page-head p {
    font-size: 20px;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 26px auto 0;
}

.jump {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 34px;
}

.jump a {
    font-weight: 800;
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 8px 18px;
    background: var(--white);
    box-shadow: 3px 3px 0 var(--ink);
    transition: translate .15s, box-shadow .15s;
}

.jump a:hover {
    translate: -2px -2px;
    box-shadow: 5px 5px 0 var(--ink);
}

/* =========================================================
   Series page
   ========================================================= */
.series-block {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 90px;
}

.series-top {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 56px;
}

.series-top .info {
    position: relative;
}

.series-top .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .25em;
    font-size: 13px;
    direction: ltr;
    background: var(--ink);
    color: var(--paper);
    padding: 6px 14px;
    border-radius: 999px;
}

.series-top h2 {
    font-size: clamp(48px, 7vw, 88px);
    margin: 18px 0 8px;
}

.series-top .tagline {
    font-size: 30px;
    rotate: -2deg;
    display: inline-block;
}

.series-top .cover {
    position: relative;
    --r: 2deg;
}

.series-block:nth-of-type(even) .series-top .cover {
    --r: -2deg;
}

.series-top .cover .polaroid {
    rotate: 0deg;
}

.eps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ep {
    text-align: right;
    font: inherit;
    color: inherit;
    cursor: pointer;
    background: var(--white);
    border: var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 22px 22px 20px;
    position: relative;
    transition: translate .2s, box-shadow .2s, rotate .2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-image: repeating-linear-gradient(transparent 0 33px, rgba(43, 69, 209, .13) 33px 35px);
    background-position: 0 58px;
}

.ep:nth-child(1) {
    --r: -1deg;
}

.ep:nth-child(2) {
    --r: 1deg;
}

.ep:nth-child(3) {
    --r: -.6deg;
}

.ep:hover,
.ep:focus-visible {
    translate: -3px -6px;
    box-shadow: 9px 11px 0 var(--ink);
    rotate: 0deg;
    outline: none;
}

.ep .ep-n {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ep .ep-n span {
    font-weight: 900;
    font-size: 14px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 2px 12px;
    background: var(--accent, var(--tape));
}

.ep .ep-n em {
    font-family: var(--f-display);
    font-style: normal;
    font-size: 44px;
    line-height: 1;
    color: rgba(23, 18, 14, .14);
    direction: ltr;
}

.ep h3 {
    font-size: 32px;
}

.ep p {
    color: var(--ink-soft);
    font-weight: 500;
    flex: 1;
}

.ep .prize {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 14px;
    background: var(--paper);
    border: 2px dashed var(--ink);
    border-radius: 12px;
    padding: 8px 12px;
}

.ep .more {
    font-family: var(--f-hand);
    color: var(--pen);
    font-weight: 700;
    font-size: 15px;
}

.s1 {
    --accent: var(--lilac);
}

.s2 {
    --accent: var(--tape);
}

.s3 {
    --accent: var(--sky);
}

.s4 {
    --accent: var(--mint);
}

@media (max-width: 960px) {
    .series-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .eps {
        grid-template-columns: 1fr;
    }
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal.open {
    display: flex;
}

.modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(23, 18, 14, .6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .3s;
}

.modal.show .modal-bg {
    opacity: 1;
}

.sheet {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    background-color: var(--paper);
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 26px 26px;
    border: var(--border);
    border-radius: 26px;
    box-shadow: 10px 10px 0 var(--ink);
    opacity: 0;
    transform: translateY(30px) rotate(-2deg) scale(.96);
    transition: opacity .3s, transform .4s cubic-bezier(.2, 1.2, .3, 1);
}

.modal.show .sheet {
    opacity: 1;
    transform: none;
}

.sheet-head {
    background: var(--accent, var(--orange));
    border-bottom: var(--border);
    padding: 26px 28px 24px;
    position: relative;
}

.sheet-head .ep-num {
    font-weight: 900;
    letter-spacing: .2em;
    font-size: 13px;
    direction: ltr;
    display: inline-block;
    background: var(--ink);
    color: var(--paper);
    padding: 3px 12px;
    border-radius: 999px;
}

.sheet-head h3 {
    font-size: clamp(36px, 6vw, 54px);
    margin: 12px 0 4px;
}

.sheet-head p {
    font-weight: 700;
    font-size: 18px;
}

.sheet-close {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: var(--border);
    background: var(--white);
    box-shadow: 3px 3px 0 var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
}

.sheet-close svg {
    width: 20px;
    height: 20px;
}

.sheet-body {
    padding: 26px 28px 30px;
    display: grid;
    gap: 18px;
}

.prize-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ink);
    color: var(--paper);
    border-radius: 18px;
    padding: 16px 20px;
    rotate: -1deg;
}

.prize-box .trophy {
    font-size: 36px;
}

.prize-box small {
    display: block;
    color: var(--tape);
    font-weight: 800;
}

.prize-box b {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.2;
}

.sheet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: 14px 16px;
}

.field h4 {
    font-family: var(--f-body);
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.field h4::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: var(--accent, var(--orange));
}

.field p,
.field li {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 15px;
}

.field ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.field li {
    padding-inline-start: 22px;
    position: relative;
}

.field li::before {
    content: '✦';
    position: absolute;
    right: 0;
    color: var(--orange);
}

.field.wide {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .sheet-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Contact page
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 960px;
    margin-inline: auto;
}

.c-card {
    border: var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    transition: translate .2s, box-shadow .2s, rotate .2s;
}

.c-card:hover {
    translate: -3px -6px;
    box-shadow: 12px 14px 0 var(--ink);
    rotate: 0deg;
}

.c-card.wa {
    background: #3ED47A;
    --r: -1.5deg;
}

.c-card.mail {
    background: var(--lilac);
    --r: 1.5deg;
}

.c-card .c-ico {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    border: var(--border);
    background: var(--white);
    display: grid;
    place-items: center;
    box-shadow: 3px 3px 0 var(--ink);
}

.c-card .c-ico svg {
    width: 36px;
    height: 36px;
}

.c-card h3 {
    font-size: 36px;
}

.c-card .val {
    font-weight: 900;
    font-size: 22px;
    word-break: break-all;
}

.picked {
    display: none;
    width: fit-content;
    margin: 26px auto 0;
    background: var(--tape);
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 800;
    box-shadow: 3px 3px 0 var(--ink);
    rotate: -1.5deg;
}

.picked.on {
    display: block;
}

@media (max-width: 760px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 60px 0 34px;
    margin-top: 40px;
    position: relative;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer .brand .saleh {
    filter: none;
    height: 30px;
}

.footer .brand .talabat {
    height: 24px;
}

.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.socials a {
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(251, 245, 236, .35);
    border-radius: 999px;
    padding: 7px 16px;
    transition: background .2s, color .2s, border-color .2s;
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer .copy {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 2px dashed rgba(251, 245, 236, .2);
    color: rgba(251, 245, 236, .6);
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: rotate(var(--r, 0deg));
    }
}
