:root {
    --bg: #050505;
    --bg-soft: #0b0b0c;
    --paper: #f2f0ec;
    --white: #fff;
    --muted: rgba(255,255,255,.58);
    --line: rgba(255,255,255,.16);
    --violet: #8246ff;
    --violet-dark: #3f218e;
    --ease: cubic-bezier(.2,.72,.15,1);
    --ease-expo: cubic-bezier(.16,1,.3,1);
    --shell: 1280px;
    --header-h: 92px;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: "Gellix","Helvetica Neue",Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

body.menu-open,
body.is-loading {
    overflow: hidden;
}

::selection {
    background: var(--violet);
    color: #fff;
}

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

img,
video {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.shell {
    width: min(calc(100% - 80px),var(--shell));
    margin-inline: auto;
}

.shell-wide {
    width: min(calc(100% - 40px),1600px);
    margin-inline: auto;
}

.section-label {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.62);
}

.section-heading {
    margin: 0;
    font-size: clamp(54px,7.6vw,122px);
    line-height: .88;
    letter-spacing: -.065em;
    font-weight: 400;
}

.display-text {
    margin: 0;
    font-size: clamp(48px,7.5vw,118px);
    line-height: .94;
    letter-spacing: -.062em;
    font-weight: 400;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    transform: translateY(100%);
    background: var(--violet);
}

.page-transition span {
    position: absolute;
    inset: 0;
    background: #111;
    transform: translateY(100%);
}

.page-transition.is-entering {
    animation: transitionUp .75s var(--ease-expo) forwards;
}

.page-transition.is-leaving {
    animation: transitionOut .75s var(--ease-expo) forwards;
}

@keyframes transitionUp{
    to {
        transform: translateY(0);
    }
}

@keyframes transitionOut{
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px 40px;
    background: #070707;
    transition: transform 1s var(--ease-expo);
    overflow: hidden;
}

.loader::before {
    content: "";
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    right: -18vw;
    bottom: -28vw;
    background: radial-gradient(circle at 32% 30%,rgba(143,85,255,.65),rgba(75,31,168,.15) 42%,transparent 68%);
    filter: blur(20px);
}

.loader.is-done {
    transform: translateY(-105%);
}

.loader__top,
.loader__center,
.loader__bar {
    position: relative;
    z-index: 1;
}

.loader__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.loader__top img {
    width: 92px;
}

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

.loader__kicker {
    margin: 0 0 16px;
    font-size: clamp(22px,3vw,50px);
    letter-spacing: -.035em;
}

.loader__count {
    font-size: clamp(82px,16vw,250px);
    line-height: .75;
    letter-spacing: -.08em;
    font-weight: 300;
    color: rgba(255,255,255,.95);
    font-variant-numeric: tabular-nums;
}

.loader__bar {
    height: 1px;
    background: rgba(255,255,255,.2);
}

.loader__bar span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width .18s linear;
}

.cursor {
    position: fixed;
    z-index: 350;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    pointer-events: none;
    display: grid;
    place-items: center;
    transform: translate(-50%,-50%) scale(.6);
    opacity: 0;
    transition: width .35s var(--ease),height .35s var(--ease),background .35s,color .35s,opacity .2s,transform .25s var(--ease);
    mix-blend-mode: difference;
}

.cursor span {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: 0;
    transition: opacity .2s;
}

