.home-circle-card{
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  backdrop-filter: blur(6px);
}

.home-circle-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.home-circle-title{
  font-size:12px;
  font-weight:800;
  letter-spacing:0.25px;
  color: rgba(0,0,0,0.55);
}

.home-circle-seeall{
  font-size:11px;
  font-weight:700;
  color:#0f465c;
  text-decoration:none;
}

.home-circle-seeall:hover{ text-decoration:underline; }

.home-circle-search{ margin-bottom:10px; }

.home-circle-input{
  width:100%;
  height:28px;
  padding:0 12px;
  font-size:11px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.16);
  outline:none;
  background: rgba(255,255,255,0.85);
}

.home-circle-input:focus{
  border-color: rgba(15,70,92,0.55);
  box-shadow: 0 0 0 3px rgba(15,70,92,0.18);
}

.home-circle-list{
  display:flex;
  flex-direction:column;
  gap:0;
}

.home-circle-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 6px;
  border-radius:0;
  background: transparent;
  border:none;
  border-top:1px solid rgba(0,0,0,0.12);
}

.home-circle-item:first-child{ border-top:none; }

.landing-page{ width:100%; }

.landing-hero{
  position:relative;
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:stretch;
  overflow:hidden;
  margin-top:-75px;
  padding-top:75px;
}

.landing-hero::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(980px, 92vw);
  height:1px;
  background:linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.30), rgba(255,255,255,0.0));
  z-index:3;
  opacity:0.75;
}

.landing-hero-bg{
  position:absolute;
  inset:0;
  background:url("../photo/barangay-photo.jpg") center/cover no-repeat;
  transform:scale(1.03);
}

.landing-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 52%, rgba(0,0,0,0.28) 100%),
    linear-gradient(to right, rgba(34,121,156,0.75), rgba(178,178,178,0.55));
}

.landing-hero-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  width:100%;
  margin:0 auto;
  padding:0 40px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:14px;
}

.landing-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.18);
  color:rgba(255,255,255,0.92);
  font-size:12px;
  font-weight:600;
  letter-spacing:0.2px;
}

.landing-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#36d07d;
  box-shadow:0 0 0 4px rgba(54,208,125,0.18);
}

.landing-dot.dot-bling{
  animation: dotBling 1.6s ease-in-out infinite;
  box-shadow:0 0 0 0 rgba(54,208,125,0.0);
}

@keyframes dotBling{
  0%{ transform:scale(1); box-shadow:0 0 0 0 rgba(54,208,125,0.0); filter:brightness(1); }
  45%{ transform:scale(1.08); box-shadow:0 0 0 10px rgba(54,208,125,0.18); filter:brightness(1.15); }
  100%{ transform:scale(1); box-shadow:0 0 0 18px rgba(54,208,125,0.0); filter:brightness(1); }
}

.landing-title{
  margin:0;
  color:#fff;
  font-weight:800;
  letter-spacing:-0.6px;
  line-height:1.06;
  font-size:clamp(32px, 3.7vw, 46px);
}

.landing-sub{
  margin:0;
  max-width:580px;
  color:rgba(255,255,255,0.82);
  font-size:13.5px;
  line-height:1.7;
  font-weight:500;
}

.landing-cta{
  margin-top:12px;
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.landing-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 20px;
  border-radius:999px;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:0.2px;
  text-decoration:none;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, filter 0.2s ease;
  user-select:none;
}

.landing-btn-primary{
  background:#c73a3a;
  color:#fff;
  box-shadow:0 12px 22px rgba(0,0,0,0.22);
}

.landing-btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 30px rgba(0,0,0,0.26);
  filter:brightness(1.02);
}

.landing-btn-ghost{
  background:rgba(255,255,255,0.28);
  color:#fff;
  border:1px solid rgba(255,255,255,0.30);
  backdrop-filter:blur(6px);
}

.landing-btn-ghost:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.34);
}

.landing-wrap{
  max-width:1200px;
  margin:0 auto;
  width:100%;
  padding:0 40px;
}

.landing-how{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
}

.landing-how::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:min(980px, 92vw);
  height:1px;
  background:linear-gradient(90deg, rgba(0,0,0,0.0), rgba(15,70,92,0.22), rgba(0,0,0,0.0));
  opacity:0.75;
}

.landing-how::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:min(980px, 92vw);
  height:1px;
  background:linear-gradient(90deg, rgba(0,0,0,0.0), rgba(15,70,92,0.22), rgba(0,0,0,0.0));
  opacity:0.75;
}

.landing-how-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:22px;
  align-items:center;
  text-align:center;
}

.landing-how-title{
  margin:0;
  font-size:34px;
  font-weight:900;
  color:rgba(0,0,0,0.82);
  letter-spacing:-0.6px;
}

.landing-how-sub{
  margin:0;
  color:rgba(0,0,0,0.60);
  font-size:15px;
  line-height:1.6;
  font-weight:500;
  max-width:70ch;
}

.landing-how-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:26px;
}

.landing-how-card{
  position:relative;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  box-shadow:0 18px 34px rgba(0,0,0,0.12);
  padding:26px 22px 24px;
  min-height:320px;
  display:flex;
  flex-direction:column;
  transition:transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.landing-how-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 52px rgba(0,0,0,0.16);
  border-color:rgba(0,0,0,0.10);
}

.landing-how-card:not(:last-child)::after{
  content:"";
  position:absolute;
  top:50%;
  right:-13px;
  transform:translateY(-50%);
  width:0;
  height:0;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:10px solid rgba(15,70,92,0.22);
  opacity:0.65;
}

.landing-how-big{
  font-size:56px;
  font-weight:900;
  line-height:1;
  letter-spacing:-1px;
  margin-bottom:18px;
  background:linear-gradient(to right, #22799C, #deb1e7);
  background-size:400% 100%;
  background-repeat:no-repeat;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  color:transparent;
  opacity:.95;
}

.landing-how-card:nth-child(1) .landing-how-big{ background-position:0% 0; }
.landing-how-card:nth-child(2) .landing-how-big{ background-position:33% 0; }
.landing-how-card:nth-child(3) .landing-how-big{ background-position:77% 0; }
.landing-how-card:nth-child(4) .landing-how-big{ background-position:100% 0; }

.landing-how-name{
  font-size:16px;
  font-weight:900;
  color:rgba(0,0,0,0.78);
  margin-bottom:10px;
  letter-spacing:-0.2px;
}

.landing-how-desc{
  font-size:13px;
  font-weight:500;
  color:rgba(0,0,0,0.58);
  line-height:1.7;
}

.home-support{
  max-width:1200px;
  margin:0 auto;
  width:100%;
  padding:0 40px;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  align-items:center;
}

.home-support::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:min(980px, 92vw);
  height:1px;
  background:linear-gradient(90deg, rgba(0,0,0,0.0), rgba(15,70,92,0.22), rgba(0,0,0,0.0));
  opacity:0.75;
}

.home-support-title{
  margin:0 0 10px;
  font-size:28px;
  font-weight:900;
  color:rgba(0,0,0,0.82);
  letter-spacing:-0.4px;
  text-align:center;
}

.home-support-text{
  margin:0 0 18px;
  font-size:13.5px;
  font-weight:500;
  line-height:1.7;
  color:rgba(0,0,0,0.60);
  max-width:72ch;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}

.home-support-image{
  position:relative;
  min-height:360px;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(90deg, rgba(0,0,0,0.56), rgba(0,0,0,0.18)), url("../photo/donate_slide_1.jpg") center/cover no-repeat;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 18px 34px rgba(0,0,0,0.14);
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:26px;
  width:100%;
}

