/* /public_html/assets/styles.css */
/* Minimal, clean “card on gradient” styling to match the spec */

:root{
  --bg1:#6b00ff;
  --bg2:#ff2fb0;
  --card:#ffffff;
  --ink:#0f1220;
  --muted:#6b7280;
  --line:#e9e9f2;
  --accent:#6c63ff;
  --accent-ghost:#f1efff;
  --shadow:0 24px 60px rgba(17, 12, 46, .15), 0 12px 24px rgba(17,12,46,.12);
}

*{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(--ink);
  background:#000;
}

.bg-gradient{
  background:
    radial-gradient(1200px 800px at 80% 80%, rgba(255,255,255,.18), transparent 40%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  min-height:100%;
}

/* Layout shell */
.shell{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:40px 16px;
}

/* Card */
.hero-card{
  width:min(960px, 94vw);
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:36px 34px 28px;
  box-shadow:var(--shadow);
  text-align:center;
}

/* Brand */
.brand{
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}
.logo{
  display:block;
  width:min(280px, 60vw);
  height:auto;
}

/* Pill */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--accent-ghost);
  color:#3a2df5;
  border-radius:999px;
  padding:8px 14px;
  font-weight:700;
  font-size:14px;
  margin:14px 0 16px;
}
.dot{
  width:8px;height:8px;border-radius:999px;background:#3a2df5;display:inline-block
}

/* Title */
.title{
  margin:6px 0 18px;
  font-size:42px;
  line-height:1.22;
  letter-spacing:.2px;
}

/* Subhead */
.subhead{
  margin:16px 0 10px;
  color:var(--muted);
  font-weight:600;
}

/* Email row (no submission button on purpose) */
.email-row{
  margin:8px 0 6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}
.email-label{
  font-weight:700;
}
.email-input{
  width:min(540px, 86vw);
  padding:14px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-size:16px;
  outline:none;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.03);
}
.email-input:focus{
  border-color:#bfc7ff;
  box-shadow:0 0 0 3px rgba(108,99,255,.15);
}

/* CTA row */
.cta-row{
  display:flex;
  justify-content:center;
  gap:16px;
  margin:16px 0 8px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-width:180px;
  padding:16px 20px;
  border-radius:14px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  box-shadow:0 6px 16px rgba(108,99,255,.28);
  transition:transform .08s ease, box-shadow .12s ease, opacity .12s ease, filter .12s ease;
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 22px rgba(108,99,255,.34); }
.btn:active{ transform:translateY(0) scale(.99); }
.btn-sub{
  display:block;
  font-size:12px;
  font-weight:700;
  opacity:.9;
}

.btn.btn-secondary{
  background:#eef0ff;
  color:#2e2a8c;
  box-shadow:none;
  border:1px solid #dadffd;
}

/* Disabled state (before a valid email) */
.is-disabled,
.btn[aria-disabled="true"]{
  opacity:.5;
  cursor:not-allowed;
  filter:grayscale(.25);
  pointer-events:none;
}

/* Responsive tweaks */
@media (max-width:640px){
  .hero-card{ padding:28px 18px 22px; }
  .title{ font-size:30px; }
  .pill{ font-size:13px; padding:7px 12px; }
  .btn{ min-width:150px; padding:13px 16px; font-size:16px; }
  .email-input{ width:min(92vw, 520px); }
}