.cursor.is-visible {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

.cursor.is-active {
    width: 92px;
    height: 92px;
    background: white;
    color: black;
    mix-blend-mode: normal;
    border-color: white;
}

.cursor.is-active span {
    opacity: 1;
}

.scroll-progress {
    position: fixed;
    z-index: 200;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg,var(--violet),#c7a9ff);
}

.site-header {
    position: fixed;
    z-index: 220;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: background .35s,backdrop-filter .35s,border-color .35s;
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(5,5,5,.68);
    backdrop-filter: blur(18px) saturate(120%);
    border-color: rgba(255,255,255,.08);
}

.brand {
    justify-self: start;
    display: block;
    position: relative;
    z-index: 1;
}

.brand img {
    width: 94px;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.live-dot {
    width: 5px;
    height: 5px;
    background: #9d73ff;
    border-radius: 50%;
    box-shadow: 0 0 12px #9d73ff;
}

.menu-toggle {
    justify-self: end;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    z-index: 2;
}

.menu-toggle__label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.menu-toggle__icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
    transition: background .35s,border .35s,transform .35s var(--ease);
}

.menu-toggle__icon i {
    position: absolute;
    width: 14px;
    height: 1px;
    background: #fff;
    transition: transform .45s var(--ease-expo),top .45s var(--ease-expo);
}

.menu-toggle__icon i:first-child {
    top: 19px;
}

.menu-toggle__icon i:last-child {
    top: 24px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: #fff;
    border-color: #fff;
    transform: rotate(180deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i {
    background: #000;
    top: 21px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: rotate(-45deg);
}

.menu {
    position: fixed;
    z-index: 210;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(320px,42vw) 1fr;
    background: #080808;
    visibility: hidden;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: clip-path .85s var(--ease-expo),visibility 0s .85s;
}

.menu.is-open {
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
    transition: clip-path .85s var(--ease-expo),visibility 0s;
}

.menu__visual {
    position: relative;
    overflow: hidden;
    background: #111;
}

.menu__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity .55s,transform 1.1s var(--ease-expo);
    filter: saturate(.8) contrast(1.04);
}

.menu__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.menu__visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.7));
}

.menu__visual p {
    position: absolute;
    z-index: 1;
    left: 40px;
    bottom: 36px;
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -.025em;
}

.menu__panel {
    padding: calc(var(--header-h) + 34px) 5vw 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100svh;
}

.menu__panel-top,
.menu__panel-bottom {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.45);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.menu__nav {
    display: flex;
    flex-direction: column;
}

.menu__nav a {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    overflow: hidden;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .5s,transform .65s var(--ease-expo),padding .35s;
}

.menu.is-open .menu__nav a {
    opacity: 1;
    transform: none;
}

.menu.is-open .menu__nav a:nth-child(1) {
    transition-delay: .22s;
}

.menu.is-open .menu__nav a:nth-child(2) {
    transition-delay: .28s;
}

.menu.is-open .menu__nav a:nth-child(3) {
    transition-delay: .34s;
}

.menu.is-open .menu__nav a:nth-child(4) {
    transition-delay: .4s;
}

.menu__nav a:hover {
    padding-left: 14px;
}

.menu__nav span {
    font-size: 10px;
    color: rgba(255,255,255,.42);
}

.menu__nav strong {
    font-size: clamp(48px,6vw,96px);
    line-height: .88;
    letter-spacing: -.06em;
    font-weight: 400;
}

.menu__nav em {
    font-style: normal;
    font-size: 20px;
    transition: transform .3s;
}

.menu__nav a:hover em {
    transform: rotate(45deg);
}

.menu__panel-bottom {
    justify-content: flex-start;
    gap: 28px;
}

.menu__panel-bottom span {
    margin-left: auto;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: #050505;
}

.hero__media {
    position: absolute;
    inset: -6%;
    z-index: -3;
    will-change: transform;
}

.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: saturate(.8) contrast(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.32) 0%,rgba(0,0,0,.08) 35%,rgba(0,0,0,.72) 100%),linear-gradient(90deg,rgba(0,0,0,.76) 0%,rgba(0,0,0,.2) 65%,rgba(0,0,0,.5) 100%);
}

.hero__grid {
    padding-top: 170px;
    padding-bottom: 78px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 180px;
    gap: 50px;
    align-items: end;
}

.hero__copy {
    max-width: 1080px;
}

.hero__label {
    margin-bottom: 28px;
    color: rgba(255,255,255,.76);
}

.hero__title {
    margin: 0;
    font-size: clamp(68px,11.3vw,184px);
    line-height: .77;
    letter-spacing: -.076em;
    font-weight: 400;
}

.hero__title>span {
    display: block;
    overflow: hidden;
    padding-bottom: .08em;
    font-size: 130px;
    letter-spacing: -8px;
}

.hero__title>span:last-child {
    margin-left: 9.5vw;
    color: rgba(255,255,255,.8);
    line-height: 143px;
    text-indent: 23px;
    letter-spacing: -12px;
    padding-bottom: 48px;
    padding-top: 0px;
    margin-top: -39px;
}

.hero__title>span>span {
    display: inline-block;
    transform: translateY(110%);
}

.hero__bottom {
    margin-top: 44px;
    margin-left: 10vw;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 760px;
}

