@import url('./fonts.css');
:root {
  --ink: #131118;
  --paper: #f4eee3;
  --rec: #ff3b30;
  --gold: #ffb84d;
  --line: rgba(19, 17, 24, 0.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
.legal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 60px);
  color: var(--paper);
  background: rgba(19, 17, 24, 0.94);
  backdrop-filter: blur(14px);
}
.legal-brand {
  font:
    800 15px "Syne",
    sans-serif;
  text-decoration: none;
}
.legal-brand i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 15px var(--rec);
}
.legal-nav > a:last-child {
  font-size: 13px;
  opacity: 0.72;
}
.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 70px auto 110px;
}
.legal-kicker {
  color: var(--rec);
  font:
    700 11px "Space Mono",
    monospace;
  letter-spacing: 0.14em;
}
.legal-shell h1 {
  max-width: 780px;
  margin: 14px 0 18px;
  font:
    800 clamp(42px, 7vw, 75px) / 0.98 "Syne",
    sans-serif;
  letter-spacing: -0.05em;
}
.legal-lead {
  max-width: 740px;
  font-size: 20px;
  color: rgba(19, 17, 24, 0.68);
}
.legal-note {
  margin: 32px 0;
  padding: 18px 20px;
  background: #fff7e8;
  border: 1px solid #e6d2a9;
  border-radius: 15px;
}
.legal-note.warn {
  background: #ffe7e3;
  border-color: #efb2ac;
}
.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.legal-section:first-of-type {
  margin-top: 46px;
}
.legal-section h2 {
  margin: 0 0 12px;
  font:
    800 27px "Syne",
    sans-serif;
}
.legal-section h3 {
  margin: 24px 0 5px;
  font:
    700 18px "Syne",
    sans-serif;
}
.legal-section p {
  margin: 8px 0;
}
.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 8px;
  padding-left: 24px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}
.legal-table th,
.legal-table td {
  padding: 13px;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--line);
}
.legal-table th {
  background: #eee5d7;
}
.legal-identity {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.legal-identity div {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.legal-identity small {
  display: block;
  opacity: 0.55;
}
.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.legal-button {
  display: inline-flex;
  padding: 12px 18px;
  color: white;
  background: var(--rec);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.legal-button.secondary {
  color: var(--ink);
  background: var(--gold);
}
.model-box {
  white-space: pre-wrap;
  padding: 22px;
  background: white;
  border: 1px dashed rgba(19, 17, 24, 0.35);
  border-radius: 14px;
  font-family: "Space Mono", monospace;
  font-size: 13px;
}
.legal-footer {
  padding: 28px 20px;
  color: rgba(244, 238, 227, 0.62);
  text-align: center;
  background: var(--ink);
  font-size: 13px;
}
.legal-footer a {
  margin: 0 8px;
}
@media (max-width: 650px) {
  .legal-identity {
    grid-template-columns: 1fr;
  }
  .legal-shell {
    margin-top: 45px;
  }
  .legal-table {
    font-size: 13px;
  }
  .legal-table th,
  .legal-table td {
    padding: 9px;
  }
}
