@font-face { font-family: Alexandria; src: url('assets/fonts/Alexandria-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: Alexandria; src: url('assets/fonts/Alexandria-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: Alexandria; src: url('assets/fonts/Alexandria-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }
@font-face { font-family: Cairo; src: url('assets/fonts/Cairo-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: Cairo; src: url('assets/fonts/Cairo-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: Cairo; src: url('assets/fonts/Cairo-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }

:root {
  --primary: #124FB9;
  --secondary: #EF613E;
  --dark: #08142D;
  --background: #F5F5F5;
  --surface: #FAFAFA;
  --white: #FFFFFF;
  --text: #222222;
  --muted: #777777;
  --line: #EAEAEA;
  --blue-glow: #E6EDF9;
  --orange-glow: #FCE0D8;
  --success: #4CAF50;
  --radius: 18px;
  --shadow: 0 16px 38px rgba(8, 20, 45, .09);
  --shadow-deep: 0 24px 54px rgba(8, 20, 45, .16);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 90px; background: var(--background); }
body { margin: 0; min-width: 320px; overflow-x: clip; color: var(--text); background: var(--background); font-family: Cairo, Arial, sans-serif; line-height: 1.6; }
button, a { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; object-fit: contain; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Alexandria, Cairo, sans-serif; line-height: 1.34; letter-spacing: 0; }
h1 { margin-bottom: 0; color: var(--dark); font-size: 54px; font-weight: 800; }
h2 { margin-bottom: 0; color: var(--dark); font-size: 38px; font-weight: 800; }
h3 { margin-bottom: 0; color: var(--dark); font-size: 17px; font-weight: 700; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-space { padding: 88px 0; }
.section-tint { border-block: 1px solid var(--line); background: var(--surface); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; inset-inline-start: 18px; top: -60px; z-index: 100; padding: 8px 12px; border-radius: 8px; background: var(--dark); color: var(--white); transition: top .2s ease; }
.skip-link:focus { top: 18px; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .94); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; align-items: center; gap: 22px; min-height: 76px; }
.brand { display: inline-flex; flex: none; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 46px; height: 46px; flex: none; border-radius: 12px; }
.brand-copy { display: grid; min-width: 0; line-height: 1.1; }
.brand strong { color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 17px; font-weight: 800; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 10px; white-space: nowrap; }
.site-nav { display: flex; align-items: center; gap: 2px; margin-inline: auto; }
.site-nav a { padding: 9px 10px; border-radius: 8px; color: var(--muted); font-size: 13px; font-weight: 600; transition: color .18s ease, background .18s ease; }
.site-nav a:hover, .site-nav a:focus-visible { outline: none; background: var(--blue-glow); color: var(--primary); }
.language-switch, .menu-toggle { border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-weight: 700; }
.language-switch { width: 43px; height: 37px; flex: none; font-size: 12px; }
.language-switch:hover, .menu-toggle:hover { border-color: var(--primary); }
.menu-toggle { display: none; width: 42px; height: 38px; padding: 8px; }
.menu-toggle-line { display: block; height: 2px; margin: 3px 0; border-radius: 2px; background: var(--primary); }

.eyebrow { display: inline-flex; align-items: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; background: var(--orange-glow); color: var(--secondary); font-size: 12px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 11px 18px; border: 1px solid transparent; border-radius: 10px; font-family: Cairo, sans-serif; font-size: 14px; font-weight: 700; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease; }
.button:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(8, 20, 45, .13); }
.button:focus-visible, .text-action:focus-visible, .orbit-card:focus-visible, .story-step:focus-visible, .footer-links button:focus-visible, .footer-download:focus-visible { outline: 3px solid rgba(18, 79, 185, .28); outline-offset: 3px; }
.button-primary { background: var(--secondary); color: var(--white); }
.button-primary:disabled { background: var(--muted); color: var(--white); }
.button-secondary { border-color: var(--primary); background: var(--white); color: var(--primary); }
.button-light { background: var(--white); color: var(--primary); }
.button-light img { width: 20px; height: 20px; }
.beta-badge, .release-badge { display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, .2); color: inherit; font-size: 10px; white-space: nowrap; }
.text-action { padding: 4px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--primary); font-size: 13px; font-weight: 700; text-align: inherit; }

.hero-story { position: relative; overflow: hidden; padding-top: 78px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; min-height: 530px; }
.hero-copy { min-width: 0; }
.hero-brand-lockup { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.hero-brand-lockup img { width: 72px; height: 72px; flex: none; border-radius: 17px; box-shadow: var(--shadow); }
.hero-brand-lockup > span { display: grid; gap: 5px; line-height: 1; }
.hero-brand-lockup strong { color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 23px; font-weight: 800; }
.hero-brand-lockup b { color: var(--secondary); font-family: Cairo, Alexandria, sans-serif; font-size: 18px; font-weight: 700; }
.hero-copy h1 { max-width: 650px; margin-top: 12px; }
.hero-copy > p { max-width: 580px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.feedback-note { color: var(--muted); font-size: 12px; }
.hero-visual { min-width: 0; perspective: 1150px; --scroll-shift: 0px; }
.story-stage { position: relative; min-height: 440px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-deep); transform: rotateY(-2.4deg) rotateX(1.2deg); transform-style: preserve-3d; }
[dir="ltr"] .story-stage { transform: rotateY(2.4deg) rotateX(1.2deg); }
.stage-layer { position: absolute; }
.map-plane { inset-block-start: 104px; inset-inline-start: 8%; width: min(46%, 235px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transform: translateZ(4px) rotateX(2deg); box-shadow: 0 16px 28px rgba(8, 20, 45, .1); }
.map-plane .map-art { width: 100%; height: 100%; object-fit: contain; opacity: .96; }
.map-pin, .map-arrow { position: absolute; z-index: 2; }
.map-pin-main { inset-inline-start: 36%; top: 38%; }
.map-pin-small { inset-inline-start: 68%; top: 24%; }
.map-arrow { inset-inline-start: 54%; top: 58%; }
.scene-card { display: flex; align-items: center; gap: 9px; max-width: 202px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 255, 255, .94); box-shadow: 0 12px 25px rgba(8, 20, 45, .13); transform-style: preserve-3d; }
.scene-card img { width: 36px; height: 48px; flex: none; }
.scene-card div { display: grid; min-width: 0; }
.scene-card strong { color: var(--dark); font-size: 12px; line-height: 1.35; }
.scene-card span { color: var(--muted); font-size: 10px; line-height: 1.5; }
.scene-place { inset-inline-start: 18px; top: 18px; transform: translateZ(24px) rotateY(4deg); }
.scene-activity { inset-inline-end: 15px; top: 74px; transform: translateZ(30px) rotateY(-4deg); }
.scene-chat { inset-inline-start: 40px; bottom: 19px; transform: translateZ(35px); }
.scene-chat img { width: 34px; height: 34px; }
.hero-mascot { inset-inline-end: -10px; bottom: 4px; width: 270px; height: 270px; transform: translateY(var(--scroll-shift)) translateZ(44px); object-fit: contain; }
.stage-caption { inset-inline-end: 24px; bottom: 20px; max-width: 152px; padding: 7px 11px; border-radius: 999px; background: var(--dark); color: var(--white); font-size: 11px; font-weight: 700; transform: translateZ(48px); }

.trust-strip { border-block: 1px solid rgba(255, 255, 255, .16); background: var(--primary); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid article { display: grid; gap: 2px; padding: 18px 26px; border-inline-start: 1px solid rgba(255, 255, 255, .24); }
.trust-grid article:first-child { border-inline-start: 0; }
.trust-grid strong { font-family: Alexandria, Cairo, sans-serif; font-size: 15px; }
.trust-grid span { color: rgba(255, 255, 255, .82); font-size: 12px; }

.ecosystem-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 70px; }
.ecosystem-copy h2, .social-copy h2, .trips-copy h2, .route-copy h2, .stay-copy h2, .helpers-copy h2, .safety-copy h2 { margin-top: 12px; }
.ecosystem-copy p, .social-copy p, .trips-copy p, .route-copy p, .stay-copy p, .helpers-copy p, .safety-copy p { margin: 16px 0 22px; color: var(--muted); font-size: 16px; }
.ecosystem-scene { position: relative; min-height: 405px; perspective: 1050px; }
.ecosystem-scene::before { position: absolute; inset: 52px 54px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); content: ''; box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .55), var(--shadow); transform: rotateX(7deg) rotateY(-6deg); }
[dir="ltr"] .ecosystem-scene::before { transform: rotateX(7deg) rotateY(6deg); }
.ecosystem-core { position: absolute; z-index: 2; top: 50%; inset-inline-start: 50%; display: grid; place-items: center; gap: 6px; width: 122px; height: 122px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); box-shadow: var(--shadow-deep); transform: translate(-50%, -50%) translateZ(45px); }
.ecosystem-core img { width: 56px; height: 56px; border-radius: 12px; }
.ecosystem-core strong { color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 12px; }
.orbit-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; min-width: 118px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 14px 26px rgba(8, 20, 45, .11); color: var(--dark); font-size: 12px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.orbit-card:hover { box-shadow: var(--shadow-deep); }
.orbit-card img { width: 31px; height: 41px; }
.orbit-trip img, .orbit-chat img { width: 31px; height: 31px; }
.orbit-place { inset-inline-start: 10%; top: 18%; transform: translateZ(22px) rotateY(3deg); }
.orbit-activity { inset-inline-end: 9%; top: 12%; transform: translateZ(30px) rotateY(-3deg); }
.orbit-trip { inset-inline-start: 13%; bottom: 13%; transform: translateZ(34px); }
.orbit-chat { inset-inline-end: 11%; bottom: 15%; transform: translateZ(26px); }
.orbit-route { inset-inline-start: 50%; bottom: 2%; transform: translateX(-50%) translateZ(20px); }
.orbit-card:hover { transform: translateY(-5px) translateZ(38px); }
.orbit-route:hover { transform: translateX(-50%) translateY(-5px) translateZ(38px); }

.story-section { background: var(--white); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 30px; }
.section-heading h2 { margin-top: 12px; max-width: 720px; }
.section-heading > p { max-width: 360px; margin: 0; color: var(--muted); font-size: 15px; }
.story-flow { display: grid; grid-template-columns: .75fr 1.25fr; gap: 22px; align-items: stretch; }
.story-steps { display: grid; align-content: start; gap: 8px; }
.story-step { display: grid; grid-template-columns: 31px 1fr; align-items: center; gap: 10px; min-height: 51px; padding: 8px 11px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--muted); text-align: start; transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease; }
.story-step span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); color: var(--muted); font-family: Alexandria, Cairo, sans-serif; font-size: 10px; font-weight: 800; }
.story-step strong { font-size: 13px; line-height: 1.35; }
.story-step:hover { transform: translateX(-2px); color: var(--primary); }
[dir="ltr"] .story-step:hover { transform: translateX(2px); }
.story-step.is-active { border-color: var(--line); background: var(--blue-glow); color: var(--primary); }
.story-step.is-active span { background: var(--primary); color: var(--white); }
.story-display { position: relative; display: grid; grid-template-columns: .8fr 1fr; min-height: 388px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.story-display-copy { z-index: 2; align-self: center; padding: 34px; }
.story-kicker { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: var(--orange-glow); color: var(--secondary); font-size: 11px; font-weight: 700; }
.story-display-copy h3 { margin-top: 15px; font-size: 28px; }
.story-display-copy p { max-width: 330px; margin: 11px 0 22px; color: var(--muted); font-size: 15px; }
.compact-button { min-height: 44px; }
.story-display-scene { position: relative; min-width: 0; overflow: hidden; }
.story-scene-map { position: absolute; inset-inline-start: 12%; top: 24%; width: min(48%, 220px); aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: 14px; object-fit: contain; transform: rotate(-5deg); box-shadow: 0 18px 26px rgba(8, 20, 45, .1); }
[dir="ltr"] .story-scene-map { transform: rotate(5deg); }
.story-scene-pin { position: absolute; z-index: 2; inset-inline-start: 41%; top: 30%; }
.story-scene-mascot { position: absolute; z-index: 3; inset-inline-end: -11%; bottom: -2%; width: 205px; height: 205px; object-fit: contain; }

.explore-stage { position: relative; min-height: 455px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); perspective: 1000px; }
.explore-map-layer { position: absolute; inset-block-start: 70px; inset-inline-start: 10%; width: min(39%, 345px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transform: rotateX(4deg) rotateY(-5deg); box-shadow: 0 18px 30px rgba(8, 20, 45, .12); }
[dir="ltr"] .explore-map-layer { transform: rotateX(4deg) rotateY(5deg); }
.explore-map-layer > img:first-child { width: 100%; height: 100%; object-fit: contain; }
.explore-pin { position: absolute; z-index: 2; }
.pin-a { inset-inline-start: 27%; top: 36%; }
.pin-b { inset-inline-start: 67%; top: 55%; }
.pin-c { inset-inline-start: 52%; top: 19%; }
.discover-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; max-width: 240px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .96); box-shadow: 0 15px 29px rgba(8, 20, 45, .14); }
.discover-card img { width: 38px; height: 52px; flex: none; }
.discover-card div { display: grid; min-width: 0; }
.discover-card strong { color: var(--dark); font-size: 12px; }
.discover-card span { color: var(--muted); font-size: 10px; line-height: 1.45; }
.discover-card-place { inset-inline-end: 4%; top: 15%; transform: translateZ(28px) rotateY(-4deg); }
.discover-card-food { inset-inline-end: 12%; top: 47%; transform: translateZ(35px); }
.discover-card-activity { inset-inline-start: 14%; bottom: 7%; transform: translateZ(30px) rotateY(4deg); }
.explore-mascot { position: absolute; z-index: 4; inset-inline-end: 2%; bottom: -2%; width: 210px; height: 210px; object-fit: contain; }
.explore-notes { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.explore-notes span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-size: 12px; }