.hero__bottom p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.6;
    max-width: 470px;
}

.hero__side {
    justify-self: end;
    border-left: 1px solid rgba(255,255,255,.3);
    padding-left: 18px;
    padding-bottom: 5px;
}

.hero__side span {
    font-size: 10px;
    letter-spacing: .16em;
    color: rgba(255,255,255,.48);
}

.hero__side p {
    margin: 18px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,.84);
}

.cta {
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .35s,color .35s,border .35s;
}

.cta i {
    font-style: normal;
    font-size: 18px;
    transition: transform .35s;
}

.cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.cta:hover i {
    transform: rotate(45deg);
}

.scroll-cue {
    position: absolute;
    right: 38px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 9px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    writing-mode: vertical-rl;
}

.scroll-cue i {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,.35);
    position: relative;
    overflow: hidden;
}

.scroll-cue i::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine{
    0% {
        transform: translateY(-100%);
    }

    55%,
    100% {
        transform: translateY(100%);
    }
}

.orb {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(.2px);
}

.orb span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 31%,rgba(255,255,255,.8) 0 1%,rgba(184,136,255,.8) 4%,rgba(115,47,255,.35) 18%,rgba(68,22,156,.08) 52%,transparent 70%);
    box-shadow: inset -20px -30px 70px rgba(0,0,0,.5);
    animation: orbFloat 8s ease-in-out infinite;
}

.orb--hero {
    width: 42vw;
    height: 42vw;
    right: -17vw;
    top: 7vh;
    opacity: .46;
    z-index: -1;
}

@keyframes orbFloat{
    50% {
        transform: translateY(-16px) scale(1.03);
    }
}

.manifesto {
    padding: 150px 0 170px;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.manifesto__head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.manifesto__index {
    margin: 0;
    color: rgba(255,255,255,.4);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
}

.manifesto__grid {
    padding-top: 64px;
    display: grid;
    grid-template-columns: minmax(0,1fr) 310px;
    gap: 80px;
    align-items: end;
}

.manifesto__note {
    padding-bottom: 16px;
}

.manifesto__note p {
    margin: 0 0 32px;
    color: rgba(255,255,255,.55);
    font-size: 17px;
    line-height: 1.65;
}

.text-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-top: 1px solid rgba(255,255,255,.3);
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 20px;
    transition: transform .35s;
}

.text-link:hover span {
    transform: rotate(45deg);
}

.manifesto__media {
    margin-top: 110px;
    position: relative;
}

.media-frame {
    margin: 0;
    position: relative;
    height: min(69vw,900px);
    overflow: hidden;
    background: #111;
}

.media-frame img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center 57%;
    will-change: transform;
    position: static;
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 60%,rgba(0,0,0,.66));
}

.media-frame figcaption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.experience {
    padding: 150px 0 190px;
    background: var(--paper);
    color: #101010;
    position: relative;
}

.experience .section-label {
    color: rgba(0,0,0,.5);
}

.experience__intro {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 60px;
    align-items: end;
}

.experience__intro .section-label {
    grid-column: 1/-1;
    border-bottom: 1px solid rgba(0,0,0,.2);
    padding-bottom: 20px;
}

.experience__lede {
    margin: 0 0 8px;
    max-width: 500px;
    font-size: 17px;
    line-height: 1.65;
    color: rgba(0,0,0,.58);
}

.experience__stage {
    margin-top: 120px;
    display: grid;
    grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
    gap: 6vw;
    align-items: start;
}

.experience__visual {
    position: sticky;
    top: 300px;
    height: min(80vh,900px);
    overflow: hidden;
    background: #ddd;
}

.experience__image {
    position: absolute;
    inset: 0;
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transition: opacity .55s,clip-path .85s var(--ease-expo);
}

.experience__image.is-active {
    opacity: 1;
    clip-path: inset(0);
}

.experience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-area: 1 / 1 / 2 / 2;
}

.experience__steps {
    padding-top: 7vh;
}

.experience-step {
    min-height: 60vh;
    padding: 36px 0 60px;
    border-top: 1px solid rgba(0,0,0,.22);
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 30px;
    opacity: .28;
    transition: opacity .45s;
}

.experience-step.is-active {
    opacity: 1;
}

.experience-step>span {
    font-size: 11px;
    color: rgba(0,0,0,.46);
}

