:root{
  --bg:#ffffff;
  --text:#0b0b0b;
  --muted:#444;
  --border:#e6e6e6;
  --accent:#d40000;
  --max: 76ch;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.6;
}

a{ color:inherit; text-decoration:underline; text-underline-offset: 3px; }
a:hover{ text-decoration-thickness: 2px; }

.wrap{ max-width: 1080px; margin:0 auto; padding: 24px 20px; }
main{ max-width: var(--max); }

header{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand img{ width:44px; height:44px; display:block; }
.brand .title{ font-weight: 800; letter-spacing: 0.2px; }

.links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  font-size: 14px;
}

.links a{
  text-decoration:none;
  padding: 8px 10px;
  border-radius: 10px;
}
.links a:hover{ background:#f5f5f5; }

.cta{
  display:flex;
  gap:10px;
  align-items:center;
}
.button{
  appearance:none;
  border: 1px solid var(--text);
  background: var(--text);
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
  cursor:pointer;
  font-size: 14px;
  text-decoration:none;
  display:inline-block;
}
.button:hover{ opacity:0.92; }
.button:disabled{ opacity:0.55; cursor:not-allowed; }

.button.secondary{
  background: white;
  color: var(--text);
}

h1{ font-size: 40px; line-height:1.15; margin: 26px 0 14px; letter-spacing:-0.4px; }
h2{ font-size: 22px; margin: 26px 0 10px; }
h3{ font-size: 16px; margin: 18px 0 8px; text-transform:uppercase; letter-spacing:0.8px; color: var(--muted); }
p{ margin: 0 0 14px; }
.small{ color: var(--muted); font-size: 14px; }

.hero{
  padding: 26px 0 4px;
}
.hero .lede{
  font-size: 18px;
  color: var(--text);
}
.rule{
  margin: 22px 0;
  border-top: 1px solid var(--border);
}
.callout{
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 14px;
  background: #fafafa;
}
.callout strong{ color: var(--text); }

.list{ padding-left: 18px; }
.list li{ margin: 6px 0; }

.demand{
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.demand:first-of-type{ border-top: 0; padding-top: 6px; }

footer{
  margin-top: 46px;
  border-top: 1px solid var(--border);
  padding: 16px 0 36px;
  color: var(--muted);
  font-size: 13px;
}

form .row{ margin: 10px 0; }
label{ font-size: 13px; color: var(--muted); display:block; margin-bottom: 6px; }
input, textarea{
  width:100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 11px;
  font: inherit;
}
textarea{ min-height: 110px; resize: vertical; }

.honeypot{ position:absolute; left:-9999px; top:-9999px; height:1px; width:1px; overflow:hidden; }

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

.status{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fafafa;
  display:none;
}
.status.show{ display:block; }
.status.ok{ border-color: #b7e4c7; background:#f1fff6; }
.status.err{ border-color: #ffccd5; background:#fff5f6; }
