@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
    --bg: #07080c;
    --bg2: #0d0f15;
    --bg3: #13161f;
    --fg: #f0ece3;
    --muted: #9a9daa;
    --muted2: #8a8d9a;
    --copper: #d97b4a;
    --copper-soft: rgba(217, 123, 74, 0.1);
    --copper-border: rgba(217, 123, 74, 0.25);
    --border: #1c1f28;
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.25rem;
}

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

/* Skip link for keyboard/screen reader users */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--copper);
    color: #1a0e08;
    padding: 0.5rem 1rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.15s;
}

.skip-link:focus {
    top: 0;
}

body {
    margin: 0;
    font-family: var(--sans);
    background: var(--bg);
    color: var(--fg);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Focus styles — visible for keyboard users */
:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
    border-radius: 2px;
}

a {
    color: var(--copper);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding-left: 1.25rem;
    color: var(--muted);
}

ul li {
    margin-bottom: 0.35rem;
    line-height: 1.65;
}

/* Layout */

.wrap {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main {
    min-height: 60vh;
}

/* Nav */

.nav {
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--fg);
    letter-spacing: 0.01em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--copper);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--fg);
    text-decoration: none;
}

/* Active nav link */
.nav-links a[aria-current="page"] {
    color: var(--fg);
}

/* Hero */

.hero {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -80px;
    right: -100px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(217, 123, 74, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--copper);
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--serif);
    font-size: 3.4rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 640px;
    margin: 0 0 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--copper);
}

.hero-sub {
    color: var(--muted);
    max-width: 460px;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */

.btn-primary {
    background: var(--copper);
    color: #1a0e08;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--sans);
    display: inline-block;
    transition: opacity 0.15s;
}

.btn-primary:hover {
    opacity: 0.88;
    text-decoration: none;
}

.btn-ghost {
    color: var(--fg);
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.btn-ghost:hover {
    opacity: 1;
    text-decoration: none;
}

/* Divider */

.divider {
    height: 1px;
    background: var(--border);
}

/* Section */

.section {
    padding: 3rem 0;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1.25rem;
    display: block;
}

.section h2 {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    margin: 0 0 1rem;
    line-height: 1.25;
}

.section h2 em {
    font-style: italic;
    color: var(--copper);
}

.section > p,
.section-body p {
    color: var(--muted);
    line-height: 1.75;
    margin-top: 0;
    font-size: 1rem;
}

/* Product card */

.product-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 1.25rem;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), transparent 70%);
}

.product-tag {
    display: inline-block;
    background: var(--copper-soft);
    border: 1px solid var(--copper-border);
    color: var(--copper);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 300;
    margin: 0 0 0.5rem;
}

.product-card > p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0 0 1.5rem;
    line-height: 1.7;
}

.product-channels {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.ch {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--muted);
}

.ch.email { border-color: rgba(217, 123, 74, 0.3); color: var(--copper); }
.ch.sms   { border-color: rgba(91, 163, 245, 0.3); color: #5ba3f5; }
.ch.wa    { border-color: rgba(37, 211, 102, 0.3); color: #25d366; }

.product-link {
    color: var(--copper);
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.product-link:hover {
    text-decoration: underline;
}

/* Values grid */

.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.value {
    background: var(--bg2);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-num {
    font-family: var(--serif);
    font-size: 0.78rem;
    color: var(--copper);
    opacity: 0.55;
    margin-top: 2px;
    flex-shrink: 0;
}

.value h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--fg);
}

.value p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Project card */

.project-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 300;
    margin: 0 0 0.4rem;
}

.project-card p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 440px;
    margin: 0;
    line-height: 1.65;
}

.project-card a {
    color: var(--copper);
    font-size: 0.90rem;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.project-card a:hover {
    text-decoration: underline;
}

/* Steps grid */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.25rem;
}

.step {
    background: var(--bg2);
    padding: 1.4rem 1.1rem;
}

.step-n {
    font-family: var(--serif);
    font-size: 0.7rem;
    color: var(--copper);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.step h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--fg);
    margin: 0 0 0.35rem;
}

.step p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Features grid */

.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.feat {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.feat-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--copper);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feat span {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Separator */

.sep {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

.sep-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.sep-icon {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sep-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--copper);
}

/* Channel pills row */
.channels-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.channel-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}

.channel-pill .pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pill-dot.email { background: var(--copper); }
.pill-dot.sms   { background: #5ba3f5; }
.pill-dot.wa    { background: #25d366; }

/* Contact card */

.contact-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 1.25rem;
}

.contact-card p {
    color: var(--muted);
    margin: 0 0 0.5rem;
    font-size: 0.93rem;
}

.contact-card a {
    font-size: 1.05rem;
    font-family: var(--serif);
    font-weight: 300;
}

/* Footer */

.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0 2.5rem;
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-inner p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--fg);
    text-decoration: none;
}

/* Privacy / Terms prose */

.prose h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    margin: 2rem 0 0.5rem;
    color: var(--fg);
}

.prose h3 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 300;
    margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
    color: #cbc8c0;
    line-height: 1.8;
    font-size: 0.95rem;
}

.prose strong {
    color: var(--fg);
    font-weight: 600;
    font-size: 1rem;
}

.prose ul {
    color: #cbc8c0;
    margin: 0.5rem 0 0;
}

/* Page hero (non-home) */

.page-hero {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.15;
    margin: 0.75rem 0 1rem;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--copper);
}

.page-hero p {
    color: var(--muted);
    max-width: 480px;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */

@media (max-width: 680px) {
    .hero h1 { font-size: 2.4rem; }
    .page-hero h1 { font-size: 2rem; }
    .steps { grid-template-columns: 1fr 1fr; }
    .values { grid-template-columns: 1fr; }
    .feat-grid { grid-template-columns: 1fr; }
    .project-card { flex-direction: column; align-items: flex-start; }
    .nav-links { gap: 1rem; }
}

@media (max-width: 440px) {
    .wrap { padding: 0 1.25rem; }
    .hero h1 { font-size: 2rem; }
    .steps { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
}