:root{
    --olive:#7C9A6D;
    --olive-soft:#F0F5EE;
    --olive-dark:#4F6B45;

    --bg:#FAFBFA;
    --card:#FFFFFF;
    --border:#E3E8E2;

    --text:#1B1B1B;
    --muted:#5F6A61;

    --shadow:0 14px 34px rgba(0,0,0,.08);
}
/* RESET LINKS */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}
/* Buttons-as-links fix */
a.cta-primary,
a.offer-card,
a.brand-card,
a.footer-link {
    color: inherit;
    text-decoration: none;
}


*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:Inter,sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

.top-accent{
    height:6px;
    background:linear-gradient(90deg,var(--olive),var(--olive-dark));
}

/* HERO */
.hero-split{
    padding:90px 24px;
}
.hero-inner{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:48px;
    align-items:center;
}
.hero-copy h1{
    font-size:clamp(2.4rem,5vw,3.2rem);
}
.hero-copy h1 span{
    display:block;
    font-size:.6em;
    color:var(--olive);
}
.hero-copy p{
    margin:22px 0 32px;
    color:var(--muted);
}
.cta-primary{
    background:var(--olive);
    color:#fff;
    padding:14px 36px;
    border-radius:10px;
    font-weight:700;
    box-shadow:var(--shadow);
}
.hero-brand{
    background:var(--card);
    padding:32px;
    border-radius:24px;
    box-shadow:var(--shadow);
    display:flex;
    justify-content:center;
}
.hero-brand img{
    max-width:180px;
    max-height:60px;
}

/* PROMO BAR */
.promo-bar{
    background:var(--olive-soft);
    padding:32px 24px;
}
.promo-inner{
    max-width:900px;
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}
.promo-left strong{
    font-size:2rem;
    color:var(--olive-dark);
}
.promo-right{
    display:flex;
    gap:12px;
}
.mask{
    font-family:'JetBrains Mono',monospace;
    background:#fff;
    padding:12px 22px;
    border-radius:8px;
}
button{
    background:var(--olive);
    color:#fff;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:700;
}

/* ABOUT */
.brand{
    padding:90px 24px;
}
.brand-inner.narrow{
    max-width:760px;
    margin:0 auto;
}
.brand p{margin-bottom:20px}
.brand-callout{
    background:var(--olive-soft);
    padding:24px;
    border-left:4px solid var(--olive);
}

/* OFFERS */
.offers{
    padding:90px 24px;
}
.offers h2{text-align:center;margin-bottom:40px}
.offers-grid{
    max-width:1100px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.offer-card{
    background:var(--card);
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px;
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.offer-card img{
    background:#fff;
    padding:10px;
    border-radius:10px;
    max-width:120px;
    max-height:60px;
}
.offer-card strong{
    color:var(--olive);
    font-family:'JetBrains Mono',monospace;
}

/* FOOTER */
.footer{
    padding:40px 24px;
    text-align:center;
    border-top:1px solid var(--border);
    color:var(--muted);
}

/* TOAST */
.toast{
    position:fixed;
    bottom:28px;
    left:50%;
    transform:translateX(-50%) translateY(80px);
    background:var(--olive);
    color:#fff;
    padding:10px 22px;
    border-radius:8px;
    opacity:0;
    transition:.3s;
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0)}

@media(max-width:768px){
    .hero-inner{grid-template-columns:1fr}
    .promo-inner{flex-direction:column}
    .offers-grid{grid-template-columns:repeat(2,1fr)}
}