.social-layout, .route-layout, .stay-layout, .helpers-layout, .safety-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.social-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.social-scene { position: relative; min-height: 350px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); perspective: 1000px; }
.people-stack { position: absolute; z-index: 3; top: 28px; inset-inline-start: 28px; display: flex; direction: ltr; }
.people-stack span, .people-stack strong { display: grid; place-items: center; width: 48px; height: 48px; margin-left: -9px; border: 3px solid var(--white); border-radius: 50%; background: var(--blue-glow); color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 13px; }
.people-stack span:nth-child(2) { background: var(--orange-glow); color: var(--secondary); }
.people-stack span:nth-child(3) { background: var(--surface); color: var(--dark); }
.people-stack strong { background: var(--dark); color: var(--white); }
.chat-card { position: absolute; z-index: 2; inset-inline-end: 24px; bottom: 31px; display: flex; align-items: center; gap: 12px; width: min(76%, 330px); padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transform: translateZ(24px) rotateX(2deg); box-shadow: 0 16px 27px rgba(8, 20, 45, .11); }
.chat-card > img { width: 42px; height: 42px; flex: none; }
.chat-card > div { display: grid; min-width: 0; }
.chat-card strong { font-size: 14px; }
.chat-card span { color: var(--muted); font-size: 12px; }
.voice-wave { display: flex; align-items: center; gap: 2px; margin-inline-start: auto; height: 24px; }
.voice-wave b { display: block; width: 3px; border-radius: 99px; background: var(--secondary); }
.voice-wave b:nth-child(1) { height: 9px; }.voice-wave b:nth-child(2) { height: 18px; }.voice-wave b:nth-child(3) { height: 13px; }.voice-wave b:nth-child(4) { height: 7px; }
.social-bubble { position: absolute; z-index: 3; padding: 9px 13px; border-radius: 13px; box-shadow: 0 7px 16px rgba(8, 20, 45, .09); font-size: 12px; font-weight: 700; }
.bubble-one { inset-inline-start: 40px; top: 108px; background: var(--blue-glow); color: var(--primary); transform: translateZ(22px); }
.bubble-two { inset-inline-end: 40px; top: 90px; background: var(--orange-glow); color: var(--secondary); transform: translateZ(28px); }
.share-card { position: absolute; inset-inline-start: 26px; bottom: 16px; display: flex; align-items: end; gap: 2px; width: 155px; color: var(--muted); font-size: 10px; text-align: center; }
.share-card img { width: 79px; height: 79px; }

