:root{
  --kship-green:#18c29c;
  --kship-blue:#179bd7;
  --kship-blue-hover:#0f7fb2;

  --bg:;
  --panel: rgba(0,0,0,.58);
  --border: rgba(255,255,255,.14);

  --text:#ffffff;
  --muted: rgba(255,255,255,.38);

  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.55);

  /* Optional: if you want a local background image later, set it here */
--hero: url("/assets/img/hero.webp"); */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 10% 10%, rgba(23,155,215,.05), transparent 90%),
              radial-gradient(900px 500px at 90% 30%, rgba(9,87,121,.05), transparent 80%),
              var(--bg);
}

.bg{
  position:fixed; inset:0;
  /* If you want a hero image, uncomment next lines + upload kship-bg.webp into assets/img */
 background: linear-gradient(0deg, rgba(255,255,255,.32), rgba(0,0,0,.32)), var(--hero) center/cover no-repeat; */
  pointer-events:none;
}

.wrap{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:32px 16px;
  gap:18px;
}

.card{
  width:min(720px, 100%);
  background: linear-gradient(135deg, rgba(33,139,86,.99), rgba(39,151,109,.92));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:28px;
  text-align:center;
}

.brand{display:flex; justify-content:center; margin-bottom:10px}
.logo{height:92px; width:auto; filter: drop-shadow(0 10px 25px rgba(0,0,0,.55));}

h1{margin:10px 0 8px; font-size:34px; line-height:1.1}
.sub{margin:0 auto 18px; color:var(--muted); max-width:55ch; font-size:16px}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  margin:10px 0 18px;
  color:rgba(255,255,255,.9);
  font-weight:600;
}
.dot{
  width:10px; height:10px; border-radius:50%;
  background:var(--kship-blue);
  box-shadow:0 0 0 5px rgba(23,155,215,.18);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin:8px 0 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  min-width: 180px;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn.primary{
  background:var(--kship-blue);
  border-color: rgba(0,0,0,.45);
}
.btn.primary:hover{background:var(--kship-blue-hover)}

.fine{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
}
code{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:2px 6px;
}

.foot{
  color:rgba(255,255,255,.55);
  font-size:13px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.sep{opacity:.5}

.notice{
  margin: 10px auto 18px;
  padding: 12px 14px;
  max-width: 60ch;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.notice strong{
  color: #ffffff;
}

.notice{
  margin: 10px auto 18px;
  padding: 12px 14px;
  max-width: 60ch;
  text-align: left;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.notice strong{
  color: #ffffff;
}

/* =========================================================
   FULL HERO BACKGROUND (responsive)
   ========================================================= */
.bg{
  position: fixed;
  inset: 0;
  background:
    linear-gradient(0deg, var(--hero-overlay), var(--hero-overlay)),
    var(--hero) center center / cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: translateZ(0);
  pointer-events: none;
  z-index: 0;
}

/* Optional: subtle vignette for a more “finished” look */
.bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 50% 25%, rgba(0,0,0,0), rgba(0,0,0,.55));
  pointer-events:none;
}

/* Keep content above the background */
.wrap{ position: relative; z-index: 1; }

/* Blend the hero image through the green card (subtle + pro) */
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background: var(--hero) center/cover no-repeat;
  opacity: .15;              /* tweak 0.06–0.16 */
  mix-blend-mode: overlay;   /* makes it look “printed” into the card */
  pointer-events:none;
}
.card > *{ position: relative; z-index: 1; }

/* =========================================================
   MOBILE POLISH
   ========================================================= */
@media (max-width: 520px){
  .card{ padding: 18px; }
  h1{ font-size: 26px; }
  .btn{ min-width: 100%; }
  .sub{ font-size: 15px; }
}
