:root {
--bg: #F4F5F7;
--bg-elev: #FFFFFF;
--line: #E3E5EA;
--line-soft: #ECEDF1;
--ink: #14161C;
--ink-dim: #565C68;
--ink-faint: #8A909C;
--gold: #B8912A;
--gold-deep: #97730F;
--gold-soft: rgba(184,145,42,0.10);
--white: #FFFFFF;
--red: #C1432B;
--dark: #171A21;
--dark-elev: #20242D;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
margin: 0;
background: var(--bg);
color: var(--ink);
font-family: 'Work Sans', sans-serif;
line-height: 1.55;
}

h1, h2, h3, .display {
font-family: 'Fredoka', sans-serif;
color: var(--ink);
margin: 0;
letter-spacing: -0.01em;
}

a { color: inherit; }

.wrap {
max-width: 1080px;
margin: 0 auto;
padding: 0 24px;
}

/* ---------- Header ---------- */
header {
padding: 20px 0;
position: sticky;
top: 0;
z-index: 100;
background: var(--bg);
}
.header-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}
.wordmark {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
white-space: nowrap;
}
.wordmark-img {
display: block;
height: 44px;
width: auto;
border-radius: 50%;
}
.wordmark-text {
font-family: 'Fredoka', sans-serif;
font-size: 1.3rem;
font-weight: 600;
letter-spacing: 0.06em;
color: var(--ink);
}

.header-nav {
display: flex;
align-items: center;
gap: 28px;
flex-wrap: wrap;
}
.header-nav .nav-link {
font-size: 0.95rem;
font-weight: 500;
text-decoration: none;
color: var(--ink);
opacity: 0.72;
border-bottom: 2px solid var(--gold);
padding-bottom: 2px;
}
.header-nav .nav-link:hover,
.header-nav .nav-link.active { opacity: 1; }
.header-cta {
font-size: 0.95rem;
font-weight: 500;
text-decoration: none;
color: var(--ink);
border-bottom: 2px solid var(--gold);
padding-bottom: 2px;
white-space: nowrap;
}
.header-cta:hover { color: var(--gold-deep); }

/* ---------- Hero ---------- */
.hero {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 48px;
align-items: center;
padding: 56px 0 72px;
}
.pill {
display: inline-block;
background: var(--gold-soft);
border: 1px solid rgba(184,145,42,0.3);
color: var(--gold-deep);
font-size: 0.85rem;
font-weight: 500;
padding: 7px 14px;
border-radius: 999px;
margin-bottom: 20px;
letter-spacing: 0.02em;
}
.kicker {
font-size: 0.9rem;
font-weight: 600;
color: var(--gold-deep);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 6px;
}
.hero h1 {
font-size: clamp(2.3rem, 4.2vw, 3.4rem);
font-weight: 600;
line-height: 1.08;
letter-spacing: -0.02em;
}
.hero p.lede {
margin-top: 18px;
font-size: 1.1rem;
max-width: 46ch;
color: var(--ink-dim);
}

form.waitlist {
margin-top: 30px;
display: flex;
gap: 10px;
max-width: 440px;
flex-wrap: wrap;
}
.field {
flex: 1 1 240px;
display: flex;
flex-direction: column;
}
input[type="email"] {
font-family: 'Work Sans', sans-serif;
font-size: 1rem;
padding: 14px 16px;
border-radius: 10px;
border: 1.5px solid var(--line);
background: var(--bg-elev);
color: var(--ink);
outline-offset: 2px;
}
input[type="email"]:focus-visible {
outline: 2.5px solid var(--gold);
}
input[type="email"]::placeholder { color: var(--ink-faint); }

button.submit {
font-family: 'Work Sans', sans-serif;
font-weight: 600;
font-size: 1rem;
padding: 14px 22px;
border-radius: 10px;
border: none;
background: var(--gold);
color: #211804;
cursor: pointer;
transition: background 0.15s ease, transform 0.1s ease;
white-space: nowrap;
}
button.submit:hover { background: var(--gold-deep); }
button.submit:active { transform: translateY(1px); }
button.submit:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 2px; }
button.submit:disabled { opacity: 0.6; cursor: default; }

.form-note {
margin-top: 12px;
font-size: 0.85rem;
color: var(--ink-faint);
}
.form-note strong { color: var(--ink); }

.form-status {
margin-top: 12px;
font-size: 0.92rem;
font-weight: 500;
min-height: 1.3em;
}
.form-status.ok { color: var(--gold-deep); }
.form-status.err { color: var(--red); }

