/* Make3Now — shared chrome for content pages (legal etc.) */
:root{
  --bg: oklch(0.985 0.005 280);
  --bg-2: oklch(0.965 0.008 280);
  --ink: oklch(0.20 0.020 280);
  --ink-2: oklch(0.42 0.018 280);
  --ink-3: oklch(0.48 0.015 280);
  --line: oklch(0.88 0.012 280);
  --line-2: oklch(0.92 0.010 280);
  --green: #857FF0;
  --green-deep: #5d57c2;
  --green-soft: #ecebfd;
}
*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
body{
  font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before{
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(40,38,27,0.045) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: .35;
}
main, nav, footer{ position: relative; z-index: 1; }

.wrap{ max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* nav */
nav.top{
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
}
nav.top .row{ display: flex; align-items: center; justify-content: space-between; height: 88px; }
.brand{ display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand img.icon{ width: 48px; height: 48px; display: block; border-radius: 8px; object-fit: contain; }
.brand img.icon-lg{ width: 84px; height: 84px; display: block; border-radius: 18px; object-fit: contain; }
.navcta{ display: flex; gap: 8px; align-items: center; }

/* buttons */
.btn{
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: 999px;
  font-family: "Urbanist"; font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--ink); color: var(--bg); }
.btn-primary:hover{ background: oklch(0.14 0.02 280); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--ink); }

/* legal page layout */
.legal-page{ padding: 80px 0 120px; }
.legal-page h1{
  font-family: "Urbanist"; font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.legal-page .lede{
  font-size: 18px; color: var(--ink-2); line-height: 1.55;
  max-width: 640px; margin: 0 0 56px;
}
.prose{ max-width: 760px; }
.prose h2{
  font-family: "Urbanist"; font-weight: 600;
  font-size: 22px; letter-spacing: -0.018em; line-height: 1.2;
  margin: 48px 0 12px;
}
.prose h2:first-child{ margin-top: 0; }
.prose h3{
  font-family: "Urbanist"; font-weight: 600;
  font-size: 17px; letter-spacing: -0.014em;
  margin: 32px 0 8px;
}
.prose p, .prose li{
  font-size: 16px; line-height: 1.65; color: var(--ink-2);
  margin: 0 0 14px;
}
.prose ul, .prose ol{ padding-left: 22px; margin: 0 0 16px; }
.prose a{ color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose dl{ margin: 0 0 16px; }
.prose dt{ font-weight: 600; color: var(--ink); margin-top: 14px; }
.prose dd{ margin: 0 0 6px; color: var(--ink-2); }
.placeholder{
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 28px 32px;
  background: var(--bg-2);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* footer */
footer{ padding: 60px 0 48px; color: var(--ink-2); font-size: 14px; border-top: 1px solid var(--line-2); }
footer .row{ display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; }
footer .links{ display: flex; gap: 32px; }
footer .links a{ color: var(--ink-2); text-decoration: none; }
footer .links a:hover{ color: var(--ink); }
footer .legal{ margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; font-size: 12.5px; color: var(--ink-3); }
.mono{ font-family: "JetBrains Mono", ui-monospace, monospace; }

/* a11y */
a:focus-visible, .btn:focus-visible, button:focus-visible{
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* responsive */
@media (max-width: 980px){
  nav.top ul{ display: none; }
}
@media (max-width: 640px){
  .wrap{ padding: 0 20px; }
  .legal-page{ padding: 56px 0 80px; }
  footer .row{ flex-direction: column; gap: 24px; }
  footer .legal{ flex-direction: column; gap: 8px; }
}
