/* Ressup Open — Community & Open Format */

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

:root {
    --bg:           #faf8f5;
    --bg-alt:       #ffffff;
    --bg-warm:      #f4f0ea;
    --border:       #e6e1d8;
    --text:         #1c1917;
    --text-muted:   #6b6459;
    --text-light:   #a89f94;
    --accent:       #5a7a3a;   /* olive herb green */
    --accent-light: #f1f5ec;
    --accent-hover: #496130;
    --green:        #3d7a56;   /* secondary — schema/format */
    --green-light:  #eef6f1;
    --font:         'Lora', Georgia, 'Times New Roman', serif;
    --sans:         'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --mono:         'JetBrains Mono', 'Fira Mono', 'Courier New', monospace;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
}

/* ── Typography ──────────────────────────────── */

h1 {
    font-family: var(--font);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

h2 {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: var(--sans);
}

h3 {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.75;
}

/* ── Layout ──────────────────────────────────── */

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Header ──────────────────────────────────── */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-name {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.01em;
}

.logo-open {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid rgba(194, 105, 42, 0.18);
    padding: 0.2em 0.55em;
    border-radius: 3px;
}

.header-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.header-link:hover {
    color: var(--text);
    opacity: 1;
}

/* ── Hero ────────────────────────────────────── */

.hero {
    padding: 9rem 2rem 8rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 1.75rem;
    max-width: 680px;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.85;
    font-weight: 300;
}

/* ── Sections ────────────────────────────────── */

section {
    padding: 6rem 2rem;
    border-bottom: 1px solid var(--border);
}

section:last-of-type {
    border-bottom: none;
}

.section-inner {
    max-width: 860px;
    margin: 0 auto;
}

.rule {
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    opacity: 0.45;
}

.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.9;
}

/* ── Format block ────────────────────────────── */

.format-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    background: var(--green-light);
    border: 1px solid rgba(61, 122, 86, 0.2);
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.format-note-icon {
    font-size: 0.9rem;
}

/* ── Publisher block ─────────────────────────── */

.publisher-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 2.5rem 3rem;
    margin-top: 0.5rem;
    max-width: 600px;
    position: relative;
    overflow: hidden;
}

.publisher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
        background: linear-gradient(90deg, var(--accent), #7fa852);
}

.publisher-card h3 {
    margin-bottom: 1rem;
}

.publisher-card p {
    font-size: 0.975rem;
}

.coming-soon-badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-light);
    border: 1px solid rgba(194, 105, 42, 0.18);
    padding: 0.3em 0.65em;
    border-radius: 3px;
    margin-bottom: 1.25rem;
    display: block;
    width: fit-content;
}

/* ── Bloggers section ────────────────────────── */

.blogger-section {
    background: var(--bg-warm);
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 0.35em 0.75em;
    border-radius: 4px;
    margin-bottom: 1.75rem;
}

/* ── Email capture ───────────────────────────── */

.interest-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
    max-width: 480px;
    flex-wrap: wrap;
}

.interest-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.8rem 1.1rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.interest-form input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 105, 42, 0.1);
}

.interest-form input[type="email"]::placeholder {
    color: var(--text-light);
}

.interest-form button {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.interest-form button:hover {
    background: var(--accent-hover);
}

.form-note {
    display: block;
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: var(--text-light);
    font-family: var(--sans);
}

/* ── Footer ──────────────────────────────────── */

footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
}

.footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
    opacity: 1;
}

.footer-copy {
    font-size: 0.72rem;
    color: var(--text-light);
    font-family: var(--sans);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 640px) {
    .hero { padding: 7.5rem 1.5rem 5rem; }
    section { padding: 4.5rem 1.5rem; }
    .publisher-card { padding: 2rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}
