/* ═══════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* App brand colours */
  --c-primary:    #405df7;
  --c-teal:       #20c997;
  --c-yellow:     #ffc145;
  --c-red:        #ff6b6b;
  --c-purple:     #8e6cef;
  --c-dark:       #1f1f39;

  /* Primary tints */
  --c-primary-10: rgba(64,93,247,0.10);
  --c-primary-20: rgba(64,93,247,0.20);

  /* Page surfaces */
  --body-bg:   #f1f4fc;
  --c-card:    #ffffff;
  --c-border:  #e2e7f4;
  --c-text:    #191d35;
  --c-muted:   #576080;
  --c-dim:     #8f96b6;

  /* Hero (dark) */
  --hero-bg:    #09091f;
  --hero-text:  #eef0ff;
  --hero-muted: rgba(210,218,255,0.65);

  /* Shadows */
  --sh-xs: 0 2px 8px  rgba(20,26,70,0.07);
  --sh-sm: 0 8px 24px rgba(20,26,70,0.10);
  --sh-md: 0 16px 48px rgba(20,26,70,0.14);
  --sh-lg: 0 28px 72px rgba(30,48,140,0.22);
  --sh-blue: 0 12px 32px rgba(64,93,247,0.40);
}

/* ═══════════════════════════════════════════════════════════════
   FONTS  (reuse app font files)
═══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: "Outfit";
  src: url("./assets/font/Outfit-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./assets/font/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("./assets/font/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./assets/font/Poppins-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DMSans";
  src: url("./assets/font/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--body-bg);
}

img { max-width: 100%; display: block; }
p   { margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.1; color: var(--c-text); }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════════ */
.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}
.section       { padding-block: 88px; }
.section-white { background: var(--c-card); border-block: 1px solid var(--c-border); }

/* ═══════════════════════════════════════════════════════════════
   TYPE HELPERS
═══════════════════════════════════════════════════════════════ */
.eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-primary);
  margin-bottom: 12px;
  display: block;
}
.eyebrow-light { color: rgba(160, 185, 255, 0.90); }

h1 {
  font-weight: 600;
  font-size: clamp(38px, 7vw, 66px);
  letter-spacing: -0.025em;
}
h2 {
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 48px);
  letter-spacing: -0.02em;
}
h3 { font-weight: 500; font-size: 19px; letter-spacing: -0.01em; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: none;
  padding: 13px 22px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, #3752f0 0%, #5470ff 100%);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { box-shadow: 0 18px 44px rgba(64,93,247,0.52); }

.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 10px; }

.btn-ghost-white {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.20); }

.btn-store {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  border-radius: 16px;
  padding: 14px 24px;
  min-width: 210px;
  box-shadow: var(--sh-sm);
}
.btn-store:hover { box-shadow: var(--sh-md); }

.btn-store-outline {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #fff;
  box-shadow: none;
}
.btn-store-outline:hover { background: rgba(255,255,255,0.16); }