.trips-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.trip-scene { position: relative; min-height: 370px; perspective: 1000px; }
.trip-map { position: absolute; inset-block-start: 63px; inset-inline-start: 7%; width: min(43%, 232px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); transform: rotateX(4deg) rotateY(-5deg); box-shadow: 0 20px 35px rgba(8, 20, 45, .12); }
[dir="ltr"] .trip-map { transform: rotateX(4deg) rotateY(5deg); }
.trip-map img { width: 100%; height: 100%; object-fit: contain; }
.trip-layer { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 12px 22px rgba(8, 20, 45, .11); color: var(--dark); font-size: 11px; font-weight: 700; }
.trip-layer img { width: 34px; height: 46px; }
.trip-place-card { inset-inline-start: 0; top: 17px; transform: translateZ(25px); }
.trip-activity-card { inset-inline-end: 4%; bottom: 37px; transform: translateZ(32px); }
.trip-mascot { position: absolute; z-index: 3; inset-inline-end: -4%; bottom: -1%; width: 245px; height: 260px; object-fit: contain; }
.feature-points { display: grid; gap: 9px; margin-bottom: 25px; }
.feature-points span { position: relative; padding-inline-start: 20px; color: var(--text); font-size: 14px; }
.feature-points span::before { position: absolute; inset-inline-start: 0; top: .62em; width: 9px; height: 9px; border-radius: 50%; background: var(--secondary); content: ''; }

