:root {
--bg: #12141a;
--bg-panel: #171a21;
--bg-panel-2: #1c1f28;
--border: #262a35;
--text: #f2f0eb;
--text-dim: #a6acbb;
--text-faint: #6b7180;
--accent: #ff8a4c;
--accent-dim: #ff8a4c33;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
background: var(--bg);
color: var(--text);
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px 60px; }

/* Nav */
nav.site-nav {
border-bottom: 1px solid var(--border);
margin-bottom: 48px;
}
nav.site-nav .inner {
max-width: 760px;
margin: 0 auto;
padding: 20px 24px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 14px;
}
nav.site-nav .brand {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 22px;
color: var(--text);
text-decoration: none;
}
nav.site-nav .links {
display: flex;
gap: 22px;
flex-wrap: wrap;
font-size: 14.5px;
}
nav.site-nav .links a {
color: var(--text-dim);
text-decoration: none;
font-weight: 500;
}
nav.site-nav .links a:hover,
nav.site-nav .links a.active { color: var(--accent); }

/* Headings */
h1.page-title {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 44px;
margin: 0 0 8px;
letter-spacing: -0.01em;
}
p.page-sub {
font-size: 17px;
color: var(--text-dim);
max-width: 560px;
margin: 0 0 40px;
}
.badge {
display: inline-block;
border: 1px solid var(--accent);
color: var(--accent);
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
letter-spacing: 0.12em;
font-size: 13px;
padding: 6px 16px;
border-radius: 999px;
text-transform: uppercase;
margin-bottom: 20px;
}

/* Panels */
section.panel {
background: var(--bg-panel);
border: 1px solid var(--border);
border-radius: 14px;
padding: 28px 32px;
margin-bottom: 20px;
}
section.panel h2 {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
font-size: 15px;
color: var(--accent);
margin: 0 0 14px;
}
section.panel h3 {
font-family: 'DM Sans', sans-serif;
font-weight: 700;
font-size: 16px;
color: var(--text);
margin: 20px 0 8px;
}
section.panel p { color: var(--text-dim); margin: 0 0 12px; font-size: 15.5px; }
section.panel p:last-child { margin-bottom: 0; }
section.panel p strong, section.panel li strong { color: var(--text); font-weight: 500; }
section.panel ul { color: var(--text-dim); font-size: 15.5px; padding-left: 20px; margin: 0 0 12px; }
section.panel li { margin-bottom: 6px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Buttons: store badges */
.store-buttons {
display: flex;
gap: 14px;
flex-wrap: wrap;
margin-top: 20px;
}
.store-btn {
display: flex;
align-items: center;
gap: 10px;
background: var(--bg-panel-2);
border: 1px solid var(--border);
border-radius: 10px;
padding: 10px 18px;
color: var(--text);
text-decoration: none;
font-size: 14px;
transition: border-color 0.15s;
}
.store-btn:hover { border-color: var(--accent); text-decoration: none; }
.store-btn .icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .store-btn .icon svg { width: 100%; height: 100%; display: block; }
.store-btn .label small { display: block; color: var(--text-faint); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.store-btn .label b { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; }

/* Generic button */
.btn {
display: inline-block;
background: var(--accent);
color: #1a1206;
font-weight: 700;
font-family: 'Barlow Condensed', sans-serif;
letter-spacing: 0.02em;
font-size: 16px;
padding: 12px 26px;
border-radius: 10px;
border: none;
cursor: pointer;
text-decoration: none;
}
.btn:hover { text-decoration: none; opacity: 0.92; }

/* Guides / persona cards */
.guide-card {
display: flex;
gap: 24px;
align-items: flex-start;
flex-wrap: wrap;
}
.guide-card img {
width: 140px;
height: 140px;
border-radius: 14px;
object-fit: cover;
border: 1px solid var(--border);
flex-shrink: 0;
}
.guide-card .content { flex: 1; min-width: 240px; }
.guide-card .name-row {
display: flex;
align-items: baseline;
gap: 10px;
margin-bottom: 4px;
flex-wrap: wrap;
}
.guide-card .name {
font-family: 'Barlow Condensed', sans-serif;
font-weight: 700;
font-size: 26px;
color: var(--text);
}
.guide-card .tag {
color: var(--accent);
font-size: 14px;
font-weight: 500;
}
.guide-card .quote {
border-left: 2px solid var(--accent);
padding-left: 14px;
margin: 14px 0;
font-style: italic;
color: var(--text);
}

/* FAQ */
details.faq-item {
border-bottom: 1px solid var(--border);
padding: 16px 0;
}
details.faq-item:last-child { border-bottom: none; }
details.faq-item summary {
cursor: pointer;
font-weight: 500;
color: var(--text);
font-size: 16px;
list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::before {
content: "+";
color: var(--accent);
font-weight: 700;
margin-right: 10px;
display: inline-block;
width: 14px;
}
details.faq-item[open] summary::before { content: "–"; }
details.faq-item p {
color: var(--text-dim);
margin: 10px 0 0 24px;
font-size: 15px;
}

/* Contact form */
form.contact-form label {
display: block;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-faint);
margin: 18px 0 6px;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
width: 100%;
background: var(--bg-panel-2);
border: 1px solid var(--border);
border-radius: 8px;
padding: 12px 14px;
color: var(--text);
font-family: inherit;
font-size: 15px;
}
form.contact-form textarea { resize: vertical; min-height: 120px; }
form.contact-form .submit-row { margin-top: 22px; }
.form-note { font-size: 13px; color: var(--text-faint); margin-top: 10px; }

footer.site-footer {
max-width: 760px;
margin: 40px auto 0;
padding: 28px 24px 0;
border-top: 1px solid var(--border);
text-align: center;
font-size: 13px;
color: var(--text-dim);
}
footer.site-footer p { margin: 0 0 8px; }
footer.site-footer .legal { margin-top: 16px; color: var(--text-faint); }
footer.site-footer .foot-links { margin-top: 14px; font-size: 12.5px; }
footer.site-footer .foot-links a { color: var(--text-faint); margin: 0 8px; }

@media (max-width: 640px) {
h1.page-title { font-size: 34px; }
section.panel { padding: 22px 20px; }
}