.store-icon  { width: 22px; height: 22px; object-fit: contain; }
.store-label { font-size: 15px; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.32s ease, box-shadow 0.32s ease;
}
.site-header.scrolled {
  background: rgba(9,9,31,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 17px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  flex-shrink: 0;
}
.brand-footer { color: var(--c-text); }
.brand-logo   { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }
.brand-name   { font-weight: 600; font-size: 16px; white-space: nowrap; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 8px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(210,218,255,0.78);
  transition: color 0.18s;
}
.main-nav a:hover { color: #fff; }

.header-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-select {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(210,218,255,0.90);
  border-radius: 8px;
  padding: 7px 10px;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  cursor: pointer;
}
.lang-select:focus { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.lang-select option { background: #14163a; color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px 8px;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  z-index: 98;
  background: rgba(9,9,31,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 20px 28px;
  transform: translateY(-108%);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(210,218,255,0.82);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 65% -15%, rgba(64,93,247,0.60), transparent 58%),
    radial-gradient(ellipse 55% 55% at 95% 85%,  rgba(32,201,151,0.18), transparent 55%),
    var(--hero-bg);
  padding-top: 72px; /* fixed header height */
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.55;
}
.hero-glow-a {
  width: 500px; height: 500px;
  background: rgba(64,93,247,0.40);
  top: -120px; left: -160px;
}
.hero-glow-b {
  width: 380px; height: 380px;
  background: rgba(32,201,151,0.22);
  bottom: 40px; right: -120px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-block: 64px 80px;
}

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

.hero-pill {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(162,185,255,0.95);
  background: rgba(64,93,247,0.22);
  border: 1px solid rgba(64,93,247,0.40);
  border-radius: 100px;
  padding: 5px 15px;
  margin-bottom: 20px;
}

.hero h1      { color: #fff; max-width: 600px; }
.hero-lead {
  font-size: 18px;
  line-height: 1.68;
  color: var(--hero-muted);
  margin-top: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 26px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(200,212,255,0.76);
}
.check-dot {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(64,93,247,0.22);
  border: 1.5px solid rgba(80,112,255,0.50);
  position: relative;
  display: inline-block;
}
.check-dot::after {
  content: "";
  position: absolute;
  left: 4px; top: 4px;
  width: 7px; height: 5px;
  border-left: 1.5px solid #7b9aff;
  border-bottom: 1.5px solid #7b9aff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Phone mockups */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-img {
  width: 384px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 10px 14px;
  gap: 9px;
  box-shadow: 0 14px 36px rgba(0,0,40,0.36);
  animation: float 4.5s ease-in-out infinite;
}
.float-chip img { width: 18px; height: 18px; object-fit: contain; }

.chip-alert { bottom: 9%; left: -6%; animation-delay: 0s; }
.chip-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
}
.chip-body span {
  display: block;
  font-size: 11px;
  color: var(--c-muted);
}

.chip-live {
  top: 9%; right: -4%;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  gap: 7px;
  animation-delay: 2.2s;
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-teal);
  animation: pulse-green 1.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0   rgba(32,201,151,0.60); }
  60%       { box-shadow: 0 0 0 7px rgba(32,201,151,0.00); }
}

/* Hero wave separator */
.hero-wave {
  display: block;
  width: 100%;
  height: 64px;
  fill: var(--body-bg);
  margin-top: -2px;
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════════════════ */
.stats-band {
  display: flex;
  align-items: center;
  background: var(--c-card);
  border-radius: 22px;
  padding: 28px 40px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--c-border);
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.stat-item  { flex: 1; text-align: center; }
.stat-item strong {
  display: block;
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  color: var(--c-primary);
}
.stat-sup   { font-size: 20px; vertical-align: super; }
.stat-item > span {
  display: block;
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 5px;
}
.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--c-border);
  flex-shrink: 0;
  margin: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════ */
.section-head { margin-bottom: 44px; }
.section-head h2 { margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════════
   BENTO FEATURES GRID
═══════════════════════════════════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Row 1: wide (span 2) + 1 */
.bento-wide { grid-column: span 2; }
.bento-full { grid-column: span 3; }

.bento-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.bento-card h3 { margin-top: 16px; font-size: 18px; }
.bento-card p  { margin-top: 9px; color: var(--c-muted); font-size: 15px; line-height: 1.55; }

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--ib, var(--c-primary-10));
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-icon img { width: 22px; height: 22px; object-fit: contain; }

.bento-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 22px;
  display: block;
}

/* Dark accent card */
.bento-dark {
  background: linear-gradient(140deg, #141832 0%, #0d1028 100%);
  border-color: rgba(64,93,247,0.22);
}
.bento-dark h3 { color: #eef0ff; }
.bento-dark p  { color: rgba(175,192,255,0.70); }

.bento-dark-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.bento-dark-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bento-dark-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.80;
}
.bento-dark-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #d2daff;
  line-height: 1.3;
}
.bento-dark-item span {
  display: block;
  font-size: 13px;
  color: rgba(175,192,255,0.60);
  line-height: 1.55;
}

