:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-dark: #000000;
  --surface-dark: #101114;
  --surface-dark-2: #1b1b1f;
  --text: #1d1d1f;
  --text-soft: rgba(0, 0, 0, 0.8);
  --muted: #6e6e73;
  --inverse: #ffffff;
  --inverse-muted: rgba(255, 255, 255, 0.78);
  --line: rgba(29, 29, 31, 0.08);
  --line-inverse: rgba(255, 255, 255, 0.1);
  --brand: #b87332;
  --brand-bright: #cf8f52;
  --link-light: #0066cc;
  --link-dark: #2997ff;
  --radius-card: 30px;
  --radius-pill: 999px;
  --content-width: min(1260px, calc(100vw - 32px));
  --shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.global-header {
  position: relative;
  z-index: 100;
}

.global-nav-wrap {
  width: 100%;
  max-width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
}

.global-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.global-logo img {
  height: 18px;
  width: auto;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.global-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1;
  padding: 8px 8px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.global-nav a:hover,
.global-nav a:focus-visible {
  color: #ffffff;
  outline: none;
}

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 0;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 0 auto;
  background: #fff;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero-panel {
  position: relative;
  min-height: clamp(540px, 82vh, 760px);
  padding: 72px 16px 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-panel-light {
  background: var(--bg-soft);
  color: var(--text);
}

.hero-panel-dark {
  background: #000;
  color: var(--inverse);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

section[id],
article[id],
div[id],
h3[id] {
  scroll-margin-top: 76px;
}

.hero-copy.compact {
  max-width: 860px;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: 0.011em;
  font-weight: 600;
}

.hero-kicker.dark {
  color: var(--text);
}

.hero-subcopy.dark,
.hero-note.dark {
  color: rgba(29, 29, 31, 0.82);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero-copy h2 {
  font-size: clamp(40px, 6vw, 60px);
}

.hero-subcopy,
.hero-note {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.28;
  letter-spacing: 0.004em;
  font-weight: 400;
  color: var(--inverse-muted);
}

.hero-panel-light .hero-subcopy,
.hero-panel-light .hero-note {
  color: rgba(29, 29, 31, 0.82);
}

.handshake-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto 0;
  padding: 14px 18px;
  max-width: min(680px, 100%);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(29,29,31,0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.handshake-button-image {
  display: block;
  width: min(340px, 100%);
  height: auto;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: none;
}

.handshake-callout-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.handshake-callout-copy strong,
.handshake-callout-copy span {
  color: var(--text);
}

.handshake-callout-copy strong {
  font-size: 17px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.handshake-callout-copy span {
  font-size: 15px;
  line-height: 1.35;
}

.hero-note {
  font-size: 17px;
  line-height: 1.47;
}

.store-badge-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 52px;
  line-height: 0;
  transition: opacity 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  opacity: 0.82;
  outline: none;
}

.store-badge img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.store-badge-group-footer {
  justify-content: flex-start;
  margin-top: 6px;
}

.store-badge-group-footer .store-badge {
  width: 143px;
  height: 44px;
}

.store-badge-group-footer .store-badge img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.hero-links,
.tile-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 10px;
  margin-top: 18px;
}

.hero-links a,
.tile-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--link-dark);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.dark-links a,
.hero-panel-light .hero-links a {
  color: var(--link-light);
}

.hero-links a::after,
.tile-links a::after {
  content: " ›";
  margin-left: 2px;
}

.hero-links a:hover,
.hero-links a:focus-visible,
.tile-links a:hover,
.tile-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.first-hero {
  grid-template-columns: minmax(0, 1fr);
  background: #000;
}

.hero-media {
  position: relative;
  z-index: 1;
  width: min(360px, 84vw);
  margin-top: 48px;
}

.detail-stage {
  margin-left: auto;
  margin-right: auto;
}

.app-shot {
  position: relative;
  margin: 0;
  padding: 10px;
  border-radius: 36px;
  overflow: hidden;
  background: #101114;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.app-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 20%);
  pointer-events: none;
}

.app-shot img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.app-shot-phone {
  width: 100%;
}

.app-shot-primary {
  background: #0f1013;
}

.app-shot-phone img {
  border-radius: 28px;
}

.mini-badge,
.tile-kicker {
  display: inline-block;
  font-size: 12px;
  line-height: 1.33;
  letter-spacing: -0.01em;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}

.screen-content h3 {
  margin: 16px 0 22px;
  color: #fff;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.mini-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-card + .mini-card {
  margin-top: 12px;
}

.mini-card.highlighted,
.highlighted-chip {
  background: linear-gradient(135deg, rgba(207,143,82,0.4), rgba(255,255,255,0.08));
}

.mini-card span,
.price-chip span,
.steps-visual span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.33;
}

.mini-card strong,
.price-chip strong,
.steps-visual strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.23;
  letter-spacing: -0.02em;
}