.home-support-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 60%, rgba(34,121,156,0.24), rgba(178,178,178,0.0) 62%),
    linear-gradient(to top, rgba(0,0,0,0.46), rgba(0,0,0,0.0) 58%);
  pointer-events:none;
}

.donate-slideshow{
  position:relative;
}

.donate-slideshow::before{
  content:"";
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  animation:donateSlides 18s ease-in-out infinite;
  transform:scale(1.01);
}

@keyframes donateSlides{
  0%, 25%{ background-image:url("../photo/donate_slide_1.jpg"); }
  25%, 50%{ background-image:url("../photo/donate_slide_2.jpg"); }
  50%, 75%{ background-image:url("../photo/donate_slide_3.jpg"); }
  75%, 100%{ background-image:url("../photo/donate_slide_4.jpg"); }
}

.home-support-center{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  text-align:center;
  padding:26px;
  gap:10px;
}

.home-support-hero{
  margin:0;
  color:#fff;
  font-size:26px;
  font-weight:900;
  letter-spacing:-0.4px;
  line-height:1.12;
  max-width:34ch;
}

.home-support-hero-sub{
  margin:0;
  color:rgba(255,255,255,0.84);
  font-size:13.5px;
  font-weight:500;
  line-height:1.65;
  max-width:70ch;
}

.home-support-btn{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 26px;
  border-radius:999px;
  background:#0f465c;
  color:#fff;
  font-size:12.5px;
  font-weight:900;
  letter-spacing:0.2px;
  text-decoration:none;
  box-shadow:0 16px 30px rgba(0,0,0,0.28);
  transition:transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-top:10px;
}

.home-support-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 40px rgba(0,0,0,0.32);
  filter:brightness(1.02);
}

.home-landing{ width:100%; }
.home-landing--logged{ width:100%; }
.landing-hero-top{ width:100%; }
.landing-hero-bottom{
  width:100%;
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.home-actions--landing{ width:100%; }
.home-circle-section{ width:100%; padding:34px 0; }
.home-circle-card--wide{ width:100%; }

@media (max-width:900px){
  .landing-hero-bottom{ margin-top:16px; gap:12px; }
  .home-circle-section{ padding:24px 0; }
}

.circle-avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  flex-shrink:0;
  background: rgba(0,0,0,0.12);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.circle-name{
  font-size:12px;
  font-weight:900;
  color: rgba(0,0,0,0.72);
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:220px;
}

.circle-phone{
  margin-top:2px;
  font-size:11px;
  font-weight:600;
  color: rgba(0,0,0,0.55);
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:220px;
}

@media (max-width:1100px){
  .landing-how-grid{ grid-template-columns:repeat(2, 1fr); }
  .landing-how-card:not(:last-child)::after{ display:none; }
}

@media (max-width:680px){
  .landing-hero-inner{ padding:0 18px; }
  .landing-wrap{ padding:0 18px; }
  .landing-how-grid{ grid-template-columns:1fr; }
  .home-support{ padding:0 18px; }
  .landing-how-title{ font-size:30px; }
  .home-support-image{ min-height:320px; }
}

.home-discover{
  width:100%;
  height:auto;
  min-height:0;
  position:relative;
  overflow:visible;
}

.home-discover .discover-frame--merge{
  width:100%;
  height:100vh;
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:stretch;
  justify-content:flex-end;
  overflow:hidden;
  margin-top:-75px;
  padding-top:75px;
}

.home-discover .home-map-wrap{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}


.home-discover #discoverMap{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.home-discover .discover-map-canvas,
.home-discover .discover-map-canvas .leaflet-container{
  width:100%;
  height:100%;
}

.home-discover .home-map-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:50;
  background:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0) 55%,
      rgba(0,0,0,0.08) 75%,
      rgba(0,0,0,0.16) 100%
    ),
    linear-gradient(to bottom,
      rgba(34,121,156,0.18) 10%,
      rgba(34,121,156,0.12) 45%,
      rgba(178,178,178,0.16) 100%
    );
}

.home-discover .home-map-wrap .leaflet-tile{
  filter: grayscale(0.45) saturate(0.75) contrast(1.05) brightness(0.95);
}

.home-discover .home-map-overlays{
  position:absolute;
  inset:0;
  z-index:500;
  pointer-events:none;
}

.home-discover .home-map-topbar{
  position:absolute;
  top:90px;
  left:50%;
  transform:translateX(-50%);
  width:min(820px, calc(100vw - 32px));
  pointer-events:auto;
}

.home-discover .discover-search{
  width:100%;
  height:36px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.78);
  padding:0 16px;
  font-size:12px;
  outline:none;
}

.home-discover .discover-search:focus{
  border-color: rgba(42,122,160,0.55);
  box-shadow: 0 0 0 3px rgba(42,122,160,0.18);
}

.home-discover .home-map-availability{
  position:absolute;
  top:140px;
  left:50%;
  transform:translateX(-50%);
  width:min(820px, calc(100vw - 32px));
  pointer-events:auto;
}

.home-discover .discover-availability-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background: rgba(255,255,255,0.76);
  border:1px solid rgba(0,0,0,0.22);
  border-radius:10px;
  padding:10px 12px;
}

.home-discover .discover-availability-title{
  font-size:12.5px;
  font-weight:900;
  color: rgba(0,0,0,0.70);
}

.home-discover .discover-availability-sub{
  margin-top:2px;
  font-size:10px;
  color: rgba(0,0,0,0.55);
  line-height:1.25;
  max-width:520px;
}

.home-discover .discover-toggle{
  cursor:pointer;
  user-select:none;
}

.home-discover .discover-toggle input{ display:none; }

.home-discover .discover-toggle-track{
  width:68px;
  height:26px;
  border-radius:999px;
  position:relative;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.22);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-discover .discover-toggle-knob{
  position:absolute;
  top:3px;
  left:3px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.10);
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
  transition: left 0.2s ease;
}

.home-discover .discover-toggle-label{
  font-size:10px;
  font-weight:700;
  color: rgba(0,0,0,0.55);
}

.home-discover .discover-toggle-label::before{ content:"Off"; }

.home-discover .discover-toggle input:checked + .discover-toggle-track{
  background:#2a7aa0;
  border-color: rgba(42,122,160,0.85);
  justify-content:flex-start;
}

.home-discover .discover-toggle input:checked + .discover-toggle-track .discover-toggle-knob{
  left:45px;
}

.home-discover .discover-toggle input:checked + .discover-toggle-track .discover-toggle-label{
  color:#ffffff;
}

.home-discover .discover-toggle input:checked + .discover-toggle-track .discover-toggle-label::before{
  content:"On";
}

.home-discover .home-side-panel{
  position:relative;
  z-index:900;
  width:min(640px, 92vw);
  height:100%;
  min-height:0;
  margin-left:auto;
  display:flex;
  flex-direction:row;
  background: rgba(255,255,255,0.18);
  border:1px solid rgba(0,0,0,0.20);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  overflow:hidden;
  border-radius:12px;
}

.home-discover .home-panel-head{
  flex:0 0 54px;
  width:54px;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  background: #0d2631;
  border-right:1px solid rgba(0,0,0,0.10);
  position:relative;
  z-index:50;
}

.home-discover .home-panel-toggle{
  width:100%;
  height:100%;
  border-radius:0;
  border:0;
  background: rgba(255,255,255,0.34);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:900;
  color: rgba(0,0,0,0.62);
  user-select:none;
}

