/* ============================================================
   Gawwap — landing page
   Theme: premium light (white + green), single accent = brand green.
   Corner scale: sections/cards 24px · phones 42px · buttons pill · in-app inputs 14px
   ============================================================ */

:root {
  /* Page surfaces (light, green-tinted white) */
  --bg:        #F6F9F6;
  --bg-elev:   #FFFFFF;
  --ink:       #0C130D;
  --ink-dim:   #566159;
  --ink-faint: #8A968C;
  --line:      rgba(12, 19, 13, 0.09);
  --line-2:    rgba(12, 19, 13, 0.15);

  /* Brand (locked accent) */
  --brand:        #35C201;
  --brand-bright: #57E11B;   /* glows + large decorative only */
  --brand-text:   #1C7A02;   /* AA-safe green for small text on white */
  --brand-soft:   #E3FFD9;
  --brand-ink:    #0A2600;

  /* In-app mockup surfaces (the real app is light) */
  --app-bg:     #F5F8F6;
  --app-card:   #FFFFFF;
  --app-ink:    #0B0F0B;
  --app-mut:    #6B7280;
  --app-line:   #E7EBE7;
  --app-soft:   #E3FFD9;

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-phone: 42px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1240px;

  --shadow-glow: 0 40px 120px -35px rgba(53, 194, 1, 0.4);
  --shadow-card: 0 40px 90px -45px rgba(20, 45, 15, 0.35);
  --shadow-soft: 0 14px 44px -26px rgba(20, 45, 15, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--brand); color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand-text);
}
.section-title { font-size: clamp(30px, 4.4vw, 52px); }
.lead { color: var(--ink-dim); font-size: clamp(16px, 1.6vw, 19px); max-width: 60ch; }

/* Ambient background glow layer */
.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(130px); opacity: 0.55;
}
.aurora::before {
  width: 60vw; height: 60vw; top: -22vw; right: -12vw;
  background: radial-gradient(circle, rgba(53,194,1,0.22), transparent 70%);
}
.aurora::after {
  width: 52vw; height: 52vw; bottom: -22vw; left: -16vw;
  background: radial-gradient(circle, rgba(87,225,27,0.16), transparent 70%);
}
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(246, 249, 246, 0.8);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 9px; font-family: "Pacifico", cursive;
  font-weight: 400; font-size: 27px; letter-spacing: 0; color: var(--ink); line-height: 1;
}
.brand-mark {
  width: 36px; height: 36px; display: grid; place-items: center; flex: none;
}
.brand-mark svg { width: 33px; height: 33px; }
/* Real logo image (drop gawwap-logo.png in this folder); recreation shows until it loads */
.brand-img { height: 40px; width: auto; display: none; }
.brand--img .brand-img { display: block; }
.brand--img .brand-mark, .brand--img .brand-text { display: none; }
.footer .brand-img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; font-weight: 600; color: var(--ink-dim); transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

@media (max-width: 900px) { .nav-links { display: none; } }

/* ============================================================
   Google Play badge (official-style, functional store button)
   ============================================================ */