.route-layout { grid-template-columns: .92fr 1.08fr; }
.route-legs { display: grid; gap: 9px; margin: 0 0 24px; }
.route-legs article { display: flex; align-items: center; gap: 10px; }
.route-legs article > img { width: 29px; height: 37px; flex: none; }
.route-legs article:nth-child(3) > img { height: 29px; }
.route-legs span { display: grid; }
.route-legs strong { color: var(--dark); font-size: 13px; }
.route-legs small { color: var(--muted); font-size: 11px; }
.route-scene { position: relative; min-height: 405px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); perspective: 1000px; }
.route-map-plane { position: absolute; inset-block-start: 66px; inset-inline-start: 9%; width: min(47%, 290px); aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transform: rotateX(4deg) rotateY(-5deg); box-shadow: 0 18px 29px rgba(8, 20, 45, .12); }
[dir="ltr"] .route-map-plane { transform: rotateX(4deg) rotateY(5deg); }
.route-map-plane > img:first-child { width: 100%; height: 100%; object-fit: contain; }
.route-path { position: absolute; z-index: 2; display: block; height: 4px; border-radius: 99px; background: var(--primary); transform-origin: right center; }
.path-one { width: 40%; inset-inline-start: 22%; top: 48%; transform: rotate(-16deg); }
.path-two { width: 34%; inset-inline-start: 53%; top: 58%; background: var(--secondary); transform: rotate(27deg); }
.route-start, .route-stop, .route-end { position: absolute; z-index: 3; }
.route-start { inset-inline-start: 19%; top: 45%; }.route-stop { inset-inline-start: 54%; top: 44%; }.route-end { inset-inline-start: 79%; top: 67%; }
.route-sheet { position: absolute; z-index: 4; inset-inline-start: 22px; bottom: 19px; display: grid; gap: 2px; max-width: 214px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .96); box-shadow: 0 12px 24px rgba(8, 20, 45, .12); }
.route-sheet span { color: var(--secondary); font-size: 10px; font-weight: 700; }
.route-sheet strong { color: var(--dark); font-size: 12px; }
.route-sheet small { color: var(--muted); font-size: 10px; }
.route-mascot { position: absolute; z-index: 5; inset-inline-end: -2%; bottom: -3%; width: 175px; height: 175px; object-fit: contain; }

.stay-layout { grid-template-columns: .95fr 1.05fr; }
.stay-scene { position: relative; min-height: 345px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.stay-card-main { position: absolute; z-index: 2; inset-inline-start: 28px; top: 45px; display: flex; align-items: center; gap: 12px; width: min(67%, 280px); padding: 17px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: 0 15px 28px rgba(8, 20, 45, .09); }
.stay-card-main img { width: 60px; height: 80px; flex: none; }
.stay-card-main div { display: grid; }
.stay-card-main strong { color: var(--dark); font-size: 14px; }
.stay-card-main span { color: var(--muted); font-size: 11px; }
.stay-options { position: absolute; z-index: 2; inset-inline-start: 28px; bottom: 29px; display: flex; flex-wrap: wrap; gap: 7px; max-width: 255px; }
.stay-options span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--primary); font-size: 11px; font-weight: 700; }
.stay-mascot { position: absolute; z-index: 3; inset-inline-end: -4%; bottom: 0; width: 195px; height: 195px; object-fit: contain; }

.helpers-layout { grid-template-columns: .9fr 1.1fr; }
.helpers-scene { position: relative; min-height: 340px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--blue-glow); box-shadow: var(--shadow); }
.helpers-scene article { position: absolute; z-index: 2; inset: 39px auto auto 9%; display: flex; flex-wrap: wrap; gap: 8px; max-width: 285px; }
[dir="rtl"] .helpers-scene article { inset: 39px 9% auto auto; }
.helpers-scene article span { padding: 8px 11px; border: 1px solid rgba(18, 79, 185, .14); border-radius: 999px; background: rgba(255, 255, 255, .85); color: var(--primary); font-size: 12px; font-weight: 700; box-shadow: 0 8px 18px rgba(8, 20, 45, .06); }
.helpers-scene > img { position: absolute; inset-inline-end: 2%; bottom: -5px; width: 212px; height: 212px; object-fit: contain; }

.bookings-section { background: var(--white); }
.booking-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.booking-flow article { position: relative; min-height: 207px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.booking-flow article img { width: 43px; height: 57px; object-fit: contain; }
.booking-flow article:nth-child(2) img, .booking-flow article:nth-child(4) img { height: 43px; }
.booking-flow article:nth-child(3) img { width: 57px; height: 57px; }
.flow-count { position: absolute; inset-inline-end: 17px; top: 16px; color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 11px; font-weight: 800; }
.booking-flow h3 { margin-top: 15px; font-size: 15px; }
.booking-flow p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }
.booking-note { margin: 17px 0 0; color: var(--muted); font-size: 12px; text-align: center; }