/* ---------- Product shot ---------- */
.product-wrap {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.price-badge {
position: absolute;
right: 6%;
bottom: 8%;
background: var(--ink);
color: var(--white);
font-family: 'Fredoka', sans-serif;
font-weight: 600;
font-size: 1.15rem;
padding: 10px 18px;
border-radius: 999px;
box-shadow: 0 12px 24px rgba(20, 22, 28, 0.28);
border: 2px solid var(--gold);
}
.product-img {
width: min(80%, 280px);
height: auto;
display: block;
margin: 0 auto;
filter: drop-shadow(0 22px 30px rgba(20, 22, 28, 0.22));
}

/* ---------- How it works ---------- */
.how {
background:
radial-gradient(circle at 12% -10%, rgba(184,145,42,0.20), transparent 52%),
radial-gradient(circle at 100% 120%, rgba(184,145,42,0.10), transparent 45%),
linear-gradient(160deg, #1D2129 0%, #101318 100%);
--ink: #F4F5F7;
--ink-dim: #ABB1BE;
--ink-faint: #7E8492;
--line: rgba(255,255,255,0.12);
--line-soft: rgba(255,255,255,0.08);
--bg-elev: var(--dark-elev);
color: var(--ink);
border-radius: 28px;
padding: 56px 40px;
margin: 24px 0 72px;
}
.how h2 {
color: var(--white);
font-size: 1.9rem;
font-weight: 600;
max-width: 26ch;
}
.steps {
margin-top: 36px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
}
.step {
color: var(--ink-dim);
}
.step .num {
font-family: 'Fredoka', sans-serif;
font-size: 1.6rem;
color: var(--gold);
font-weight: 600;
}
.step h3 {
color: var(--white);
font-size: 1.15rem;
font-weight: 600;
margin-top: 6px;
}
.step p {
margin: 8px 0 0;
font-size: 0.97rem;
color: var(--ink-dim);
}

/* ---------- Details ---------- */
.details {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 48px;
align-items: center;
padding: 24px 0 72px;
}

.details h2 {
font-size: 1.8rem;
font-weight: 600;
}
.details p.intro {
margin-top: 14px;
color: var(--ink-dim);
max-width: 52ch;
}
.spec-list {
margin-top: 26px;
padding: 0;
list-style: none;
display: grid;
gap: 14px;
}
.spec-list li {
display: grid;
grid-template-columns: 22px 1fr;
gap: 12px;
font-size: 0.98rem;
color: var(--ink);
}
.spec-list li::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--gold);
margin-top: 8px;
}
.spec-list strong { color: var(--ink); }

.details-photo-wrap {
display: flex;
justify-content: center;
align-items: center;
}
.details-photo {
width: 100%;
max-width: 340px;
height: auto;
display: block;
border-radius: 20px;
box-shadow: 0 22px 40px rgba(20, 22, 28, 0.18);
}

