/* Seonis — public site.
 *
 * Layered on top of seonis.css and reusing its tokens, so the marketing site
 * and the product cannot drift apart. A shopfront that looks like a different
 * company from the app is a small dishonesty a buyer notices on day one.
 *
 * The restraint is the same: white ground, hairline rules, near-black actions,
 * amber spent once or twice a screen. What changes is scale — larger type, more
 * air, and a hero that shows the product rather than describing it.
 */

body.public { background: var(--surface); }

/* ══════════════════════════════════════════════════════════ chrome ══ */

.site-head {
    position: sticky; top: 0; z-index: 50;
    background: rgb(255 255 255 / 0.8);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
}
:root[data-theme="dark"] .site-head { background: rgb(20 23 28 / 0.8); }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .site-head { background: rgb(20 23 28 / 0.8); } }

.site-head-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
    height: 62px; display: flex; align-items: center; gap: 28px;
}
.site-nav { display: flex; gap: 22px; font-size: 13.5px; font-weight: 500; }
.site-nav a { color: var(--muted); transition: color var(--fast); }
.site-nav a:hover { color: var(--ink); }
.site-head-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.lang-form .select.sm { padding: 5px 28px 5px 9px; font-size: 12.5px; width: auto; background-position: right 8px center; }

.section { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding-top: 88px; padding-bottom: 88px; }
.section-head { max-width: 62ch; margin-bottom: 40px; }
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; margin-bottom: 14px;
    border: 1px solid var(--line-2); border-radius: var(--r-full);
    background: var(--surface-2);
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted);
}
.section h2 { font-size: 34px; letter-spacing: -0.03em; line-height: 1.15; }
.section h3 { font-size: 17px; letter-spacing: -0.015em; }
.section-lead { margin-top: 14px; font-size: 16px; line-height: 1.65; color: var(--muted); }

.band { background: var(--ground); border-block: 1px solid var(--line); }

/* ════════════════════════════════════════════════════════════ hero ══ */

.hero { padding: 76px 0 64px; text-align: center; position: relative; overflow: hidden; }
/* One soft wash behind the headline. A gradient hero is the cliché; a barely
   visible one that you notice only by its absence is not. */
.hero::before {
    content: ""; position: absolute; inset: -40% 20% auto; height: 460px;
    background: radial-gradient(ellipse at center, rgb(180 105 14 / 0.07), transparent 68%);
    pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.hero h1 {
    font-size: clamp(34px, 5.2vw, 56px);
    line-height: 1.06; letter-spacing: -0.035em; font-weight: 660;
    margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--brand); }
.hero-lead { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--muted); max-width: 60ch; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 16px; font-size: 12.5px; color: var(--faint); }

.hero-markets { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.market-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 11px; border: 1px solid var(--line-2); border-radius: var(--r-full);
    background: var(--surface); font-size: 12.5px; font-weight: 550;
}

/* The product shot. Shows the real interface rather than an illustration —
   an SEO tool selling itself with a stock graphic is telling on itself. */
.hero-shot {
    max-width: 1020px; margin: 52px auto 0; padding: 0 24px;
    position: relative;
}
.hero-shot-frame {
    border: 1px solid var(--line-2); border-radius: var(--r-xl);
    background: var(--surface); box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.hero-shot-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px; border-bottom: 1px solid var(--line);
    background: var(--surface-2);
}
.hero-shot-dot { width: 9px; height: 9px; border-radius: var(--r-full); background: var(--line-strong); }
.hero-shot-url {
    margin-left: 10px; padding: 3px 10px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-full);
    font-size: 11.5px; color: var(--faint); font-family: var(--mono);
}
.hero-shot-body { padding: 18px; display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }

/* ═══════════════════════════════════════════════════════════ pillars ══ */