@media (max-width: 680px) {
  .bento-dark-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   EXPERIENCE (SPLIT)
═══════════════════════════════════════════════════════════════ */
.experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-media { position: relative; }

.experience-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.experience-img-wrap img { width: 100%; }

.chip-track {
  position: absolute;
  bottom: -18px;
  right: 8%;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  box-shadow: var(--sh-md);
  animation: float 5s ease-in-out infinite;
}
.chip-track img { width: 16px; height: 16px; }

.experience-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.experience-copy .eyebrow { margin-bottom: 0; }
.experience-copy p  { font-size: 17px; line-height: 1.68; color: var(--c-muted); }
.experience-copy .btn { align-self: flex-start; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════════
   MAP SHOWCASE
═══════════════════════════════════════════════════════════════ */
.map-showcase {
  position: relative;
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: center;
}
.map-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.50);
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9,9,31,0.92) 0%,
    rgba(9,9,31,0.60) 55%,
    transparent 100%
  );
}
.map-content { position: relative; z-index: 2; }
.map-heading {
  color: #fff;
  max-width: 580px;
  margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   SAFETY CARDS
═══════════════════════════════════════════════════════════════ */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.safety-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--sh-xs);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.safety-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.safety-card h3 { margin-top: 18px; font-size: 18px; }
.safety-card p  { margin-top: 10px; color: var(--c-muted); font-size: 15px; line-height: 1.58; }

.safety-badge {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--sb, var(--c-primary-10));
  display: flex;
  align-items: center;
  justify-content: center;
}
.safety-badge img { width: 24px; height: 24px; object-fit: contain; }

