:root {
  --ink: #07121f;
  --ink-soft: #102233;
  --paper: #f4f1e9;
  --paper-deep: #e9e3d6;
  --white: #ffffff;
  --sand: #f0bd65;
  --sand-deep: #d99e42;
  --blue: #2979fb;
  --green: #00db09;
  --muted: #66727d;
  --line: rgba(7, 18, 31, .13);
  --radius: 26px;
  --shadow: 0 30px 80px rgba(8, 21, 32, .14);
  --font-body: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 120px 0; }
.page-noise { position: fixed; inset: 0; z-index: 99; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E"); }

.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; padding: 18px 0; transition: .3s ease; }
.site-header.is-scrolled { padding: 10px 0; background: rgba(244, 241, 233, .84); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(7, 18, 31, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 45px; aspect-ratio: 1; display: grid; place-items: center; background: var(--ink); border-radius: 14px 14px 14px 4px; color: var(--sand); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.brand-mark span { font: 700 15px/1 var(--font-display); letter-spacing: -.04em; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font: 700 15px/1.2 var(--font-display); letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a:not(.button) { font-size: 13px; font-weight: 700; position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:not(.button):hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 0; transition: .25s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; min-height: 54px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 100px; color: var(--paper); background: var(--ink); font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .25s, background .25s, color .25s, box-shadow .25s; }
.button:hover { transform: translateY(-2px); color: var(--ink); background: var(--sand); box-shadow: 0 12px 30px rgba(7,18,31,.14); }
.button-small { min-height: 44px; padding: 0 20px; }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.button-light:hover { background: var(--sand); border-color: var(--sand); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(2px, -2px); }
.kicker { display: block; margin-bottom: 18px; color: #86611f; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.kicker-light { color: var(--sand); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; margin-bottom: 56px; }
.section-heading h2, .ecosystem-intro h2, .why-copy h2, .faq-intro h2, .booking-copy h2 { margin-bottom: 0; font: 600 clamp(38px, 5vw, 66px)/.98 var(--font-display); letter-spacing: -.055em; }
.section-heading p { max-width: 460px; margin-bottom: 4px; color: var(--muted); font-size: 15px; }
.section-heading-centered { display: block; max-width: 700px; margin: 0 auto 70px; text-align: center; }
.section-heading-centered p { margin: 20px auto 0; }

.hero { position: relative; min-height: 860px; padding-top: 170px; overflow: hidden; background: radial-gradient(circle at 68% 34%, rgba(240,189,101,.15), transparent 28%), linear-gradient(180deg, #f7f4ed 0%, var(--paper) 100%); }
.hero::after { content: ""; position: absolute; top: 0; right: 0; width: 33%; height: 100%; border-left: 1px solid rgba(7,18,31,.06); background-image: linear-gradient(rgba(7,18,31,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(7,18,31,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, transparent, black 28%, black 72%, transparent); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 380px; height: 380px; top: 80px; right: -220px; border: 1px solid rgba(7,18,31,.08); }
.hero-orb-two { width: 240px; height: 240px; bottom: 90px; left: -150px; border: 1px solid rgba(7,18,31,.06); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 76px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(0,219,9,.1); }
.hero h1 { max-width: 680px; margin-bottom: 28px; font: 600 clamp(58px, 7vw, 96px)/.9 var(--font-display); letter-spacing: -.075em; }
.hero h1 em { color: #ad7a29; font-style: normal; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: #53606b; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 44px; }
.hero-trust p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.hero-trust strong { color: var(--ink); }
.trust-avatars { display: flex; }
.trust-avatars span { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -7px; border: 2px solid var(--paper); border-radius: 50%; color: var(--paper); background: var(--ink); font: 700 9px/1 var(--font-display); }
.trust-avatars span:first-child { margin-left: 0; background: #b07b4e; }
.trust-avatars span:nth-child(2) { background: #2979fb; }
.hero-visual { position: relative; padding: 20px 30px 44px 0; }
.skyline-card { position: relative; border-radius: 34px; padding: 18px; color: var(--white); background: var(--ink); box-shadow: 0 40px 90px rgba(7,18,31,.28); transform: rotate(1.8deg); }
.skyline-card::before { content: ""; position: absolute; inset: 9px; z-index: 2; pointer-events: none; border: 1px solid rgba(255,255,255,.11); border-radius: 27px; }
.skyline-topline { display: flex; align-items: center; justify-content: space-between; padding: 4px 8px 14px; color: rgba(255,255,255,.65); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; }
.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,219,9,.12); }
.dubai-skyline { width: 100%; aspect-ratio: 1.14; object-fit: cover; border-radius: 23px; }
.hero-data-card { position: absolute; z-index: 3; border: 1px solid rgba(255,255,255,.22); border-radius: 17px; box-shadow: 0 18px 60px rgba(7,18,31,.22); backdrop-filter: blur(14px); }
.hero-data-primary { left: 40px; right: 40px; bottom: 42px; padding: 17px 20px; background: rgba(7,18,31,.72); }
.data-label { display: block; margin-bottom: 5px; color: rgba(255,255,255,.64); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.hero-data-primary strong { font: 600 14px/1.3 var(--font-display); }
.hero-data-primary strong span { margin: 0 8px; color: var(--sand); }
.progress-track { height: 2px; margin-top: 12px; background: rgba(255,255,255,.14); }
.progress-track i { display: block; width: 72%; height: 100%; background: linear-gradient(90deg, var(--sand), var(--green)); }
.hero-data-floating { display: flex; align-items: center; gap: 10px; left: -36px; top: 105px; padding: 12px 15px; background: rgba(244,241,233,.92); color: var(--ink); border-color: rgba(7,18,31,.09); transform: rotate(-4deg); }
.mini-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--white); background: linear-gradient(135deg, var(--blue), #183b7d); font: 700 13px/1 var(--font-display); }
.hero-data-floating > span:last-child { display: flex; flex-direction: column; }
.hero-data-floating small { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }
.hero-data-floating strong { font-size: 9px; }
.hero-stamp { position: absolute; right: 0; bottom: -1px; width: 110px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--sand); box-shadow: 0 15px 40px rgba(7,18,31,.16); transform: rotate(8deg); }
.hero-stamp span { position: absolute; inset: 8px; font-size: 7px; font-weight: 800; letter-spacing: .14em; text-align: center; border: 1px dashed rgba(7,18,31,.35); border-radius: 50%; padding-top: 5px; }
.hero-stamp strong { font: 700 24px/1 var(--font-display); }
.disclaimer-bar { position: relative; z-index: 3; display: flex; gap: 15px; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--line); }
.disclaimer-bar span { flex: 0 0 auto; height: 21px; padding: 2px 8px; color: var(--paper); background: var(--ink); border-radius: 5px; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.disclaimer-bar p { max-width: 900px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }

.signal-strip { width: 100%; overflow: hidden; padding: 17px 0; color: var(--paper); background: var(--ink); }
.signal-track { width: max-content; display: flex; align-items: center; gap: 28px; animation: marquee 32s linear infinite; }
.signal-track span { font: 600 11px/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; }
.signal-track i { width: 5px; height: 5px; border: 1px solid var(--sand); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 410px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, transform .3s; }
.service-card:hover { background: #f9f7f2; }
.service-card-featured { color: var(--paper); background: var(--ink); }
.service-card-featured:hover { background: #0e2031; }
.service-number { position: absolute; top: 26px; right: 30px; color: #9aa2aa; font: 600 10px/1 var(--font-display); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 58px; border: 1px solid var(--line); border-radius: 50%; }
.service-card-featured .service-icon { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.service-icon svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { max-width: 360px; margin-bottom: 17px; font: 600 27px/1.12 var(--font-display); letter-spacing: -.035em; }
.service-card p { max-width: 450px; color: var(--muted); font-size: 13px; }
.service-card-featured p { color: rgba(255,255,255,.58); }
.service-card ul { display: flex; gap: 7px; margin: 24px 0 0; padding: 0; list-style: none; flex-wrap: wrap; }
.service-card li { padding: 6px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 100px; color: rgba(255,255,255,.7); font-size: 9px; }
.service-card > a { position: absolute; left: 42px; bottom: 36px; display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 800; }
.service-card > a span { color: var(--sand-deep); }

.ecosystem { color: var(--paper); background: var(--ink); }
.ecosystem-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; }
.ecosystem-intro { position: sticky; top: 120px; }
.ecosystem-intro h2 { max-width: 510px; margin-bottom: 30px; }
.ecosystem-intro > p { max-width: 500px; margin-bottom: 32px; color: rgba(255,255,255,.58); font-size: 14px; }
.official-mark { position: relative; width: 290px; min-height: 87px; display: flex; flex-direction: column; justify-content: center; margin-top: 50px; padding: 17px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; overflow: hidden; }
.official-mark span { margin-bottom: 7px; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.official-mark img { position: relative; z-index: 2; width: 145px; min-height: 26px; object-fit: contain; object-position: left center; opacity: 0; transition: opacity .2s; }
.official-mark strong { position: absolute; left: 20px; bottom: 17px; z-index: 1; color: var(--white); font: 700 18px/1 var(--font-display); letter-spacing: .07em; transition: opacity .2s; }
.official-mark.logo-loaded img { opacity: 1; }
.official-mark.logo-loaded strong { opacity: 0; }
.official-mark.logo-failed img { display: none; }
.ecosystem-list { border-top: 1px solid rgba(255,255,255,.14); }
.ecosystem-item { display: grid; grid-template-columns: 30px 56px 1fr 30px; align-items: center; gap: 22px; min-height: 142px; border-bottom: 1px solid rgba(255,255,255,.14); transition: padding .25s, background .25s; }
.ecosystem-item:hover { padding: 0 18px; background: rgba(255,255,255,.04); }
.ecosystem-index { align-self: start; padding-top: 30px; color: rgba(255,255,255,.34); font-size: 9px; }
.ecosystem-symbol { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; color: var(--sand); font: 700 11px/1 var(--font-display); }
.ecosystem-item > span:nth-child(3) { display: flex; flex-direction: column; }
.ecosystem-item strong { margin-bottom: 7px; font: 600 20px/1 var(--font-display); }
.ecosystem-item small { color: rgba(255,255,255,.52); font-size: 11px; line-height: 1.6; }
.ecosystem-item > i { font-style: normal; color: var(--sand); }

.process { background: #eee9df; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-step { position: relative; padding-right: 28px; }
.process-step > span { display: grid; place-items: center; width: 37px; height: 37px; margin-bottom: 22px; border: 1px solid var(--ink); border-radius: 50%; font: 600 9px/1 var(--font-display); }
.process-line { position: absolute; top: 18px; left: 38px; right: 0; height: 1px; background: var(--line); }
.process-line i { position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); transform: rotate(45deg); }
.process-step:last-child .process-line { display: none; }
.process-step h3 { margin-bottom: 13px; font: 600 23px/1 var(--font-display); }
.process-step p { max-width: 220px; color: var(--muted); font-size: 12px; }

.why-us { background: var(--paper); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.why-visual { padding: 25px; border: 1px solid var(--line); border-radius: 36px; }
.dubai-panel { position: relative; min-height: 570px; padding: 42px; overflow: hidden; color: var(--paper); background: linear-gradient(145deg, #173c58 0%, #081522 60%, #1b2e3e 100%); border-radius: 26px; }
.dubai-panel::after { content: ""; position: absolute; width: 320px; height: 320px; top: -110px; right: -90px; border-radius: 50%; background: var(--sand); opacity: .2; filter: blur(2px); }
.panel-tag { display: inline-flex; padding: 7px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; color: rgba(255,255,255,.68); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.dubai-panel h3 { position: relative; z-index: 2; margin: 55px 0 0; font: 600 44px/.98 var(--font-display); letter-spacing: -.05em; }
.dubai-coordinates { position: absolute; right: 35px; top: 175px; z-index: 2; color: rgba(255,255,255,.35); font: 500 9px/1.7 var(--font-display); letter-spacing: .16em; text-align: right; }
.dubai-panel svg { position: absolute; left: 0; bottom: 0; width: 100%; fill: none; stroke: rgba(255,255,255,.52); stroke-width: 1.5; }
.dubai-panel .sun-line { stroke: var(--sand); stroke-width: 2; }
.why-copy > p { max-width: 560px; margin: 28px 0 36px; color: var(--muted); font-size: 14px; }
.why-points { display: grid; gap: 0; border-top: 1px solid var(--line); }
.why-points > div { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.why-points > div > span { width: 24px; height: 24px; display: grid; place-items: center; margin-top: 2px; color: var(--ink); background: var(--sand); border-radius: 50%; font-size: 11px; }
.why-points p { display: flex; flex-direction: column; margin: 0; }
.why-points strong { font-size: 13px; }
.why-points small { margin-top: 4px; color: var(--muted); font-size: 11px; }

.faq { background: #e9e3d7; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { margin-bottom: 25px; }
.faq-intro p { max-width: 360px; margin-bottom: 25px; color: var(--muted); font-size: 13px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0; border: 0; color: var(--ink); background: transparent; text-align: left; cursor: pointer; }
.accordion-item button span { font: 600 17px/1.3 var(--font-display); }
.accordion-item button i { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-weight: 400; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 13px; }
.accordion-item.is-open .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.is-open .accordion-panel p { padding: 0 70px 28px 0; }

.booking { color: var(--paper); background: var(--ink); }
.booking-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.booking-copy { position: sticky; top: 120px; }
.booking-copy h2 { max-width: 510px; margin-bottom: 26px; }
.booking-copy > p { max-width: 470px; color: rgba(255,255,255,.55); font-size: 14px; }
.booking-contact { display: grid; gap: 18px; margin-top: 42px; }
.booking-contact > div { display: flex; align-items: center; gap: 14px; }
.booking-contact > div > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; color: var(--sand); }
.booking-contact p { display: flex; flex-direction: column; margin: 0; }
.booking-contact small { color: rgba(255,255,255,.4); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.booking-contact a, .booking-contact strong { color: rgba(255,255,255,.85); font-size: 11px; font-weight: 600; }
.booking-note { margin-top: 45px; padding: 17px 19px; border-left: 2px solid var(--sand); color: rgba(255,255,255,.48); background: rgba(255,255,255,.04); font-size: 10px; }
.booking-note strong { color: rgba(255,255,255,.82); }
.booking-form-wrap { padding: 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 29px; background: rgba(255,255,255,.035); }
.booking-form { padding: 36px; border-radius: 21px; color: var(--ink); background: var(--paper); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { font: 600 21px/1 var(--font-display); }
.form-heading small { color: var(--muted); font-size: 9px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { position: relative; display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field > span, .field legend { color: #384552; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d7d2c8; border-radius: 10px; outline: none; color: var(--ink); background: #fbfaf7; font-size: 12px; transition: border .2s, box-shadow .2s; }
.field input, .field select { height: 48px; padding: 0 13px; }
.field textarea { min-height: 120px; padding: 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sand-deep); box-shadow: 0 0 0 3px rgba(217,158,66,.13); }
.field input::placeholder, .field textarea::placeholder { color: #a1a7ac; }
.meeting-mode { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; }
.meeting-mode legend { width: 100%; margin-bottom: 1px; }
.meeting-mode label { position: relative; cursor: pointer; }
.meeting-mode input { position: absolute; opacity: 0; pointer-events: none; }
.meeting-mode label span { display: block; padding: 10px 14px; border: 1px solid #d7d2c8; border-radius: 100px; color: var(--muted); font-size: 10px; font-weight: 700; }
.meeting-mode input:checked + span { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.char-count { position: absolute; right: 10px; bottom: 8px; color: #9aa1a6; font-size: 8px; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 9px; cursor: pointer; }
.privacy-check input { margin-top: 3px; accent-color: var(--ink); }
.website-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.submit-button { width: 100%; margin-top: 26px; }
.submit-button.is-loading { pointer-events: none; opacity: .72; }
.submit-button.is-loading i { animation: spin .7s linear infinite; }
.form-status { min-height: 18px; margin: 10px 0 0; color: #9d3a3a; font-size: 10px; text-align: center; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-footer { padding: 75px 0 25px; color: rgba(255,255,255,.65); background: #040c14; }
.footer-main { display: grid; grid-template-columns: 1.5fr .6fr .8fr 1fr; gap: 60px; padding-bottom: 55px; }
.footer-brand .brand-copy strong { color: var(--paper); }
.footer-brand .brand-mark { background: var(--sand); color: var(--ink); }
.footer-brand p { max-width: 300px; margin: 24px 0 0; font-size: 11px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 10px; }
.footer-links strong { margin-bottom: 7px; color: var(--paper); font: 600 11px/1 var(--font-display); }
.footer-links a:hover { color: var(--sand); }
.footer-legal { display: flex; justify-content: space-between; gap: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-legal p { max-width: 720px; margin: 0; color: rgba(255,255,255,.32); font-size: 8px; }

.status-page { min-height: 100vh; color: var(--paper); background: radial-gradient(circle at 75% 15%, rgba(240,189,101,.18), transparent 30%), var(--ink); }
.status-shell { min-height: 100vh; display: grid; place-items: center; padding: 30px; }
.status-card { width: min(600px, 100%); padding: 54px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(255,255,255,.04); box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.status-card .brand { margin-bottom: 70px; }
.status-card .brand-mark { color: var(--ink); background: var(--sand); }
.status-card .brand-copy small { color: rgba(255,255,255,.4); }
.status-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 30px; border-radius: 50%; color: var(--ink); background: var(--green); font-size: 22px; font-weight: 800; }
.status-icon-error { background: var(--sand); }
.status-card h1 { margin-bottom: 25px; font: 600 clamp(44px, 7vw, 70px)/.95 var(--font-display); letter-spacing: -.06em; }
.status-card > p { max-width: 500px; margin-bottom: 30px; color: rgba(255,255,255,.58); font-size: 13px; }
.status-card > small { display: block; margin-top: 22px; color: rgba(255,255,255,.38); font-size: 9px; }
.status-card > small a { color: var(--sand); }

.reveal { opacity: 1; transform: translateY(0); }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }

@media (max-width: 1080px) {
  .hero-grid { gap: 35px; }
  .ecosystem-grid, .why-grid { gap: 60px; }
  .booking-shell { grid-template-columns: .65fr 1.35fr; gap: 48px; }
  .footer-main { grid-template-columns: 1.3fr .7fr .9fr; }
  .footer-links:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 32px, 700px); }
  .section-pad { padding: 90px 0; }
  .site-header.is-scrolled { backdrop-filter: none; }
  .menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 25px; padding: 70px 32px; color: var(--paper); background: var(--ink); transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a:not(.button) { font: 600 34px/1 var(--font-display); }
  .site-nav .button { margin-top: 10px; color: var(--ink); background: var(--sand); }
  .menu-open .menu-toggle span { background: var(--paper); }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 670px; }
  .hero-visual { max-width: 620px; margin: 20px auto 0; padding-right: 0; }
  .hero-data-floating { left: -10px; }
  .hero-stamp { right: -5px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; }
  .ecosystem-grid, .why-grid, .faq-grid, .booking-shell { grid-template-columns: 1fr; }
  .ecosystem-intro, .faq-intro, .booking-copy { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 10px; }
  .process-step:nth-child(2) .process-line { display: none; }
  .why-visual { order: 2; }
  .why-copy { order: 1; }
  .faq-grid { gap: 55px; }
  .booking-shell { gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 26px); }
  .section-pad { padding: 72px 0; }
  .site-header { padding: 12px 0; }
  .brand-mark { width: 41px; }
  .hero { padding-top: 115px; }
  .hero h1 { font-size: clamp(51px, 16vw, 72px); }
  .hero-lead { font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { margin-top: 0; }
  .skyline-card { padding: 10px; border-radius: 24px; }
  .skyline-card::before { inset: 5px; border-radius: 19px; }
  .dubai-skyline { border-radius: 17px; }
  .skyline-topline { padding: 5px 4px 11px; }
  .hero-data-floating { display: none; }
  .hero-data-primary { left: 22px; right: 22px; bottom: 25px; padding: 12px 14px; }
  .hero-data-primary strong { font-size: 10px; }
  .hero-stamp { width: 84px; bottom: 5px; }
  .hero-stamp span { font-size: 5px; }
  .hero-stamp strong { font-size: 18px; }
  .disclaimer-bar { margin-top: 55px; }
  .section-heading h2, .ecosystem-intro h2, .why-copy h2, .faq-intro h2, .booking-copy h2 { font-size: 42px; }
  .service-card { min-height: 390px; padding: 30px; }
  .service-card > a { left: 30px; }
  .ecosystem-grid { gap: 60px; }
  .ecosystem-item { grid-template-columns: 22px 45px 1fr 18px; gap: 10px; min-height: 135px; }
  .ecosystem-symbol { width: 41px; height: 41px; border-radius: 12px; font-size: 9px; }
  .ecosystem-item strong { font-size: 17px; }
  .process-grid { grid-template-columns: 1fr; gap: 38px; }
  .process-line { display: none; }
  .process-step { padding-left: 52px; }
  .process-step > span { position: absolute; left: 0; top: -8px; }
  .dubai-panel { min-height: 470px; padding: 28px; }
  .dubai-panel h3 { font-size: 37px; }
  .why-visual { padding: 10px; border-radius: 27px; }
  .accordion-item button { min-height: 78px; }
  .accordion-item button span { font-size: 15px; }
  .accordion-item.is-open .accordion-panel p { padding-right: 20px; }
  .booking-form { padding: 24px 18px; }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand, .footer-links:last-child { grid-column: auto; }
  .footer-legal { flex-direction: column; gap: 12px; }
  .status-shell { padding: 13px; }
  .status-card { padding: 34px 24px; }
  .status-card .brand { margin-bottom: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
