/* PLC Delivery — minimal, premium landing
   If you want an even more stripped look, tell me and I’ll remove any extras.
*/

:root{
  --bg: #ffffff;
  --panel: #ffffff;
  --ink: #0b0f1a;
  --muted: rgba(11, 15, 26, 0.62);
  --line: rgba(11, 15, 26, 0.10);
  --focus: rgba(11, 15, 26, 0.18);

  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.06);

  --max: 560px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: radial-gradient(1200px 600px at 50% -200px, rgba(11,15,26,0.06), transparent 55%), var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 44px 18px;
}

.panel{
  width: 100%;
  max-width: var(--max);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.brand{
  display: grid;
  place-items: center;
  padding: 0 0 10px;
}


.logo{
  width: min(360px, 100%);
  height: auto;
  display: block;
}

.copy{
  text-align: center;
  padding: 0 4px 14px;
}


h1{
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.copy p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.form{
  display: grid;
  gap: 12px;
}

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

label{
  display: grid;
  gap: 7px;
}

label span{
  font-size: 12px;
  color: rgba(11, 15, 26, 0.78);
  letter-spacing: 0.2px;
}

input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

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

input:focus, textarea:focus{
  border-color: rgba(11, 15, 26, 0.20);
  box-shadow: 0 0 0 4px var(--focus);
}

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

button{
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 600;
  background: #0b0f1a;
  color: #fff;
  transition: transform 140ms ease, opacity 140ms ease;
}

button:hover{ transform: translateY(-1px); }
button:active{ transform: translateY(0px); opacity: 0.92; }

.note{
  font-size: 12px;
  color: var(--muted);
}

.footer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.dot{ opacity: 0.5; }
.subtle{ opacity: 0.9; }

.hidden{ display:none !important; }

/* Success page button */
.linkbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 16px;
  background: #0b0f1a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.linkbtn:hover{ transform: translateY(-1px); }


/* Secondary / outline button */
.secondary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 15, 26, 0.16);
  color: rgba(11, 15, 26, 0.82);
  background: transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.secondary:hover{
  transform: translateY(-1px);
  background: rgba(11, 15, 26, 0.03);
  border-color: rgba(11, 15, 26, 0.22);
}
.secondary:active{
  transform: translateY(0px);
}


/* Top bar links */
.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.topbar-spacer{ width: 1px; height: 1px; }
.topbar-links{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.toplink{
  font-size: 12px;
  color: rgba(11, 15, 26, 0.68);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease;
}
.toplink:hover{
  background: rgba(11, 15, 26, 0.03);
  border-color: rgba(11, 15, 26, 0.10);
  color: rgba(11, 15, 26, 0.92);
}


