:root {
    --ink: #10261b;
    --leaf: #0f7a4a;
    --leaf-2: #1fa86a;
    --sand: #f4efe6;
    --paper: #fbfaf6;
    --line: rgba(16, 38, 27, .12);
    --muted: #5c6f64;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body.rec-portal {
    font-family: 'Source Sans 3', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    min-height: 100vh;
}

.rec-wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.rec-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 0;
}
.rec-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.02em;
}
.rec-brand svg { width: 36px; height: 36px; }
.rec-nav a.rec-btn { text-decoration: none; }

.rec-hero {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.5rem 0 3.5rem;
}
.rec-hero h1 {
    font-family: Fraunces, Georgia, serif;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.12;
    margin: .4rem 0 1rem;
    font-weight: 700;
}
.rec-eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    font-weight: 700;
    color: var(--leaf);
}
.rec-lead { font-size: 1.12rem; color: var(--muted); max-width: 38rem; }
.rec-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.rec-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--leaf);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: .7rem 1.2rem;
    font-weight: 700;
    cursor: pointer;
}
.rec-btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.rec-machine {
    background: linear-gradient(160deg, #163524 0%, #0f7a4a 58%, #c6e86a 140%);
    border-radius: 1.5rem;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(16, 38, 27, .18);
}
.rec-machine::before {
    content: '';
    position: absolute;
    inset: 18% 22% 22% 22%;
    border: 3px solid rgba(255,255,255,.35);
    border-radius: 1rem 1rem .4rem .4rem;
}
.rec-machine::after {
    content: '';
    position: absolute;
    left: 32%;
    right: 32%;
    top: 38%;
    height: 14px;
    background: rgba(255,255,255,.85);
    border-radius: 8px;
}
.rec-slot {
    position: absolute;
    left: 28%;
    right: 28%;
    bottom: 18%;
    height: 42px;
    border-radius: 8px;
    background: rgba(16, 38, 27, .35);
}

.rec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-bottom: 3.5rem;
}
.rec-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.25rem 1.3rem;
}
.rec-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.rec-card p { margin: 0; color: var(--muted); font-size: .95rem; }

.rec-strip {
    background: var(--sand);
    border-top: 1px solid var(--line);
    padding: 2.2rem 0;
}
.rec-strip ol { margin: .6rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.rec-foot { padding: 1.5rem 0 2rem; color: var(--muted); font-size: .85rem; }

@media (max-width: 860px) {
    .rec-hero, .rec-grid { grid-template-columns: 1fr; }
    .rec-machine { min-height: 220px; }
}