/* ═══════════════════════════════════════════════════════════════
   CTA BLOCK
═══════════════════════════════════════════════════════════════ */
.cta-block {
  background: linear-gradient(140deg, #0e1233 0%, #18203e 60%, #0a1d3d 100%);
  border: 1px solid rgba(64,93,247,0.28);
  border-radius: 32px;
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.cta-orb-a {
  width: 420px; height: 420px;
  background: rgba(64,93,247,0.30);
  top: -160px; right: -80px;
}
.cta-orb-b {
  width: 320px; height: 320px;
  background: rgba(32,201,151,0.18);
  bottom: -120px; left: 5%;
}
.cta-copy   { position: relative; z-index: 2; }
.cta-heading { color: #fff; margin-top: 10px; }
.cta-lead    { color: rgba(200,212,255,0.72); font-size: 17px; margin-top: 14px; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  padding-block: 32px 44px;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  flex: 1;
  font-size: 14px;
  color: var(--c-muted);
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.footer-links a { color: var(--c-muted); transition: color 0.18s; }
.footer-links a:hover { color: var(--c-primary); }

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES  (privacy-policy.html / terms.html)
═══════════════════════════════════════════════════════════════ */
.legal-hero {
  background: linear-gradient(140deg, #0e1233 0%, #18203e 60%, #0a1d3d 100%);
  border: 1px solid rgba(64,93,247,0.22);
  border-radius: 28px;
  padding: 52px 52px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
.legal-hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(64,93,247,0.22);
  filter: blur(90px);
  top: -160px; right: -100px;
  pointer-events: none;
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 { color: #fff; font-size: clamp(30px, 5vw, 48px); max-width: 680px; }
.legal-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.legal-meta-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(210,218,255,0.85);
}
.legal-meta-pill strong { color: #fff; margin-right: 4px; }

.legal-body {
  display: grid;
  gap: 16px;
  padding-bottom: 88px;
}
.legal-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--sh-xs);
}
.legal-card h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border);
}
.legal-card h3 { font-size: 16px; font-weight: 500; margin: 20px 0 8px; color: var(--c-text); }
.legal-card p  { font-size: 15px; line-height: 1.72; color: var(--c-muted); margin-bottom: 12px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { padding-left: 20px; margin: 0; }
.legal-card li { font-size: 15px; line-height: 1.68; color: var(--c-muted); margin-bottom: 8px; }
.legal-card li:last-child { margin-bottom: 0; }
.legal-card a  { color: var(--c-primary); }
.legal-card a:hover { text-decoration: underline; }

.legal-notice {
  background: rgba(64,93,247,0.07);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 14px 14px 0;
  padding: 14px 18px;
  margin-top: 14px;
}
.legal-notice p { color: var(--c-text); font-size: 14px; }

.legal-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(64,93,247,0.07);
  border: 1px solid rgba(64,93,247,0.16);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 16px;
}
.legal-contact-row img { width: 20px; height: 20px; opacity: 0.75; flex-shrink: 0; }
.legal-contact-row a   { color: var(--c-primary); font-weight: 500; font-size: 15px; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 28px;
}
.legal-back::before {
  content: "←";
  font-size: 16px;
}
.legal-back:hover { text-decoration: underline; }

@media (max-width: 680px) {
  .legal-hero    { padding: 28px 22px; border-radius: 20px; }
  .legal-card    { padding: 22px 18px; }
}

═══════════════════════════════════════════════════════════════ */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.reveal-right {
  transform: translateX(30px);
}
.reveal.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ═══════════════════════════════════════════════════════════════
   RTL  (Arabic)
═══════════════════════════════════════════════════════════════ */
html[dir="rtl"] body             { text-align: right; }
html[dir="rtl"] .header-inner    { flex-direction: row-reverse; }
html[dir="rtl"] .main-nav        { flex-direction: row-reverse; }
html[dir="rtl"] .header-end      { flex-direction: row-reverse; margin-left: 0; margin-right: auto; }
html[dir="rtl"] .hero-copy       { direction: rtl; }
html[dir="rtl"] .hero-actions    { flex-direction: row-reverse; }
html[dir="rtl"] .check-list li   { flex-direction: row-reverse; }
html[dir="rtl"] .experience-inner{ direction: rtl; }
html[dir="rtl"] .footer-inner    { flex-direction: row-reverse; }
html[dir="rtl"] .cta-block       { direction: rtl; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1040 px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1040px) {
  .main-nav  { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding-block: 40px 60px; gap: 36px; }
  .hero-visual { order: -1; min-height: 360px; }
  .hero-img     { width: 304px; }

  .bento              { grid-template-columns: 1fr 1fr; }
  .bento-wide         { grid-column: span 2; }
  .bento-full         { grid-column: span 2; }
  .bento-dark-row     { grid-template-columns: 1fr 1fr; }

  .experience-inner   { grid-template-columns: 1fr; gap: 40px; }
  .experience-media   { max-width: 520px; }

  .safety-grid        { grid-template-columns: 1fr; gap: 12px; }

  .cta-block          { grid-template-columns: 1fr; padding: 48px; gap: 32px; }
  .cta-actions        { flex-direction: row; min-width: unset; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 680 px
═══════════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  .container  { width: calc(100% - 28px); }
  .section    { padding-block: 60px; }

  .hero-inner    { padding-block: 28px 52px; gap: 24px; }
  .hero-visual { min-height: 280px; }
  .hero-img     { width: 240px; }
  .chip-alert    { left: 0%; bottom: 4%; transform: scale(0.88); }
  .chip-live     { right: 0%; top: 4%;  transform: scale(0.88); }

  .hero-wave { height: 42px; }

  .stats-band {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .stat-sep { width: 80%; height: 1px; margin: 0 auto; }

  .bento              { grid-template-columns: 1fr; }
  .bento-wide,
  .bento-full         { grid-column: span 1; }
  .bento-img          { height: 140px; object-fit: cover; }
  .bento-dark-row     { grid-template-columns: 1fr; }

  .map-showcase  { height: 300px; }
  .map-overlay   { background: rgba(9,9,31,0.72); }

  .cta-block     { padding: 36px 24px; border-radius: 24px; }
  .cta-actions   { flex-direction: column; }
  .btn-store     { min-width: unset; width: 100%; }

  .footer-inner  { flex-direction: column; align-items: flex-start; gap: 12px; }
}