.home-discover .home-panel-toggle::before,
.home-discover .home-panel-toggle::after{
  display:none;
  content:"";
}

.home-discover .home-panel-scroll{
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
  height:100%;
  position:relative;
}

.home-panel-chat-root{
  width:100%;
  height:100%;
  overflow:hidden;
  position:relative;
}

.home-panel-chat-left{
  padding:12px;
  background: rgba(255,255,255,0.22);
  width:100%;
  height:100%;
  overflow:auto;
  display:flex;
  flex-direction:column;
  box-sizing:border-box;
}

.home-panel-chat-left[hidden]{ display:none !important; }

.home-panel-chat-left .vol-card{ margin-bottom:12px; }
.home-panel-chat-left .circle-nav{ margin-bottom:12px; }
.home-panel-chat-left .circle-card{ margin-bottom:12px; }
.home-panel-chat-left #msgReqWrap{ margin-bottom:12px; }

.home-panel-chat-right{
  background: rgba(255,255,255,0.22);
  display:flex;
  padding:12px;
  width:100%;
  height:100%;
  overflow:hidden;
  box-sizing:border-box;
}

.home-panel-chat-right[hidden]{ display:none !important; }

.home-panel-chat-right .chat-card{
  width:100%;
  display:flex;
  flex-direction:column;
  background: rgba(255,255,255,0.52);
  border:1px solid rgba(0,0,0,0.18);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  overflow:hidden;
  height:100%;
  min-height:0;
  border-radius:10px;
}

.home-chat-back{
  background:none;
  border:none;
  font-size:12px;
  font-weight:800;
  color: rgba(0,0,0,0.50);
  cursor:pointer;
  padding:0 10px 0 0;
  flex-shrink:0;
  letter-spacing:0.2px;
  transition:color .15s;
}
.home-chat-back:hover{ color: rgba(0,0,0,0.85); }

.qa-bar .home-actions--cards{ gap:10px; }
.qa-bar .home-action--card{ min-height:120px; padding:14px; border-radius:14px; }
.qa-bar .ha-icon{ width:36px; height:36px; border-radius:10px; }
.qa-bar .ha-icon--emergency{ background-size:18px 18px; }
.qa-bar .ha-icon--assist{ background-size:18px 18px; }
.qa-bar .ha-title{ font-size:16px; }
.qa-bar .ha-desc{ font-size:11px; }
.qa-bar .ha-btn{ padding:6px 12px; font-size:10px; }



.home-discover .home-panel-hero{ flex:0 0 auto; }

.home-discover .home-panel-hero .landing-hero{
  min-height:unset;
  height:240px;
  margin-top:0;
  padding-top:0;
}

.home-discover .home-panel-hero .landing-hero::after{ display:none; }

.home-discover .home-panel-hero .landing-hero-inner{
  min-height:unset;
  height:100%;
  padding:14px 16px 16px;
  justify-content:flex-end;
}

.home-discover .home-panel-hero .landing-badge{
  position:sticky;
  top:10px;
  z-index:60;
  align-self:flex-start;
}

.home-discover .home-panel-actions{
  flex:0 0 auto;
  padding:14px 14px 0;
}

.home-discover .home-panel-circle{
  flex:1 1 auto;
  min-height:0;
  padding:12px 14px 14px;
  overflow:auto;
  background: rgba(255,255,255,0.52);
}

.home-discover .home-panel-circle .home-circle-card{
  background: rgba(255,255,255,0.78);
}

.home-discover .home-map-topbar,
.home-discover .home-map-availability{
  display:none;
}

.home-discover .home-side-panel[data-state="min"]{
  width:72px;
  min-width:72px;
  border-radius:18px;
}

.home-discover .home-side-panel[data-state="min"] .home-panel-scroll{
  display:none;
}

.home-discover .home-side-panel[data-state="min"] .home-panel-head{
  width:72px;
  flex-basis:72px;
  border-right:0;
  background: rgba(255,255,255,0.14);
}

.home-discover .home-side-panel[data-state="min"] .home-panel-toggle{
  font-size:24px;
  background: rgba(255,255,255,0.40);
  color: rgba(0,0,0,0.62);
}

.home-discover .home-side-panel[data-state="min"] ~ .home-map-wrap .home-map-overlays .home-map-topbar,
.home-discover .home-side-panel[data-state="min"] ~ .home-map-wrap .home-map-overlays .home-map-availability{
  display:block;
}

.home-discover .home-float-pills{
  position:absolute;
  right:16px;
  bottom:16px;
  display:flex;
  gap:10px;
  z-index:999;
  pointer-events:auto;
}

.home-discover .home-float-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  font-size:11.5px;
  font-weight:900;
  letter-spacing:0.2px;
  border:1px solid rgba(255,255,255,0.20);
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  color:#fff;
}

.home-discover .home-float-pill--emg{ background: rgba(199,58,58,0.92); }
.home-discover .home-float-pill--assist{ background: rgba(15,70,92,0.92); }

@media (max-width: 980px){
  .home-discover{
  height:auto;
  min-height: 100vh;
}

.home-discover .discover-frame--merge{
  height:auto;
  min-height: 100vh;
}

.home-discover .home-map-wrap{
  position:relative;
  height: 100vh;
  min-height: 100vh;
}

  .home-discover .home-side-panel{
    position:relative;
    width:calc(100% - 32px);
    height:auto;
    margin:16px;
    border-radius:12px;
    flex-direction:row;
  }

  .home-discover .home-panel-head{
    height:auto;
    min-height:56px;
  }

  .home-discover .home-panel-toggle{
    min-height:56px;
  }
}

@media (max-width:640px){
  .home-discover .home-map-topbar{
    width: calc(100vw - 32px);
  }
  .home-discover .home-map-availability{
    width: calc(100vw - 32px);
  }
}

.home-discover.is-min .home-map-topbar,
.home-discover.is-min .home-map-availability{
  display:block !important;
}

.home-discover:not(.is-min) .home-map-topbar,
.home-discover:not(.is-min) .home-map-availability{
  display:none !important;
}



.home-discover.is-min .home-map-topbar,
.home-discover.is-min .home-map-availability{
  display:block !important;
}


.home-discover .home-side-panel{
  background: rgba(34,121,156,0.22);
  border-radius:0 !important;
}

.home-discover .home-panel-head{
  flex:0 0 38px;
  width:38px;
}

.home-discover .home-panel-toggle{
  font-size:20px;
}

.home-discover .home-side-panel[data-state="min"]{
  width:52px;
  min-width:52px;
  border-radius:0 !important;
}

.home-discover .home-side-panel[data-state="min"] .home-panel-head{
  width:52px;
  flex-basis:52px;
}

.home-discover .home-side-panel[data-state="min"] .home-panel-toggle{
  font-size:22px;
}