.pillars { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.pillar {
    padding: 26px; border: 1px solid var(--line); border-radius: var(--r-lg);
    background: var(--surface);
    transition: border-color var(--fast), box-shadow var(--fast), transform var(--fast);
}
.pillar:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-num {
    width: 30px; height: 30px; margin-bottom: 16px;
    display: grid; place-items: center;
    border-radius: var(--r-sm);
    background: var(--action); color: var(--on-action);
}
.pillar h3 { margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.pillar-list { margin: 14px 0 0; padding: 0; list-style: none; }
.pillar-list li {
    display: flex; gap: 8px; align-items: flex-start;
    padding: 5px 0; font-size: 13px; color: var(--ink-2);
}
.pillar-list .icon { color: var(--ok); margin-top: 2px; }

/* ══════════════════════════════════════════════════════════════ steps ══ */

.steps { display: grid; gap: 0; grid-template-columns: repeat(4, 1fr); }
.step-card { padding: 24px 20px; border-left: 1px solid var(--line); }
.step-card:first-child { border-left: 0; padding-left: 0; }
.step-n {
    font-family: var(--mono); font-size: 11.5px; font-weight: 500;
    color: var(--brand); margin-bottom: 10px; display: block;
}
.step-card h3 { font-size: 15px; margin-bottom: 6px; }
.step-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ═════════════════════════════════════════════════════════ comparison ══ */

.compare { width: 100%; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); }
.compare th { background: var(--surface-2); position: static; }
.compare th:first-child { width: 42%; }
.compare td, .compare th { padding: 13px 18px; }
.compare .yes { color: var(--ok); }
.compare .no { color: var(--disabled); }
.compare tbody tr:hover td { background: var(--surface-2); }
.compare-us { background: var(--brand-soft) !important; font-weight: 600; }

/* ═════════════════════════════════════════════════════════════ pricing ══ */

.plans { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); align-items: start; }
.plan {
    padding: 26px; border: 1px solid var(--line); border-radius: var(--r-lg);
    background: var(--surface); display: flex; flex-direction: column; height: 100%;
}
.plan.featured { border-color: var(--action); box-shadow: var(--shadow); position: relative; }
.plan-flag {
    position: absolute; top: -11px; left: 26px;
    padding: 3px 10px; border-radius: var(--r-full);
    background: var(--action); color: var(--on-action);
    font-size: 11px; font-weight: 600;
}
.plan-name { font-size: 15px; font-weight: 600; }
.plan-for { font-size: 13px; color: var(--muted); margin-top: 3px; min-height: 38px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.plan-amount { font-size: 38px; font-weight: 660; letter-spacing: -0.035em; }
.plan-period { font-size: 13px; color: var(--faint); }
.plan-vat { font-size: 12px; color: var(--faint); margin-bottom: 20px; }
.plan-list { list-style: none; margin: 0 0 22px; padding: 0; flex: 1; }
.plan-list li { display: flex; gap: 9px; align-items: flex-start; padding: 6px 0; font-size: 13.5px; }
.plan-list .icon { color: var(--ok); margin-top: 2px; flex: none; }
.plan-list li.off { color: var(--disabled); }
.plan-list li.off .icon { color: var(--disabled); }

/* ═════════════════════════════════════════════════════════════ faq ══ */

.faq { max-width: 760px; }
.faq details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.faq summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: center; gap: 12px;
    font-size: 15px; font-weight: 550;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; margin-left: auto; width: 9px; height: 9px; flex: none;
    border-right: 1.5px solid var(--faint); border-bottom: 1.5px solid var(--faint);
    transform: rotate(45deg); transition: transform var(--fast);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { margin-top: 12px; color: var(--muted); line-height: 1.7; max-width: 66ch; }

/* ═════════════════════════════════════════════════════════════ cta ══ */

.cta-band {
    background: var(--action); color: var(--on-action);
    border-radius: var(--r-xl); padding: 52px 40px; text-align: center;
}
.cta-band h2 { font-size: 30px; letter-spacing: -0.03em; margin-bottom: 12px; }
.cta-band p { color: rgb(255 255 255 / 0.68); max-width: 52ch; margin: 0 auto 26px; font-size: 15px; }
:root[data-theme="dark"] .cta-band p { color: rgb(15 17 21 / 0.7); }
.cta-band .btn { background: var(--surface); color: var(--ink); border-color: var(--surface); }
.cta-band .btn:hover { background: var(--surface-sunk); border-color: var(--surface-sunk); }

/* ══════════════════════════════════════════════════════════════ foot ══ */

.site-foot { border-top: 1px solid var(--line); background: var(--ground); margin-top: 88px; }
.site-foot-inner {
    max-width: 1180px; margin: 0 auto; padding: 52px 24px 34px;
    display: grid; gap: 34px; grid-template-columns: 2fr 1fr 1fr 1fr;
}
.site-foot-brand p { margin-top: 12px; font-size: 13px; color: var(--muted); max-width: 34ch; }
.site-foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--faint); margin-bottom: 12px; }
.site-foot-col a, .site-foot-col span { display: block; padding: 4px 0; font-size: 13.5px; color: var(--muted); }
.site-foot-col a:hover { color: var(--ink); }
.site-foot-legal {
    max-width: 1180px; margin: 0 auto; padding: 18px 24px 34px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 12.5px; color: var(--faint);
}

/* ═══════════════════════════════════════════════════════ responsive ══ */

@media (max-width: 980px) {
    .pillars, .plans { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .step-card { border-left: 0; padding-left: 0; }
    .site-foot-inner { grid-template-columns: repeat(2, 1fr); }
    .hero-shot-body { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .site-nav { display: none; }
    .section-pad { padding-top: 56px; padding-bottom: 56px; }
    .section h2 { font-size: 27px; }
    .steps { grid-template-columns: 1fr; }
    .cta-band { padding: 38px 24px; }
    .compare th:first-child { width: auto; }
}
