/* ==========================================================
   Harbison R&D — Defense-tone single-page site
   ========================================================== */

:root {
  /* Palette — navy + army green (matches white paper + one-pagers) */
  --navy:        #0E2A47;
  --navy-deep:   #081A2E;
  --army:        #4B5320;
  --army-bright: #6A7435;
  --accent:      #E87722;      /* orange accent, used sparingly */
  --ink:         #14171C;
  --slate-900:   #1F2937;
  --slate-700:   #374151;
  --slate-500:   #6B7280;
  --slate-300:   #D1D5DB;
  --slate-200:   #E5E7EB;
  --slate-100:   #F3F4F6;
  --paper:       #F8F9F7;
  --white:       #FFFFFF;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Scale */
  --text-xs:   0.78rem;
  --text-sm:   0.88rem;
  --text-base: 1rem;
  --text-lg:   1.15rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.75rem;
  --text-hero: clamp(2.4rem, 5vw, 3.75rem);

  /* Layout */
  --container: 1180px;
  --pad-x:     clamp(20px, 4vw, 40px);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0 0 0.5em; letter-spacing: -0.015em; line-height: 1.15; color: var(--navy); }
h1 { font-size: var(--text-hero); font-weight: 700; letter-spacing: -0.025em; }
h2 { font-size: var(--text-3xl); font-weight: 700; }
h3 { font-size: var(--text-xl); font-weight: 600; }
p  { margin: 0 0 1em; color: var(--slate-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--army);
  margin: 0 0 12px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(75, 83, 32, 0.08);
  border-radius: var(--radius-sm);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.logo {
  width: 34px;
  height: 34px;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-word { font-weight: 700; font-size: var(--text-base); letter-spacing: 0.01em; }
.brand-tag  { font-size: 0.72rem; font-family: var(--font-mono); color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.12em; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--navy); }

.nav-cta {
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}
.nav-cta:hover { background: var(--navy-deep); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--slate-300);
}
.btn-ghost:hover { border-color: var(--navy); background: var(--white); }

/* ========== HERO ========== */
.hero {
  padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 7vw, 88px);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(75, 83, 32, 0.08), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(14, 42, 71, 0.05), transparent 60%),
    var(--paper);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-text h1 {
  font-size: var(--text-hero);
  margin-bottom: 20px;
}

.hero-text .lede {
  font-size: var(--text-lg);
  color: var(--slate-700);
  margin-bottom: 32px;
  max-width: 52ch;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  padding: 18px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 28px;
}

.meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-family: var(--font-mono); font-size: var(--text-xs); color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.1em; }
.meta-value { font-size: var(--text-sm); color: var(--navy); font-weight: 600; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 20px 40px -20px rgba(14, 42, 71, 0.25),
    0 8px 16px -8px rgba(14, 42, 71, 0.15);
  border: 1px solid var(--slate-200);
  background: var(--white);
}
.hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-figure figcaption {
  font-size: var(--text-xs);
  color: var(--slate-500);
  padding: 10px 16px;
  border-top: 1px solid var(--slate-200);
  background: var(--white);
  font-style: italic;
}

/* ========== CAPABILITIES ========== */
.capabilities {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-lede {
  font-size: var(--text-lg);
  color: var(--slate-700);
  max-width: 70ch;
  margin: 0 0 48px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.cap-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--army);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.cap-card:hover {
  border-color: var(--slate-300);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(14, 42, 71, 0.15);
}
.cap-card:hover::before { transform: scaleX(1); }

.cap-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--army);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 500;
}

.cap-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 10px;
}

.cap-card p {
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.55;
  color: var(--slate-700);
}

/* ========== PROGRAM ========== */
.program {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.program::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(75, 83, 32, 0.3), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(232, 119, 34, 0.08), transparent 55%);
  pointer-events: none;
}

.program-inner { position: relative; }
.program h2 { color: var(--white); }
.program .eyebrow { background: rgba(255, 255, 255, 0.08); color: #B8D07A; }
.program p { color: rgba(255, 255, 255, 0.85); max-width: 68ch; font-size: var(--text-lg); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px 32px;
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.spec-grid > div { }
.spec-grid dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.spec-grid dd {
  margin: 0;
  font-size: var(--text-base);
  color: var(--white);
  font-weight: 600;
}

/* ========== IP ========== */
.ip {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--paper);
}

.ip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.ip-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--army);
  border-radius: var(--radius-sm);
}

