﻿:root {
  --bg:#070707;
  --card:#121212;
  --text:#f4f4f5;
  --muted:#a1a1aa;
  --line:rgba(255,255,255,.09);
  --accent:#f97316;
}

* { box-sizing:border-box; }

body {
  margin:0;
  min-height:100vh;
  background:
    linear-gradient(to bottom, rgba(7,7,7,.62), #070707 62%),
    url("https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1300&q=70");
  background-size:cover;
  background-position:center top;
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

.landing,
.app {
  width:min(100% - 28px, 520px);
  margin:0 auto;
  padding:34px 0 42px;
}

.landing {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.logo {
  width:46px;
  height:46px;
  border-radius:15px;
  background:var(--accent);
  display:grid;
  place-items:center;
  font-weight:900;
  font-size:22px;
  margin-bottom:18px;
}

.eyebrow {
  margin:0 0 8px;
  color:#fed7aa;
  font-size:13px;
  font-weight:800;
}

h1 {
  margin:0;
  font-size:clamp(42px, 12vw, 58px);
  line-height:.96;
  letter-spacing:-2px;
}

.lead {
  color:var(--muted);
  line-height:1.5;
  margin:15px 0 24px;
  font-size:17px;
}

.button,
button {
  width:100%;
  display:block;
  border:0;
  border-radius:16px;
  padding:15px 18px;
  background:var(--accent);
  color:white;
  font-size:16px;
  font-weight:850;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
}

.card {
  background:rgba(18,18,18,.92);
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
}

label {
  display:block;
  margin:14px 0 7px;
  color:#e4e4e7;
  font-size:14px;
  font-weight:700;
}

input,
textarea {
  width:100%;
  border:1px solid var(--line);
  background:#080808;
  color:var(--text);
  border-radius:14px;
  padding:14px;
  font-size:16px;
  outline:none;
}

textarea {
  min-height:92px;
  resize:vertical;
}

input:focus,
textarea:focus {
  border-color:rgba(249,115,22,.65);
}

.check {
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-weight:500;
  line-height:1.35;
  margin:18px 0;
}

.check input {
  width:auto;
  margin-top:3px;
}

#status {
  min-height:22px;
  color:#fed7aa;
  text-align:center;
  font-size:14px;
}
