/* ============================================================
   Selah Shield — landing pages stylesheet
   ============================================================
   Visual language inspired by classical inscriptions: a Trajan-style
   serif (Cinzel) for headlines, a clean geometric sans (Inter) for
   text. Palette is deep navy + brass gold on a warm cream ground —
   law-firm-letterhead-meets-small-publisher rather than tech-startup.
   The intent: this is a dated piece of legal documentation, not a tool.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Surfaces — warm cream paper rather than tech-modern white */
  --bg:           #f5efe2;
  --surface:      #fbf8f0;
  --surface-alt:  #efe7d3;

  /* Text — deep navy + warm muted greys (no pure black anywhere) */
  --text:         #1a1f3c;
  --text-muted:   #565a78;
  --text-faint:   #8a8c9d;

  /* Brass / gold — the accent color carrying the brand */
  --gold:         #c8a55c;
  --gold-deep:    #a8854a;
  --gold-soft:    #e8c978;
  --gold-faint:   #c8a55c1f;  /* ~12% — borders */
  --gold-border:  #c8a55c66;  /* ~40% — stronger borders */

  /* Status colors keyed to the warm palette */
  --warning-bg:     #f6ead1;
  --warning-border: #c8a55c66;
  --warning-text:   #5a4a14;
  --error:          #761e1e;

  /* Sizing */
  --radius:       4px;
  --radius-card:  6px;
  --radius-pill:  999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: var(--bg); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* --- Layout -------------------------------------------------- */

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.wrap--wide { max-width: 720px; }

/* --- Wordmark / brand ---------------------------------------- */

.wordmark {
  display: inline-block;
  font-family: 'Cinzel', Georgia, serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 14px 5px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

/* --- Typography ---------------------------------------------- */

h1 {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.22;
  margin: 22px 0 14px;
  color: var(--text);
}

h1 .price {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--text);
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

p { color: var(--text-muted); margin-bottom: 12px; }

.sub {
  font-size: 15.5px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

ul, ol { padding-left: 22px; margin: 8px 0 14px; }
ul li, ol li { font-size: 14.5px; color: var(--text-muted); margin-bottom: 8px; }

a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid var(--gold-faint); }
a:hover { color: var(--text); border-bottom-color: var(--gold); }

code {
  font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 12.5px;
  background: var(--surface-alt);
  color: var(--text);
  padding: 1px 7px;
  border-radius: 3px;
  border: 1px solid var(--gold-faint);
}

/* --- Surfaces ------------------------------------------------ */

.card {
  background: var(--surface);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-card);
  padding: 26px;
  margin-bottom: 20px;
}

/* The hero/header block keeps its own breathing room */
.hero { text-align: center; margin-bottom: 32px; }

/* --- Form ---------------------------------------------------- */

label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 14px 0 6px;
}

input[type="url"], input[type="email"], input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: #fffdf6;
  color: var(--text);
  border: 1px solid var(--gold-faint);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input::placeholder { color: var(--text-faint); }
input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-faint);
}

button {
  width: 100%;
  margin-top: 18px;
  padding: 14px 20px;
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
button:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--bg);
}
button:disabled { opacity: 0.55; cursor: not-allowed; }

.secondary {
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.error {
  color: var(--error);
  font-size: 13px;
  margin: 8px 0 0;
}

/* --- Stat strip --------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 22px;
}
.stat {
  background: var(--surface-alt);
  border: 1px solid var(--gold-faint);
  border-radius: var(--radius);
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Badge (status pill, e.g. PAYMENT RECEIVED) ------------- */

.badge {
  display: inline-block;
  padding: 7px 16px;
  background: var(--gold-deep);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* --- Disclaimer / warning box ------------------------------- */

.disclaimer-box, .disclaimer, .review-notice {
  background: var(--warning-bg);
  border: 1px solid var(--warning-border);
  border-left: 3px solid var(--gold-deep);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
  font-size: 13px;
  color: var(--warning-text);
  line-height: 1.65;
}
.disclaimer-box strong, .disclaimer strong, .review-notice strong { color: var(--warning-text); }

/* --- Sections ----------------------------------------------- */

section { margin-top: 36px; }
section.why p { font-size: 15px; color: var(--text-muted); margin-bottom: 14px; }

/* --- Upsell rows -------------------------------------------- */

.upsell {
  background: var(--surface);
  border: 1px solid var(--gold-faint);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.upsell-title {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.upsell-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* --- FAQ ---------------------------------------------------- */

details {
  border-bottom: 1px solid var(--gold-faint);
  padding: 10px 0;
}
details:last-of-type { border-bottom: none; }
summary {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-left: 22px;
}
summary::-webkit-details-marker { display: none; }
summary::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 4px;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  color: var(--gold-deep);
  transition: transform 0.15s ease;
}
details[open] summary::before { content: '−'; }
summary:hover { color: var(--gold-deep); }
details p { font-size: 13.5px; color: var(--text-muted); padding: 8px 0 4px 22px; line-height: 1.7; }

/* --- Meta lines (small caps date stamps etc.) --------------- */

.meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* --- Footer ------------------------------------------------- */

.footer {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-faint);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  line-height: 1.7;
}
.footer a { color: var(--gold-deep); border-bottom: none; }
.footer a:hover { color: var(--text); }

/* --- Responsive --------------------------------------------- */

@media (max-width: 520px) {
  .wrap { padding: 32px 18px 64px; }
  h1 { font-size: 28px; }
  h2 { font-size: 18px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .card { padding: 22px 18px; }
}