.home-discover .home-side-panel{
  background:#22799C !important;
  backdrop-filter:none !important;
  border:0 !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.home-discover .home-panel-actions{
  background:#0d2631 !important;
}

.home-discover .home-panel-circle{
  background:#0d2631 !important;
}

.home-discover .home-circle-card{
  background:rgba(255,255,255,0.96);
  backdrop-filter:none !important;
  border:0;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.home-discover .home-side-panel{
  background:#1f3440 !important;
  border-radius:12px !important;
  box-shadow:0 30px 70px rgba(0,0,0,0.35) !important;
  border:1px solid rgba(0,0,0,0.35) !important;
}

.home-discover .home-panel-head{
  flex:0 0 34px;
  width:34px;
  background:#15242c !important;
  border-right:1px solid rgba(255,255,255,0.05);
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
}

.home-discover .home-panel-toggle{
  background:transparent !important;
  color:#9fb3bd !important;
  font-size:18px !important;
}

.home-discover .home-panel-toggle:hover{
  background:rgba(255,255,255,0.06) !important;
  color:#ffffff !important;
}

.home-discover .home-side-panel[data-state="min"]{
  width:48px;
  min-width:48px;
  border-radius:12px !important;
}

.home-discover .home-side-panel[data-state="min"] .home-panel-head{
  width:48px;
  flex-basis:48px;
}


.home-discover .home-panel-actions{
  background:#1f3440 !important;
  padding:12px 12px 0 !important;
}

.home-discover .home-panel-circle{
  background:#1f3440 !important;
  padding:12px !important;
}

.home-discover .home-circle-card{
  background:#ffffff;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
}


#emergencyOverlay[hidden]{
  display:none !important;
}

#emergencyOverlay{
  position:fixed !important;
  inset:0 !important;
  z-index:2147483647 !important;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

#emergencyOverlay .emergency-overlay-card{
  width:min(520px, calc(100vw - 40px));
  padding:22px 18px;

  background:#ffffff;
  color:#0b1e27;

  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  box-shadow:0 30px 80px rgba(0,0,0,0.45);

  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
}

#emergencyOverlay .emergency-overlay-title{
  font-size:15px;
  font-weight:900;
  letter-spacing:0.2px;
}

#emergencyOverlay .emergency-overlay-sub{
  font-size:12px;
  font-weight:700;
  color:rgba(0,0,0,0.65);
  line-height:1.5;
}

#emgConfirmBtn{
  width:100%;
  height:44px;
  border:0;
  border-radius:12px;
  background:#d42323;
  color:#fff;
  font-weight:900;
  letter-spacing:0.2px;
  cursor:pointer;
}

#emgBackBtn{
  width:100%;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.14);
  background:#f2f4f6;
  color:#0b1e27;
  font-weight:900;
  cursor:pointer;
}


#emergencyOverlay[hidden]{ display:none !important; }

#emergencyOverlay{
  position:fixed !important;
  inset:0 !important;
  z-index:2147483647 !important;

  display:flex;
  align-items:center;
  justify-content:center;

  background: #b65a5a;
}

#emergencyOverlay .emergency-overlay-card{
  width:min(640px, calc(100vw - 44px));
  min-height:min(560px, calc(100vh - 60px));
  padding:34px 26px;

  background: transparent;
  border:0;
  box-shadow:none;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:18px;

  color:#fff;
}

#emergencyOverlay .emergency-overlay-title{
  font-size:12px;
  font-weight:800;
  letter-spacing:0.35px;
  text-transform:uppercase;
  opacity:0.92;
}

#emgConfirmBtn{
  width:260px;
  height:260px;
  border-radius:999px;

  border:0;
  background:#ffffff;
  color:#b65a5a;

  font-size:26px;
  font-weight:900;
  letter-spacing:0.2px;

  cursor:pointer;
  position:relative;
  outline:none;

  box-shadow:
    0 26px 70px rgba(0,0,0,0.25),
    inset 0 0 0 10px rgba(255,255,255,0.80);
}

#emgConfirmBtn{
  animation: emgBeat 1.25s ease-in-out infinite;
  transform-origin:center;
}

#emgConfirmBtn::before,
#emgConfirmBtn::after{
  content:"";
  position:absolute;
  inset:-18px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.38);
  opacity:0;
  transform:scale(0.92);
  pointer-events:none;
}

#emgConfirmBtn::before{
  animation: emgRing 1.25s ease-out infinite;
}
#emgConfirmBtn::after{
  animation: emgRing 1.25s ease-out infinite;
  animation-delay:.35s;
}

@keyframes emgBeat{
  0%   { transform:scale(1);   filter:brightness(1); }
  18%  { transform:scale(1.05); filter:brightness(1.03); }
  38%  { transform:scale(0.99); filter:brightness(1); }
  60%  { transform:scale(1.03); filter:brightness(1.02); }
  100% { transform:scale(1);   filter:brightness(1); }
}

@keyframes emgRing{
  0%   { opacity:0; transform:scale(0.92); }
  18%  { opacity:0.55; }
  70%  { opacity:0; transform:scale(1.18); }
  100% { opacity:0; transform:scale(1.18); }
}

#emergencyOverlay .emergency-overlay-sub{
  font-size:12px;
  font-weight:700;
  opacity:0.9;
  line-height:1.55;
  max-width:46ch;
}

#emgCount{
  font-weight:900;
  opacity:1;
}

#emgBackBtn{
  margin-top:10px;
  border:0;
  background:transparent;

  color:#fff;
  font-size:20px;
  font-weight:900;
  letter-spacing:0.2px;

  cursor:pointer;
  opacity:0.95;
  padding:10px 14px;
}

#emgBackBtn:hover{ opacity:1; text-decoration:underline; }

@media (max-width:520px){
  #emgConfirmBtn{
    width:220px;
    height:220px;
    font-size:24px;
  }
}


#emergencyOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(0,0,0,0.60) !important;
  backdrop-filter: blur(6px) !important;
}

#emergencyOverlay[hidden]{
  display: none !important;
}

#emergencyOverlay .emergency-overlay-card{
  width: min(520px, calc(100vw - 40px)) !important;
  height: auto !important;
  max-height: calc(100vh - 140px) !important;
  padding: 28px 22px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
}

#emergencyOverlay .emergency-overlay-title,
#emergencyOverlay .emergency-overlay-sub,
#emergencyOverlay .emergency-overlay-sub *{
  color: #fff !important;
}

#emergencyOverlay .emergency-overlay-title{
  text-align: center !important;
  opacity: 0.95 !important;
}

#emergencyOverlay .emergency-overlay-sub{
  text-align: center !important;
  opacity: 0.92 !important;
}

#emgCount{
  color: #fff !important;
  font-weight: 900 !important;
}

#emgConfirmBtn{
  margin: 8px 0 !important;
}

#emergencyOverlay *{
  -webkit-user-select: none;
  user-select: none;
}


#emergencyOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
}


.navbar{
  z-index: 1000 !important;
}

.navbar *{
  z-index: auto !important;
}

#emergencyOverlay{
  background: rgba(0,0,0,0.62) !important;
  backdrop-filter: blur(8px) !important;
}

#emergencyOverlay .emergency-overlay-card{
  width: min(560px, calc(100vw - 48px)) !important;
  max-height: calc(100vh - 140px) !important;
  padding: 26px 22px !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  gap: 14px !important;
  text-align: center !important;
}

#emergencyOverlay .emergency-overlay-title{
  color:#fff !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  opacity: 0.92 !important;
  margin: 0 !important;
}

#emergencyOverlay .emergency-overlay-sub{
  color:#fff !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
  opacity: 0.92 !important;
  margin: 0 !important;
}

#emgCount{
  color:#fff !important;
  font-weight: 900 !important;
}

#emergencyOverlay #emgBackBtn{
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  cursor: pointer !important;
}

#emergencyOverlay #emgBackBtn:hover{
  background: rgba(255,255,255,0.10) !important;
}

#emergencyOverlay #emgConfirmBtn{
  margin: 10px 0 6px !important;
}


#emergencyOverlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#emergencyOverlay .emergency-overlay-card{
  width: min(560px, calc(100vw - 48px));
  max-height: calc(100vh - 140px);
}

#emergencyOverlay .emergency-overlay-title,
#emergencyOverlay .emergency-overlay-sub,
#emergencyOverlay #emgCount{
  color: #fff !important;
}


.home-discover .discover-frame--merge{
  margin-top:0 !important;
  padding-top:75px !important;
  min-height:calc(100vh - 75px) !important;
  height:calc(100vh - 75px) !important;
}

.home-discover .home-map-wrap{
  height:calc(100vh - 75px) !important;
  min-height:calc(100vh - 75px) !important;
}

.home-discover #discoverMap{
  top:0 !important;
  height:100% !important;
}

.home-discover .discover-frame--merge{
  margin-top:0 !important;
  padding-top:0 !important;
  height:100vh !important;
  min-height:100vh !important;
}

.home-discover .home-map-wrap{
  top:75px !important;
  left:0 !important;
  height:calc(100vh - 75px) !important;
  min-height:calc(100vh - 75px) !important;
}

.home-discover #discoverMap{
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}

.home-discover .home-side-panel{
  height:calc(100vh - 75px) !important;
}

.home-discover .home-map-topbar{ top:18px !important; }
.home-discover .home-map-availability{ top:68px !important; }

.home-discover .discover-frame--merge{
  margin-top:0 !important;
  padding-top:0 !important;
  height:calc(100vh - 75px) !important;
  min-height:calc(100vh - 75px) !important;
}

.home-discover .home-map-wrap{
  top:0 !important;
  left:0 !important;
  height:100% !important;
  min-height:100% !important;
}

.home-discover #discoverMap{
  inset:0 !important;
  width:100% !important;
  height:100% !important;
}

.home-discover .home-side-panel{
  height:100% !important;
}

.home-discover .home-map-topbar{ top:90px !important; }
.home-discover .home-map-availability{ top:140px !important; }

.landing-page .landing-hero-inner{
  position:relative;
}

.landing-page .landing-hero #loginPanel,
.landing-page .landing-hero #signupPanel{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  z-index:5;
  width:min(520px, 92vw);
}

.landing-page .landing-hero #loginPanel .login-card,
.landing-page .landing-hero #signupPanel .login-card{
  width:100%;
  padding:30px 28px 26px;
  border-radius:16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(14, 79, 95, 0.52);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}

.landing-page .landing-hero #loginPanel .login-title,
.landing-page .landing-hero #signupPanel .login-title{
  color:#fff;
}

.landing-page .landing-hero .login-input{
  width:100%;
  height:42px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.22);
  outline:none;
  background: rgba(255,255,255,0.94);
  font-size:13px;
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.landing-page .landing-hero .login-input::placeholder{
  color: rgba(0,0,0,0.45);
}

.landing-page .landing-hero .login-input:focus{
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 4px rgba(34,121,156,0.35);
  background: rgba(255,255,255,0.98);
}

.landing-page .landing-hero .login-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.landing-page .landing-hero .login-btn{
  margin-top:6px;
  height:44px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
  font-size:13px;
  letter-spacing:0.3px;
  color:#fff;
  background: linear-gradient(180deg, #0e4f5f, #083642);
  box-shadow: 0 14px 26px rgba(0,0,0,0.28);
  transition: transform .12s ease, filter .12s ease, opacity .12s ease;
}

.landing-page .landing-hero .login-btn:hover{
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.landing-page .landing-hero .login-btn:active{
  transform: translateY(0);
  filter: brightness(0.98);
}

.landing-page .landing-hero .login-back{
  margin-top:12px;
  background:transparent;
  border:0;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  opacity:.9;
}

.landing-page .landing-hero .login-back:hover{
  opacity:1;
}

:root{
  --auth-bg: rgba(14,79,95,.55);
  --auth-border: rgba(255,255,255,.22);
  --auth-focus: rgba(34,121,156,.35);
}

.login-page{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding-top:140px; 
  padding-bottom:60px;
}

.login-left{ display:none; }

.login-right{
  width:100%;
  display:flex;
  justify-content:center;
}

.login-card{
  width:min(1240px, 96vw);
  padding:36px 60px;
  background:var(--auth-bg);
  border:2px solid var(--auth-border);
  box-shadow:0 22px 55px rgba(0,0,0,.35);
  border-radius:0;
  box-sizing:border-box;

  display:flex;
  flex-direction:column;
  gap:20px;
}

.login-title{
  margin:0;
  text-align:center;
  font-size:40px;
  font-weight:900;
  color:#fff;
}

.login-error{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(200,40,40,.28);
  color:#fff;
  font-size:14px;
  border-radius:0;
}

.login-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

#loginCard .login-form{
  max-width:640px;
  margin:0 auto;
}

.input{
  width:100%;
  height:58px;
  padding:12px 16px;
  border:1px solid rgba(255,255,255,.30);
  background:#fff;
  border-radius:0;
  font-size:15px;
  box-sizing:border-box;
}

.input:focus{
  outline:none;
  border-color:#fff;
  box-shadow:0 0 0 3px var(--auth-focus);
}

.login-btn{
  height:60px;
  border:none;
  border-radius:0;
  background:#0e4f5f;
  color:#fff;
  font-weight:900;
  font-size:16px;
  cursor:pointer;
}

.login-btn:hover{ background:#0c3f4c; }

.signup-text{
  text-align:center;
  font-size:14px;
  color:#fff;
  margin:0;
}

.signup-link{
  color:#fff;
  font-weight:900;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.6);
}


#signupCard .login-form{
  max-width:1150px;
  margin:0 auto;
}

.signup-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 24px;
  align-items:end;
}

.signup-field{
  min-width:0;
}

#signupCard .signup-row:nth-of-type(4){
  grid-template-columns:1fr 1fr 1fr;
}

#adminUsernameWrap{
  grid-template-columns:1fr;
}

.field-label{
  display:block;
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
  color:#fff;
}

.phone-group{
  display:flex;
  gap:12px;
  align-items:center;
}
.phone-input{ flex:1; }

@media (max-width:1050px){
  .login-card{
    width:100%;
    padding:24px 20px;
  }

  .signup-row{
    grid-template-columns:1fr;
  }

  #signupCard .signup-row:nth-of-type(4){
    grid-template-columns:1fr;
  }
}

.home-discover .home-side-panel{
  background:#ffffff !important;
  border:1px solid rgba(0,0,0,0.12) !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.18) !important;
  border-radius:0 !important;
}

.home-discover .home-panel-actions,
.home-discover .home-panel-circle{
  background:#ffffff !important;
  border-radius:0 !important;
}

.home-discover .home-circle-card{
  border-radius:0 !important;
}

.home-discover .home-side-panel{
  background:#ffffff !important;
  border:1px solid rgba(0,0,0,0.12) !important;
  box-shadow:0 20px 50px rgba(0,0,0,0.18) !important;
  border-radius:0 !important;
}

.home-discover .home-panel-actions,
.home-discover .home-panel-circle{
  background:#ffffff !important;
  border-radius:0 !important;
}

.home-discover .home-circle-card{
  border-radius:0 !important;
}

.home-discover .home-panel-head{
  background:#f3f5f7 !important;
  border-right:1px solid rgba(0,0,0,0.08);
  border-radius:0 !important;
}

.home-discover .home-panel-toggle{
  border-radius:0 !important;
}

.home-discover .home-side-panel[data-state="min"],
.home-discover .home-side-panel[data-state="min"] .home-panel-head{
  border-radius:0 !important;
}

