*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue-dark: #1565C0;
    --blue-mid: #1E88E5;
    --blue-primary: #42A5F5;
    --blue-lite: #D6E9F8;
    --blue-pale-soft: #E3EFFB;
    --blue-light-extra: #F3F7FC;
    --gradient: linear-gradient(135deg, #42A5F5, #1565C0);
    --gradient-soft: linear-gradient(135deg, #7FBDF5, #3B82E0);
    --ink: #1A1D21;
    --text-title: #212121;
    --grey-dark: #424242;
    --grey-medium: #757575;
    --grey: #9E9E9E;
    --grey-lite: #E0E0E0;
    --grey-lightest: #F5F5F5;
    --field-fill: #F5F7FA;
    --field-border: #E0E7EF;
    --white: #FFFFFF;
    --green-deep: #2E7D32;
    --green-lite: #E8F5E9;
    --profile-orange: #FF9800;
    --profile-teal: #009688;
    --profile-pink: #E91E63;
    --profile-blue: #2196F3;
    --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 84px; }
  body {
    font-family: var(--font);
    color: var(--text-title);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  a { color: var(--blue-mid); text-decoration: none; }
  a:hover { color: var(--blue-dark); }
  .material-symbols-rounded { font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24; line-height: 1; }

  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
  .overline { font-size: 12px; font-weight: 800; letter-spacing: 0.9px; text-transform: uppercase; }

  /* ─────────── NAV ─────────── */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.82);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid rgba(16,24,40,0.06);
  }
  .nav-inner { display: flex; align-items: center; gap: 20px; height: 68px; }
  .brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 19px; letter-spacing: -0.5px; color: var(--ink); }
  .brand img { width: 32px; height: 32px; }
  .nav-links { display: flex; gap: 4px; margin-left: auto; }
  .nav-links a {
    padding: 9px 15px; border-radius: 999px; font-size: 14.5px; font-weight: 600; color: var(--grey-dark);
    transition: background 0.15s, color 0.15s;
  }
  .nav-links a:hover { background: var(--blue-light-extra); color: var(--blue-dark); }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font); font-weight: 700; cursor: pointer; border: none;
    border-radius: 999px; transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  .btn:active { transform: scale(0.97); }
  .btn-grad {
    background: var(--gradient); color: #fff; padding: 12px 22px; font-size: 14.5px;
    box-shadow: 0 8px 20px rgba(21,101,192,0.28);
  }
  .btn-grad:hover { box-shadow: 0 12px 28px rgba(21,101,192,0.38); color: #fff; }
  .btn-ghost {
    background: #fff; color: var(--blue-dark); padding: 12px 22px; font-size: 14.5px;
    border: 1.5px solid var(--field-border);
  }
  .btn-ghost:hover { border-color: var(--blue-primary); background: var(--blue-light-extra); }
  .nav-cta { margin-left: 4px; }
  .nav-toggle { display: none; }

  /* ─────────── HERO ─────────── */
  .hero {
    position: relative; overflow: hidden; color: #fff;
    background: var(--gradient);
    padding: 92px 0 120px;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background: url('assets/city_contour_texture.png') center/cover no-repeat;
    opacity: 0.10; mix-blend-mode: screen; pointer-events: none;
  }
  .orb { position: absolute; border-radius: 999px; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), rgba(255,255,255,0)); pointer-events: none; }
  .orb.a { width: 520px; height: 520px; top: -180px; right: -120px; }
  .orb.b { width: 360px; height: 360px; bottom: -160px; left: -100px; }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
  .hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px; padding: 7px 14px 7px 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.2px;
    margin-bottom: 22px;
  }
  .hero .eyebrow img { width: 22px; height: 22px; border-radius: 6px; }
  .hero h1 {
    font-size: clamp(38px, 5.2vw, 62px); line-height: 1.04; letter-spacing: -1.6px; font-weight: 800;
    text-wrap: balance;
  }
  .hero h1 .light { font-weight: 400; color: rgba(255,255,255,0.86); display: block; }
  .hero p.lede {
    font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.9); font-weight: 500;
    margin: 22px 0 32px; max-width: 480px; text-wrap: pretty;
  }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .btn-white { background: #fff; color: var(--blue-dark); padding: 15px 26px; font-size: 16px; box-shadow: 0 12px 30px rgba(8,30,60,0.24); }
  .btn-white:hover { color: var(--blue-dark); box-shadow: 0 16px 38px rgba(8,30,60,0.32); }
  .btn-glass { background: rgba(255,255,255,0.16); color: #fff; padding: 15px 24px; font-size: 16px; border: 1px solid rgba(255,255,255,0.32); }
  .btn-glass:hover { background: rgba(255,255,255,0.26); color: #fff; }
  .stores { display: flex; gap: 12px; margin-top: 26px; }
  .store {
    display: inline-flex; align-items: center; gap: 11px; background: rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.22); border-radius: 14px; padding: 9px 16px; cursor: pointer;
    transition: background 0.15s;
  }
  .store:hover { background: rgba(0,0,0,0.42); }
  .store img { height: 24px; width: auto; }
  .store .g { height: 22px; }
  .store div { line-height: 1.1; }
  .store .s { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.72); }
  .store .b { font-size: 15px; font-weight: 700; color: #fff; }

  /* radar hero visual */
  .radar-stage { position: relative; height: 480px; display: grid; place-items: center; }
  .radar { position: relative; width: 400px; height: 400px; display: grid; place-items: center; }
  .radar .ring { position: absolute; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.22); }
  .radar .r1 { width: 400px; height: 400px; }
  .radar .r2 { width: 300px; height: 300px; border-color: rgba(255,255,255,0.28); }
  .radar .r3 { width: 200px; height: 200px; border-color: rgba(255,255,255,0.36); }
  @keyframes sweep { to { transform: rotate(360deg); } }
  .radar .sweep {
    position: absolute; width: 400px; height: 400px; border-radius: 999px;
    background: conic-gradient(from 0deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 70deg);
    animation: sweep 5s linear infinite;
  }
  .radar .core { position: relative; z-index: 3; width: 118px; height: 118px; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
  .float-icon {
    position: absolute; width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center;
    background: linear-gradient(160deg,#5BAAF3,#2C77D2); border: 1.5px solid rgba(255,255,255,0.55);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22); z-index: 4;
    animation: floaty 4s ease-in-out infinite;
  }
  .float-icon .material-symbols-rounded { color: #fff; font-size: 27px; }
  .float-icon.white { background: #fff; box-shadow: 0 12px 26px rgba(0,0,0,0.28); border: 3px solid rgba(255,255,255,0.8); }
  .float-icon.white .material-symbols-rounded { color: var(--blue-primary); }
  .fi-1 { top: 10px; left: 60px; animation-delay: 0s; }
  .fi-2 { top: 40px; right: 20px; animation-delay: 0.8s; }
  .fi-3 { bottom: 70px; right: 0; animation-delay: 1.4s; }
  .fi-4 { bottom: 20px; left: 90px; animation-delay: 0.4s; }
  .fi-5 { top: 150px; left: -12px; animation-delay: 1.1s; }

  /* ─────────── SECTION SHELL ─────────── */
  section.block { padding: 96px 0; }
  .sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
  .sec-head .overline { color: var(--blue-mid); }
  .sec-head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -1.1px; line-height: 1.08; margin-top: 12px; font-weight: 800; }
  .sec-head h2 .light { font-weight: 400; color: var(--grey); }
  .sec-head p { font-size: 17px; color: var(--grey-medium); margin-top: 16px; text-wrap: pretty; }

  /* feature rows */
  .feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 120px; }
  .feature:last-child { margin-bottom: 0; }
  .feature.flip .ftext { order: 2; }
  .ftext .overline { color: var(--blue-mid); }
  .ftext h3 { font-size: 34px; letter-spacing: -0.9px; line-height: 1.1; margin: 14px 0 16px; font-weight: 800; }
  .ftext h3 .light { font-weight: 400; color: var(--grey); display: block; }
  .ftext p { font-size: 16.5px; color: var(--grey-medium); text-wrap: pretty; }
  .ftext .tag {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 20px;
    background: var(--blue-pale-soft); color: var(--blue-dark); border-radius: 999px; padding: 8px 15px; font-size: 13px; font-weight: 700;
  }
  .flist { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
  .flist .row { display: flex; align-items: center; gap: 11px; font-size: 15.5px; font-weight: 600; color: var(--grey-dark); }
  .flist .tick { width: 26px; height: 26px; flex: none; border-radius: 999px; background: var(--green-lite); display: grid; place-items: center; }
  .flist .tick .material-symbols-rounded { font-size: 17px; color: var(--green-deep); }

  /* ─────────── PHONE MOCKUP ─────────── */
  .phone-hold { display: grid; place-items: center; }
  .phone {
    position: relative; width: 300px; height: 620px; background: #0b0b0c; border-radius: 42px; padding: 9px;
    box-shadow: 0 40px 80px rgba(16,24,40,0.28), 0 0 0 2px rgba(0,0,0,0.4);
    flex: none;
  }
  .phone .island { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #000; border-radius: 999px; z-index: 30; }
  .screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #fff; }
  .screen.grad { background: var(--gradient); }
  .statusbar { display: flex; align-items: center; justify-content: space-between; padding: 15px 22px 0; position: relative; z-index: 5; }
  .statusbar .t { font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
  .statusbar .icons { display: flex; gap: 5px; }
  .statusbar .icons .material-symbols-rounded { font-size: 15px; }
  .sb-white .t, .sb-white .material-symbols-rounded { color: #fff; }
  .sb-dark .t, .sb-dark .material-symbols-rounded { color: #111; }

  .scr-pad { padding: 0 20px; position: relative; z-index: 5; }
  .glass-chip { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.25); border-radius: 14px; padding: 11px 14px; margin-top: 14px; }
  .glass-chip .ol { font-size: 10px; font-weight: 800; letter-spacing: 0.8px; color: rgba(255,255,255,0.82); }
  .glass-chip .lo { display: flex; align-items: center; gap: 5px; margin-top: 4px; font-size: 12.5px; font-weight: 600; color: #fff; }
  .glass-chip .lo .material-symbols-rounded { font-size: 14px; color: #fff; }

  .heading-blk { padding: 0 20px 12px; position: relative; z-index: 5; }
  .heading-blk .l1 { font-size: 25px; line-height: 1.14; letter-spacing: -0.6px; font-weight: 400; color: rgba(255,255,255,0.9); }
  .heading-blk .l2 { font-size: 25px; line-height: 1.14; letter-spacing: -0.6px; font-weight: 800; color: #fff; }
  .heading-blk.dark .l1 { color: #C4C8CE; }
  .heading-blk.dark .l2 { color: var(--ink); }
  .body-blk { padding: 0 20px 18px; font-size: 12.5px; line-height: 1.5; font-weight: 500; color: rgba(255,255,255,0.82); position: relative; z-index: 5; }
  .body-blk.dark { color: var(--grey-medium); }

  .footer-blk { padding: 0 20px 22px; position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; }
  .dots { display: flex; gap: 5px; }
  .dots span { width: 6px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.4); }
  .dots span.on { width: 18px; background: #fff; }
  .dots.dark span { background: var(--grey-lite); }
  .dots.dark span.on { background: var(--blue-primary); }
  .mini-cta { display: inline-flex; align-items: center; gap: 4px; border: none; cursor: pointer; border-radius: 999px; padding: 10px 18px; font-family: var(--font); font-size: 12.5px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.2); }
  .mini-cta.grad { background: var(--gradient-soft); box-shadow: 0 8px 18px rgba(33,136,229,0.35); }

  /* screen radar */
  .scr-radar { position: absolute; top: 190px; left: 0; right: 0; display: grid; place-items: center; pointer-events: none; z-index: 2; }
  .scr-radar .box { position: relative; width: 250px; height: 250px; display: grid; place-items: center; }
  .scr-radar .ring { position: absolute; border-radius: 999px; }
  .scr-radar .rr1 { width: 250px; height: 250px; border: 1.5px solid rgba(255,255,255,0.10); }
  .scr-radar .rr2 { width: 185px; height: 185px; border: 1.5px solid rgba(255,255,255,0.14); }
  .scr-radar .rr3 { width: 120px; height: 120px; border: 1.5px solid rgba(255,255,255,0.2); }
  .scr-radar .cdot { width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,0.85); box-shadow: 0 0 0 6px rgba(255,255,255,0.12); }
  .sfi { position: absolute; width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; background: linear-gradient(160deg,#5BAAF3,#2C77D2); border: 1.5px solid rgba(255,255,255,0.5); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }
  .sfi .material-symbols-rounded { font-size: 19px; color: #fff; }
  .sfi.white { background: #fff; border: 3px solid rgba(255,255,255,0.75); width: 46px; height: 46px; }
  .sfi.white .material-symbols-rounded { color: var(--blue-primary); font-size: 23px; }

  /* interest chips screen */
  .chip-progress { padding: 14px 20px 0; position: relative; z-index: 5; }
  .chip-progress .top { display: flex; align-items: flex-end; justify-content: space-between; }
  .chip-progress .ol { font-size: 10px; font-weight: 800; letter-spacing: 0.7px; color: rgba(255,255,255,0.82); }
  .chip-progress .ct { font-size: 13px; font-weight: 800; color: #fff; }
  .chip-progress .ct em { font-weight: 600; color: rgba(255,255,255,0.7); font-style: normal; }
  .chip-progress .bar { margin-top: 7px; height: 5px; border-radius: 999px; background: rgba(255,255,255,0.2); overflow: hidden; }
  .chip-progress .bar i { display: block; width: 60%; height: 100%; background: #fff; border-radius: 999px; }
  .chips { padding: 14px 16px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; position: relative; z-index: 5; }
  .ichip { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; padding: 7px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.13); color: #fff; border: 1.5px solid rgba(255,255,255,0.32); }
  .ichip .material-symbols-rounded { font-size: 14px; color: #fff; font-variation-settings: 'FILL' 0; }
  .ichip.on { background: #fff; color: var(--blue-primary); border: 1.5px solid #fff; box-shadow: 0 6px 14px rgba(8,30,60,0.16); }
  .ichip.on .material-symbols-rounded { color: var(--blue-primary); font-variation-settings: 'FILL' 1; }

  /* create event card in screen */
  .ev-card { background: #fff; border-radius: 16px; box-shadow: 0 14px 30px rgba(8,30,60,0.22); padding: 14px; margin-top: 6px; }
  .ev-top { display: flex; align-items: center; gap: 10px; }
  .avatar { width: 38px; height: 38px; flex: none; border-radius: 999px; display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 800; }
  .ev-name { font-size: 14px; font-weight: 800; color: var(--text-title); }
  .ev-date { font-size: 11.5px; margin-top: 1px; }
  .ev-date b { color: var(--blue-primary); }
  .ev-date span { color: var(--grey-medium); font-weight: 600; }
  .ev-title { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; color: var(--text-title); margin: 12px 0 10px; }
  .pill { display: inline-flex; align-items: center; gap: 4px; background: var(--blue-lite); color: var(--blue-dark); border-radius: 999px; padding: 5px 10px; font-size: 11px; font-weight: 700; }
  .pill .material-symbols-rounded { font-size: 13px; color: var(--blue-dark); }
  .pill.grey { background: var(--grey-lightest); color: var(--grey-medium); }
  .pill.grey .material-symbols-rounded { color: var(--grey-medium); }
  .ev-meta { display: flex; align-items: center; gap: 8px; }
  .flow-label { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
  .flow-label .line { flex: 1; height: 1px; background: rgba(255,255,255,0.28); }
  .flow-label span { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; letter-spacing: 0.6px; color: rgba(255,255,255,0.92); white-space: nowrap; }
  .flow-label span .material-symbols-rounded { font-size: 13px; color: rgba(255,255,255,0.92); }
  .sent-row { background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.24); border-radius: 15px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
  .stack { display: flex; }
  .stack .avatar { width: 30px; height: 30px; border: 2px solid #2f7fd0; font-size: 10px; }
  .stack .avatar + .avatar { margin-left: -9px; }
  .sent-row .lab { flex: 1; font-size: 12px; font-weight: 600; color: #fff; }
  .sent-badge { display: inline-flex; align-items: center; gap: 5px; background: #fff; color: var(--green-deep); border-radius: 999px; padding: 8px 14px; font-size: 12.5px; font-weight: 700; }
  .sent-badge .material-symbols-rounded { font-size: 15px; color: var(--green-deep); }

  /* ─────────── LIST BUSINESS ─────────── */
  .biz { background: var(--grey-lightest); }
  .biz-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
  .biz-copy { position: sticky; top: 100px; }
  .biz-copy .overline { color: var(--blue-mid); }
  .biz-copy h2 { font-size: clamp(30px, 3.6vw, 42px); letter-spacing: -1px; line-height: 1.08; margin: 12px 0 18px; font-weight: 800; }
  .biz-copy h2 .light { font-weight: 400; color: var(--grey); display: block; }
  .biz-copy p { font-size: 16.5px; color: var(--grey-medium); text-wrap: pretty; }
  .biz-benefits { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
  .biz-benefits .b { display: flex; gap: 14px; align-items: flex-start; }
  .biz-benefits .b .tile { width: 44px; height: 44px; flex: none; border-radius: 13px; background: var(--gradient); display: grid; place-items: center; box-shadow: 0 8px 18px rgba(21,101,192,0.24); }
  .biz-benefits .b .tile .material-symbols-rounded { color: #fff; font-size: 23px; }
  .biz-benefits .b h4 { font-size: 15.5px; font-weight: 800; }
  .biz-benefits .b p { font-size: 14px; margin-top: 2px; }

  form.biz-form { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 24px 60px rgba(8,30,60,0.10); border: 1px solid rgba(16,24,40,0.05); }
  .field { margin-bottom: 18px; }
  .field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; color: var(--grey-medium); margin-bottom: 8px; }
  .field label .opt { color: var(--grey); font-weight: 700; }
  .input {
    display: flex; align-items: center; gap: 11px; background: var(--field-fill); border: 1.5px solid var(--field-border);
    border-radius: 12px; padding: 0 14px; height: 50px; transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  }
  .input.area { height: auto; align-items: flex-start; padding: 13px 14px; }
  .input .material-symbols-rounded { font-size: 20px; color: var(--grey-medium); font-variation-settings: 'FILL' 0; }
  .input.area .material-symbols-rounded { margin-top: 2px; }
  .input:focus-within { border-color: var(--blue-primary); background: #fff; box-shadow: 0 0 0 4px rgba(66,165,245,0.14); }
  .input input, .input select, .input textarea {
    flex: 1; border: none; background: transparent; outline: none; font-family: var(--font); font-size: 15px; color: var(--text-title); font-weight: 500;
  }
  .input textarea { resize: vertical; min-height: 92px; line-height: 1.5; padding-top: 1px; }
  .input select { cursor: pointer; appearance: none; color: var(--text-title); }
  .input input::placeholder, .input textarea::placeholder { color: var(--grey); font-weight: 500; }
  .form-foot { margin-top: 8px; }
  .form-foot .btn-grad { width: 100%; padding: 16px; font-size: 16px; border-radius: 14px; }
  .form-note { display: flex; align-items: center; gap: 7px; justify-content: center; margin-top: 14px; font-size: 12.5px; color: var(--grey); }
  .form-note .material-symbols-rounded { font-size: 15px; color: var(--grey); font-variation-settings: 'FILL' 0; }

  /* ─────────── LEGAL ─────────── */
  .legal { background: #fff; }
  .legal.alt { background: var(--grey-lightest); }
  .legal-head { max-width: 760px; margin: 0 auto; }
  .legal-head .overline { color: var(--blue-mid); }
  .legal-head h2 { font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -1px; margin-top: 10px; font-weight: 800; }
  .legal-head .meta { font-size: 13.5px; color: var(--grey); margin-top: 8px; }
  .legal-head .intro { font-size: 16px; color: var(--grey-medium); margin-top: 20px; text-wrap: pretty; }
  .highlight {
    max-width: 760px; margin: 24px auto 0; background: var(--blue-light-extra); border: 1px solid var(--blue-lite);
    border-radius: 16px; padding: 18px 22px; font-size: 15px; color: var(--blue-dark); font-weight: 600; line-height: 1.55;
  }
  .legal-list { max-width: 760px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
  .clause {
    background: #fff; border: 1px solid rgba(16,24,40,0.08); border-radius: 16px; overflow: hidden;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .legal.alt .clause { background: #fff; }
  .clause[open] { box-shadow: 0 12px 30px rgba(8,30,60,0.08); border-color: var(--blue-lite); }
  .clause summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 22px; user-select: none;
  }
  .clause summary::-webkit-details-marker { display: none; }
  .clause .num {
    width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--blue-pale-soft); color: var(--blue-dark);
    display: grid; place-items: center; font-size: 13px; font-weight: 800;
  }
  .clause[open] .num { background: var(--gradient); color: #fff; }
  .clause summary h3 { flex: 1; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; }
  .clause summary .chev { color: var(--grey); transition: transform 0.2s; font-variation-settings: 'FILL' 0; }
  .clause[open] summary .chev { transform: rotate(180deg); color: var(--blue-primary); }
  .clause .content { padding: 0 22px 20px 66px; font-size: 15px; color: var(--grey-medium); line-height: 1.68; text-wrap: pretty; }
  .contact-box {
    max-width: 760px; margin: 30px auto 0; background: var(--blue-light-extra); border: 1px solid var(--blue-lite);
    border-radius: 16px; padding: 20px 24px; font-size: 15px; color: var(--blue-dark); line-height: 1.6;
  }
  .contact-box a { font-weight: 700; }

  /* ─────────── FOOTER ─────────── */
  footer.site {
    background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 40px;
  }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
  .foot-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 800; font-size: 20px; letter-spacing: -0.5px; }
  .foot-brand img { width: 34px; height: 34px; }
  .foot-brand-copy { margin-top: 16px; font-size: 14.5px; max-width: 320px; line-height: 1.6; }
  .foot-col h5 { color: #fff; font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px; }
  .foot-col a { display: block; color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 11px; }
  .foot-col a:hover { color: #fff; }
  .foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 48px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

  /* reveal on scroll */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.in { opacity: 1; transform: none; }

  @media (max-width: 940px) {
    .hero-grid, .feature, .feature.flip .ftext, .biz-grid, .foot-grid { grid-template-columns: 1fr; }
    .feature.flip .ftext { order: 0; }
    .radar-stage { height: 380px; }
    .radar { width: 320px; height: 320px; }
    .biz-copy { position: static; }
    .foot-grid { gap: 32px; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--field-border); background: #fff; cursor: pointer; }
    .nav-cta { display: none; }
    .phone-hold { margin-top: 8px; }
  }
  @media (max-width: 560px) {
    .wrap { padding: 0 20px; }
    section.block { padding: 68px 0; }
    .field.two { grid-template-columns: 1fr; }
    form.biz-form { padding: 22px; }
    .clause .content { padding-left: 22px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
    .hero { padding: 64px 0 84px; }
  }

  /* ─── PRODUCTS ─── */
  .products { background: var(--grey-lightest); }
  .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

  /* selectable product tiles */
  .ptile { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(16,24,40,0.07); border-radius: 22px; overflow: hidden; box-shadow: 0 14px 40px rgba(8,30,60,0.06); transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s; cursor: pointer; }
  .ptile:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(8,30,60,0.13); border-color: var(--blue-lite); }
  a.ptile:hover { color: inherit; }
  .ptile-primary { border-color: var(--blue-lite); box-shadow: 0 20px 50px rgba(21,101,192,0.14); }
  .tile-prev { height: 216px; overflow: hidden; position: relative; border-bottom: 1px solid rgba(16,24,40,0.06); display: grid; place-items: center; background: #F6F8FA; }
  .tile-prev .deskwin, .tile-prev .selahwin { position: absolute; top: 0; left: 0; width: 100%; border-radius: 0; border: none; box-shadow: none; }
  .tp-splora { background: var(--gradient); border-bottom: none; }
  .tp-splora::before { content: ""; position: absolute; inset: 0; background: url('assets/city_contour_texture.png') center/cover no-repeat; opacity: 0.10; mix-blend-mode: screen; }
  .tp-splora .pm-orbit { transform: scale(0.6); }
  .tile-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
  .tile-top { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 12px; }
  .tile-badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 11px; font-size: 10px; font-weight: 800; letter-spacing: 0.5px; background: var(--blue-pale-soft); color: var(--blue-dark); }
  .tile-badge.dev { background: var(--grey-lightest); color: var(--grey-medium); }
  .tile-badge.soft { background: transparent; border: 1px solid var(--blue-lite); color: var(--blue-mid); }
  .ptile h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
  .tile-body p { font-size: 14px; color: var(--grey-medium); margin-top: 8px; line-height: 1.55; text-wrap: pretty; }
  .tile-cta { margin-top: auto; padding-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 800; color: var(--blue-dark); }
  .tile-cta .material-symbols-rounded { font-size: 17px; transition: transform 0.15s; }
  .ptile:hover .tile-cta .material-symbols-rounded { transform: translateY(3px); }
  .ptile:hover .tile-cta.muted .material-symbols-rounded { transform: translate(3px,-3px); }
  .selah-brand.small { margin-bottom: 4px; margin-top: 2px; }
  .selah-brand.small .selah-mark { width: 28px; height: 28px; border-radius: 8px; }
  .selah-brand.small .selah-mark .material-symbols-rounded { font-size: 15px; }
  .selah-brand.small b { font-size: 14px; }
  .selah-brand.small i { font-size: 9px; }
  .prod-card { position: relative; overflow: hidden; border-radius: 24px; padding: 30px; background: #fff; border: 1px solid rgba(16,24,40,0.06); box-shadow: 0 14px 40px rgba(8,30,60,0.06); transition: transform 0.15s ease, box-shadow 0.2s ease; }
  .prod-card:hover { transform: translateY(-3px); box-shadow: 0 22px 52px rgba(8,30,60,0.12); }
  .prod-featured { background: var(--gradient); color: #fff; display: flex; flex-direction: column; box-shadow: 0 28px 64px rgba(21,101,192,0.26); }
  .prod-featured:hover { color: #fff; box-shadow: 0 34px 74px rgba(21,101,192,0.34); }
  .prod-featured::before { content: ""; position: absolute; inset: 0; background: url('assets/city_contour_texture.png') center/cover no-repeat; opacity: 0.10; mix-blend-mode: screen; pointer-events: none; }
  .prod-badge { position: relative; z-index: 2; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 6px 12px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.6px; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.32); color: #fff; }
  .prod-badge.dev { background: var(--blue-pale-soft); border: 1px solid var(--blue-lite); color: var(--blue-dark); }
  .prod-app-ico { position: relative; z-index: 2; width: 78px; height: 78px; margin: 24px 0 10px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.22)); }
  .prod-featured h3 { position: relative; z-index: 2; font-size: 30px; font-weight: 800; letter-spacing: -0.8px; }
  .prod-featured > p { position: relative; z-index: 2; font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,0.9); margin-top: 10px; max-width: 430px; text-wrap: pretty; }
  .prod-tags { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
  .prod-tags span { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.26); border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 700; }
  .prod-tags span .material-symbols-rounded { font-size: 15px; }
  .prod-cta { position: relative; z-index: 2; margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 800; color: #fff; }
  .prod-cta .material-symbols-rounded { font-size: 19px; transition: transform 0.15s; }
  .prod-featured:hover .prod-cta .material-symbols-rounded { transform: translateX(4px); }
  .prod-app-tile { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; margin-bottom: 16px; }
  .prod-app-tile.blue { background: var(--gradient); box-shadow: 0 10px 22px rgba(21,101,192,0.22); }
  .prod-app-tile.navy { background: linear-gradient(135deg,#1F2A44,#0E1626); box-shadow: 0 10px 22px rgba(14,22,38,0.24); }
  .prod-app-tile .material-symbols-rounded { color: #fff; font-size: 26px; }
  .prod-card h4 { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
  .prod-card > p { font-size: 14.5px; color: var(--grey-medium); margin-top: 8px; line-height: 1.55; text-wrap: pretty; }

  /* main + side tiles */
  .prod-card.prod-main { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 24px; align-items: center; padding: 40px; }
  .pm-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
  .pm-head { display: flex; align-items: center; gap: 16px; margin: 20px 0 2px; }
  .pm-head .prod-app-ico { margin: 0; width: 64px; height: 64px; }
  .pm-head h3 { font-size: 34px; font-weight: 800; letter-spacing: -0.8px; line-height: 1; }
  .pm-sub { font-size: 14px; color: rgba(255,255,255,0.82); font-weight: 600; }
  .pm-copy p { position: relative; z-index: 2; color: rgba(255,255,255,0.9); font-size: 16px; line-height: 1.6; margin-top: 12px; max-width: 470px; text-wrap: pretty; }
  .pm-cta { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--blue-dark); font-weight: 800; font-size: 14.5px; padding: 13px 22px; border-radius: 999px; box-shadow: 0 12px 26px rgba(8,30,60,0.22); }
  .pm-cta:hover { color: var(--blue-dark); box-shadow: 0 16px 32px rgba(8,30,60,0.3); }
  .pm-cta .material-symbols-rounded { font-size: 18px; transition: transform 0.15s; }
  .pm-cta:hover .material-symbols-rounded { transform: translateX(4px); }
  .pm-visual { position: relative; z-index: 2; display: grid; place-items: center; }
  .pm-orbit { position: relative; width: 300px; height: 300px; display: grid; place-items: center; }
  .por { position: absolute; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.22); }
  .por.r1 { width: 300px; height: 300px; }
  .por.r2 { width: 208px; height: 208px; border-color: rgba(255,255,255,0.3); }
  .pm-mark { width: 128px; height: 128px; position: relative; z-index: 2; filter: drop-shadow(0 16px 30px rgba(0,0,0,0.28)); }
  .pm-chip { position: absolute; width: 48px; height: 48px; border-radius: 999px; display: grid; place-items: center; background: rgba(255,255,255,0.16); border: 1.5px solid rgba(255,255,255,0.4); box-shadow: 0 8px 18px rgba(0,0,0,0.2); animation: floaty 4s ease-in-out infinite; }
  .pm-chip .material-symbols-rounded { color: #fff; font-size: 22px; }
  .pm-chip.c1 { top: 4px; left: 66px; }
  .pm-chip.c2 { top: 44px; right: 26px; animation-delay: 0.6s; }
  .pm-chip.c3 { bottom: 48px; right: 16px; background: #E53935; border-color: rgba(255,255,255,0.5); animation-delay: 1s; }
  .pm-chip.c4 { bottom: 16px; left: 74px; animation-delay: 0.3s; }
  .prod-side { cursor: pointer; }
  .side-cta { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 13px; font-weight: 800; color: var(--blue-dark); }
  .side-cta .material-symbols-rounded { font-size: 16px; transition: transform 0.15s; }
  .prod-side:hover .side-cta .material-symbols-rounded { transform: translate(3px,-3px); }
  .deskwin, .selahwin { transition: box-shadow 0.2s ease; }
  .prod-side:hover .deskwin, .prod-side:hover .selahwin { box-shadow: 0 22px 44px rgba(8,30,60,0.20); }

  /* ─── DISCOVER radar card ─── */
  .disc-card { position: relative; width: 100%; min-height: 460px; border-radius: 28px; background: var(--gradient); overflow: hidden; display: grid; place-items: center; box-shadow: 0 30px 70px rgba(21,101,192,0.28); }
  .disc-card::before { content: ""; position: absolute; inset: 0; background: url('assets/city_contour_texture.png') center/cover no-repeat; opacity: 0.10; mix-blend-mode: screen; pointer-events: none; }

  /* ─── Founder quote + scenarios ─── */
  .quote { margin-top: 22px; border-left: 3px solid var(--blue-primary); background: var(--blue-light-extra); border-radius: 0 14px 14px 0; padding: 16px 20px; }
  .quote > p { font-size: 14.5px; font-style: italic; color: var(--grey-dark); line-height: 1.62; margin: 0; }
  .quote .by { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
  .quote .by b { display: block; font-size: 13.5px; font-weight: 800; color: var(--text-title); font-style: normal; }
  .quote .by span { display: block; font-size: 12px; color: var(--grey-medium); }
  .scen { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .scen-chip { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1.5px solid var(--field-border); border-radius: 999px; padding: 7px 13px; font-size: 12.5px; font-weight: 700; color: var(--grey-dark); }
  .scen-chip .material-symbols-rounded { font-size: 15px; color: var(--blue-mid); }

  /* ─── DISCOVER phone (header + splora icon, place list) ─── */
  .disc-header { display: flex; align-items: center; gap: 10px; padding: 8px 18px 12px; position: relative; z-index: 5; border-bottom: 1px solid rgba(16,24,40,0.07); }
  .disc-logo { width: 34px; height: 34px; border-radius: 10px; }
  .disc-h-txt { flex: 1; line-height: 1.15; }
  .disc-h-txt b { display: block; font-size: 16px; font-weight: 800; letter-spacing: -0.3px; color: var(--text-title); }
  .disc-h-txt span { font-size: 11px; font-weight: 600; color: var(--grey-medium); }
  .disc-search { width: 34px; height: 34px; border-radius: 999px; background: var(--grey-lightest); display: grid; place-items: center; }
  .disc-search .material-symbols-rounded { font-size: 19px; color: var(--grey-dark); }
  .disc-list { padding: 14px 14px 0; display: flex; flex-direction: column; gap: 9px; position: relative; z-index: 5; }
  .disc-item { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid rgba(16,24,40,0.07); box-shadow: 0 6px 16px rgba(8,30,60,0.06); border-radius: 15px; padding: 10px 11px; }
  .disc-ico { width: 42px; height: 42px; flex: none; border-radius: 12px; background: var(--blue-pale-soft); display: grid; place-items: center; }
  .disc-ico .material-symbols-rounded { font-size: 22px; color: var(--blue-dark); }
  .disc-info { flex: 1; min-width: 0; }
  .disc-name { font-size: 13px; font-weight: 800; color: var(--text-title); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .disc-cat { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--grey-medium); font-weight: 600; margin-top: 2px; }
  .disc-cat .material-symbols-rounded { font-size: 12px; color: var(--blue-mid); }
  .disc-dist { font-size: 11px; font-weight: 800; color: var(--blue-dark); background: var(--blue-light-extra); border-radius: 999px; padding: 5px 9px; flex: none; }

  /* ─── DISCOVER phone (mirrors real app screen) ─── */
  .d2-top { display: flex; align-items: center; justify-content: space-between; padding: 8px 18px 2px; position: relative; z-index: 5; }
  .d2-menu { font-size: 22px; color: #1a1a1a; }
  .d2-wm { font-size: 17px; font-weight: 700; color: var(--grey); letter-spacing: -0.5px; }
  .d2-wm em { color: var(--grey); font-style: normal; }
  .d2-head { display: flex; align-items: flex-start; justify-content: space-between; padding: 6px 18px 12px; position: relative; z-index: 5; }
  .d2-title b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -1px; color: #111; line-height: 1; }
  .d2-title span { display: flex; align-items: center; gap: 3px; font-size: 12px; color: var(--grey-medium); font-weight: 600; margin-top: 6px; }
  .d2-title span .material-symbols-rounded { font-size: 13px; color: var(--grey-medium); font-variation-settings: 'FILL' 0; }
  .d2-actions { display: flex; gap: 8px; flex: none; }
  .d2-sos { width: 38px; height: 38px; border-radius: 999px; background: #EA3D3D; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.3px; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(234,61,61,0.34); }
  .d2-srch { width: 38px; height: 38px; border-radius: 999px; background: var(--blue-primary); display: grid; place-items: center; box-shadow: 0 6px 14px rgba(66,165,245,0.34); }
  .d2-srch .material-symbols-rounded { color: #fff; font-size: 20px; }
  .d2-chips { display: flex; gap: 8px; padding: 0 18px 14px; position: relative; z-index: 5; overflow: hidden; }
  .d2-chip { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; flex: none; padding: 9px 15px; border-radius: 999px; font-size: 13px; font-weight: 700; background: #fff; color: #1a1a1a; border: 1.5px solid var(--field-border); }
  .d2-chip .material-symbols-rounded { font-size: 16px; color: var(--blue-primary); }
  .d2-chip.on { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 8px 16px rgba(21,101,192,0.28); }
  .d2-chip.on .material-symbols-rounded { color: #fff; }
  .d2-list { padding: 2px 14px 0; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 5; }
  .d2-card { border: 1.5px solid var(--blue-lite); border-radius: 14px; padding: 11px 12px; background: #fff; box-shadow: 0 4px 14px rgba(8,30,60,0.05); }
  .d2-crow { display: flex; align-items: center; justify-content: space-between; }
  .d2-away { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 600; color: var(--grey-medium); }
  .d2-away .material-symbols-rounded { font-size: 13px; color: var(--grey); font-variation-settings: 'FILL' 0; }
  .d2-create { display: inline-flex; align-items: center; gap: 3px; background: var(--grey-lightest); color: var(--grey-dark); border-radius: 999px; padding: 6px 11px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.4px; }
  .d2-create .material-symbols-rounded { font-size: 13px; }
  .d2-name { font-size: 14px; font-weight: 800; letter-spacing: -0.3px; color: #111; margin: 7px 0 4px; line-height: 1.15; }
  .d2-desc { font-size: 11.5px; line-height: 1.4; color: var(--grey-medium); }
  .d2-meta { display: flex; align-items: center; gap: 8px; margin-top: 9px; }
  .d2-catpill { display: inline-flex; align-items: center; gap: 5px; flex: none; background: var(--blue-light-extra); color: var(--blue-mid); border-radius: 999px; padding: 5px 10px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.3px; }
  .d2-catpill .material-symbols-rounded { font-size: 12px; color: var(--blue-mid); }
  .d2-loc { display: inline-flex; align-items: center; gap: 3px; min-width: 0; font-size: 11.5px; color: var(--grey-medium); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .d2-loc .material-symbols-rounded { font-size: 13px; color: var(--grey); flex: none; font-variation-settings: 'FILL' 0; }
  .d2-report { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 9px; font-size: 10px; color: var(--grey); font-weight: 500; }
  .d2-report .material-symbols-rounded { font-size: 13px; color: var(--grey); font-variation-settings: 'FILL' 0; }
  .d2-tabs { position: absolute; left: 0; right: 0; bottom: 0; height: 58px; background: #fff; border-top: 1px solid rgba(16,24,40,0.08); display: flex; align-items: center; justify-content: space-around; z-index: 8; }
  .d2-tabs > .material-symbols-rounded { font-size: 24px; color: var(--grey); font-variation-settings: 'FILL' 0; }
  .d2-tab-on { width: 46px; height: 46px; border-radius: 999px; background: var(--blue-light-extra); display: grid; place-items: center; }
  .d2-tab-on .material-symbols-rounded { font-size: 24px; color: var(--blue-primary); }

  /* ─── Bare component panels (Create & Interests) ─── */
  .comp-hold { display: grid; place-items: center; }
  .comp-panel { width: 100%; max-width: 440px; border-radius: 24px; padding: 26px; background: #fff; border: 1px solid rgba(16,24,40,0.07); box-shadow: 0 24px 60px rgba(8,30,60,0.10); }
  .comp-panel.blue { background: var(--gradient); border: none; box-shadow: 0 28px 64px rgba(21,101,192,0.26); position: relative; overflow: hidden; }
  .comp-panel.blue::before { content: ""; position: absolute; inset: 0; background: url('assets/city_contour_texture.png') center/cover no-repeat; opacity: 0.10; mix-blend-mode: screen; pointer-events: none; }
  .comp-panel.blue .chip-progress, .comp-panel.blue .chips { padding-left: 0; padding-right: 0; }
  .comp-panel.blue .chips { justify-content: center; padding-top: 18px; }
  /* Interests on a light panel — chips look selectable (blue = selected) */
  .comp-interests .chip-progress { padding-left: 0; padding-right: 0; }
  .comp-interests .chip-progress .ol { color: var(--grey-medium); }
  .comp-interests .chip-progress .ct { color: var(--text-title); }
  .comp-interests .chip-progress .ct em { color: var(--grey); }
  .comp-interests .chip-progress .bar { background: var(--grey-lite); }
  .comp-interests .chip-progress .bar i { background: var(--blue-primary); }
  .comp-interests .chips { justify-content: center; padding: 18px 0 0; gap: 9px 8px; }
  .comp-interests .ichip { background: #fff; color: var(--blue-dark); border: 1.5px solid var(--blue-lite); }
  .comp-interests .ichip .material-symbols-rounded { color: var(--blue-primary); }
  .comp-interests .ichip.on { background: var(--gradient); color: #fff; border: none; padding: 8.5px 12.5px; box-shadow: 0 4px 10px rgba(21,101,192,0.18); }
  .comp-interests .ichip.on .material-symbols-rounded { color: #fff; }
  .comp-flow { display: flex; align-items: center; gap: 10px; margin: 8px 0 14px; }
  .comp-flow:first-child { margin-top: 0; }
  .comp-flow + .ev-card { margin-top: 0; }
  .comp-flow .line { flex: 1; height: 1px; background: var(--grey-lite); }
  .comp-flow span { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; letter-spacing: 0.6px; color: var(--grey-medium); white-space: nowrap; }
  .comp-flow span .material-symbols-rounded { font-size: 14px; color: var(--blue-mid); }
  .comp-sent { margin-top: 14px; background: var(--grey-lightest); border: 1px solid var(--field-border); border-radius: 15px; padding: 11px 13px; display: flex; align-items: center; gap: 10px; }
  .comp-sent .stack { display: flex; }
  .comp-sent .stack .avatar { width: 30px; height: 30px; border: 2px solid #fff; font-size: 10px; }
  .comp-sent .stack .avatar + .avatar { margin-left: -9px; }
  .comp-sent .lab { flex: 1; font-size: 12.5px; font-weight: 700; color: var(--grey-dark); }
  .comp-sent .sent-badge { background: var(--green-lite); }

  /* ─── SOS emergency screen ─── */
  .sos-wrap { padding: 24px 20px 4px; text-align: center; position: relative; z-index: 5; }
  @keyframes sospulse { 0%,100% { box-shadow: 0 0 0 6px rgba(229,57,53,0.16), 0 0 0 14px rgba(229,57,53,0.07); } 50% { box-shadow: 0 0 0 10px rgba(229,57,53,0.20), 0 0 0 22px rgba(229,57,53,0.05); } }
  .sos-btn { width: 92px; height: 92px; margin: 0 auto; border-radius: 999px; background: radial-gradient(circle at 40% 35%, #FF5B52, #E53935); color: #fff; font-size: 24px; font-weight: 800; letter-spacing: 1.5px; display: grid; place-items: center; box-shadow: 0 0 0 8px rgba(229,57,53,0.14); animation: sospulse 2.4s ease-in-out infinite; }
  .sos-cap { margin-top: 13px; font-size: 12px; font-weight: 600; color: var(--grey-medium); }
  .sos-list { padding: 12px 14px 0; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 5; }
  .sos-card { display: flex; align-items: center; gap: 9px; background: #fff; border: 1px solid rgba(16,24,40,0.06); box-shadow: 0 6px 16px rgba(8,30,60,0.06); border-radius: 14px; padding: 8px 9px; }
  .sos-ico { width: 36px; height: 36px; flex: none; border-radius: 11px; background: #FDE7E7; display: grid; place-items: center; }
  .sos-ico .material-symbols-rounded { font-size: 20px; color: #E53935; }
  .sos-info { flex: 1; min-width: 0; }
  .sos-name { font-size: 11.5px; font-weight: 800; color: var(--text-title); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sos-meta { display: flex; align-items: center; gap: 4px; font-size: 9.5px; color: var(--grey-medium); font-weight: 600; margin-top: 2px; white-space: nowrap; overflow: hidden; }
  .sos-meta b { flex: none; overflow: hidden; text-overflow: ellipsis; }
  .sos-meta b { color: #E53935; font-weight: 800; letter-spacing: 0.3px; }
  .sos-meta .material-symbols-rounded { font-size: 11px; }
  .sos-nav, .sos-call { width: 28px; height: 28px; flex: none; border-radius: 999px; display: grid; place-items: center; }
  .sos-nav { background: var(--grey-lightest); }
  .sos-nav .material-symbols-rounded { font-size: 16px; color: var(--grey-dark); }
  .sos-call { background: #E53935; }
  .sos-call .material-symbols-rounded { font-size: 16px; color: #fff; }

  /* ─── Emergency mode screen (after SOS, 2026-09-10) ─── */
  .em-head { background: linear-gradient(160deg, #F0463F, #C62828); padding: 8px 18px 16px; display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 5; }
  .em-title b { display: block; font-size: 26px; font-weight: 800; letter-spacing: -0.9px; color: #fff; line-height: 1; }
  .em-title span { display: flex; align-items: center; gap: 3px; font-size: 11.5px; color: rgba(255,255,255,0.86); font-weight: 600; margin-top: 6px; }
  .em-title span .material-symbols-rounded { font-size: 13px; color: rgba(255,255,255,0.86); font-variation-settings: 'FILL' 0; }
  .d2-sos.on { background: #fff; color: #E53935; }
  .d2-sos.pressed { animation: sospulse 2.4s ease-in-out infinite; box-shadow: 0 0 0 6px rgba(255,255,255,0.22); }
  .em-body { padding: 14px 0 0; background: #fff; }
  .em-loc { margin: 0 14px; display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #FDE7E7; box-shadow: 0 6px 16px rgba(229,57,53,0.10); border-radius: 15px; padding: 10px 11px; }
  .em-loc-ico { width: 40px; height: 40px; flex: none; border-radius: 12px; background: #FDE7E7; display: grid; place-items: center; }
  .em-loc-ico .material-symbols-rounded { font-size: 21px; color: #E53935; }
  .em-loc-info { flex: 1; min-width: 0; }
  .em-loc-name { font-size: 13px; font-weight: 800; color: var(--text-title); }
  .em-loc-sub { font-size: 10.5px; color: var(--grey-medium); font-weight: 600; margin-top: 2px; line-height: 1.3; }
  .em-loc-chev { font-size: 20px; color: var(--grey); }
  .em-label { padding: 16px 18px 4px; font-size: 9.5px; font-weight: 800; letter-spacing: 0.9px; color: var(--grey-medium); }
  .em-exit { position: absolute; left: 0; right: 0; bottom: 0; height: 52px; background: #111; color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; font-weight: 700; z-index: 8; }
  .em-exit .material-symbols-rounded { font-size: 17px; color: #fff; }

  /* ─── Feature steps (SOS in three steps) ─── */
  .steps { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
  .step { display: flex; align-items: flex-start; gap: 12px; }
  .step .n { width: 28px; height: 28px; flex: none; border-radius: 999px; background: #FDE7E7; color: #C62828; display: grid; place-items: center; font-size: 12.5px; font-weight: 800; margin-top: 1px; }
  .step b { display: block; font-size: 15px; font-weight: 800; color: var(--text-title); }
  .step span { display: block; font-size: 13.5px; color: var(--grey-medium); margin-top: 2px; line-height: 1.45; }

  /* ─── Interests orbit (introduction page five) ─── */
  .orbit-panel { padding: 26px 20px 20px; }
  .orbit { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1 / 1; margin: 0 auto; display: grid; place-items: center; }
  .oring { position: absolute; border-radius: 999px; border: 1.5px solid rgba(255,255,255,0.14); }
  .oring.r1 { width: 100%; height: 100%; }
  .oring.r2 { width: 72%; height: 72%; border-color: rgba(255,255,255,0.18); }
  .oring.r3 { width: 44%; height: 44%; border-color: rgba(255,255,255,0.26); }
  .ochip { position: absolute; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; padding: 7px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; background: rgba(255,255,255,0.13); color: #fff; border: 1.5px solid rgba(255,255,255,0.32); transform: translate(-50%, -50%); }
  .ochip .material-symbols-rounded { font-size: 14px; color: #fff; font-variation-settings: 'FILL' 0; }
  .ochip.core { position: relative; transform: none; background: #fff; color: var(--blue-primary); border-color: #fff; padding: 10px 15px; font-size: 13px; box-shadow: 0 10px 24px rgba(8,30,60,0.22); z-index: 2; }
  .ochip.core .material-symbols-rounded { color: var(--blue-primary); font-variation-settings: 'FILL' 1; font-size: 17px; }
  .ochip.o1 { left: 50%; top: 4%; }
  .ochip.o2 { left: 82%; top: 16%; }
  .ochip.o3 { left: 94%; top: 45%; }
  .ochip.o4 { left: 84%; top: 76%; }
  .ochip.o5 { left: 55%; top: 95%; }
  .ochip.o6 { left: 20%; top: 88%; }
  .ochip.o7 { left: 6%; top: 60%; }
  .ochip.o8 { left: 10%; top: 30%; }
  .ochip.o9 { left: 30%; top: 10%; }
  .ochip.o10 { left: 62%; top: 28%; }
  .orbit-cap { margin-top: 18px; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.8); }
  .orbit-cap b { color: #fff; font-weight: 800; }
  .orbit-cap i { width: 1px; height: 14px; background: rgba(255,255,255,0.3); margin: 0 6px; }
  @media (max-width: 560px) {
    .ochip { font-size: 10px; padding: 6px 9px; }
    .ochip .material-symbols-rounded { font-size: 12px; }
  }

  /* ─── Desktop admin preview card ─── */
  .prod-desk { display: flex; flex-direction: column; padding: 22px; }
  .prod-desk .prod-badge.dev { margin-bottom: 14px; }
  .deskwin { border-radius: 12px; overflow: hidden; border: 1px solid rgba(16,24,40,0.10); box-shadow: 0 16px 34px rgba(8,30,60,0.14); background: #fff; }
  .deskbar { height: 26px; background: #1b2431; display: flex; align-items: center; gap: 6px; padding: 0 11px; }
  .deskbar .d { width: 8px; height: 8px; border-radius: 999px; }
  .deskbar .d.r { background: #FF5F57; } .deskbar .d.y { background: #FEBC2E; } .deskbar .d.g { background: #28C840; }
  .deskbar .tt { margin-left: 6px; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.7); }
  .deskbody { display: flex; height: 220px; }
  .desknav { width: 132px; flex: none; background: #fff; border-right: 1px solid rgba(16,24,40,0.07); padding: 10px 9px; overflow: hidden; }
  .desklogo { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; }
  .desklogo img { width: 20px; height: 20px; }
  .desklogo b { font-size: 11px; font-weight: 800; color: var(--ink); line-height: 1; }
  .desklogo i { display: block; font-size: 7px; font-weight: 800; letter-spacing: 0.5px; color: var(--blue-mid); font-style: normal; margin-top: 2px; }
  .deskgrp { font-size: 7px; font-weight: 800; letter-spacing: 0.6px; color: var(--grey); margin: 4px 4px 6px; }
  .deskitem { display: flex; align-items: center; gap: 7px; padding: 6px 7px; border-radius: 7px; font-size: 9.5px; font-weight: 600; color: var(--grey-dark); margin-bottom: 2px; }
  .deskitem .material-symbols-rounded { font-size: 13px; color: var(--grey-medium); }
  .deskitem.on { background: var(--blue-light-extra); color: var(--blue-dark); }
  .deskitem.on .material-symbols-rounded { color: var(--blue-mid); }
  .deskstatus { display: flex; align-items: center; gap: 6px; margin-top: 8px; background: var(--green-lite); color: var(--green-deep); border-radius: 8px; padding: 6px 8px; font-size: 8.5px; font-weight: 700; }
  .deskstatus .sdot { width: 6px; height: 6px; border-radius: 999px; background: var(--green-deep); flex: none; }
  .deskmain { flex: 1; min-width: 0; background: #F6F8FA; padding: 12px; }
  .deskh b { font-size: 13px; font-weight: 800; color: var(--text-title); }
  .deskh span { display: block; font-size: 8.5px; color: var(--grey-medium); margin-top: 1px; }
  .deskwelcome { margin-top: 9px; border-radius: 9px; background: var(--gradient); color: #fff; padding: 10px 11px; }
  .deskwelcome .dt { font-size: 7px; font-weight: 800; letter-spacing: 0.5px; color: rgba(255,255,255,0.8); }
  .deskwelcome .dw { font-size: 12px; font-weight: 800; margin-top: 3px; }
  .deskstats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-top: 9px; }
  .dstat { background: #fff; border: 1px solid rgba(16,24,40,0.06); border-radius: 9px; padding: 8px 8px 9px; }
  .dstat .di { width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; margin-bottom: 6px; }
  .dstat .di .material-symbols-rounded { font-size: 13px; }
  .dstat .di.blue { background: #E3EFFB; } .dstat .di.blue .material-symbols-rounded { color: var(--blue-mid); }
  .dstat .di.amber { background: #FFF1DC; } .dstat .di.amber .material-symbols-rounded { color: #E08A00; }
  .dstat .di.green { background: var(--green-lite); } .dstat .di.green .material-symbols-rounded { color: var(--green-deep); }
  .dstat b { font-size: 15px; font-weight: 800; color: var(--text-title); }
  .dstat i { display: block; font-size: 8px; color: var(--grey-medium); font-style: normal; margin-top: 1px; font-weight: 600; }
  .prod-desk-foot { padding-top: 16px; }
  .prod-desk-foot h4 { font-size: 19px; font-weight: 800; letter-spacing: -0.3px; }
  .prod-desk-foot p { font-size: 14px; color: var(--grey-medium); margin-top: 7px; line-height: 1.55; }

  /* SELAH (Bible) full-width preview card */
  .prod-selah { display: flex; flex-direction: column; padding: 22px; }
  .prod-selah > .prod-badge.dev { align-self: flex-start; margin-bottom: 14px; }
  .selahwin { border-radius: 12px; overflow: hidden; border: 1px solid rgba(16,24,40,0.12); box-shadow: 0 16px 34px rgba(8,30,60,0.16); background: #12151b; }
  .selahbar { height: 40px; background: #12151b; display: flex; align-items: center; gap: 10px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sbc { display: flex; align-items: center; gap: 3px; font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }
  .sbc .material-symbols-rounded { font-size: 12px; }
  .seltabs { display: flex; gap: 3px; margin: 0 auto; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 3px; }
  .seltab { display: flex; align-items: center; gap: 4px; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.6); padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
  .seltab .material-symbols-rounded { font-size: 11px; }
  .seltab.on { background: #2b2f38; color: #fff; }
  .selicons { display: flex; gap: 8px; color: rgba(255,255,255,0.5); }
  .selicons .material-symbols-rounded { font-size: 13px; }
  .selahpage { background: #F4ECD8; padding: 20px 24px 22px; color: #4a3d29; font-family: Georgia, 'Times New Roman', serif; min-height: 214px; }
  .sel-over { font-size: 8px; font-weight: 700; letter-spacing: 1.2px; color: #a2864f; font-family: var(--font); }
  .sel-title { font-size: 26px; font-weight: 700; letter-spacing: 0.5px; margin-top: 6px; color: #2c2418; }
  .sel-heb { font-size: 12px; margin-top: 4px; color: #6b5a3c; }
  .sel-heb i { font-style: italic; color: #8a7455; }
  .sel-div { display: flex; align-items: center; gap: 8px; margin: 14px 0; }
  .sel-div span:first-child, .sel-div span:last-child { flex: 1; height: 1px; background: #d8c9a3; }
  .sel-div .material-symbols-rounded { font-size: 11px; color: #b89a5c; }
  .sel-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .sel-meta .k { font-size: 7.5px; font-weight: 700; letter-spacing: 0.8px; color: #a2864f; font-family: var(--font); }
  .sel-meta .v { font-size: 10.5px; color: #2f6ba0; margin-top: 4px; font-family: 'Courier New', monospace; }
  .sel-sec { font-size: 7.5px; font-weight: 700; letter-spacing: 0.8px; color: #a2864f; font-family: var(--font); margin-top: 16px; }
  .sel-body { font-size: 12.5px; line-height: 1.5; margin-top: 5px; color: #4a3d29; }
  .selah-foot { padding-top: 16px; }
  .selah-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .selah-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg,#2b7fd0,#1c4f8a); display: grid; place-items: center; flex: none; }
  .selah-mark .material-symbols-rounded { color: #fff; font-size: 18px; }
  .selah-brand b { font-family: Georgia, serif; font-size: 17px; letter-spacing: 2px; color: var(--ink); }
  .selah-brand i { display: block; font-size: 10px; font-style: italic; color: var(--grey-medium); letter-spacing: 0.5px; }
  .selah-foot h4 { font-size: 20px; font-weight: 800; letter-spacing: -0.3px; }
  .selah-foot p { font-size: 14.5px; color: var(--grey-medium); margin-top: 8px; line-height: 1.55; }

  @media (max-width: 940px) {
    .prod-grid { grid-template-columns: 1fr; }
    .prod-featured { grid-row: auto; }
    .disc-card { min-height: 380px; }
    .prod-card.prod-main { grid-template-columns: 1fr; padding: 28px; }
    .pm-visual { margin-top: 6px; }
    .pm-orbit { width: 260px; height: 260px; }
    .por.r1 { width: 260px; height: 260px; }
    .prod-selah { padding: 18px; }
  }
  /* ─────────── SPLORA FOOTER ─────────── */
  .splora-foot { background: var(--blue-light-extra); border-top: 1px solid var(--blue-lite); padding: 30px 0; }
  .sf-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
  .sf-brand { display: flex; align-items: center; gap: 12px; }
  .sf-brand img { width: 40px; height: 40px; }
  .sf-brand b { display: block; font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; line-height: 1.1; }
  .sf-brand span { font-size: 12.5px; color: var(--grey-medium); font-weight: 600; }
  .sf-stores { display: flex; gap: 10px; }
  .store.light { background: #fff; border: 1.5px solid var(--field-border); box-shadow: 0 6px 16px rgba(8,30,60,0.06); }
  .store.light:hover { background: #fff; border-color: var(--blue-primary); box-shadow: 0 10px 22px rgba(8,30,60,0.10); }
  .store.light .s { color: var(--grey-medium); }
  .store.light .b { color: var(--ink); }
  .sf-links { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
  .sf-links a { font-size: 13.5px; font-weight: 700; color: var(--blue-dark); padding: 8px 14px; border-radius: 999px; }
  .sf-links a:hover { background: #fff; color: var(--blue-dark); }
  @media (max-width: 640px) {
    .sf-links { margin-left: 0; width: 100%; }
    .sf-stores { order: 3; width: 100%; }
  }