.experience-step h3 {
    margin: 0 0 22px;
    font-size: clamp(38px,5vw,76px);
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 400;
}

.experience-step p {
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    line-height: 1.68;
    color: rgba(0,0,0,.62);
}

.marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: #060606;
    padding: 24px 0;
    flex-direction: row;
    display: flex;
}

.marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 40px;
    animation: marquee 24s linear infinite;
    margin-right: 0;
    padding-right: 35px;
}

.marquee__track span {
    font-size: clamp(54px,8vw,126px);
    line-height: .9;
    letter-spacing: -.055em;
    color: rgba(255,255,255,.92);
    white-space: nowrap;
}

.marquee__track i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 26px rgba(130,70,255,.8);
}

@keyframes marquee{
    to {
        transform: translateX(-50%);
    }
}

.services {
    padding: 170px 0;
    background: #060606;
    overflow: hidden;
}

.services__head {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 70px;
    align-items: end;
}

.services__head .section-label {
    margin-bottom: 32px;
}

.services__intro {
    margin: 0 0 9px;
    color: rgba(255,255,255,.56);
    font-size: 16px;
    line-height: 1.65;
}

.services__rail {
    margin-top: 96px;
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr;
    gap: 12px;
}

.service-card {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: #111;
}

.service-card--large {
    min-height: 760px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease-expo);
    filter: saturate(.82);
}

.service-card:hover img {
    transform: scale(1.045);
}

.service-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 35%,rgba(0,0,0,.84));
}

.service-card__copy {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.service-card__copy>span {
    font-size: 9px;
    letter-spacing: .14em;
    color: rgba(255,255,255,.55);
}

.service-card__copy h3 {
    margin: 16px 0 13px;
    font-size: clamp(27px,3vw,46px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 400;
}

.service-card__copy p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.55;
    max-width: 310px;
}

.kuwait-story {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.kuwait-story__media {
    position: absolute;
    inset: -7%;
    z-index: -2;
    will-change: transform;
}

.kuwait-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kuwait-story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.23),rgba(0,0,0,.82)),linear-gradient(90deg,rgba(0,0,0,.62),transparent 75%);
}

.kuwait-story__content {
    padding-top: 160px;
    padding-bottom: 70px;
}

.kuwait-story h2 {
    margin: 30px 0 80px;
    max-width: 1032px;
    font-size: clamp(68px,10vw,160px);
    line-height: .84;
    letter-spacing: -.075em;
    font-weight: 400;
}

.kuwait-story__foot {
    border-top: 1px solid rgba(255,255,255,.35);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.kuwait-story__foot p {
    margin: 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.76);
}

.kuwait-story__foot span {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

.download {
    position: relative;
    padding: 180px 0 160px;
    background: var(--paper);
    color: #101010;
    overflow: hidden;
}

.download .section-label {
    color: rgba(0,0,0,.5);
}

.download__grid {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(360px,.72fr);
    gap: 8vw;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download__copy {
    max-width: 780px;
}

.download__copy .section-heading {
    margin: 30px 0 34px;
}

.download__lede {
    margin: 0;
    color: rgba(0,0,0,.58);
    font-size: 18px;
    line-height: 1.65;
}

.store-buttons {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    min-width: 205px;
    min-height: 68px;
    border-radius: 18px;
    background: #0a0a0a;
    color: #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
    transition: transform .3s var(--ease),background .3s;
}

.store-button:hover {
    background: var(--violet-dark);
    transform: translateY(-3px);
}

.store-button svg {
    width: 29px;
    height: 29px;
    flex: none;
}

.store-button span {
    display: flex;
    flex-direction: column;
}

.store-button small {
    font-size: 9px;
    letter-spacing: .03em;
}

.store-button strong {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.02em;
}

.orb--download {
    width: 50vw;
    height: 50vw;
    left: -22vw;
    bottom: -20vw;
    opacity: .28;
    mix-blend-mode: multiply;
}

.phone-scene {
    position: relative;
    height: 700px;
    display: grid;
    place-items: center;
}

.phone-scene__halo {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(130,70,255,.38),rgba(130,70,255,.07) 48%,transparent 70%);
    filter: blur(10px);
}

.phone {
    position: relative;
    width: 300px;
    height: 622px;
    border-radius: 48px;
    background: #0b0b0b;
    padding: 10px;
    box-shadow: 0 50px 90px rgba(0,0,0,.32),inset 0 0 0 1px rgba(255,255,255,.15);
    transform: rotate(4deg);
}

.phone__island {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 24px;
    border-radius: 999px;
    background: #050505;
}

.phone__screen {
    position: relative;
    height: 100%;
    border-radius: 39px;
    overflow: hidden;
    background: #eee;
}

.phone__map {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,#e9e6e0,#cfcac0);
}

.phone__map::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(25deg,transparent 47%,rgba(255,255,255,.65) 48% 51%,transparent 52%),linear-gradient(-25deg,transparent 47%,rgba(255,255,255,.4) 48% 51%,transparent 52%);
    background-size: 130px 130px;
}