.home-discover .discover-availability-card{
  border-radius:0 !important;
}

.home-discover .home-map-topbar{
  top:12px !important;
}

.home-discover .home-map-availability{
  top:56px !important;
}

.home-discover #peopleNearby{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:200px;
  width:min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 320px);
  overflow:auto;

  background: rgba(255,255,255,0.78);
  border:1px solid rgba(0,0,0,0.18);
  border-radius:10px;
  box-shadow:0 12px 28px rgba(0,0,0,0.16);
  padding:10px;

  pointer-events:auto;
}

.home-discover #peopleNearby .discover-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px;
  border-radius:10px;
  cursor:pointer;
}

.home-discover #peopleNearby .discover-row + .discover-row{
  margin-top:0px;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top:12px;
}

.home-discover #peopleNearby .discover-person{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.home-discover #peopleNearby .discover-avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  flex:0 0 auto;
  background: rgba(0,0,0,0.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.home-discover #peopleNearby .discover-person-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.home-discover #peopleNearby .discover-name{
  font-size:12px;
  font-weight:900;
  color:rgba(0,0,0,0.78);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 44ch;
}

.home-discover #peopleNearby .discover-sub{
  font-size:11px;
  font-weight:700;
  color:rgba(0,0,0,0.55);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 52ch;
}

.home-discover #peopleNearby .discover-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.home-discover #peopleNearby .discover-btn{
  height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.92);
  color:#0f465c;
  font-size:11px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}

.home-discover #peopleNearby .discover-btn:hover{
  background: rgba(15,70,92,0.10);
  border-color: rgba(15,70,92,0.26);
}

.home-discover #peopleNearby{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top:116px;
  width:min(820px, calc(100vw - 32px));

  max-height: 320px;
  overflow:auto;

  background: rgba(255,255,255,0.94);
  border:1px solid rgba(0,0,0,0.14);
  border-radius:12px;
  box-shadow:0 18px 38px rgba(0,0,0,0.22);
  padding:10px;

  pointer-events:auto;
  z-index: 650;

  display:none;
}

.home-discover #peopleNearby .discover-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 10px;
  border-radius:10px;
  cursor:pointer;
}

.home-discover #peopleNearby .discover-row + .discover-row{
  border-top:1px solid rgba(0,0,0,0.08);
  margin-top:8px;
  padding-top:12px;
}

.home-discover #peopleNearby .discover-person{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.home-discover #peopleNearby .discover-avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  flex:0 0 auto;
  background: rgba(0,0,0,0.10);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.home-discover #peopleNearby .discover-person-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.home-discover #peopleNearby .discover-name{
  font-size:12px;
  font-weight:900;
  color:rgba(0,0,0,0.78);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 44ch;
}

.home-discover #peopleNearby .discover-sub{
  font-size:11px;
  font-weight:700;
  color:rgba(0,0,0,0.55);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: 52ch;
}

.home-discover #peopleNearby .discover-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}

.home-discover #peopleNearby .discover-btn{
  height:30px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.96);
  color:#0f465c;
  font-size:11px;
  font-weight:900;
  cursor:pointer;
}

.home-discover #peopleNearby .discover-btn:hover{
  background: rgba(15,70,92,0.10);
  border-color: rgba(15,70,92,0.26);
}

.waiting-overlay{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(6, 24, 34, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.waiting-card{
  width: min(520px, 92vw);
  border-radius: 18px;
  background: rgba(15, 70, 92, 0.30);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 60px rgba(0,0,0,0.35);
  padding: 22px 20px;
  text-align: center;
  color: #fff;
}

.waiting-spinner{
  width: 54px;
  height: 54px;
  margin: 6px auto 14px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,0.20);
  border-top-color: rgba(255,255,255,0.95);
  animation: waitingSpin 0.9s linear infinite;
}

@keyframes waitingSpin{ to { transform: rotate(360deg); } }

.waiting-title{
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: 18px;
  margin-bottom: 6px;
}

.waiting-sub{
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.84);
  margin-bottom: 14px;
}

.waiting-back-btn{
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
  cursor: pointer;
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.waiting-back-btn:hover{ background: rgba(255,255,255,0.18); }

.waiting-modal{
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.waiting-modal-card{
  width: min(460px, 92vw);
  border-radius: 16px;
  background: rgba(10, 44, 58, 0.95);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 18px 16px;
  text-align: left;
  color: #fff;
}

.waiting-modal-title{
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 6px;
}

.waiting-modal-sub{
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.86);
  margin-bottom: 14px;
}

.waiting-modal-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.waiting-danger,
.waiting-ghost{
  border: 0;
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 900;
  cursor: pointer;
}

.waiting-danger{
  background: rgba(255, 70, 70, 0.90);
  color: #fff;
}
.waiting-danger:hover{ background: rgba(255, 70, 70, 1); }

.waiting-ghost{
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.waiting-ghost:hover{ background: rgba(255,255,255,0.18); }

body.overlay-lock{ overflow: hidden !important; }

.waiting-overlay[hidden],
.waiting-modal[hidden],
.emergency-overlay[hidden] {
  display: none !important;
}


@media (max-width: 680px){

  .home-discover .home-map-wrap{
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
  }

  .home-discover .home-side-panel{
    position: fixed !important;
    top: 75px !important;
    left: 0 !important;
    height: calc(100vh - 75px) !important;
    width: min(420px, 88vw) !important;

    margin: 0 !important;
    border-radius: 0 !important;

    z-index: 1200 !important;
    display: flex !important;

    transform: translateX(0);
    transition: transform .22s ease;
    will-change: transform;
  }

  .home-discover .home-panel-head{
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    z-index: 2 !important;
  }

  .home-discover .home-panel-toggle{
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .home-discover .home-side-panel[data-state="min"]{
    transform: translateX(calc(-100% + 48px)) !important;
  }

  .home-discover .home-side-panel[data-state="min"] .home-panel-head{
    width: 48px !important;
    flex-basis: 48px !important;
  }

  .home-discover:not(.is-min) .home-map-topbar,
  .home-discover:not(.is-min) .home-map-availability,
  .home-discover:not(.is-min) #peopleNearby{
    display: none !important;
  }

  .home-discover.is-min .home-map-topbar,
  .home-discover.is-min .home-map-availability{
    display: block !important;
  }
}


@media (max-width: 760px){

  .home-discover .discover-frame--merge{
    position: relative !important;
    height: calc(100vh - 75px) !important;
    min-height: calc(100vh - 75px) !important;
    overflow: hidden !important;
  }

  .home-discover .home-map-wrap{
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 0 !important;
  }

  .home-discover #discoverMap{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
  }

  .home-discover .home-side-panel{
    position: fixed !important;
    top: 75px !important;
    left: 0 !important;
    height: calc(100vh - 75px) !important;

    width: min(420px, 88vw) !important;
    margin: 0 !important;

    z-index: 2000 !important;
    border-radius: 0 !important;

    transform: translateX(0) !important;
    transition: transform .22s ease !important;
    will-change: transform;
  }

  .home-discover .home-panel-head{
    width: 48px !important;
    flex-basis: 48px !important;
  }

  .home-discover.is-min .home-side-panel,
  .home-discover .home-side-panel[data-state="min"]{
    transform: translateX(calc(-100% + 48px)) !important;
  }

  .home-discover:not(.is-min) .home-map-topbar,
  .home-discover:not(.is-min) .home-map-availability,
  .home-discover:not(.is-min) #peopleNearby{
    display: none !important;
  }

  .home-discover.is-min .home-map-topbar,
  .home-discover.is-min .home-map-availability{
    display: block !important;
  }
}