/* ---------- Future editions ---------- */
.future {
border-top: 1px solid var(--line);
padding: 56px 0;
}
.future-text h2 {
font-size: 1.5rem;
font-weight: 600;
max-width: 30ch;
}
.future-text p {
margin-top: 12px;
color: var(--ink-dim);
max-width: 62ch;
}
.future-tags {
margin: 28px 0 0;
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.future-tags li {
background: var(--bg-elev);
border: 1px solid var(--line);
color: var(--ink);
font-size: 0.88rem;
font-weight: 500;
padding: 9px 16px;
border-radius: 999px;
}

/* ---------- Story ---------- */
.story {
border-top: 1px solid var(--line);
padding: 56px 0;
}
.story h2 {
font-size: 1.5rem;
font-weight: 600;
max-width: 30ch;
}
.story > div { margin-top: 12px; }
.story p {
color: var(--ink-dim);
max-width: 60ch;
}
.story p + p { margin-top: 14px; }

/* ---------- Feedback ---------- */
.feedback {
border-top: 1px solid var(--line);
padding: 56px 0;
max-width: 640px;
}
.feedback h2 {
font-size: 1.5rem;
font-weight: 600;
max-width: 30ch;
}
.feedback p.intro {
margin-top: 12px;
color: var(--ink-dim);
max-width: 56ch;
}
form.feedback-form {
margin-top: 24px;
max-width: 520px;
}
textarea.feedback-text {
width: 100%;
font-family: 'Work Sans', sans-serif;
font-size: 1rem;
padding: 14px 16px;
border-radius: 10px;
border: 1.5px solid var(--line);
background: var(--bg-elev);
color: var(--ink);
outline-offset: 2px;
resize: vertical;
min-height: 180px;
}
textarea.feedback-text:focus-visible { outline: 2.5px solid var(--gold); }
textarea.feedback-text::placeholder { color: var(--ink-faint); }
form.feedback-form button.submit { margin-top: 14px; }

/* ---------- Footer CTA ---------- */
.footer-cta {
background:
radial-gradient(circle at 85% -20%, rgba(184,145,42,0.20), transparent 50%),
radial-gradient(circle at 8% 115%, rgba(184,145,42,0.10), transparent 45%),
linear-gradient(160deg, #1D2129 0%, #101318 100%);
--ink: #F4F5F7;
--ink-dim: #ABB1BE;
--ink-faint: #7E8492;
--line: rgba(255,255,255,0.12);
--line-soft: rgba(255,255,255,0.08);
--bg-elev: var(--dark-elev);
color: var(--ink);
border-radius: 28px;
margin-bottom: 40px;
padding: 56px 40px;
text-align: center;
}
.footer-cta h2 {
color: var(--white);
font-size: 1.8rem;
font-weight: 600;
}
.footer-cta p {
color: var(--ink-dim);
margin-top: 10px;
}
.footer-cta p strong { color: var(--gold); font-weight: 600; }
.footer-cta form.waitlist {
margin: 26px auto 0;
justify-content: center;
}
.footer-cta .form-note { color: var(--ink-faint); }
.waitlist-count {
display: none;
margin-top: 18px;
font-size: 0.88rem;
color: var(--ink-faint);
}
.waitlist-count strong { color: var(--gold); font-weight: 600; }

.footer-cta .btn { margin-top: 26px; }

footer.site-footer {
padding: 0 0 40px;
font-size: 0.85rem;
color: var(--ink-faint);
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 12px;
}
footer.site-footer > span:first-child { justify-self: start; }
footer.site-footer > span:last-child { justify-self: end; text-align: right; }
footer.site-footer a { text-decoration: none; }
footer.site-footer a:hover { color: var(--gold-deep); }
.footer-social-row {
display: inline-flex;
align-items: center;
justify-self: center;
gap: 20px;
}
@media (max-width: 640px) {
footer.site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
footer.site-footer > span:first-child,
footer.site-footer > span:last-child { justify-self: center; text-align: center; }
}
.footer-social {
display: inline-flex;
align-items: center;
color: var(--ink-faint);
}
.footer-social svg { display: block; }
.footer-social:hover { color: var(--gold-deep); }

/* ---------- Buttons (shared) ---------- */
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'Work Sans', sans-serif;
font-weight: 600;
font-size: 0.98rem;
padding: 13px 24px;
border-radius: 10px;
text-decoration: none;
transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
background: var(--gold);
color: #211804;
border: none;
}
.btn-primary:hover { background: var(--gold-deep); }
.btn-secondary {
background: transparent;
color: var(--white);
border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-secondary:hover { border-color: var(--white); }
.btn-outline {
background: var(--bg-elev);
color: var(--ink);
border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

/* ---------- About page: profile hero ---------- */
.profile-hero {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 48px;
align-items: center;
padding: 56px 0 64px;
}
.profile-photo-wrap {
display: flex;
justify-content: center;
align-items: center;
}
.profile-photo {
width: min(100%, 300px);
aspect-ratio: 1 / 1;
border-radius: 50%;
object-fit: cover;
object-position: 50% 18%;
transform: scale(0.82);
display: block;
margin: 0 auto;
background: var(--bg-elev);
border: 6px solid var(--bg-elev);
box-shadow: 0 12px 28px rgba(20, 22, 28, 0.14);
}
.profile-hero .pill { margin-bottom: 20px; }
.profile-hero h1 {
font-size: clamp(2rem, 3.6vw, 2.8rem);
font-weight: 600;
line-height: 1.12;
letter-spacing: -0.02em;
}
.profile-role {
margin-top: 8px;
font-size: 1.05rem;
font-weight: 500;
color: var(--gold-deep);
}
.profile-hero p.lede {
margin-top: 16px;
font-size: 1.05rem;
max-width: 54ch;
color: var(--ink-dim);
}
.profile-actions {
margin-top: 26px;
display: flex;
gap: 14px;
flex-wrap: wrap;
}

/* ---------- About page: sections ---------- */
.about-section {
border-top: 1px solid var(--line);
padding: 48px 0;
}
.about-section h2 {
font-size: 1.6rem;
font-weight: 600;
max-width: 32ch;
}
.about-section p {
color: var(--ink-dim);
max-width: 66ch;
}
.about-section p + p { margin-top: 14px; }
.about-grid {
margin-top: 32px;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.about-card {
background: var(--bg-elev);
border: 1px solid var(--line);
border-radius: 18px;
padding: 26px;
}
.about-card .eyebrow {
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.04em;
text-transform: uppercase;
color: var(--gold-deep);
}
.about-card h3 {
margin-top: 8px;
font-size: 1.1rem;
font-weight: 600;
}
.about-card p {
margin-top: 8px;
font-size: 0.95rem;
color: var(--ink-dim);
}

.timeline {
margin-top: 30px;
display: grid;
gap: 22px;
}
.timeline-item {
display: grid;
grid-template-columns: 160px 1fr;
gap: 18px;
}
.timeline-item .when {
font-weight: 600;
color: var(--gold-deep);
font-size: 0.92rem;
}
.timeline-item .what h3 {
font-size: 1.05rem;
font-weight: 600;
}
.timeline-item .what p {
margin-top: 4px;
font-size: 0.95rem;
color: var(--ink-dim);
}

@media (max-width: 760px) {
.hero { grid-template-columns: 1fr; padding-top: 32px; }
.product-wrap { order: -1; }
.steps { grid-template-columns: 1fr; }
.details { grid-template-columns: 1fr; }
.how, .footer-cta { padding: 40px 24px; }

.profile-hero { grid-template-columns: 1fr; padding-top: 32px; }
.profile-photo-wrap { order: -1; }
.about-grid { grid-template-columns: 1fr; }
.timeline-item { grid-template-columns: 1fr; gap: 4px; }
.header-row { flex-wrap: wrap; }
}
