/* Reel Ones Only — Coming Soon
   Dark grey + dark green textured background, modern glass UI
*/

:root{
  --bg0:#0a0d0c;
  --bg1:#0b1210;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.14);
  --focus: rgba(255,255,255,.30);
  --green: #22c55e;
  --green2:#16a34a;
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(34,197,94,.22), transparent 60%),
    radial-gradient(860px 520px at 86% 18%, rgba(16,185,129,.16), transparent 58%),
    radial-gradient(900px 620px at 50% 92%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  position: relative;
  overflow-x:hidden;
}

/* Texture overlay */
body:before{
  content:"";
  position:fixed;
  inset:0;
  background-image: url("/assets/noise.png");
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events:none;
}

.wrap{
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 42px 18px 36px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.hero{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 48px rgba(0,0,0,.45);
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.logo{
  width: 320px;
  max-width: 100%;
  height: auto;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 13px;
}

.dot{
  width:9px;height:9px;border-radius:50%;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}

.heroGrid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 960px){
  .heroGrid{ grid-template-columns:1fr; }
}

.portrait{
  position: relative;
  border-radius: calc(var(--radius) - 4px);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  min-height: 420px;
}
.portrait img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.02) saturate(1.02);
  transform: scale(1.02);
}
.portraitGlow{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 20% 25%, rgba(34,197,94,.20), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(16,185,129,.12), transparent 55%);
  pointer-events:none;
}

.copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 6px 6px 6px 2px;
}

h1{
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  margin: 6px 0 10px;
  letter-spacing: -0.6px;
}
.lead{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.58;
  max-width: 52ch;
}

.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 6px 0 18px;
}
.pill{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.86);
  font-size: 13px;
  white-space: nowrap;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.btn{
  appearance:none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover{
  background: rgba(255,255,255,.14);
  border-color: var(--focus);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn:active{ transform: translateY(1px); }

.btn.subtle{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.btn.primary{
  background: linear-gradient(180deg, rgba(34,197,94,.95), rgba(22,163,74,.92));
  border-color: rgba(34,197,94,.35);
  color: rgba(255,255,255,.96);
}
.btn.primary:hover{
  border-color: rgba(34,197,94,.55);
}

.fineprint{
  margin: 14px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.03));
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 48px rgba(0,0,0,.40);
}

.cardHead h2{
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.cardHead p{
  margin:0 0 16px;
  color: var(--muted);
}

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

.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 640px){
  .row{ grid-template-columns: 1fr; }
}

label{
  display:flex;
  flex-direction:column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

label em{
  font-style: normal;
  color: rgba(255,255,255,.60);
  font-weight: 600;
}

input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
  font-size: 15px;
}
input:focus, textarea:focus{
  border-color: rgba(34,197,94,.45);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
}
textarea{
  min-height: 150px;
  resize: vertical;
}

.hp{ display:none; }

.row.bottom{
  align-items:center;
}
.micro{
  margin: 0;
  color: rgba(255,255,255,.60);
  font-size: 12px;
  line-height: 1.45;
}

.footer{
  margin-top: 6px;
  padding: 4px 6px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.footer a{ color: rgba(255,255,255,.72); text-decoration:none; }
.footer a:hover{ text-decoration:underline; }
.sep{ opacity:.6; }


.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);
  font-weight: 750;
  font-size: 13px;
  max-width: min(520px, calc(100% - 24px));
  text-align:center;
  z-index: 9999;
}
.toast.ok{
  border-color: rgba(34,197,94,.40);
  box-shadow: 0 14px 40px rgba(0,0,0,.45), 0 0 0 4px rgba(34,197,94,.10);
}
.toast.bad{
  border-color: rgba(239,68,68,.45);
  box-shadow: 0 14px 40px rgba(0,0,0,.45), 0 0 0 4px rgba(239,68,68,.10);
}