.signal-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
}

.signal-row span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
}

.scenic-hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.72)),
    url('./assets/dubai-skyline-clean.svg') center/cover no-repeat;
}

.product-showcase {
  padding: 16px;
  background: var(--bg);
}

.product-showcase-inner {
  width: var(--content-width);
  margin: 0 auto;
  border-radius: 32px;
  overflow: hidden;
  padding: 72px 32px;
  background: #f5f5f7;
}

.showcase-copy-block {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.showcase-copy-block h2 {
  margin: 0;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.showcase-copy-block .hero-subcopy {
  max-width: 760px;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  margin-top: 42px;
}

.showcase-text-panel {
  text-align: left;
}

.showcase-lead {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.showcase-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.showcase-points li {
  padding: 18px 0;
  border-top: 1px solid rgba(29,29,31,0.12);
}

.showcase-points li:last-child {
  border-bottom: 1px solid rgba(29,29,31,0.12);
}

.showcase-points strong,
.showcase-points span {
  display: block;
}

.showcase-points strong {
  color: var(--text);
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.showcase-points span {
  margin-top: 6px;
  color: rgba(29,29,31,0.72);
  font-size: 17px;
  line-height: 1.47;
}

.showcase-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.showcase-card {
  margin: 0;
  padding: 14px;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.08) 0 12px 36px;
}

.showcase-card figcaption {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.showcase-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.showcase-card-light {
  color: var(--text);
}

.showcase-card-dark,
.showcase-card-tall,
.showcase-card-wide {
  color: inherit;
}

.tile-section {
  background: var(--bg);
  padding: 12px 16px 16px;
}

.tile-grid {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.content-tile {
  position: relative;
  min-height: 580px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  padding: 42px 32px 32px;
  box-shadow: var(--shadow);
}

.tall-tile {
  min-height: 640px;
}

.wide-tile {
  min-height: 520px;
}

.dark-tile {
  background: linear-gradient(180deg, #090909, #17181c);
  color: var(--inverse);
}

.light-tile {
  background: var(--bg-soft);
  color: var(--text);
}

.tile-copy {
  width: min(100%, 680px);
  margin: 0 auto;
  padding-top: 0;
}

.top-left {
  text-align: center;
}

.dark-copy .tile-kicker,
.dark-copy p,
.light-tile .tile-kicker,
.light-tile .tile-copy p {
  color: rgba(29,29,31,0.72);
}

.tile-copy h3 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.tile-copy p {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.38;
}

.dark-tile .tile-copy p {
  color: rgba(255,255,255,0.8);
}

.light-tile .tile-copy p {
  color: rgba(29,29,31,0.72) !important;
}

.steps-visual,
.pricing-visual {
  position: static;
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding-top: 28px;
}

.steps-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-visual div,
.price-chip {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(29,29,31,0.08);
}

.steps-visual span,
.steps-visual strong {
  color: var(--text);
}

.pricing-visual {
  grid-template-columns: 1fr;
}

.price-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.faq-section {
  padding: 88px 16px 96px;
  background: var(--bg-soft);
}

.faq-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.faq-inner h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.faq-list {
  margin-top: 36px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.faq-item {
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(29,29,31,0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.faq-trigger span:first-child {
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.faq-icon {
  color: var(--link-light);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.47;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.site-footer {
  background: var(--bg-soft);
  color: var(--text);
  border-top: 1px solid rgba(29,29,31,0.08);
}

.footer-inner {
  width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 34px 0 28px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #111214;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.footer-brand-mark img {
  height: 28px;
  width: auto;
  margin: 0;
}

.footer-summary p,
.footer-links-group a,
.footer-bottom {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.33337;
  letter-spacing: -0.01em;
}

.footer-links-group {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links-group h3 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.33;
  color: var(--text);
}

.footer-links-group a {
  width: fit-content;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.instagram-icon svg {
  width: 16px;
  height: 16px;
}

.instagram-icon rect,
.instagram-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-links-group a:hover,
.footer-links-group a:focus-visible {
  color: var(--link-light);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid rgba(29,29,31,0.08);
  text-align: center;
  padding: 16px;
}

@media (max-width: 1068px) {
  .hero-copy h1,
  .hero-copy h2,
  .faq-inner h2 {
    font-size: clamp(40px, 8vw, 56px);
  }

  .showcase-layout,
  .tile-grid {
    grid-template-columns: 1fr;
  }

  .showcase-screen-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-tile,
  .tall-tile,
  .wide-tile {
    min-height: auto;
  }

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

@media (max-width: 833px) {
  .global-nav-wrap {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-block;
  }

  .global-nav {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, 0.96);
    padding: 12px 16px 18px;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    font-size: 17px;
    line-height: 1.47;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero-panel {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-copy {
    width: min(680px, 100%);
  }

  .hero-copy h1,
  .hero-copy h2,
  .faq-inner h2,
  .showcase-copy-block h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-kicker {
    font-size: 28px;
  }

  .hero-subcopy {
    font-size: 19px;
    line-height: 1.42;
  }

  .handshake-callout {
    width: 100%;
    border-radius: 28px;
  }

  .hero-links,
  .tile-links {
    column-gap: 18px;
    row-gap: 8px;
  }

  .hero-links a,
  .tile-links a {
    font-size: 19px;
  }

  .hero-media {
    width: min(320px, 84vw);
  }

  .showcase-screen-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-inner {
    padding: 56px 24px;
  }

  .steps-visual {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --content-width: min(100vw - 24px, 100vw - 24px);
  }

  .hero-panel,
  .tile-section,
  .faq-section,
  .product-showcase {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .faq-inner h2,
  .tile-copy h3,
  .showcase-copy-block h2 {
    font-size: 32px;
  }

  .hero-kicker {
    font-size: 21px;
  }

  .hero-subcopy,
  .tile-copy p,
  .faq-trigger span:first-child,
  .faq-answer p,
  .showcase-points span {
    font-size: 17px;
  }

  .hero-links,
  .tile-links {
    flex-direction: column;
    gap: 6px;
  }

  .hero-media {
    width: min(280px, 82vw);
  }

  .handshake-callout {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px;
    gap: 12px;
  }

  .handshake-callout-copy {
    text-align: left;
  }

  .app-shot,
  .showcase-card {
    padding: 12px;
    border-radius: 24px;
  }

  .app-shot img,
  .showcase-card img {
    border-radius: 18px;
  }

  .showcase-layout,
  .showcase-screen-grid {
    grid-template-columns: 1fr;
  }

  .showcase-text-panel {
    text-align: center;
  }

  .showcase-lead,
  .showcase-points strong {
    font-size: 21px;
  }

  .product-showcase-inner {
    padding: 40px 16px;
    border-radius: 24px;
  }

  .content-tile,
  .tall-tile,
  .wide-tile {
    min-height: auto;
  }

  .steps-visual,
  .pricing-visual {
    padding-top: 20px;
  }
}

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

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
