/* licensemydata.com — stylesheet */

:root {
  --bg: #f3f4f2;
  --panel: #ffffff;
  --ink: #14171a;
  --ink-2: #2c3135;
  --ink-3: #5d666c;
  --ink-4: #565e63;
  --accent: #1c6b52;
  --accent-dark: #124a38;
  --accent-tint: #eaf2ee;
  --dark: #14261f;
  --dark-2: #1c322a;
  --dark-3: #244136;
  --dark-ink: #eef2ef;
  --dark-ink-2: #d6e0da;
  --dark-ink-3: #c3d0c9;
  --dark-ink-4: #a9b8b0;
  --mint: #7fc9a9;
  --rust: #b4553f;
  --hair: #e2e5e0;
  --field-border: #dcdfda;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --r-panel: 22px;
  --r-card: 16px;
  --r-inner: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4, p { margin: 0; }
strong { font-weight: 700; }

.wrap { max-width: 1560px; margin: 0 auto; padding: 14px; }

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 6px 20px;
}
.wordmark { font-family: var(--serif); font-size: 23px; }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14.5px; }
.nav-links a {
  color: var(--ink);
  background: var(--panel);
  padding: 9px 14px;
  border-radius: 999px;
}
.nav-links a:hover { background: var(--accent-tint); color: var(--accent); }
.nav-links a.cta { background: var(--accent); color: #fff; padding: 9px 18px; }
.nav-links a.cta:hover { background: var(--accent-dark); color: #fff; }

/* ---------- panels ---------- */
.panel {
  background: var(--panel);
  border-radius: var(--r-panel);
  padding: clamp(32px, 5vw, 68px);
  margin-bottom: 14px;
}
.panel.hero { padding: clamp(32px, 5vw, 72px); }
.panel.dark { background: var(--dark); color: var(--dark-ink); }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.kicker {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.dark .kicker { color: var(--mint); }
.badge {
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 500;
}
.dark .badge { background: var(--mint); color: var(--dark); }

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
  max-width: 19ch;
  text-wrap: pretty;
}
h1 em { font-style: italic; color: var(--accent); }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 22ch;
  text-wrap: pretty;
}
h2.mid {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: clamp(28px, 4vw, 48px);
}
h3 { font-size: 17px; font-weight: 500; margin-bottom: 18px; }
h3.card-title {
  font-size: 18.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.lead { font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 70ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.dark .sub { color: var(--dark-ink-4); }
.body { font-size: 16.5px; line-height: 1.65; color: var(--ink-2); }
.body + .body { margin-top: 16px; }
.body.muted { color: var(--ink-3); }
.dark .body { color: var(--dark-ink-2); }
.dark .body.muted { color: var(--dark-ink-4); }
.small { font-size: 16px; line-height: 1.65; color: var(--ink-3); }
.small + .small { margin-top: 16px; }

.pullquote {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--dark-ink-4);
  padding-left: 18px;
  border-left: 2px solid var(--mint);
}

/* ---------- buttons ---------- */
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 15.5px;
  font-weight: 500;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: var(--bg); color: var(--ink); }
.btn-ghost:hover { background: #e7e9e5; color: var(--ink); }

/* ---------- grids ---------- */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 44px);
  margin-bottom: clamp(28px, 4vw, 44px);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}
.cards.wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.cards.mid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.stack { display: flex; flex-direction: column; gap: 12px; }