/* Official-style store badges: black rounded rectangle, grey hairline */
.gplay, .astore {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 18px; border-radius: 12px;
  background: #000; border: 1px solid #A6A6A6;
  color: #fff; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  will-change: transform;
}
.gplay:hover, .astore:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(0,0,0,0.55); border-color: #fff; }
.gplay:active, .astore:active { transform: translateY(0) scale(0.98); }
.gplay svg { width: 26px; height: 28px; flex: none; }
.astore svg { width: 23px; height: 27px; flex: none; }
.gplay .g-txt, .astore .g-txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.gplay .g-txt small, .astore .g-txt small { font-size: 10px; letter-spacing: 0.02em; color: #fff; font-weight: 400; text-transform: none; }
.gplay .g-txt strong, .astore .g-txt strong { font-size: 19px; font-weight: 600; letter-spacing: 0.01em; font-family: "Manrope", sans-serif; }
.gplay.lg, .astore.lg { padding: 11px 22px; gap: 12px; }
.gplay.lg svg { width: 30px; height: 32px; }
.astore.lg svg { width: 26px; height: 31px; }
.gplay.lg .g-txt strong, .astore.lg .g-txt strong { font-size: 22px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; color: var(--ink); border: 1px solid var(--line-2);
  background: var(--bg-elev); box-shadow: var(--shadow-soft);
  transition: border-color .25s, background .25s, transform .2s, box-shadow .25s;
}
.btn-ghost:hover { border-color: var(--brand); background: rgba(53,194,1,0.06); }
.btn-ghost:active { transform: scale(0.98); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100dvh; display: flex; align-items: center;
  padding: 96px 0 64px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 9px;
  border-radius: 999px; border: 1px solid var(--line); background: var(--bg-elev);
  box-shadow: var(--shadow-soft);
  font-size: 13px; font-weight: 600; color: var(--ink-dim); margin-bottom: 26px;
}
.hero-badge .dot {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(53,194,1,0.16); color: var(--brand-text); font-size: 12px;
}
.hero h1 {
  font-size: clamp(38px, 4.4vw, 58px); letter-spacing: -0.03em;
}
.hero h1 .hl {
  background: linear-gradient(120deg, #35C201 0%, #1C7A02 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin: 26px 0 34px; font-size: clamp(17px, 1.8vw, 20px); }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 30px; display: flex; align-items: center; gap: 22px; color: var(--ink-faint);
  font-size: 13.5px; font-weight: 600; flex-wrap: wrap;
}
.hero-meta .rate { color: var(--ink); }
.hero-meta .rate b { color: var(--brand-text); }
.hero-meta .stars { color: var(--brand-bright); letter-spacing: 2px; }

.hero-stage {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: 620px; perspective: 1600px;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .hero-stage { min-height: 560px; margin-top: 12px; }
  .hero { padding-top: 40px; text-align: left; }
}

/* ============================================================
   PHONE MOCKUPS (recreated app UI)
   ============================================================ */
.phone {
  --pw: 300px;
  width: var(--pw); aspect-ratio: 300 / 620; flex: none;
  background: linear-gradient(145deg, #f6f8f6 0%, #e4e9e5 46%, #cdd4ce 100%);
  border-radius: var(--r-phone);
  padding: 11px; border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(20,45,15,0.10),
              inset 0 2px 3px rgba(255,255,255,0.95), inset 0 -3px 7px rgba(0,0,0,0.10);
  position: relative;
}
.phone::before { /* dynamic-island / speaker (stays dark like the real screen) */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0b0f0c; border-radius: 999px; z-index: 5;
  border: 1px solid rgba(0,0,0,0.2);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: var(--app-bg); color: var(--app-ink);
  font-family: "Manrope", sans-serif; position: relative; display: flex; flex-direction: column;
}
.phone-glow {
  position: absolute; inset: -8% -8% -8% -8%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(53,194,1,0.4), transparent 68%);
  filter: blur(75px); opacity: 0.65;
}

/* hero floating arrangement */
.stack { position: relative; transform-style: preserve-3d; }
.stack .phone.primary {
  --pw: 310px; position: relative; z-index: 3;
  transform: rotateY(-16deg) rotateX(6deg) rotateZ(1deg);
}
.stack .phone.secondary {
  --pw: 216px; position: absolute; right: -74px; bottom: -26px; z-index: 4;
  transform: rotateY(-14deg) rotateX(5deg) rotateZ(-2deg);
  box-shadow: var(--shadow-card);
}
@media (max-width: 520px) {
  .stack .phone.primary { --pw: 260px; transform: rotateY(-10deg) rotateX(4deg); }
  .stack .phone.secondary { --pw: 168px; right: -30px; bottom: -14px; }
}

/* ---- shared in-app atoms ---- */
.app-pad { padding: 0 15px; }
.app-h { padding: 42px 15px 12px; display: flex; align-items: flex-start; justify-content: space-between; }
.app-h h4 { font-family: "Space Grotesk", sans-serif; font-size: 21px; font-weight: 700; margin: 0; letter-spacing: -0.02em; }
.app-h p { margin: 3px 0 0; font-size: 11.5px; color: var(--app-mut); }
.app-bell { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid var(--app-line); display: grid; place-items: center; color: var(--brand); }
.app-search {
  margin: 0 15px 12px; height: 42px; border-radius: 14px; background: #fff; border: 1px solid var(--app-line);
  display: flex; align-items: center; gap: 9px; padding: 0 8px 0 13px; font-size: 12px; color: var(--app-mut);
}
.app-search .knob { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); }
.chips { display: flex; gap: 8px; padding: 0 15px 14px; overflow: hidden; }
.chip { font-size: 11.5px; font-weight: 600; padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--app-line); color: var(--app-ink); white-space: nowrap; }
.chip.on { background: var(--app-soft); border-color: var(--brand); color: var(--brand-ink); }
.app-sec-title { display: flex; align-items: center; justify-content: space-between; padding: 4px 15px 10px; }
.app-sec-title b { font-family: "Space Grotesk", sans-serif; font-size: 16px; }
.app-sec-title span { font-size: 11.5px; font-weight: 700; color: var(--brand); }
.trend-row { display: flex; gap: 9px; padding: 0 15px 14px; }
.trend {
  flex: 1; aspect-ratio: 3/4; border-radius: 15px; overflow: hidden; position: relative;
  background-size: cover; background-position: center; box-shadow: 0 8px 18px -12px rgba(0,0,0,0.5);
}
.trend span { position: absolute; left: 8px; bottom: 7px; color: #fff; font-size: 12px; font-weight: 700; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.trend::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,0.45)); }
.feed { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 15px; }
.feed .card {
  aspect-ratio: 3/4.1; border-radius: 15px; overflow: hidden; position: relative; background-size: cover; background-position: center;
}
.feed .card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,0.5)); }
.feed .card .loc { position: absolute; left: 8px; bottom: 8px; color: #fff; font-size: 10.5px; font-weight: 700; display: flex; align-items: center; gap: 4px; z-index: 2; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }

.tabbar {
  margin-top: auto; height: 62px; background: #fff; border-top: 1px solid var(--app-line);
  display: flex; align-items: center; justify-content: space-around; padding: 0 6px 4px;
}
.tabbar .tab { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; font-weight: 600; color: var(--app-mut); }
.tabbar .tab.on { color: var(--brand); }
.tabbar .tab.on .ti { background: var(--app-soft); }
.tabbar .ti { width: 30px; height: 22px; border-radius: 8px; display: grid; place-items: center; }

/* video screen */
.vid { position: relative; height: 100%; background-size: cover; background-position: center; }
.vid .top { position: absolute; top: 42px; left: 12px; display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 13px; z-index: 3; }
.vid .top .back { width: 30px; height: 30px; border-radius: 50%; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); }
.vid .rail { position: absolute; right: 12px; bottom: 96px; display: flex; flex-direction: column; gap: 12px; z-index: 3; }
.vid .rail .rb { width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--app-ink); box-shadow: 0 6px 16px -6px rgba(0,0,0,0.6); }
.vid .rail .rb.like { color: var(--brand); }
.vid .user {
  position: absolute; left: 12px; right: 12px; bottom: 16px; z-index: 3;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 16px; padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.vid .user .av { width: 34px; height: 34px; border-radius: 50%; background-size: cover; background-position: center; flex: none; }
.vid .user b { font-size: 13px; display: block; }
.vid .user small { font-size: 10px; color: var(--app-mut); }
.vid .user .dots { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); }
.vid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 60%, rgba(0,0,0,0.35)); }

