@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&family=Roboto:wght@400;500;700&display=swap');

:root{
  --bg:#0b0d12;
  --panel:#141a27;
  --line:rgba(255,255,255,.12);
  --text:#e9edf5;
  --muted:#a9b2c3;
  --radius:16px;

  --green:rgb(35, 134, 54);
  --blue: #1e2c45;

  --font-body:'Roboto', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-heading:'Lora', Georgia, serif;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
}

.wrap{
  width:100%;
  padding:22px;
  margin-top: 30px;
}

.card{
  max-width:520px; /* wider for more negative space */
  margin:0 auto;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:32px 30px 0 30px;
  text-align:center;
}

/* Section below the main card (Rough Cut notice + feedback) */
.roughcut{
  max-width:520px;
  margin:14px auto 0;
  text-align:center;
}

/* Logo */
.logo{
  width:280px; /* slightly larger */
  max-width:75%;
  height:auto;
  margin:0 auto 10px;
  display:block;
}

/* Headline / tagline */
h1{
  font-family:var(--font-heading);
  font-weight:400;
  font-size:1.00rem; /* smaller */
  line-height:1.25;
  margin:5px 0 30px; /* closer to logo */
  color:var(--muted);
}

/* Main description (focus text) */
.sub{
  margin:0 auto 26px;
  color:var(--text);
  line-height:1.55;
  max-width:40ch;
  font-size:1.05rem; /* larger */
  font-weight:400;
}

/* Button */
.btn{
  display:inline-block;
  width:auto; /* smaller */
  min-width:270px;
  text-decoration:none;
  padding:15px 30px;
  border-radius:7px;
  border:1px solid rgba(255,255,255,.5); /* 50% white stroke */
  background:var(--green);
  color:var(--text);
  font-weight:400;
  letter-spacing:.08em;
  text-transform:uppercase; /* ALL CAPS */
  font-size:.8rem;
  margin:10px 0 18px;
  font-family:var(--font-body);
}

.btn:hover{
  background:rgba(35, 134, 54, .85);
}

.btnGroup{
  display:flex;
  gap:12px;
  /*flex-wrap:wrap;*/
  justify-content:center;
  width:100%;
}

.btnGroup .btn{
  flex:1 1 0%;
  min-width:0;
  padding-left:16px;
  padding-right:16px;
}

.btn--feedback{
  /* Secondary CTA: smaller + a touch more subdued than the primary green button */
  min-width:190px; /* ~30% less than .btn min-width (270px) */
  background:rgba(30, 44, 69, .78); /* darker / slightly lower opacity */
  border-color:rgba(255,255,255,.15);
  margin-top:6px;
  cursor: pointer;
}

.btn--feedback:hover{
  background:rgba(30, 44, 69, .92);
}

.btn--small{
  min-width:0;
  width:auto;
  padding:12px 22px;
  font-size:.78rem;
  margin:0;
}

.btn--ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
}

.btn--ghost:hover{
  background:rgba(255,255,255,.06);
}

.notice{
  margin:10px auto 14px;
  max-width:42ch;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(35, 134, 54, .45);
  background:rgba(35, 134, 54, .12);
  color:var(--text);
  font-size:.95rem;
}

.beta{
  display:flex;
  gap:12px;
  align-items:flex-start;
  text-align:center;
  margin:30px 0 12px;
  padding:20px 25px 10px 25px;
}

.beta__title{
  margin:0 0 12px 0px;
  font-family:var(--font-heading);
  font-weight:500;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted);
  font-size:1rem;
}

.beta__text{
  margin:0;
  color:#5a6987;
  line-height:1.55;
  font-size:.85rem;
}

.feedback{
  margin-top:12px;
  text-align:left;
}

.feedback__form{
  border:1px solid var(--line);
  background:rgba(0,0,0,.12);
  border-radius:14px;
  padding:14px;
}

.feedback__label{
  display:block;
  margin:12px 0 6px;
  color:var(--text);
  font-size:.9rem;
}

.feedback__textarea,
.feedback__input{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  font-family:var(--font-body);
  font-size:.95rem;
  outline:none;
}

.feedback__textarea{ resize:vertical; min-height:110px; }

.feedback__textarea:focus,
.feedback__input:focus{
  border-color:rgba(255,255,255,.35);
  background:rgba(255,255,255,.08);
}

.feedback__actions{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  margin-top:14px;
}

/* Honeypot */
.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* FOOTER */

footer {
  color: var(--blue);
  font-size: small;
  text-align: right;
  padding: 20px 0px 5px 0px;
}