.road {
    position: absolute;
    height: 7px;
    background: rgba(255,255,255,.78);
    border-radius: 999px;
    transform-origin: left;
}

.road--one {
    width: 310px;
    top: 180px;
    left: -20px;
    transform: rotate(29deg);
}

.road--two {
    width: 260px;
    top: 305px;
    left: 10px;
    transform: rotate(-20deg);
}

.road--three {
    width: 280px;
    top: 95px;
    left: 80px;
    transform: rotate(83deg);
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--violet);
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.map-pin--one {
    top: 160px;
    left: 90px;
}

.map-pin--two {
    top: 260px;
    right: 70px;
}

.car-pin {
    position: absolute;
    top: 210px;
    left: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111;
    box-shadow: 0 12px 24px rgba(0,0,0,.28);
    transform: translateX(-50%);
}

.car-pin img {
    width: 32px;
}

.phone__top {
    position: absolute;
    z-index: 3;
    top: 45px;
    left: 22px;
    right: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone__top img {
    width: 68px;
}

.phone__top span {
    font-size: 14px;
    color: #111;
}

.phone__sheet {
    position: absolute;
    z-index: 3;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px 17px 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 -14px 35px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.phone__handle {
    width: 40px;
    height: 4px;
    border-radius: 99px;
    background: #ddd;
    align-self: center;
    margin-bottom: 18px;
}

.phone__sheet small {
    color: #888;
    font-size: 10px;
    margin-bottom: 6px;
}

.phone__sheet strong {
    font-size: 18px;
    letter-spacing: -.03em;
}

.phone__sheet button {
    margin-top: 18px;
    height: 48px;
    border: 0;
    border-radius: 15px;
    background: #101010;
    color: white;
    font-weight: 600;
    pointer-events: none;
}

.floating-chip {
    position: absolute;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
    font-size: 11px;
    white-space: nowrap;
}

.floating-chip--one {
    left: 0;
    top: 140px;
}

.floating-chip--one span {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #61b768;
    margin-right: 8px;
}

.floating-chip--two {
    right: -30px;
    bottom: 155px;
}

.final-cta {
    position: relative;
    min-height: 90svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.final-cta__media {
    position: absolute;
    inset: -6%;
    z-index: -2;
    will-change: transform;
}

.final-cta__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.8));
}

.final-cta__content {
    padding-bottom: 62px;
}

.final-cta__content>span {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

.final-cta__link {
    margin-top: 22px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.38);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.final-cta__link strong {
    font-size: clamp(62px,10vw,158px);
    line-height: .8;
    letter-spacing: -.075em;
    font-weight: 400;
}

.final-cta__link i {
    font-style: normal;
    font-size: 52px;
    margin-bottom: 10px;
    transition: transform .45s var(--ease);
}

.final-cta__link:hover i {
    transform: rotate(45deg);
}

.footer {
    padding: 72px 0 34px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer>img {
    width: 93px;
}

.footer>p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.55;
}

.footer__links {
    justify-self: end;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.footer__links a:hover {
    color: #ae83ff;
}

.footer__bottom {
    grid-column: 1/-1;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.38);
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer__bottom a:hover {
    color: #fff;
}

.mobile-download {
    display: none;
}

.reveal-up,
.reveal-line,
.reveal-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .75s var(--ease-expo),transform .85s var(--ease-expo);
}

.reveal-line {
    transform: translateY(18px);
}

.reveal-card {
    transform: translateY(50px);
}

.reveal-up.is-visible,
.reveal-line.is-visible,
.reveal-card.is-visible {
    opacity: 1;
    transform: none;
    margin-left: 10px;
    margin-top: 9px;
}

.reveal-image {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.1s var(--ease-expo);
}

.reveal-image.is-visible {
    clip-path: inset(0);
}

[data-split] .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: .18em;
    margin-bottom: -.09em;
}