/* ---------- cards ---------- */
.card {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 26px;
}
.dark .card { background: var(--dark-2); }
.card p { font-size: 15px; line-height: 1.6; color: var(--ink-3); }
.card.no { background: #f7f4f2; border-top: 3px solid var(--rust); }
.card.no h3 { font-size: 18px; font-weight: 500; line-height: 1.25; margin-bottom: 10px; }

.note {
  background: var(--bg);
  border-radius: var(--r-inner);
  padding: 20px 22px;
}
.dark .note { background: var(--dark-2); }
.note p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); }
.dark .note p { color: var(--dark-ink-2); }
.dark .note strong { color: #fff; }

.numeral {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- lists ---------- */
.rows { display: flex; flex-direction: column; gap: 12px; }
.row {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
}
.row:last-child { padding-bottom: 0; border-bottom: none; }
.dark .row { color: var(--dark-ink-3); border-bottom-color: var(--dark-3); }
.row .mark { color: var(--accent); flex: none; }
.dark .row .mark { color: var(--mint); }
.row .n {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  flex: none;
}
.dark .row .n { color: var(--mint); font-size: 16px; }
.row p { font-size: 15px; line-height: 1.5; color: inherit; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  background: var(--dark-3);
  color: var(--dark-ink-2);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 13.5px;
}
.chip-note { font-size: 14.5px; line-height: 1.5; color: var(--dark-ink-4); }

/* ---------- flow diagram ---------- */
.flow {
  margin-top: clamp(32px, 4vw, 52px);
  background: var(--bg);
  border-radius: var(--r-card);
  padding: clamp(22px, 3vw, 36px);
}
.flow-label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.step {
  background: var(--panel);
  border-radius: var(--r-inner);
  padding: 22px;
}
.step.mid-step { border: 1px solid #dce3df; }
.step .n {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 12px;
}
.step h4 { font-size: 16.5px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 14.5px; line-height: 1.5; color: var(--ink-3); }
.flow-caption { font-size: 13px; color: var(--ink-3); margin-top: 16px; }

/* ---------- form ---------- */
.form-shell {
  background: var(--bg);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 34px);
}
.form-shell .stack { gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 400;
  padding: 13px 15px;
  border: 1px solid var(--field-border);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.contact-grid h2 { font-size: clamp(32px, 4.4vw, 54px); max-width: none; }
.four-things { display: flex; flex-direction: column; gap: 12px; background: var(--bg); border-radius: var(--r-card); padding: 24px; }
.four-things .row { padding-bottom: 0; border-bottom: none; }

/* ---------- footer ---------- */
.footer {
  padding: 24px 8px 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.footer .who { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }
.footer .legal { font-size: 12.5px; line-height: 1.55; color: var(--ink-4); max-width: 78ch; }

/* ---------- needs divider ---------- */
.needs-bar {
  background: var(--accent);
  border-radius: var(--r-panel);
  padding: clamp(30px, 4vw, 48px) 24px;
  margin-bottom: 14px;
  text-align: center;
}
.needs-bar .label {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  margin-bottom: 12px;
}
.needs-bar h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: none;
  margin: 0 0 14px;
}
.needs-bar p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  max-width: 54ch;
  margin: 0 auto;
}

/* ---------- small screens ---------- */
@media (max-width: 620px) {
  .wrap { padding: 10px; }

  /* nav: wordmark on its own line, section links in one compact row.
     the nav CTA is dropped because the hero button sits directly below it. */
  .nav { gap: 12px; padding: 0 4px 16px; }
  .wordmark { font-size: 20px; }
  .nav-links { width: 100%; gap: 6px; font-size: 13.5px; }
  .nav-links a { padding: 7px 12px; }
  .nav-links a.cta { display: none; }

  /* full-width tap targets */
  .actions { gap: 10px; margin-top: 28px; }
  .actions .btn { display: block; width: 100%; text-align: center; }
  .form-shell .btn { width: 100%; }

  /* tighten the vertical rhythm so the page is not endless on a phone */
  .panel { padding: 30px 24px; border-radius: 18px; }
  .panel.hero { padding: 30px 24px; }
  .needs-bar { padding: 30px 20px; border-radius: 18px; }
  .card { padding: 22px; }
  .flow { padding: 20px; }
  .eyebrow { margin-bottom: 22px; }

  /* the section head stacks; keep the date badge tied to its kicker */
  .section-head { gap: 10px; margin-bottom: 18px; }
}