.safety-layout { grid-template-columns: .92fr 1.08fr; }
.safety-scene { display: grid; gap: 11px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.control-card { display: flex; align-items: center; gap: 13px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.control-card img { width: 42px; height: 42px; flex: none; }
.control-card div { display: grid; }
.control-card strong { color: var(--dark); font-size: 13px; }
.control-card span { color: var(--muted); font-size: 11px; }
.control-card-offset { margin-inline-start: 9%; }
[dir="rtl"] .control-card-offset { margin-inline: 9% 0; }

.legal-section { background: var(--white); }
.legal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.legal-grid article { min-height: 165px; padding: 17px; border-top: 3px solid var(--primary); border-inline: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.legal-grid article:nth-child(2), .legal-grid article:nth-child(5) { border-top-color: var(--secondary); }
.legal-grid h3 { font-size: 14px; }
.legal-grid p { margin: 9px 0 0; color: var(--muted); font-size: 12px; }

.download-section { padding-top: 44px; }
.download-card { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; overflow: hidden; padding: 38px; border-radius: var(--radius); background: var(--primary); color: var(--white); box-shadow: var(--shadow-deep); }
.eyebrow-light { background: rgba(255, 255, 255, .16); color: var(--white); }
.download-copy h2 { max-width: 630px; margin-top: 12px; color: var(--white); }
.download-copy p { max-width: 580px; margin: 12px 0 0; color: rgba(255, 255, 255, .82); }
.download-side { display: flex; align-items: center; gap: 15px; }
.download-side > img { width: 118px; height: 118px; object-fit: contain; }
.download-actions { display: grid; justify-items: start; gap: 9px; min-width: 234px; }
.release-badge { background: rgba(255, 255, 255, .16); }
.ios-note, .download-unavailable { color: rgba(255, 255, 255, .8); font-size: 12px; }
.download-unavailable { margin: 0; }

.site-footer { margin-top: 88px; padding: 48px 0 18px; background: var(--dark); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .95fr 1fr; gap: 27px; }
.footer-brand strong { color: var(--white); }
.footer-brand img { width: 44px; height: 44px; }
.footer-brand-block > p { margin: 11px 0 16px; color: rgba(255, 255, 255, .66); font-size: 13px; }
.footer-download { padding: 0; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .7); background: transparent; color: var(--white); font-size: 13px; font-weight: 700; text-align: inherit; }
.footer-links, .social-links { display: grid; align-content: start; gap: 8px; font-size: 13px; }
.footer-links strong, .social-links strong { margin-bottom: 3px; color: var(--white); font-family: Alexandria, Cairo, sans-serif; font-size: 13px; }
.footer-links a, .social-links a, .footer-links button { padding: 0; border: 0; background: transparent; color: rgba(255, 255, 255, .76); font-size: 13px; text-align: inherit; }
.social-links a { display: inline-flex; align-items: center; gap: 7px; width: fit-content; }
.footer-social-icon { width: 18px; height: 18px; flex: none; object-fit: contain; }
.footer-links a:hover, .social-links a:hover, .footer-links button:hover { color: var(--white); }
.social-links span { color: rgba(255, 255, 255, .52); }
.copyright { margin-top: 31px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .55); font-size: 11px; }

.sudrud-dialog { width: min(450px, calc(100% - 32px)); padding: 0; border: 0; border-radius: var(--radius); background: transparent; box-shadow: 0 28px 72px rgba(8, 20, 45, .31); }
.sudrud-dialog::backdrop { background: rgba(8, 20, 45, .58); }
.dialog-card { position: relative; display: grid; justify-items: center; padding: 31px; border-radius: var(--radius); background: var(--white); text-align: center; }
.dialog-card > img { width: 114px; height: 114px; object-fit: contain; }
.dialog-card .eyebrow { margin-top: 3px; }
.dialog-card h2 { margin-top: 12px; font-size: 24px; }
.dialog-card p { margin: 11px 0 0; color: var(--muted); font-size: 14px; }
.dialog-close { position: absolute; top: 13px; inset-inline-end: 13px; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--text); font-size: 22px; line-height: 1; }
.dialog-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 22px; }

.live-discovery-section { background: var(--white); }
.live-discovery-groups { display: grid; gap: 30px; }
.live-discovery-group { min-width: 0; }
.live-group-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
.live-group-heading > span { display: inline-flex; align-items: center; gap: 9px; color: var(--dark); font-family: Alexandria, Cairo, sans-serif; font-size: 16px; font-weight: 800; }
.live-group-heading img { width: 34px; height: 39px; object-fit: contain; }
.live-group-heading a { color: var(--primary); font-size: 12px; font-weight: 700; }
.live-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.live-card { display: grid; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: 0 9px 22px rgba(8, 20, 45, .055); }
.live-card-visual { position: relative; display: grid; place-items: center; min-height: 136px; overflow: hidden; background: var(--blue-glow); }
.live-card-cover { width: 100%; height: 136px; object-fit: cover; }
.live-card-icon { width: 74px; height: 86px; object-fit: contain; }
.live-card-category { position: absolute; inset: 10px 10px auto auto; padding: 5px 8px; border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--primary); font-size: 10px; font-weight: 800; box-shadow: 0 5px 12px rgba(8, 20, 45, .08); }
[dir="ltr"] .live-card-category { inset: 10px auto auto 10px; }
.live-card-copy { display: grid; gap: 8px; min-width: 0; padding: 14px; }
.live-card h3 { overflow: hidden; margin: 0; color: var(--dark); font-family: Alexandria, Cairo, sans-serif; font-size: 15px; font-weight: 800; line-height: 1.5; text-overflow: ellipsis; white-space: nowrap; }
.live-card p { display: -webkit-box; min-height: 34px; margin: 0; overflow: hidden; color: var(--muted); font-size: 11px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.live-card-meta, .live-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 0; color: var(--muted); font-size: 10px; }
.live-card-meta span, .live-organizer { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.live-card-meta span:first-child { max-width: 58%; }
.live-price { color: var(--secondary); font-weight: 800; }
.live-card-actions { display: flex; gap: 8px; }
.live-card-action { display: inline-flex; flex: 1; align-items: center; justify-content: center; min-height: 36px; margin-top: 2px; padding: 7px 10px; border: 1px solid var(--primary); border-radius: 8px; background: var(--white); color: var(--primary); font: inherit; font-size: 11px; font-weight: 800; text-align: center; }
.live-card-action:hover { background: rgba(18, 79, 185, .06); }
.share-action { display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.share-action img { width: 16px; height: 16px; object-fit: contain; }
.auth-dialog-card { min-height: 360px; }
.google-signin-slot { display: grid; min-height: 44px; place-items: center; margin-top: 18px; }
.auth-status { min-height: 20px; margin: 10px 0 0 !important; color: var(--muted); font-size: 11px !important; }

.public-share-body { min-height: 100vh; background: var(--surface); }
.public-share-page { width: min(100% - 30px, 940px); margin: 0 auto; padding: 30px 0 54px; }
.public-share-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px; color: var(--dark); }
.public-share-brand img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.public-share-brand span { display: grid; line-height: 1.15; }
.public-share-brand strong { font-family: Alexandria, Cairo, sans-serif; font-size: 17px; }
.public-share-brand b { color: var(--primary); font-size: 13px; }
.public-share-card { display: grid; grid-template-columns: minmax(280px, .93fr) minmax(0, 1.07fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-deep); }
.public-share-media { display: grid; place-items: center; min-height: 370px; overflow: hidden; background: var(--blue-glow); }
.public-share-cover { width: 100%; height: 100%; min-height: 370px; object-fit: cover; }
.public-share-icon { width: min(60%, 175px); height: min(60%, 200px); object-fit: contain; }
.public-share-copy { display: grid; align-content: center; gap: 13px; padding: clamp(26px, 5vw, 54px); }
.public-share-copy h1 { margin: 0; color: var(--dark); font-size: clamp(28px, 4vw, 45px); line-height: 1.25; }
.public-share-copy > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.public-share-details { display: grid; gap: 8px; margin-top: 4px; }
.public-share-detail { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); font-size: 12px; }
.public-share-detail span { color: var(--muted); }
.public-share-detail strong { color: var(--dark); text-align: end; }
.public-share-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.public-share-actions .button { min-width: 144px; }