[data-split] .word-inner {
    display: inline-block;
    transform: translateY(112%);
    transition: transform .9s var(--ease-expo);
}

[data-split].is-visible .word-inner {
    transform: translateY(0);
    letter-spacing: -6px;
    padding-bottom: 16px;
    margin-right: 0px;
}

[data-split] .word:nth-child(2) .word-inner {
    transition-delay: .035s;
    letter-spacing: -7px;
}

[data-split] .word:nth-child(3) .word-inner {
    transition-delay: .07s;
}

[data-split] .word:nth-child(4) .word-inner {
    transition-delay: .105s;
}

[data-split] .word:nth-child(5) .word-inner {
    transition-delay: .14s;
}

[data-split] .word:nth-child(6) .word-inner {
    transition-delay: .175s;
}

[data-split] .word:nth-child(7) .word-inner {
    transition-delay: .21s;
}

[data-split] .word:nth-child(8) .word-inner {
    transition-delay: .245s;
}

@media (max-width:1100px){
    :root {
        --header-h: 80px;
    }

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

    .shell-wide {
        width: calc(100% - 24px);
    }

    .site-header {
        padding: 0 24px;
    }

    .header-meta {
        display: none;
    }

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

    .hero__side {
        display: none;
    }

    .hero__title>span:last-child {
        margin-left: 5vw;
    }

    .hero__bottom {
        margin-left: 5vw;
    }

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

    .manifesto__note {
        max-width: 450px;
        margin-left: auto;
    }

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

    .experience__lede {
        max-width: 600px;
    }

    .services__rail {
        grid-template-columns: 1.15fr .85fr;
        grid-template-rows: 1fr 1fr;
    }

    .service-card--large {
        grid-row: 1/3;
    }

    .service-card {
        min-height: 480px;
    }

    .download__grid {
        gap: 3vw;
    }
}

