:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #4d5b74;
  --line: #d6dfec;
  --paper: #f5f8fc;
  --navy: #06164f;
  --blue: #075ff0;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(rgba(245, 248, 252, 0.91), rgba(245, 248, 252, 0.98)), url("/trust-network.svg") center / cover no-repeat;
  font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.access-layout {
  width: min(1160px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  margin: 0 auto;
  padding: 48px 0;
}

.access-copy { max-width: 650px; }
.access-copy img { width: min(280px, 70%); height: auto; margin-bottom: 42px; }
.eyebrow { margin: 0 0 12px; color: #5d779e; font-size: 14px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 22px; font-size: clamp(42px, 5.2vw, 68px); line-height: 1.02; letter-spacing: -0.035em; }
.access-copy p:last-child { max-width: 600px; color: var(--muted); font-size: 20px; line-height: 1.6; }

.access-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(6, 22, 79, 0.13);
}

.access-card h2 { margin-bottom: 12px; color: var(--navy); font-size: 32px; }
.guidance, .privacy-note { color: var(--muted); line-height: 1.55; }
form { display: grid; gap: 10px; margin-top: 28px; }
label { margin-top: 7px; color: var(--navy); font-size: 14px; font-weight: 750; }
input {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #b9c6d8;
  border-radius: 7px;
  color: var(--ink);
  background: white;
  font: inherit;
}
input:focus { outline: 3px solid rgba(7, 95, 240, 0.22); border-color: var(--blue); }
button {
  min-height: 48px;
  margin-top: 12px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  color: white;
  background: var(--blue);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
button:disabled { cursor: wait; opacity: 0.72; }
.message { min-height: 24px; margin: 4px 0 0; color: #a12d2d; font-size: 14px; line-height: 1.5; }
.message.success { color: #12634c; }
.privacy-note { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }

@media (max-width: 780px) {
  .access-layout { grid-template-columns: 1fr; gap: 32px; align-content: center; }
  .access-copy img { width: 210px; margin-bottom: 26px; }
  h1 { font-size: 42px; }
}