.has-js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .52s ease, transform .52s ease; }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  h1 { font-size: 46px; }
  h2 { font-size: 34px; }
  .site-nav a { padding-inline: 8px; }
  .hero-grid, .ecosystem-grid, .social-layout, .trips-layout, .route-layout, .stay-layout, .helpers-layout, .safety-layout { gap: 44px; }
  .ecosystem-scene { min-height: 375px; }
  .booking-flow { grid-template-columns: repeat(2, 1fr); }
  .live-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .section-space { padding: 68px 0; }
  .hero-story { padding-top: 55px; }
  .hero-grid, .ecosystem-grid, .social-layout, .trips-layout, .route-layout, .stay-layout, .helpers-layout, .safety-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: 0; }
  .hero-visual, .ecosystem-scene, .social-scene, .trip-scene, .route-scene, .stay-scene, .helpers-scene, .safety-scene { width: min(100%, 610px); margin-inline: auto; }
  .ecosystem-copy, .social-copy, .trips-copy, .route-copy, .stay-copy, .helpers-copy, .safety-copy { max-width: 680px; }
  .story-flow { grid-template-columns: 1fr; }
  .story-steps { grid-template-columns: repeat(2, 1fr); }
  .story-display { min-height: 325px; }
  .explore-stage { min-height: 420px; }
  .download-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  html { scroll-padding-top: 70px; }
  .container { width: min(100% - 30px, 560px); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 67px; gap: 10px; }
  .brand img { width: 40px; height: 40px; }
  .brand small { display: none; }
  .menu-toggle { display: block; margin-inline-start: auto; }
  .language-switch { order: 4; }
  .site-nav { position: absolute; z-index: 40; inset: 60px 15px auto; display: none; margin: 0; padding: 9px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 10px; }
  .section-space { padding: 54px 0; }
  .hero-story { padding-top: 40px; }
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }
  .hero-brand-lockup { margin-bottom: 14px; }
  .hero-brand-lockup img { width: 58px; height: 58px; border-radius: 14px; }
  .hero-brand-lockup strong { font-size: 19px; }
  .hero-brand-lockup b { font-size: 16px; }
  .hero-copy > p, .ecosystem-copy p, .social-copy p, .trips-copy p, .route-copy p, .stay-copy p, .helpers-copy p, .safety-copy p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .story-stage { min-height: 344px; transform: none; }
  .map-plane { inset-block-start: 88px; inset-inline-start: 6%; width: min(42%, 146px); }
  .scene-card { max-width: 170px; padding: 8px; }
  .scene-card img { width: 29px; height: 39px; }
  .scene-place { inset-inline-start: 12px; top: 13px; }
  .scene-activity { inset-inline-end: 9px; top: 55px; }
  .scene-chat { inset-inline-start: 20px; bottom: 10px; }
  .hero-mascot { inset-inline-end: -18px; bottom: -8px; width: 202px; height: 202px; }
  .stage-caption { inset-inline-end: 15px; bottom: 13px; max-width: 120px; padding: 5px 8px; font-size: 9px; }
  .live-card-grid { grid-template-columns: 1fr; }
  .live-card { grid-template-columns: 112px minmax(0, 1fr); }
  .live-card-visual { min-height: 100%; }
  .live-card-cover { height: 100%; min-height: 164px; }
  .live-card-icon { width: 58px; height: 70px; }
  .live-card-copy { gap: 7px; padding: 12px; }
  .live-card p { min-height: 0; }
  .public-share-page { padding-top: 18px; }
  .public-share-card { grid-template-columns: 1fr; }
  .public-share-media, .public-share-cover { min-height: 220px; }
  .public-share-copy { padding: 25px 20px; }
  .public-share-actions { flex-direction: column; }
  .public-share-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, .2); border-inline-start: 0; }
  .trust-grid article:first-child { border-top: 0; }
  .ecosystem-scene { min-height: 330px; }
  .ecosystem-scene::before { inset: 38px 18px; transform: none; }
  .orbit-card { min-width: auto; padding: 7px; font-size: 10px; }
  .orbit-card img { width: 23px; height: 31px; }
  .orbit-trip img, .orbit-chat img { width: 24px; height: 24px; }
  .orbit-place { inset-inline-start: 2%; top: 11%; }.orbit-activity { inset-inline-end: 2%; top: 11%; }.orbit-trip { inset-inline-start: 3%; bottom: 12%; }.orbit-chat { inset-inline-end: 3%; bottom: 12%; }.orbit-route { bottom: 0; }
  .ecosystem-core { width: 102px; height: 102px; }
  .ecosystem-core img { width: 48px; height: 48px; }
  .section-heading { align-items: start; flex-direction: column; gap: 14px; margin-bottom: 22px; }
  .section-heading > p { max-width: none; }
  .story-steps { grid-template-columns: 1fr; }
  .story-display { grid-template-columns: 1fr; min-height: 390px; }
  .story-display-copy { align-self: start; padding: 25px 20px 0; }
  .story-display-copy h3 { font-size: 23px; }
  .story-display-copy p { margin-bottom: 15px; }
  .compact-button { width: auto; }
  .story-display-scene { min-height: 190px; }
  .story-scene-map { inset-inline-start: 9%; top: 24px; width: min(43%, 145px); }
  .story-scene-mascot { width: 175px; height: 175px; }
  .explore-stage { min-height: 375px; }
  .explore-map-layer { inset-block-start: 84px; inset-inline-start: 10%; width: min(42%, 150px); transform: none; }
  .discover-card { max-width: 175px; gap: 7px; padding: 8px; }
  .discover-card img { width: 30px; height: 42px; }
  .discover-card strong { font-size: 10px; }.discover-card span { font-size: 8px; }
  .discover-card-place { inset-inline-end: 2%; top: 10%; }.discover-card-food { inset-inline-end: 4%; top: 48%; }.discover-card-activity { inset-inline-start: 5%; bottom: 4%; }
  .explore-mascot { width: 150px; height: 150px; }
  .explore-notes { justify-content: start; }
  .social-actions { align-items: stretch; flex-direction: column; }
  .social-actions .text-action { align-self: flex-start; }
  .social-scene { min-height: 300px; }
  .chat-card { inset-inline-end: 15px; bottom: 17px; width: 80%; padding: 12px; }
  .people-stack { top: 19px; inset-inline-start: 18px; }
  .bubble-one { inset-inline-start: 21px; top: 86px; }.bubble-two { inset-inline-end: 22px; top: 73px; }
  .share-card { inset-inline-start: 13px; bottom: 5px; width: 112px; font-size: 8px; }.share-card img { width: 58px; height: 58px; }
  .trip-scene { min-height: 320px; }
  .trip-map { inset-block-start: 58px; inset-inline-start: 4%; width: min(43%, 148px); transform: none; }
  .trip-layer { font-size: 9px; }.trip-layer img { width: 27px; height: 37px; }.trip-place-card { inset-inline-start: 0; top: 5px; }.trip-activity-card { inset-inline-end: 1%; bottom: 21px; }.trip-mascot { width: 192px; height: 208px; }
  .route-scene { min-height: 345px; }
  .route-map-plane { inset-block-start: 63px; inset-inline-start: 4%; width: min(45%, 156px); transform: none; }
  .route-sheet { inset-inline-start: 12px; bottom: 9px; max-width: 173px; padding: 9px; }.route-mascot { width: 138px; height: 138px; }
  .stay-scene { min-height: 290px; }
  .stay-card-main { inset-inline-start: 17px; top: 28px; padding: 12px; }.stay-card-main img { width: 46px; height: 61px; }.stay-options { inset-inline-start: 17px; bottom: 17px; max-width: 205px; }.stay-options span { padding: 4px 7px; font-size: 10px; }.stay-mascot { width: 155px; height: 155px; }
  .helpers-scene { min-height: 280px; }.helpers-scene article { inset-inline-start: 5%; top: 28px; max-width: 225px; }.helpers-scene article span { padding: 6px 8px; font-size: 10px; }.helpers-scene > img { width: 170px; height: 170px; }
  [dir="rtl"] .helpers-scene article { inset-inline: 5% auto; }
  .booking-flow { grid-template-columns: 1fr 1fr; gap: 9px; }.booking-flow article { min-height: 182px; padding: 14px; border-radius: 12px; }.booking-flow h3 { margin-top: 11px; font-size: 13px; }.booking-flow p { font-size: 10px; }.booking-flow article img { width: 34px; height: 46px; }.flow-count { top: 12px; inset-inline-end: 12px; }
  .safety-scene { padding: 18px; }.control-card { padding: 10px; }.control-card-offset { margin-inline-start: 0; }[dir="rtl"] .control-card-offset { margin-inline: 0; }
  .legal-grid { grid-template-columns: 1fr; gap: 9px; }.legal-grid article { min-height: 0; padding: 14px; }
  .download-card { padding: 25px; border-radius: 14px; }.download-side { flex-direction: column; align-items: start; }.download-side > img { width: 98px; height: 98px; }.download-actions { width: 100%; min-width: 0; }
  .site-footer { margin-top: 54px; padding-top: 38px; }.footer-grid { grid-template-columns: 1fr; gap: 25px; }.footer-brand-block { grid-column: auto; }
  .dialog-card { padding: 28px 20px; }.dialog-actions { width: 100%; }.dialog-actions .button { width: auto; flex: 1; padding-inline: 12px; }
}

