.notes-main { padding: 100px 0 120px; min-height: 70vh; }

.notes-intro { text-align: center; margin-bottom: 48px; }
.notes-intro h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.notes-intro .section-lede { margin: 0 auto; }
.notes-intro .eyebrow { display: block; margin-bottom: 14px; }

.notes-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.notes-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.notes-textarea {
  width: 100%;
  background: #0a0e14;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.92rem;
  padding: 16px;
  resize: vertical;
  min-height: 200px;
  margin-bottom: 24px;
}
.notes-textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.notes-options { margin-bottom: 24px; }

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-pill {
  position: relative;
  cursor: pointer;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-pill span {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.radio-pill input:checked + span {
  border-color: var(--teal);
  color: var(--text);
  background: rgba(94,234,212,0.08);
}
.radio-pill input:focus-visible + span {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-block { width: 100%; }

.notice {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
.notice-warn {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.3);
  color: #fcd34d;
}
.notice-error {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.3);
  color: #fca5a5;
}
.notice-info {
  background: rgba(148,163,184,0.08);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.copy-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.notes-input {
  flex: 1;
  background: #0a0e14;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.88rem;
  padding: 12px 14px;
}
.notes-input:focus { outline: none; border-color: var(--teal); }

.notes-content {
  background: #0a0e14;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .notes-panel { padding: 22px; }
  .copy-row { flex-direction: column; }
}