.ip-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.ip-value {
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ip-note {
  font-size: var(--text-sm);
  color: var(--slate-700);
  margin: 0;
  line-height: 1.5;
}

/* ========== CONTACT ========== */
.contact {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--slate-200);
}
.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-200);
  align-items: baseline;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-value {
  font-size: var(--text-sm);
  color: var(--navy);
  font-weight: 500;
  word-break: break-word;
}
a.contact-value { border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
a.contact-value:hover { border-bottom-color: var(--navy); }

/* form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
}

.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field-hp { position: absolute; left: -9999px; }

.field label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  padding: 10px 12px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14, 42, 71, 0.1);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--army);
}
.form-status.error { color: #B91C1C; }

.form-fineprint {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: var(--slate-500);
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 0;
  font-size: var(--text-sm);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { color: var(--white); font-weight: 700; margin-bottom: 4px; }
.footer-addr { font-size: var(--text-xs); }

.footer-right { text-align: right; max-width: 50%; }
.footer-line { font-size: var(--text-xs); }
.footer-line + .footer-line { margin-top: 6px; }
.footer-fine { color: rgba(255, 255, 255, 0.45); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .nav { gap: 18px; }
  .nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2rem, 8vw, 2.5rem); }
  h2 { font-size: var(--text-2xl); }
  .hero-meta { grid-template-columns: 1fr; gap: 10px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; max-width: 100%; }
}

/* ==========================================================
   RESEARCH NOTES (homepage section)
   ========================================================== */
.notes {
  background: var(--white);
  padding: 72px 0 84px;
  border-top: 1px solid var(--slate-200);
}
.notes .section-lede { max-width: 720px; color: var(--slate-700); margin-bottom: 28px; }
.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}
.note-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.note-card:hover {
  border-left-color: var(--accent);
  box-shadow: 0 4px 16px rgba(14, 42, 71, 0.06);
}
.note-meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--slate-500);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.note-meta .note-id { color: var(--navy); font-weight: 600; }
.note-meta .note-sep { margin: 0 8px; color: var(--slate-300); }
.note-title {
  font-size: var(--text-2xl);
  line-height: 1.2;
  margin: 4px 0 6px;
}
.note-title a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.note-title a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.note-sub {
  font-style: normal;
  color: var(--slate-700);
  font-size: var(--text-lg);
  margin: 0 0 14px;
}
.note-abs {
  color: var(--slate-700);
  margin: 0 0 16px;
}
.note-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}
.note-cta:hover { color: var(--accent); border-bottom-color: var(--accent); }
.notes-fineprint {
  margin-top: 28px;
  font-size: var(--text-sm);
  color: var(--slate-500);
  max-width: 760px;
  font-style: italic;
}

/* ==========================================================
   BRIEF PAGE (unheld-trip.html)
   ========================================================== */
.brief-body { background: var(--paper); }
.brief {
  padding: 56px 0 80px;
}
.brief-inner {
  max-width: 780px;
  margin: 0 auto;
}
.brief-crumb {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 36px;
}
.brief-crumb a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-300);
}
.brief-crumb a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.brief-head {
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 28px;
  margin-bottom: 36px;
}
.brief-tag {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0 0 14px;
}
.brief-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.brief-sub {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--slate-700);
  font-weight: 400;
  margin: 0 0 22px;
}
.brief-meta {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 24px;
  margin: 0;
  padding: 18px 0 0;
}
.brief-meta div { display: flex; flex-direction: column; gap: 2px; }
.brief-meta dt {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin: 0;
}
.brief-meta dd {
  font-size: var(--text-sm);
  color: var(--ink);
  margin: 0;
  font-weight: 500;
}

.brief h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  margin: 42px 0 14px;
  letter-spacing: -0.005em;
}
.brief-abstract h2 { margin-top: 0; }
.brief-abstract {
  background: var(--white);
  border-left: 3px solid var(--army);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.brief-abstract p { margin: 0; color: var(--slate-700); font-size: var(--text-base); }

.brief p, .brief li {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--slate-900);
}
.brief ul, .brief ol { padding-left: 22px; }
.brief ul li, .brief ol li { margin-bottom: 8px; }

.brief-quote {
  margin: 20px 0;
  padding: 22px 26px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
  border-left: 4px solid var(--accent);
}

.brief-table-wrap { overflow-x: auto; margin: 16px 0 20px; }
.brief-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.brief-table thead th {
  background: var(--navy);
  color: var(--white);
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brief-table tbody td {
  padding: 10px 14px;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-900);
}
.brief-table tbody tr:nth-child(even) td { background: var(--paper); }

.brief-note {
  font-style: italic;
  color: var(--slate-700);
}

.brief-refs {
  padding-left: 20px;
}
.brief-refs li {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--slate-700);
  margin-bottom: 10px;
}
.brief-refs-note {
  font-size: var(--text-sm);
  color: var(--slate-500);
  font-style: italic;
  margin-top: 10px;
}

.brief-footer {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--slate-200);
  font-family: var(--font-sans);
}
.brief-footer p {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.5;
  margin: 0 0 8px;
}
.brief-footer a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--slate-300); }
.brief-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 560px) {
  .brief { padding: 32px 0 56px; }
  .brief-quote { padding: 18px 20px; font-size: 1rem; }
  .brief-abstract { padding: 18px 20px; }
}

/* Brief — H3 subheadings and safety callout */
.brief h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 8px;
}
.brief-warning {
  background: #FDF4EC;
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  margin: 16px 0 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--slate-900);
  line-height: 1.55;
}

/* ========== LUNAR VARIANT (Mk1-L) ========== */
.lunar {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--white);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.lunar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.lunar-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--army);
  border-radius: var(--radius-sm);
}

.lunar-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.lunar-value {
  font-size: var(--text-lg);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.lunar-note {
  font-size: var(--text-sm);
  color: var(--slate-700);
  margin: 0;
  line-height: 1.5;
}

.lunar-ip {
  margin-top: 32px;
  font-size: var(--text-sm);
  color: var(--slate-700);
  line-height: 1.6;
  max-width: 800px;
}

.lunar-trl {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--slate-500);
  letter-spacing: 0.05em;
}
