/* Work the 12 Steps — Marketing Site */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --bg: #0C0A07;
  --bg-2: #111008;
  --surface: #18160F;
  --gold: #C9A84C;
  --gold-dim: #8C7535;
  --gold-light: #E4C97A;
  --text: #EDE8DC;
  --text-muted: #7A7060;
  --text-subtle: #3A3628;
  --border: #252118;
  --max-w: 760px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem var(--pad); border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(12,10,7,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 100; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-link { color: var(--text); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
.btn-primary { background: var(--gold); color: #0C0A07; border: none; padding: 0.6rem 1.4rem; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.hero { min-height: 88vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 5rem var(--pad) 4rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 50% 42%, rgba(201,168,76,0.07) 0%, transparent 68%); pointer-events: none; }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 2.25rem; animation: fadeUp 0.6s ease both; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem, 8vw, 5.25rem); font-weight: 300; line-height: 1.1; max-width: 780px; margin-bottom: 1.5rem; animation: fadeUp 0.7s ease 0.1s both; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1rem; color: var(--text-muted); max-width: 440px; margin-bottom: 2.75rem; line-height: 1.85; animation: fadeUp 0.7s ease 0.2s both; }
.hero .btn-primary { animation: fadeUp 0.7s ease 0.3s both; }
.hero-rule { width: 36px; height: 1px; background: var(--gold-dim); margin: 2.5rem auto 0; animation: fadeUp 0.7s ease 0.4s both; }
.diff-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem var(--pad); text-align: center; background: var(--bg-2); }
.diff-bar p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-muted); max-width: 680px; margin: 0 auto; line-height: 1.6; }
.three-q { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.three-q-item { padding: 2.5rem var(--pad); border-right: 1px solid var(--border); }
.three-q-item:last-child { border-right: none; }
.three-q-label { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.three-q-item p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.55; color: var(--text); }
.section { max-width: var(--max-w); margin: 0 auto; padding: 5rem var(--pad); }
.section-label { font-size: 0.63rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem; }
.section p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1.25rem; }
.divider { max-width: var(--max-w); margin: 0 auto; height: 1px; background: var(--border); }
.problem-list { list-style: none; margin-top: 2rem; }
.problem-list li { color: var(--text-muted); padding: 1rem 0 1rem 1.5rem; border-bottom: 1px solid var(--border); position: relative; font-size: 0.93rem; line-height: 1.6; }
.problem-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dim); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 2.5rem; }
.feature-card { background: var(--bg); padding: 2rem; }
.feature-number { font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; font-weight: 300; color: var(--text-subtle); line-height: 1; margin-bottom: 0.75rem; }
.feature-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.feature-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.lineage-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5rem var(--pad); }
.lineage-inner { max-width: var(--max-w); margin: 0 auto; }
.lineage-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 5vw, 2.9rem); font-weight: 400; margin-bottom: 1.25rem; }
.lineage-inner > p { color: var(--text-muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
.chain-link { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.chain-link:last-child { border-bottom: none; }
.chain-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-dim); flex-shrink: 0; margin-top: 0.45rem; }
.chain-dot.active { background: var(--gold); box-shadow: 0 0 10px rgba(201,168,76,0.4); }
.chain-link p { font-size: 0.9rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.chain-link strong { color: var(--text); font-weight: 400; }
.lineage-note { font-style: italic; font-size: 0.87rem; color: var(--text-subtle); margin-top: 2rem; }
.form-section { background: var(--surface); border-top: 1px solid var(--border); padding: 5rem var(--pad); }
.form-inner { max-width: 540px; margin: 0 auto; }
.form-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 5vw, 2.6rem); font-weight: 400; margin-bottom: 0.75rem; text-align: center; }
.form-sub { text-align: center; color: var(--text-muted); font-size: 0.93rem; margin-bottom: 2.5rem; line-height: 1.7; }
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
input[type="email"], input[type="text"], select, textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); color: var(--text); padding: 0.85rem 1rem; font-family: 'Lato', sans-serif; font-size: 0.93rem; font-weight: 300; transition: border-color 0.2s; outline: none; -webkit-appearance: none; appearance: none; border-radius: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-dim); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
textarea { resize: vertical; min-height: 90px; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.form-check input[type="checkbox"] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.2rem; accent-color: var(--gold); cursor: pointer; }
.form-check label { font-size: 0.85rem; text-transform: none; letter-spacing: 0; color: var(--text-muted); margin: 0; line-height: 1.55; cursor: pointer; }
.btn-submit { width: 100%; background: var(--gold); color: #0C0A07; border: none; padding: 1rem; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s, opacity 0.2s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--gold-light); }
.btn-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.form-msg { text-align: center; font-size: 0.88rem; margin-top: 1rem; padding: 0.8rem 1rem; display: none; }
.form-msg.success { display: block; color: #87C97A; background: rgba(135,201,122,0.07); border: 1px solid rgba(135,201,122,0.18); }
.form-msg.error { display: block; color: #D97A7A; background: rgba(217,122,122,0.07); border: 1px solid rgba(217,122,122,0.18); }
.form-note { text-align: center; font-size: 0.76rem; color: var(--text-subtle); margin-top: 1.25rem; }
footer { border-top: 1px solid var(--border); padding: 3rem var(--pad); text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.07em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.93rem; color: var(--text-muted); }
.page-hero { padding: 5.5rem var(--pad) 3rem; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 6vw, 3.25rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.15; }
.page-hero p { color: var(--text-muted); max-width: 460px; margin: 0 auto; font-size: 0.97rem; }
.page-body { max-width: 620px; margin: 0 auto; padding: 4rem var(--pad); }
.page-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; margin: 2.75rem 0 0.75rem; color: var(--text); }
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.96rem; }
.page-body blockquote { border-left: 2px solid var(--gold-dim); padding-left: 1.5rem; margin: 2rem 0; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: var(--text); line-height: 1.5; }
.faq-list { max-width: 680px; margin: 0 auto; padding: 3rem var(--pad); }
.faq-category { margin: 3rem 0 0.5rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; line-height: 1.4; }
.faq-a { color: var(--text-muted); font-size: 0.93rem; line-height: 1.85; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 640px) { .three-q { grid-template-columns: 1fr; } .three-q-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem var(--pad); } .three-q-item:last-child { border-bottom: none; } .features-grid { grid-template-columns: 1fr; } .nav-links .nav-link { display: none; } }
.how-steps { margin-top: 2.5rem; }
.how-step { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.how-step:last-child { border-bottom: none; }
.how-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold-dim); line-height: 1; flex-shrink: 0; width: 2rem; text-align: center; }
.how-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.how-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