/* discover map screen */
.dmap { padding: 14px; }
.dmap .card { background: #fff; border-radius: 18px; border: 1px solid var(--app-line); padding: 14px; box-shadow: 0 20px 40px -30px rgba(0,0,0,0.4); }
.dmap .card b { font-family: "Space Grotesk", sans-serif; font-size: 15px; }
.dmap .card p { margin: 2px 0 12px; font-size: 10.5px; color: var(--app-mut); }
.mapbox {
  position: relative; height: 168px; border-radius: 14px; overflow: hidden;
  background: #07558a url("world-map-satellite.webp") center / cover no-repeat;
  box-shadow: inset 0 0 24px rgba(1, 27, 54, 0.24), 0 12px 24px -18px rgba(2, 42, 75, 0.72);
}
.mapbox .land { position: absolute; inset: 0; opacity: 0.5; }
.hot { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(53,194,1,0.85), rgba(53,194,1,0.15) 65%, transparent 72%); }
.hot i { position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; margin: -4px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgba(255,255,255,0.7); }
.mapbox .pill { position: absolute; left: 12px; bottom: 12px; background: #fff; border-radius: 999px; padding: 6px 12px; font-size: 10.5px; font-weight: 700; box-shadow: 0 6px 14px -8px rgba(0,0,0,0.4); }
.seg { margin: 14px 0 0; display: flex; background: #fff; border: 1px solid var(--app-line); border-radius: 14px; padding: 4px; }
.seg span { flex: 1; text-align: center; font-size: 12px; font-weight: 700; padding: 8px; border-radius: 10px; color: var(--app-mut); }
.seg span.on { background: var(--app-soft); color: var(--brand-ink); }

/* album screen */
.alb { padding: 40px 14px 14px; }
.alb .bar { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--app-line); border-radius: 16px; padding: 8px 10px; }
.alb .bar .back { width: 28px; height: 28px; border-radius: 50%; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); flex: none; }
.alb .bar b { font-family: "Space Grotesk", sans-serif; font-size: 13px; white-space: nowrap; }
.alb .bar .mo { margin-left: auto; font-size: 10px; font-weight: 700; background: var(--app-soft); color: var(--brand-ink); padding: 5px 9px; border-radius: 999px; white-space: nowrap; flex: none; }
.alb .days { display: flex; gap: 8px; margin: 12px 0; }
.alb .day { flex: 1; display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--app-line); font-size: 11px; }
.alb .day.on { border-color: var(--brand); background: var(--app-soft); }
.alb .day .n { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 1px solid var(--brand); color: var(--brand-ink); display: grid; place-items: center; font-weight: 800; font-size: 11px; }
.alb .place { background: #fff; border: 1px solid var(--app-line); border-radius: 16px; overflow: hidden; }
.alb .place .ph { height: 118px; background-size: cover; background-position: center; position: relative; }
.alb .place .ph span { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.6); color: #fff; font-size: 9.5px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.alb .place .info { padding: 11px 12px; }
.alb .place .info .row { display: flex; align-items: center; justify-content: space-between; }
.alb .place .info b { font-size: 13.5px; }
.alb .place .info .tag { font-size: 10px; font-weight: 700; background: var(--app-soft); color: var(--brand-ink); padding: 3px 9px; border-radius: 999px; }
.alb .place .info .link { display: flex; align-items: center; gap: 5px; margin-top: 7px; font-size: 10px; color: var(--app-mut); }
.alb .place .info .link svg { color: var(--brand); }

/* profile screen */
.prof { display: flex; flex-direction: column; height: 100%; }
.prof .card { margin: 0 14px; background: #fff; border: 1px solid var(--app-line); border-radius: 18px; overflow: hidden; }
.prof .cover { height: 92px; background-size: cover; background-position: center; }
.prof .av { width: 66px; height: 66px; border-radius: 50%; margin: -33px auto 0; border: 4px solid #fff; background-size: cover; background-position: center; position: relative; z-index: 2; }
.prof .name { text-align: center; margin-top: 8px; }
.prof .name b { font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.prof .name p { margin: 2px 0 0; font-size: 11px; color: var(--app-mut); }
.prof .stats { display: flex; justify-content: center; gap: 30px; margin: 14px 0; }
.prof .stats div { text-align: center; }
.prof .stats b { font-size: 17px; display: block; }
.prof .stats small { font-size: 10px; color: var(--app-mut); }
.prof .edit { margin: 0 16px 16px; height: 44px; border-radius: 999px; background: linear-gradient(150deg, var(--brand-bright), var(--brand)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.prof .mapcard { margin: 6px 14px 0; background: #fff; border: 1px solid var(--app-line); border-radius: 18px; padding: 14px; }
.prof .mapcard .top { display: flex; align-items: flex-start; justify-content: space-between; }
.prof .mapcard b { font-family: "Space Grotesk", sans-serif; font-size: 14px; }
.prof .mapcard p { margin: 2px 0 0; font-size: 10.5px; color: var(--app-mut); }
.prof .mapcard .badge { font-size: 10px; font-weight: 700; background: linear-gradient(150deg, var(--brand-bright), var(--brand)); color: #fff; padding: 5px 10px; border-radius: 999px; white-space: nowrap; }

/* create bottom-sheet screen */
.crt { position: relative; height: 100%; }
.crt .dim { filter: grayscale(0.2) brightness(0.96); opacity: 0.55; pointer-events: none; }
.crt .sheet { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; border-radius: 26px 26px 32px 32px; padding: 14px 15px 20px; box-shadow: 0 -18px 40px -20px rgba(0,0,0,0.25); }
.crt .grab { width: 44px; height: 5px; border-radius: 999px; background: #E1E6E1; margin: 0 auto 14px; }
.crt .sheet-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.crt .sheet-h b { font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.crt .sheet-h .x { width: 30px; height: 30px; border-radius: 50%; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); }
.crt .opts { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.crt .opt { border: 1px solid var(--app-line); border-radius: 16px; padding: 12px; }
.crt .opt .row { display: flex; align-items: center; justify-content: space-between; gap: 6px; margin-bottom: 20px; }
.crt .opt .ic { width: 34px; height: 34px; border-radius: 11px; background: var(--app-soft); display: grid; place-items: center; color: var(--brand); flex: none; }
.crt .opt .ic svg { width: 16px; height: 16px; }
.crt .opt .tag { font-size: 8.5px; font-weight: 700; background: var(--app-soft); color: var(--brand-ink); padding: 4px 8px; border-radius: 999px; white-space: nowrap; flex: none; }
.crt .opt b { font-family: "Space Grotesk", sans-serif; font-size: 15px; display: block; }
.crt .opt p { margin: 4px 0 0; font-size: 10.5px; color: var(--app-mut); line-height: 1.35; }

/* following feed screen */
.flw { padding-top: 6px; }
.flw .row { display: flex; align-items: center; gap: 11px; padding: 11px 15px; }
.flw .row + .row { border-top: 1px solid var(--app-line); }
.flw .av { width: 42px; height: 42px; border-radius: 50%; background-size: cover; background-position: center; flex: none; }
.flw .who b { font-size: 13px; display: block; }
.flw .who small { font-size: 10.5px; color: var(--app-mut); }
.flw .thumb { margin-left: auto; width: 46px; height: 46px; border-radius: 12px; background-size: cover; background-position: center; flex: none; }
.flw .btn { margin-left: auto; font-size: 10.5px; font-weight: 700; color: var(--brand-ink); background: var(--app-soft); border: 1px solid var(--brand); padding: 6px 12px; border-radius: 999px; }

/* saved grid screen */
.svd { padding: 14px; }
.svd .seg2 { display: flex; background: #fff; border: 1px solid var(--app-line); border-radius: 14px; padding: 4px; margin-bottom: 14px; }
.svd .seg2 span { flex: 1; text-align: center; font-size: 12px; font-weight: 700; padding: 8px; border-radius: 10px; color: var(--app-mut); }
.svd .seg2 span.on { background: var(--app-soft); color: var(--brand-ink); }
.svd .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.svd .sv { aspect-ratio: 3/3.7; border-radius: 16px; overflow: hidden; position: relative; background-size: cover; background-position: center; }
.svd .sv::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,0.6)); }
.svd .sv .mk { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--brand); z-index: 2; }
.svd .sv .lbl { position: absolute; left: 9px; bottom: 8px; z-index: 2; color: #fff; }
.svd .sv .lbl .tag { display: inline-block; font-size: 8.5px; font-weight: 700; background: rgba(255,255,255,0.25); padding: 2px 7px; border-radius: 999px; margin-bottom: 4px; }
.svd .sv .lbl b { display: block; font-size: 13px; }
.svd .sv .lbl small { display: flex; align-items: center; gap: 3px; font-size: 10px; opacity: 0.9; }

/* ============================================================
   SECTIONS shell
   ============================================================ */
section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head .eyebrow { display: block; margin-bottom: 16px; }
.sec-head h2 { margin-bottom: 18px; }

/* marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: scrollx 34s linear infinite; }
.marquee-track span { font-family: "Space Grotesk", sans-serif; font-size: clamp(20px, 2.4vw, 30px); font-weight: 600; color: var(--ink-faint); display: flex; align-items: center; gap: 48px; letter-spacing: -0.01em; }
.marquee-track span::after { content: "•"; color: var(--brand); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* bento */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.tile {
  position: relative; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: var(--bg-elev); box-shadow: var(--shadow-soft);
  padding: 30px; overflow: hidden; transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.tile:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.tile h3 { font-size: 22px; margin-bottom: 10px; }
.tile p { color: var(--ink-dim); font-size: 15px; margin: 0; }
.tile .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(53,194,1,0.12); color: var(--brand-text); border: 1px solid rgba(53,194,1,0.25); }
.tile.span-3 { grid-column: span 3; }
.tile.span-2 { grid-column: span 2; }
.tile.span-4 { grid-column: span 4; }
.tile.feature { grid-column: span 4; grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(160deg, #EAFBE2, #FFFFFF 58%); }
.tile.glow { background: linear-gradient(160deg, #E6FADD, #FFFFFF 70%); }
.tile .mini-map { position: relative; height: 200px; border-radius: 16px; overflow: hidden; margin-top: 20px;
  background: #07558a url("world-map-satellite.webp") center / cover no-repeat;
  border: 1px solid rgba(53, 194, 1, 0.32);
  box-shadow: inset 0 0 48px rgba(1, 27, 54, 0.28), 0 18px 38px -28px rgba(2, 42, 75, 0.8); }
.worldmap, .globegrid { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.tile .mini-map .worldmap,
.tile .mini-map .globegrid,
.mapbox .worldmap { display: none; }
.tile .big { display: inline-block; font-family: "Space Grotesk", sans-serif; font-size: clamp(40px, 6vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.32; padding-bottom: 12px; background: linear-gradient(120deg, #35C201, #1C7A02); -webkit-background-clip: text; background-clip: text; color: transparent; }

@media (max-width: 940px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile, .tile.span-3, .tile.span-2, .tile.span-4, .tile.feature { grid-column: span 1; grid-row: auto; }
  .tile.feature { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .tile.feature { grid-column: span 1; }
}

/* split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { display: flex; justify-content: center; perspective: 1400px; }
.split-media .phone { transform: rotateY(-12deg) rotateX(5deg); }
.split.rev .split-media .phone { transform: rotateY(12deg) rotateX(5deg); }
.split h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 18px; }
.feat-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.feat-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-dim); font-size: 15.5px; }
.feat-list .tick { width: 24px; height: 24px; border-radius: 8px; flex: none; display: grid; place-items: center; background: rgba(53,194,1,0.14); color: var(--brand-text); margin-top: 1px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { position: relative; padding: 32px; border-radius: var(--r-lg); border: 1px solid var(--line); background: var(--bg-elev); box-shadow: var(--shadow-soft); }
.step .num { font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 700; color: var(--brand-text); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.step .num::before { content: ""; width: 30px; height: 1px; background: var(--brand); }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { color: var(--ink-dim); font-size: 15px; margin: 0; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* bilingual */
.lang { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.lang .card { border-radius: var(--r-lg); border: 1px solid var(--line); padding: 34px; background: var(--bg-elev); box-shadow: var(--shadow-soft); }
.lang .card .tagn { font-size: 13px; font-weight: 700; color: var(--brand-text); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.lang .card .quote { font-family: "Space Grotesk", sans-serif; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; letter-spacing: -0.02em; }
.lang .card.rtl { direction: rtl; text-align: right; }
.lang .card.rtl .quote { font-size: clamp(24px, 2.8vw, 32px); }
@media (max-width: 720px) { .lang { grid-template-columns: 1fr; } }

/* final CTA */
.cta-final {
  position: relative; text-align: center; border-radius: var(--r-xl);
  padding: clamp(56px, 8vw, 96px) 24px; overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(120% 140% at 50% -12%, rgba(53,194,1,0.16), var(--bg-elev) 62%);
  box-shadow: var(--shadow-card);
}
.cta-final h2 { font-size: clamp(34px, 5vw, 62px); letter-spacing: -0.03em; margin-bottom: 20px; }
.cta-final p { color: var(--ink-dim); max-width: 52ch; margin: 0 auto 34px; font-size: 18px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.footer .brand { margin-bottom: 16px; }
.footer .about { color: var(--ink-dim); max-width: 40ch; font-size: 15px; }
.footer-brandcol { max-width: 360px; }
.footer .fh { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 20px 0 12px; font-weight: 700; }
.socials { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.socials a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color .25s var(--ease), transform .2s var(--ease), background .25s; }
.socials a:hover { border-color: var(--brand); transform: translateY(-2px); background: rgba(53,194,1,0.06); }
.socials img { width: 18px; height: 18px; display: block; }
.footer-bottom a { color: var(--brand-text); }
.footer-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.footer-cols h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 16px; font-weight: 700; }
.footer-cols a { display: block; color: var(--ink-dim); font-size: 15px; margin-bottom: 11px; transition: color .2s; }
.footer-cols a:hover { color: var(--brand-text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 13.5px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
