/* Generic domain acquisition landing (light theme) */
:root{
  --bg:#ffffff;
  --surface:#f6f9ff;
  --surface2:#eef5ff;
  --card:#ffffff;
  --line:#d7e5ff;
  --text:#0a1833;
  --muted:#41557a;
  --accent:#2f7cff;
  --shadow: 0 18px 50px rgba(10,24,51,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 700px at 20% 10%, rgba(47,124,255,.10), transparent 55%),
    radial-gradient(900px 700px at 80% 15%, rgba(106,168,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--surface));
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 18px 44px;
}

.top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 22px;
}

.brand{display:flex; flex-direction:column; gap:2px}
.brand-mark{
  font-size: 16px;
  letter-spacing:.2px;
  font-weight: 800;
}
.brand-sub{
  font-size: 12px;
  color: var(--muted);
}

.top-email{
  color: var(--text);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  box-shadow: 0 8px 24px rgba(10,24,51,.06);
}
.top-email:hover{color:var(--accent); text-decoration:none}

.hero{margin-top: 12px; margin-bottom: 22px}

.hero-card{
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(238,245,255,.96), rgba(255,255,255,.96));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border: 1px solid rgba(47,124,255,.25);
  background: rgba(47,124,255,.06);
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.badge-label{
  font-size: 12px;
  color: rgba(10,24,51,.70);
  font-weight: 700;
}
.badge-value{
  font-size: 12px;
  color: rgba(10,24,51,.90);
  font-weight: 800;
}

h1{
  margin:0 0 10px;
  font-size: 32px;
  line-height: 1.14;
  letter-spacing: -.2px;
}

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

.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 10px;
}

.pill{
  border: 1px solid rgba(47,124,255,.25);
  background: rgba(47,124,255,.06);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(10,24,51,.80);
}

.note{
  margin: 12px 0 0;
  color: rgba(10,24,51,.78);
  font-size: 13px;
  line-height: 1.65;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top: 16px;
}

.btn{
  appearance:none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 160px;
  box-shadow: 0 10px 24px rgba(10,24,51,.06);
}
.btn:hover{filter: brightness(1.02)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(180deg, rgba(47,124,255,1), rgba(28,103,235,1));
  border-color: rgba(47,124,255,.65);
  color: #ffffff;
}
.btn.ghost{background:#fff}

.form-section{margin-top: 18px}
.form-card{
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-head h2{
  margin:0 0 6px;
  font-size: 20px;
  letter-spacing: -.1px;
}
.form-head p{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 7px;
  margin-bottom: 12px;
}
.field span{
  font-size: 12px;
  color: var(--muted);
}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(10,24,51,.14);
  background: rgba(246,249,255,.85);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}
.field textarea{resize: vertical; min-height: 120px}
.field input:focus, .field textarea:focus{
  border-color: rgba(47,124,255,.55);
  box-shadow: 0 0 0 3px rgba(47,124,255,.14);
}
.hint{
  margin-top: -2px;
  font-size: 11px;
  color: rgba(65,85,122,.92);
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 6px;
  margin-bottom: 6px;
}

.status{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.success{margin-top: 8px}
.success-box{
  border: 1px solid rgba(47,124,255,.28);
  background: linear-gradient(180deg, rgba(47,124,255,.08), rgba(106,168,255,.06));
  border-radius: 18px;
  padding: 16px 16px;
}
.success-box h3{margin:0 0 6px; font-size:16px}
.success-box p{margin:0; color: rgba(10,24,51,.82); font-size: 13px; line-height: 1.6}
.success-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 12px;
}

.hidden-frame{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  opacity:0;
}

.footer{
  margin-top: 22px;
  padding: 18px 4px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color: var(--muted);
  font-size: 12px;
}
.footer-brand{font-weight: 800; color: rgba(10,24,51,.92)}
.footer-sub{margin-top: 3px}
.sep{opacity:.55; padding: 0 8px}

@media (max-width: 720px){
  h1{font-size: 26px}
  .grid{grid-template-columns: 1fr}
  .top{flex-direction:column; align-items:flex-start}
  .btn{width:100%}
  .cta-row{width:100%}
  .footer{flex-direction:column; align-items:flex-start}
}