@media (max-width: 760px){

  #homeDiscoverRoot{
    position: relative;
    display: block !important;
  }

  #homeMapWrap,
  #discoverMap{
    width: 100% !important;
  }

  #homeSidePanel{
    position: fixed;
    right: 0;
    top: 70px;
    height: calc(100vh - 70px);
    width: min(88vw, 360px);
    max-width: 360px;
    z-index: 9999;

    transform: translateX(0);
    transition: transform .22s ease;
    box-shadow: -18px 0 30px rgba(0,0,0,.14);
    border-left: 1px solid rgba(0,0,0,.08);
  }

  #homeDiscoverRoot.is-min #homeSidePanel{
    transform: translateX(calc(100% - 54px));
  }

  #homePanelToggle{
    position: fixed;
    right: 10px;
    top: 78px;
    z-index: 10000;
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
}
@media (max-width: 680px){
  #homeDiscoverRoot{
    display:block !important;
  }

  #homeSidePanel{
    position:fixed !important;
    top:75px !important;
    right:0 !important;
    height:calc(100vh - 75px) !important;
    width:min(88vw, 360px) !important;
    z-index:10000 !important;
    transform:translateX(0) !important;
  }

  #homeDiscoverRoot.is-min #homeSidePanel{
    transform:translateX(calc(100% - 54px)) !important;
  }

  #homeMapWrap,
  #discoverMap{
    width:100% !important;
  }
}

@media (max-width: 760px){

  .discover-frame.discover-frame--merge{
    display:block !important;
    grid-template-columns:none !important;
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
  }

  .home-map-wrap,
  #homeMapWrap,
  #discoverMap{
    width:100% !important;
  }

  #homeSidePanel{
    position:fixed !important;
    top:75px !important;
    right:0 !important;
    height:calc(100vh - 75px) !important;
    width:min(88vw, 360px) !important;
    z-index:10050 !important;
    background:#fff;
    transform:translateX(0);
    transition:transform .25s ease;
  }

  #homeDiscoverRoot.is-min #homeSidePanel{
    transform:translateX(calc(100% - 54px));
  }

  #homePanelToggle{
    position:relative;
    z-index:10060;
    pointer-events:auto;
  }
}

.login-stack{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-error-below{
  margin-top: 12px;
  width: 100%;
  max-width: 420px;
  padding: 12px 14px;

  border: 1px solid rgba(239,68,68,.55);
  background: rgba(239,68,68,.22);

  color: #fff;
  border-radius: 12px;

  font-size: 14px;
  line-height: 1.35;

  display: flex;
  gap: 10px;
  align-items: flex-start;

  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}

.login-error-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 4px;
  background: #ef4444;
  flex: 0 0 auto;
}

.home-landing:not(.home-landing--logged) .landing-hero,
.landing-page .landing-hero{
  min-height: 100vh;
}

.home-landing:not(.home-landing--logged) .landing-hero-inner,
.landing-page .landing-hero-inner{
  max-width: 1280px;
  padding: 0 clamp(18px, 4vw, 56px);
  gap: 18px;
}

.home-landing:not(.home-landing--logged) .landing-badge,
.landing-page .landing-badge{
  font-size: 13px;
  padding: 10px 14px;
}

.home-landing:not(.home-landing--logged) .landing-title,
.landing-page .landing-title{
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  max-width: 20ch;
}

.home-landing:not(.home-landing--logged) .landing-sub,
.landing-page .landing-sub{
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
  max-width: 68ch;
}

.home-landing:not(.home-landing--logged) .landing-cta,
.landing-page .landing-cta{
  margin-top: 16px;
  gap: 12px;
}

.home-landing:not(.home-landing--logged) .landing-btn,
.landing-page .landing-btn{
  height: 52px;
  padding: 0 24px;
  font-size: 13.5px;
}

.home-landing:not(.home-landing--logged) .landing-wrap,
.landing-page .landing-wrap,
.home-landing:not(.home-landing--logged) .home-support{
  max-width: 1280px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.home-landing:not(.home-landing--logged) .landing-how-title,
.landing-page .landing-how-title{
  font-size: clamp(28px, 3.2vw, 44px);
}

.home-landing:not(.home-landing--logged) .landing-how-sub,
.landing-page .landing-how-sub{
  font-size: clamp(14px, 1.2vw, 16px);
}

.home-landing:not(.home-landing--logged) .landing-how-card,
.landing-page .landing-how-card{
  min-height: 300px;
  padding: 28px 24px 26px;
}

.home-actions.home-actions--cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  overflow:visible;
}

.home-action.home-action--card{
  position:relative;
  overflow:hidden;
  height:auto;
  min-height:168px;
  border-radius:18px;
  padding:18px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:10px;
  text-decoration:none;
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
  will-change: transform;
}

.home-action.home-action--card:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0,0,0,0.26);
}

.home-action.home-action--card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 88% 120%,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.14) 22%,
      rgba(255,255,255,0.00) 55%),
    linear-gradient(135deg, #0f465c, #083642);
}

.home-action.home-action--card.emergency::before{
  background:
    radial-gradient(circle at 88% 120%,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.14) 22%,
      rgba(255,255,255,0.00) 55%),
    linear-gradient(135deg, #d42323, #b91f1f);
}

.home-action.home-action--card.assist::before{
  background:
    radial-gradient(circle at 88% 120%,
      rgba(255,255,255,0.22) 0%,
      rgba(255,255,255,0.14) 22%,
      rgba(255,255,255,0.00) 55%),
    linear-gradient(135deg, #0b8f63, #067a55);
}

.home-action.home-action--card::after{
  content:"";
  position:absolute;
  top:-70%;
  left:-80%;
  width:260%;
  height:240%;
  z-index:2;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.00) 42%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.00) 58%
  );
  transform: translateX(-120%) rotate(12deg);
  animation: connectedShine 7s ease-in-out infinite;
  pointer-events:none;
}

.home-action.home-action--card > *{
  position:relative;
  z-index:3;
}

@keyframes connectedShine{
  0%   { transform: translateX(-120%) rotate(12deg); }
  45%  { transform: translateX(-120%) rotate(12deg); }
  70%  { transform: translateX(120%) rotate(12deg); }
  100% { transform: translateX(120%) rotate(12deg); }
}

.ha-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
}

.ha-icon--emergency{
  background:
    rgba(255,255,255,0.18)
    url("../photo/emergency-icon.png") center/24px 24px no-repeat;
}

.ha-icon--assist{
  background:
    rgba(255,255,255,0.18)
    url("../photo/assist-icon.png") center/24px 24px no-repeat;
}

.ha-title{
  margin-top:2px;
  font-size:20px;
  font-weight:900;
  letter-spacing:-0.3px;
  color:#fff;
}

.ha-desc{
  max-width:56ch;
  font-size:12px;
  font-weight:600;
  line-height:1.55;
  color: rgba(255,255,255,0.86);
}

.ha-btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  padding:8px 14px;
  border-radius:999px;
  background: rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.20);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:0.2px;
}

@media (max-width:900px){
  .home-actions.home-actions--cards{ grid-template-columns:1fr; }
  .home-action.home-action--card{ padding:16px; min-height:160px; }
  .ha-title{ font-size:19px; }
}

