 /* Olive Health PSG — Clean Hero Version */

:root{
  --bg:#070a0f;
  --panel:#0b0f14f2;
  --text:#f6f7fb;
  --muted:#c7cbd6;
  --muted2:#9aa3b2;
  --accent:#2fd07a;
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#000; /* clean black background */
  overflow-x:hidden;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
  position:relative;
  z-index:2;
}

/* =========================
   HERO — FULL SIGNAGE VISIBLE
========================= */

.hero{
  height:100vh;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  background:#000;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-image: url("./assets/Olive Health Signage.jpeg");
  background-size: contain;        /* FULL IMAGE */
  background-position: center;     /* PERFECT CENTER */
  background-repeat: no-repeat;
}

/* TOP BAR */
.hero__content{
  width:100%;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:20px 0;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  text-transform:uppercase;
  font-size:14px;
}

.brand__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--accent), #9ef3c7);
  box-shadow:0 0 0 4px rgba(47,208,122,.18);
}

.pill{
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(0,0,0,.4);
  color:#fff;
}

/* =========================
   UNDER DEVELOPMENT SECTION
========================= */

.comingSoon{
  padding:70px 0 40px;
  background:#070a0f;
}

.hero__caption{
  background:rgba(11,15,20,.92);
  padding:40px;
  border-radius:24px;
  box-shadow:var(--shadow);
  text-align:center;
}

.kicker{
  color:var(--accent);
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:18px;
  margin-bottom:20px;
}

.titleOneLine{
  font-size:clamp(28px,3.5vw,52px);
  font-weight:800;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-bottom:18px;
}

.subhead{
  color:var(--muted);
  margin-bottom:25px;
  font-size:16px;
}

.ctaRow{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
  color:#fff;
}

.btn--primary{
  background:linear-gradient(135deg,var(--accent),#17a95b);
  color:#07110b;
}

/* =========================
   DETAILS SECTION
========================= */

.below{
  padding:40px 0;
  background:#070a0f;
}

.card{
  background:var(--panel);
  padding:30px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.muted{color:var(--muted2)}

.notify input{
  width:100%;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
  padding:0 12px;
  color:#fff;
  margin-top:12px;
}

.footer{
  text-align:center;
  margin-top:30px;
  font-size:12px;
  opacity:.7;
}

@media (max-width:860px){
  .grid{grid-template-columns:1fr}
  .titleOneLine{font-size:24px}
}

/* =========================
   SIDE HERO TEXT — FINAL CLEAN ALIGNMENT
========================= */

.hero__side{
  position:absolute;
  top:50%;
  color:rgba(255,255,255,0.75);
  font-weight:800;
  letter-spacing:4px;
  font-size:clamp(18px,1.6vw,24px);
  text-transform:uppercase;
  pointer-events:none;
  white-space:nowrap;
}

/* LEFT SIDE */
.hero__side--left{
  left:60px;
  transform:translate(-50%, -50%) rotate(-90deg);
  transform-origin:center;
}

/* RIGHT SIDE */
.hero__side--right{
  right:60px;
  transform:translate(50%, -50%) rotate(90deg);
  transform-origin:center;
}


/* Subtle glow for premium hospital look */
.hero__side::after{
  content:"";
  position:absolute;
  inset:-10px;
  background:radial-gradient(circle, rgba(47,208,122,0.15), transparent 70%);
  z-index:-1;
  filter:blur(20px);
}