@media (max-width: 400px) {
  .container { width: calc(100% - 24px); }
  .brand strong { font-size: 15px; }
  h1 { font-size: 31px; }
  h2 { font-size: 25px; }
  .scene-card { max-width: 145px; }
  .scene-card strong { font-size: 10px; }
  .scene-card span { font-size: 8px; }
  .hero-mascot { width: 176px; height: 176px; }
  .story-display-copy { padding-inline: 17px; }
  .discover-card { max-width: 148px; }
  .explore-mascot { width: 125px; height: 125px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .story-stage, [dir="ltr"] .story-stage, .ecosystem-scene::before, [dir="ltr"] .ecosystem-scene::before, .explore-map-layer, [dir="ltr"] .explore-map-layer, .trip-map, [dir="ltr"] .trip-map, .route-map-plane, [dir="ltr"] .route-map-plane { transform: none; }
}

/* Lightweight companion and the account dialog intentionally inherit the
   existing landing surfaces, type and action treatment. */
.nav-account { display: inline-flex; align-items: center; min-height: 36px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 9px; color: var(--primary); font-size: 12px; font-weight: 800; white-space: nowrap; }
.nav-account:hover { border-color: var(--primary); background: var(--blue-glow); }
.auth-dialog-card { width: 100%; max-height: min(760px, calc(100vh - 28px)); overflow-y: auto; }
.auth-panel { display: grid; width: min(100%, 360px); gap: 12px; text-align: start; }
.auth-panel[hidden] { display: none; }
.auth-panel h2 { width: 100%; margin: 0; text-align: center; }
.auth-panel > p { margin: -2px 0 3px; text-align: center; }
.auth-panel label { display: grid; gap: 6px; color: var(--dark); font-size: 12px; font-weight: 800; }
.auth-panel input, .auth-panel select { width: 100%; min-height: 43px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 9px; outline: none; background: var(--surface); color: var(--text); font: inherit; font-size: 13px; }
.auth-panel input:focus, .auth-panel select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18, 79, 185, .11); }
.auth-panel .button { width: 100%; min-height: 43px; }
.auth-primary-actions { display: grid; width: min(100%, 360px); grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 16px; }
.auth-primary-actions .button { width: 100%; }
.auth-divider { display: flex; align-items: center; gap: 9px; width: min(100%, 360px); margin: 8px 0; color: var(--muted); font-size: 11px; }
.auth-divider::before, .auth-divider::after { flex: 1; height: 1px; background: var(--line); content: ''; }
.auth-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-hint { min-height: 16px; margin: -6px 0 0 !important; color: var(--secondary) !important; font-size: 11px !important; line-height: 1.5; text-align: start !important; }
.auth-inline-action { justify-self: start; margin: -4px 0 0; }
.auth-status { width: min(100%, 360px); min-height: 20px; margin-top: 12px !important; color: var(--secondary) !important; font-size: 12px !important; text-align: center; }
.auth-status.is-error { color: #b93a40 !important; }
.auth-dialog-card > [data-auth-download] { margin-top: 8px; }

.web-companion { min-height: calc(100vh - 88px); padding: 44px 0 68px; background: var(--surface); }
.companion-shell { width: min(100% - 34px, 1040px); }
.companion-loading, .companion-empty { display: grid; justify-items: center; gap: 10px; padding: 52px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--muted); text-align: center; box-shadow: var(--shadow); }
.companion-loading img, .companion-empty img { width: 102px; height: 102px; object-fit: contain; }
.companion-hero { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.companion-hero > img { width: 80px; height: 80px; object-fit: contain; }
.companion-hero-copy { min-width: 0; }
.companion-hero-copy h1 { margin: 5px 0; font-size: clamp(23px, 4vw, 34px); }
.companion-hero-copy p { margin: 0; color: var(--muted); font-size: 13px; }
.companion-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; }
.companion-actions button { min-height: 38px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--primary); font: inherit; font-size: 12px; font-weight: 800; }
.companion-actions button:hover { border-color: var(--primary); background: var(--blue-glow); }
.companion-tabs { display: flex; gap: 8px; margin: 20px 0; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.companion-tabs button { flex: none; min-height: 38px; padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font: inherit; font-size: 12px; font-weight: 800; }
.companion-tabs button[aria-selected="true"] { border-color: var(--primary); background: var(--primary); color: var(--white); }
.companion-panel { display: grid; gap: 15px; }
.companion-panel[hidden] { display: none; }
.companion-panel-header { display: flex; align-items: end; justify-content: space-between; gap: 14px; }
.companion-panel-header h2 { margin: 0; font-size: clamp(21px, 3vw, 29px); }
.companion-panel-header p { margin: 0; color: var(--muted); font-size: 13px; }
.companion-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.companion-summary { display: grid; gap: 4px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.companion-summary strong { color: var(--primary); font-family: Alexandria, Cairo, sans-serif; font-size: 22px; }
.companion-summary span { color: var(--muted); font-size: 12px; }
.companion-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.companion-card { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 10px; align-items: center; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: 0 8px 20px rgba(8, 20, 45, .045); }
.companion-card img { width: 72px; height: 72px; border-radius: 9px; object-fit: cover; background: var(--blue-glow); }
.companion-card img.is-icon { padding: 9px; object-fit: contain; }
.companion-card-copy { display: grid; min-width: 0; gap: 4px; }
.companion-card h3 { overflow: hidden; margin: 0; color: var(--dark); font-family: Alexandria, Cairo, sans-serif; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.companion-card p, .companion-card span { overflow: hidden; margin: 0; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.companion-card-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 3px; }
.companion-card a, .companion-share { width: fit-content; margin: 0; padding: 0; border: 0; background: transparent; color: var(--primary); font: inherit; font-size: 11px; font-weight: 800; }
.companion-share img { width: 14px; height: 14px; }
.companion-actions .share-action { min-height: 38px; padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--primary); font: inherit; font-size: 12px; font-weight: 800; }
.companion-actions .share-action:hover { border-color: var(--primary); background: var(--blue-glow); }
.share-dialog-card { gap: 5px; }
.share-dialog-card > img { width: 92px; height: 92px; }
.share-dialog-preview { display: block; width: min(100%, 335px); overflow: hidden; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--primary); direction: ltr; font-size: 11px; text-align: start; text-overflow: ellipsis; white-space: nowrap; }
.share-dialog-status { min-height: 18px; margin: 2px 0 0 !important; color: var(--secondary) !important; font-size: 12px !important; }
.companion-edit-form { display: grid; gap: 14px; max-width: 680px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.companion-edit-form label { display: grid; gap: 6px; color: var(--dark); font-size: 12px; font-weight: 800; }
.companion-edit-form input, .companion-edit-form select { min-height: 43px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); color: var(--text); font: inherit; }
.companion-edit-form input:focus, .companion-edit-form select:focus { border-color: var(--primary); outline: 0; box-shadow: 0 0 0 3px rgba(18, 79, 185, .11); }
.companion-edit-form .button { justify-self: start; min-height: 43px; }
.companion-form-status { min-height: 18px; margin: 0; color: var(--secondary); font-size: 12px; }

@media (max-width: 760px) {
  .nav-account { display: none; }
  .auth-dialog-card { padding: 26px 18px; }
  .auth-primary-actions, .auth-field-grid { grid-template-columns: 1fr; }
  .companion-hero { grid-template-columns: 66px minmax(0, 1fr); padding: 17px; }
  .companion-hero > img { width: 66px; height: 66px; }
  .companion-actions { grid-column: 1 / -1; justify-content: start; }
  .companion-summary-grid, .companion-card-grid { grid-template-columns: 1fr; }
  .companion-card { grid-template-columns: 66px minmax(0, 1fr); }
  .companion-card img { width: 66px; height: 66px; }
  .companion-tabs { margin: 16px 0; }
}