.home-landing:not(.home-landing--logged) .landing-hero #loginPanel,
.home-landing:not(.home-landing--logged) .landing-hero #signupPanel,
.landing-page .landing-hero #loginPanel,
.landing-page .landing-hero #signupPanel{
  width: min(680px, 94vw);
}

.home-landing:not(.home-landing--logged) .landing-hero #loginPanel .login-card,
.home-landing:not(.home-landing--logged) .landing-hero #signupPanel .login-card,
.landing-page .landing-hero #loginPanel .login-card,
.landing-page .landing-hero #signupPanel .login-card{
  padding: 34px 32px 30px;
  border-radius: 18px;
}

.home-landing:not(.home-landing--logged) .landing-hero #loginPanel .login-title,
.home-landing:not(.home-landing--logged) .landing-hero #signupPanel .login-title,
.landing-page .landing-hero #loginPanel .login-title,
.landing-page .landing-hero #signupPanel .login-title{
  font-size: 26px;
  font-weight: 900;
}

.home-landing:not(.home-landing--logged) .landing-hero .login-input,
.landing-page .landing-hero .login-input{
  height: 48px;
  font-size: 14px;
  border-radius: 12px;
}

.home-landing:not(.home-landing--logged) .landing-hero .login-btn,
.landing-page .landing-hero .login-btn{
  height: 50px;
  font-size: 14px;
  border-radius: 14px;
}

.home-landing:not(.home-landing--logged) .login-error-below,
.landing-page .login-error-below{
  max-width: 680px;
}

@media (max-width: 680px){
  .home-landing:not(.home-landing--logged) .landing-title,
  .landing-page .landing-title{
    font-size: clamp(34px, 8vw, 44px);
  }

  .home-landing:not(.home-landing--logged) .landing-btn,
  .landing-page .landing-btn{
    width: 100%;
    height: 50px;
    justify-content: center;
  }

  .home-landing:not(.home-landing--logged) .landing-hero #loginPanel .login-card,
  .home-landing:not(.home-landing--logged) .landing-hero #signupPanel .login-card,
  .landing-page .landing-hero #loginPanel .login-card,
  .landing-page .landing-hero #signupPanel .login-card{
    padding: 26px 18px 22px;
  }
}

.landing-page .landing-hero #loginPanel,
.landing-page .landing-hero #signupPanel{
  width: min(720px, 94vw) !important;
  max-width: 720px !important;
}

.landing-page .landing-hero #loginPanel .login-card,
.landing-page .landing-hero #signupPanel .login-card{
  padding: 44px 40px 36px !important;
  border-radius: 18px !important;
}

.landing-page .landing-hero #loginPanel .login-title,
.landing-page .landing-hero #signupPanel .login-title{
  font-size: clamp(28px, 3.2vw, 42px) !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.4px !important;
}

.landing-page .landing-hero .login-form{
  gap: 14px !important;
}

.landing-page .landing-hero .login-input{
  height: 52px !important;
  font-size: 14px !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
}

.landing-page .landing-hero .login-btn{
  height: 52px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
}

@media (max-width: 520px){
  .landing-page .landing-hero #loginPanel,
  .landing-page .landing-hero #signupPanel{
    width: min(520px, 92vw) !important;
  }

  .landing-page .landing-hero #loginPanel .login-card,
  .landing-page .landing-hero #signupPanel .login-card{
    padding: 30px 22px 24px !important;
    border-radius: 16px !important;
  }

  .landing-page .landing-hero .login-input,
  .landing-page .landing-hero .login-btn{
    height: 48px !important;
  }
}

.otp-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;
  padding:1rem;
}
.otp-overlay[hidden]{ display:none; }

.otp-card{
  background:#fff;
  border-radius:20px;
  padding:2.2rem 2rem 1.8rem;
  width:min(420px,94vw);
  box-shadow:0 24px 60px rgba(0,0,0,0.18);
  display:flex;flex-direction:column;gap:1rem;
  animation:otpSlideIn .25s ease;
}
@keyframes otpSlideIn{
  from{transform:translateY(28px);opacity:0}
  to{transform:none;opacity:1}
}

.otp-icon{
  color:#0f6278;
  display:flex;justify-content:center;margin-bottom:.2rem;
}
.otp-title{
  font-size:1.25rem;font-weight:700;color:#0f2027;
  text-align:center;margin:0;
}
.otp-sub{
  font-size:.88rem;color:#556;text-align:center;
  line-height:1.5;margin:0;
}

.otp-dev-hint{
  background:#fffbe6;border:1px solid #ffe066;border-radius:10px;
  padding:.65rem .9rem;font-size:.8rem;color:#554400;line-height:1.5;
}

.otp-timer-row{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
}
.otp-timer-label{ font-size:.82rem;color:#778; }
.otp-timer{
  font-size:.95rem;font-weight:700;
  color:#0f6278;
  font-variant-numeric:tabular-nums;
  letter-spacing:.04em;
}
.otp-timer.otp-timer--urgent{ color:#d94040; animation:otpPulse 1s ease infinite; }
@keyframes otpPulse{ 0%,100%{opacity:1} 50%{opacity:.5} }

.otp-fields{ display:flex;flex-direction:column;gap:.8rem; }
.otp-field-group{ display:flex;flex-direction:column;gap:.35rem; }
.otp-label{
  font-size:.8rem;font-weight:600;color:#334;
  display:flex;align-items:center;gap:.4rem;
}
.otp-input{
  width:100%;padding:.7rem 1rem;
  border:1.5px solid #d0d7de;border-radius:10px;
  font-size:1.2rem;letter-spacing:.25em;text-align:center;
  color:#0f2027;background:#f7f9fb;
  transition:border-color .18s,box-shadow .18s;
  outline:none;
}
.otp-input:focus{
  border-color:#0f6278;
  box-shadow:0 0 0 3px rgba(15,98,120,.12);
  background:#fff;
}
.otp-input::placeholder{ letter-spacing:.15em;color:#bbc; }

.otp-error{
  font-size:.83rem;color:#c0392b;text-align:center;
  background:#fff0f0;border-radius:8px;padding:.5rem .8rem;margin:0;
}
.otp-error[hidden]{ display:none; }

.otp-btn{
  width:100%;padding:.78rem;border:none;border-radius:12px;
  font-size:.95rem;font-weight:600;cursor:pointer;
  transition:background .18s,transform .1s;
}
.otp-btn--primary{
  background:#0f6278;color:#fff;
}
.otp-btn--primary:hover{ background:#0c4f62; }
.otp-btn--primary:active{ transform:scale(.98); }
.otp-btn--primary:disabled{
  background:#aac;cursor:not-allowed;opacity:.7;
}
.otp-btn--ghost{
  background:transparent;color:#0f6278;
  border:1.5px solid #c8d8df;margin-top:-.2rem;
  font-size:.85rem;
}
.otp-btn--ghost:hover{ background:#f0f6f8; }
.otp-btn--ghost:disabled{ color:#aaa;border-color:#ddd;cursor:not-allowed; }

.otp-channel-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.otp-channel-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  padding: 14px 16px;
  border-radius: 12px;

  border: 1.5px solid #dcdcdc;
  background: #ffffff;

  cursor: pointer;
  transition: all 0.25s ease;

  text-align: left;
  width: 100%;
}

.otp-channel-btn:hover {
  border-color: #2563eb;
  background: #f5f9ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.otp-channel-btn:active {
  transform: scale(0.98);
}

.otp-channel-label {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.otp-channel-hint {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}

.otp-channel-btn.active {
  border-color: #2563eb;
  background: #eef4ff;
}