@media (max-width:820px){
    .cursor {
        display: none;
    }

    .loader {
        padding: 24px;
    }

    .loader__top span {
        display: none;
    }

    .loader__center {
        flex-direction: column;
        align-items: flex-start;
        gap: 34px;
    }

    .loader__count {
        align-self: flex-end;
    }

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

    .menu__visual {
        display: none;
    }

    .menu__panel {
        padding: calc(var(--header-h) + 28px) 24px 28px;
    }

    .menu__nav strong {
        font-size: clamp(50px,14vw,86px);
    }

    .hero__grid {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .hero__title {
        font-size: clamp(68px,18vw,125px);
        line-height: .82;
    }

    .hero__title>span:last-child {
        margin-left: 0;
    }

    .hero__bottom {
        margin-left: 0;
        display: block;
    }

    .hero__bottom p {
        font-size: 15px;
    }

    .hero__bottom .cta {
        margin-top: 28px;
    }

    .scroll-cue {
        display: none;
    }

    .orb--hero {
        width: 80vw;
        height: 80vw;
        right: -35vw;
    }

    .manifesto {
        padding: 110px 0;
    }

    .manifesto__grid {
        padding-top: 44px;
    }

    .manifesto__media {
        margin-top: 70px;
    }

    .media-frame {
        height: 82vh;
        max-height: 760px;
    }

    .media-frame img {
        object-position: 61% center;
    }

    .media-frame figcaption span:last-child {
        display: none;
    }

    .experience {
        padding: 110px 0;
    }

    .experience__stage {
        margin-top: 70px;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience__visual {
        position: relative;
        top: auto;
        height: 65vh;
        max-height: 700px;
    }

    .experience__steps {
        padding-top: 0;
    }

    .experience-step {
        min-height: auto;
        padding: 34px 0 72px;
    }

    .experience-step:not(.is-active) {
        opacity: .42;
    }

    .services {
        padding: 110px 0;
    }

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

    .services__intro {
        max-width: 500px;
    }

    .services__rail {
        margin-top: 64px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
        gap: 10px;
    }

    .service-card,
    .service-card--large {
        flex: 0 0 78vw;
        min-height: 66vh;
        scroll-snap-align: start;
    }

    .service-card--large {
        grid-row: auto;
    }

    .kuwait-story h2 {
        margin-bottom: 60px;
    }

    .kuwait-story__foot {
        display: block;
    }

    .kuwait-story__foot span {
        display: block;
        margin-top: 24px;
    }

    .download {
        padding: 110px 0;
    }

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

    .download__copy {
        position: relative;
        z-index: 2;
    }

    .phone-scene {
        margin-top: 40px;
        height: 650px;
    }

    .phone {
        transform: rotate(2deg);
    }

    .final-cta {
        min-height: 75svh;
    }

    .final-cta__link {
        display: block;
    }

    .final-cta__link i {
        display: block;
        margin-top: 30px;
    }

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

    .footer__links {
        justify-self: end;
    }

    .footer>p {
        grid-column: 1/-1;
    }

    .footer__bottom {
        flex-wrap: wrap;
        gap: 14px;
    }

    .mobile-download {
        position: fixed;
        z-index: 190;
        left: 12px;
        right: 12px;
        bottom: max(12px,env(safe-area-inset-bottom));
        height: 54px;
        border-radius: 999px;
        background: #fff;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 22px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .12em;
        box-shadow: 0 16px 50px rgba(0,0,0,.32);
        transition: opacity .3s,transform .3s;
    }

    .mobile-download.is-hidden {
        opacity: 0;
        transform: translateY(80px);
        pointer-events: none;
    }
}

@media (max-width:540px){
    :root {
        --header-h: 72px;
    }

    .shell {
        width: calc(100% - 32px);
    }

    .shell-wide {
        width: calc(100% - 16px);
    }

    .site-header {
        padding: 0 16px;
    }

    .brand img {
        width: 82px;
    }

    .menu-toggle__label {
        display: none;
    }

    .menu-toggle__icon {
        width: 42px;
        height: 42px;
    }

    .hero__media video {
        object-position: 58% center;
    }

    .hero__grid {
        padding-top: 120px;
        padding-bottom: 86px;
    }

    .hero__title {
        font-size: clamp(64px,20vw,102px);
    }

    .hero__bottom {
        margin-top: 30px;
    }

    .hero__bottom p {
        max-width: 310px;
    }

    .cta {
        min-height: 54px;
    }

    .manifesto__head {
        display: block;
    }

    .manifesto__index {
        margin-top: 18px;
    }

    .manifesto__grid {
        gap: 45px;
    }

    .manifesto__note {
        margin: 0;
    }

    .media-frame {
        height: 72vh;
    }

    .media-frame figcaption {
        left: 16px;
        right: 16px;
    }

    .section-heading {
        font-size: clamp(51px,16vw,78px);
    }

    .display-text {
        font-size: clamp(46px,15vw,74px);
    }

    .experience-step {
        grid-template-columns: 35px 1fr;
        gap: 14px;
    }

    .experience-step h3 {
        font-size: 42px;
    }

    .experience__visual {
        height: 58vh;
    }

    .marquee__track {
        gap: 24px;
    }

    .marquee__track i {
        width: 12px;
        height: 12px;
    }

    .services__head {
        gap: 32px;
    }

    .service-card,
    .service-card--large {
        flex-basis: 88vw;
        min-height: 64vh;
    }

    .service-card__copy {
        left: 20px;
        right: 20px;
        bottom: 22px;
    }

    .kuwait-story__content {
        padding-bottom: 42px;
    }

    .kuwait-story h2 {
        font-size: clamp(63px,18vw,96px);
    }

    .store-buttons {
        display: grid;
    }

    .store-button {
        width: 100%;
    }

    .phone-scene {
        height: 570px;
        transform: scale(.9);
        margin-left: -20px;
        margin-right: -20px;
    }

    .floating-chip--one {
        left: -16px;
    }

    .floating-chip--two {
        right: -16px;
    }

    .final-cta__content {
        padding-bottom: 38px;
    }

    .final-cta__link strong {
        font-size: clamp(60px,18vw,96px);
    }

    .footer {
        padding-bottom: 90px;
    }

    .footer__bottom span:nth-child(2) {
        display: none;
    }
}

@media (prefers-reduced-motion:reduce){
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms!important;
        animation-iteration-count: 1!important;
        transition-duration: .01ms!important;
        scroll-behavior: auto!important;
    }

    .loader {
        display: none;
    }

    .cursor {
        display: none;
    }

    [data-split] .word-inner,
    .reveal-up,
    .reveal-line,
    .reveal-card {
        transform: none!important;
        opacity: 1!important;
    }

    .reveal-image {
        clip-path: none!important;
    }
}

.no-js .loader,
.no-js .cursor,
.no-js .page-transition {
    display: none;
}

.no-js .reveal-up,
.no-js .reveal-line,
.no-js .reveal-card {
    opacity: 1;
    transform: none;
}

.no-js .reveal-image {
    clip-path: none;
}

.no-js [data-split] .word-inner {
    transform: none;
}

.hero__title>span>span {
    display: inline-block;
    transform: translateY(112%);
    transition: transform 1.05s var(--ease-expo);
}

.hero__title>span:nth-child(2)>span {
    transition-delay: .08s;
}

.hero-ready .hero__title>span>span {
    transform: translateY(0);
}


/* ============================================================
   Mobile refinement — 2026-08-13
   Typography, phone mockup and vector arrows
   ============================================================ */

.link-arrow {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.08em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu__nav em .link-arrow {
    width: .85em;
    height: .85em;
}

.cta i,
.final-cta__link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.text-link span,
.mobile-download span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer__links .link-arrow,
.footer__bottom .link-arrow {
    width: .95em;
    height: .95em;
    margin-left: .22em;
}

@media (max-width: 820px) {
    /* Keep large editorial headings readable without clipping letters. */
    .section-heading,
    .display-text,
    .kuwait-story h2,
    .final-cta__link strong {
        letter-spacing: -.035em;
    }

    [data-split] .word {
        margin-right: .14em;
        margin-bottom: 0;
        padding-bottom: .12em;
    }

    [data-split] .word-inner,
    [data-split].is-visible .word-inner,
    [data-split] .word:nth-child(2) .word-inner {
        letter-spacing: inherit;
        padding-bottom: 0;
        margin-right: 0;
    }

    .text-link span {
        font-size: 18px;
    }

    .final-cta__link i {
        width: 42px;
        height: 42px;
    }

    .final-cta__link i .link-arrow {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 540px) {
    /* Hero title is ~20% smaller than the previous mobile treatment. */
    .hero__title {
        font-size: clamp(52px, 16vw, 82px);
        line-height: .88;
        letter-spacing: -.045em;
        max-width: 94%;
    }

    .hero__title > span {
        font-size: inherit;
        letter-spacing: inherit;
        line-height: inherit;
        padding-bottom: .12em;
    }

    .hero__title > span:last-child {
        line-height: inherit;
        letter-spacing: inherit;
        padding-bottom: .12em;
        margin-top: 0;
        text-indent: 0;
    }

    /* Slightly more breathing room for the remaining editorial headings. */
    .section-heading {
        font-size: clamp(46px, 14vw, 68px);
        line-height: .94;
        letter-spacing: -.032em;
    }

    .display-text {
        font-size: clamp(43px, 13.5vw, 65px);
        line-height: .98;
        letter-spacing: -.03em;
    }

    .kuwait-story h2 {
        font-size: clamp(54px, 15vw, 78px);
        line-height: .92;
        letter-spacing: -.034em;
    }

    .final-cta__link strong {
        font-size: clamp(52px, 15vw, 80px);
        line-height: .9;
        letter-spacing: -.035em;
    }

    [data-split] .word {
        margin-right: .16em;
        padding-bottom: .14em;
        overflow: hidden;
    }

    /* Reduce the entire phone composition and keep it inside the viewport. */
    .phone-scene {
        width: 120%;
        height: 500px;
        margin-top: 34px;
        margin-left: -10%;
        margin-right: -10%;
        margin-bottom: -92px;
        transform: scale(.78);
        transform-origin: top center;
    }

    .phone-scene__halo {
        width: 420px;
        height: 420px;
    }

    /* All directional arrows are SVGs; prevent platform emoji substitution. */
    .mobile-download .link-arrow {
        width: 17px;
        height: 17px;
        stroke-width: 1.7;
    }
}


/* ============================================================
   SEO / analytics / app-screen update
   ============================================================ */

.phone__app-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    background: #eeece7;
}

@media (max-width: 540px) {
    .phone__app-shot {
        object-position: center top;
    }
}
