@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700;9..144,800&family=Geist:wght@400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

:root {
  --primary:        #111114;
  --primary-light:  #2A2A31;
  --accent:         #6366F1;
  --accent-light:   #818CF8;
  --success:        #16A34A;
  --warning:        #D97706;
  --danger:         #DC2626;
  --bg:             #FFFFFF;
  --card:           #FFFFFF;
  --bg-subtle:      #FAFAFA;
  --text:           #18181B;
  --text-light:     #71717A;
  --border:         #ECECEF;

  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-pill:    999px;

  --space-1:        0.25rem;
  --space-2:        0.5rem;
  --space-3:        0.75rem;
  --space-4:        1rem;
  --space-5:        1.5rem;
  --space-6:        2rem;
  --space-8:        3rem;

  --shadow-sm:      0 1px 2px rgba(0,0,0,0.05);
  --shadow:         0 1px 3px rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 6px rgba(0,0,0,0.07), 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg:      0 10px 15px rgba(0,0,0,0.07), 0 20px 40px rgba(0,0,0,0.10);
}

body {
  font-family: 'Geist', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: -0.011em;
  min-height: 100vh;
}

/* ===== NAV ===== */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.lp-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}

.logo-icon {
  height: 32px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-back:hover { color: var(--text); }
.nav-back svg { width: 16px; height: 16px; }

/* ===== MAIN ===== */
main {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 2rem 80px;
}

.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.page-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

/* ===== CARD ===== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.card h2 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 0.4rem;
}

.card p,
.card address {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-style: normal;
}

.card ul, .card ol {
  margin: 0.5rem 0 0.75rem 1.25rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.9;
}

.card a {
  color: var(--accent);
  text-decoration: none;
}
.card a:hover { text-decoration: underline; }

/* ===== NOTICE + PLACEHOLDER + TOC (legal pages) ===== */
.notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: #1e40af;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.notice svg { flex-shrink: 0; margin-top: 2px; }

.placeholder {
  display: inline-block;
  background: #fef3c7;
  border: 1px dashed #f59e0b;
  border-radius: 4px;
  padding: 0 6px;
  color: #92400e;
  font-size: 0.85em;
  font-style: italic;
}

.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}
.toc p { font-weight: 700; font-size: 0.85rem; color: var(--primary); margin-bottom: 0.75rem; }
.toc ol { margin-left: 1.25rem; }
.toc ol li { font-size: 0.875rem; color: var(--text-light); line-height: 2; }
.toc ol li a { color: var(--accent); text-decoration: none; }
.toc ol li a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-light);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}
footer a { color: var(--text-light); text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--text); }

/* ===== UTILITIES ===== */
.hidden { display: none !important; }

.stack > * + * { margin-top: var(--space-4); }
.stack-sm > * + * { margin-top: var(--space-2); }
.stack-lg > * + * { margin-top: var(--space-6); }

.row { display: flex; gap: var(--space-3); align-items: center; }
.row-between { display: flex; gap: var(--space-3); align-items: center; justify-content: space-between; }
.row-wrap { display: flex; gap: var(--space-3); align-items: center; flex-wrap: wrap; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

.text-strong { font-weight: 600; }
.text-light { color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .card { padding: 1.5rem; }
  .page-title { font-size: 1.5rem; }
  main { padding: 100px 1.25rem 60px; }
  .lp-nav { padding: 0 1rem; }
}

/* ===== LOGO MARK ===== */
.or-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--primary);
  transition: transform 0.2s;
}
.or-logo-mark svg { width: 100%; height: 100%; }
.lp-nav-logo:hover .or-logo-mark { transform: scale(1.08); }
