/* AXIOMA EU brand styling (navy/gold/ivory, Playfair + Inter). Self-hosted fonts — GDPR-safe, no third-party CDN. */
@font-face{font-family:'Playfair Display';src:url('fonts/playfair-var.woff2') format('woff2');font-weight:400 900;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('fonts/inter-var.woff2') format('woff2');font-weight:100 900;font-style:normal;font-display:swap}
:root{
  --navy:#0a0f1e; --navy-2:#101a30; --gold:#c8a45c; --gold-2:#a98a4e;
  --ivory:#f1f0ec; --ink:#1a2233; --muted:#5a6070; --line:#e3e2dc; --line-dark:#26345a;
  --maxw:1120px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Arial,sans-serif;
  color:var(--ink);background:var(--ivory);line-height:1.6;-webkit-font-smoothing:antialiased}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
h1,h2,h3{font-family:'Playfair Display',Georgia,serif;line-height:1.15;color:var(--navy)}
a{color:inherit;text-decoration:none}
.gold{color:var(--gold)}

/* header */
.site-header{position:sticky;top:0;z-index:20;background:rgba(241,240,236,.85);
  backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:68px}
.wordmark{font-family:'Playfair Display',serif;font-weight:700;font-size:1.5rem;
  letter-spacing:.04em;color:var(--navy)}
.wordmark .dot{color:var(--gold)}
.wordmark.small{font-size:1.25rem}
.brand{display:inline-flex;align-items:center;gap:9px}
.brand .mark{width:28px;height:28px;display:block;flex:none}
.site-footer .brand{margin-bottom:4px}
.site-footer .brand .mark{width:24px;height:24px}
.nav-links{display:flex;align-items:center;gap:28px;font-weight:500;font-size:.95rem}
.nav-links a:hover{color:var(--gold-2)}

/* buttons */
.btn{display:inline-block;border-radius:8px;padding:13px 24px;font-weight:600;font-size:.95rem;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;border:1px solid transparent}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--gold);color:var(--navy);box-shadow:0 6px 20px rgba(200,164,92,.35)}
.btn-primary:hover{background:#d8b56e}
.btn-lg{padding:16px 34px;font-size:1.05rem}
.btn-ghost{border-color:var(--line-dark);color:var(--navy);padding:9px 18px}
.btn-ghost:hover{background:var(--navy);color:var(--ivory)}
.btn-ghost-light{border-color:rgba(241,240,236,.4);color:var(--ivory)}
.btn-ghost-light:hover{background:rgba(241,240,236,.1)}

/* hero */
.hero{background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%);color:var(--ivory);
  position:relative;overflow:hidden;border-bottom:3px solid var(--gold)}
.hero::after{content:"";position:absolute;right:-120px;top:-120px;width:420px;height:420px;
  border-radius:50%;background:radial-gradient(circle,rgba(200,164,92,.18),transparent 70%)}
.hero-inner{padding:96px 24px 104px;position:relative;z-index:1;max-width:880px}
.eyebrow{font-size:.8rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:20px}
.hero h1{font-size:clamp(2.2rem,5vw,3.6rem);color:var(--ivory);font-weight:700}
.lead{margin:22px 0 32px;font-size:1.15rem;color:#cfd3df;max-width:640px}
.cta-row{display:flex;gap:14px;flex-wrap:wrap}
.hero-note{margin-top:28px;font-size:.82rem;letter-spacing:.04em;color:#8a90a6}

/* sections */
.section{padding:84px 0}
.section-alt{background:#fff}
.section-eyebrow{font-size:.78rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold-2);font-weight:600}
.section-title{font-size:clamp(1.7rem,3.4vw,2.5rem);margin:10px 0 40px;max-width:760px}

/* grids / cards */
.grid{display:grid;gap:22px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.card{background:var(--ivory);border:1px solid var(--line);border-top:3px solid var(--gold);
  border-radius:12px;padding:28px}
.section-alt .card{background:var(--ivory)}
.card h3{font-size:1.25rem;margin-bottom:10px}
.card p{color:var(--muted);font-size:.98rem}
.feature .feature-num{font-family:'Playfair Display',serif;font-size:1.6rem;color:var(--gold);font-weight:700}
.feature h3{font-size:1.2rem;margin:6px 0 8px}
.feature p{color:var(--muted)}

/* steps */
.steps{list-style:none;display:grid;gap:22px;max-width:760px}
.steps li{display:flex;gap:20px;align-items:flex-start}
.step-n{flex:0 0 auto;width:44px;height:44px;border-radius:50%;background:var(--navy);color:var(--gold);
  font-family:'Playfair Display',serif;font-weight:700;font-size:1.2rem;display:grid;place-items:center}
.steps h3{font-size:1.2rem;margin-bottom:4px}
.steps p{color:var(--muted)}

/* cta */
.section-cta{background:linear-gradient(160deg,var(--navy) 0%,var(--navy-2) 100%);color:var(--ivory);text-align:center}
.cta-box h2{color:var(--ivory);font-size:clamp(1.7rem,3.4vw,2.4rem)}
.cta-box p{color:#cfd3df;margin:14px 0 26px}
.cta-fineprint{font-size:.8rem;color:#8a90a6;margin-top:18px}

/* footer */
.site-footer{background:#070b16;color:#b9bdca;padding:48px 0}
.site-footer .wordmark{color:var(--ivory)}
.footer-inner{display:flex;justify-content:space-between;gap:24px;flex-wrap:wrap}
.footer-tag{font-size:.9rem;color:#8a90a6;margin-top:6px}
.footer-meta{text-align:right;font-size:.85rem}
.footer-meta .placeholder{color:#5a6070;font-size:.78rem;margin-top:6px}

@media(max-width:820px){
  .grid-3{grid-template-columns:1fr}
  .nav-links a:not(.btn){display:none}
  .footer-inner{flex-direction:column}.footer-meta{text-align:left}
}

/* ── legal pages ── */
.legal{padding:56px 0 72px}
.legal .container{max-width:780px}
.legal h1{font-size:2.2rem;margin-bottom:18px}
.legal h2{font-size:1.4rem;margin:34px 0 12px;color:var(--navy)}
.legal h3{font-size:1.1rem;margin:22px 0 8px}
.legal p,.legal li{color:var(--ink);margin-bottom:12px;line-height:1.7}
.legal .lead{font-size:1.1rem;color:var(--muted)}
.legal ul{padding-left:22px;margin-bottom:14px}
.legal a{color:var(--gold-2);text-decoration:underline;text-underline-offset:2px}
.legal table{width:100%;border-collapse:collapse;margin:16px 0;font-size:.95rem}
.legal th,.legal td{border:1px solid var(--line);padding:9px 12px;text-align:left;vertical-align:top}
.legal th{background:var(--navy);color:var(--ivory);font-weight:600}
.legal em{color:var(--muted)}
/* footer legal nav */
.footer-legal{display:flex;flex-wrap:wrap;gap:14px;margin-top:14px}
.footer-legal a{color:#9aa0b4;font-size:.85rem}
.footer-legal a:hover{color:var(--gold)}

/* section icons */
.card-icon{display:inline-flex;width:40px;height:40px;margin-bottom:12px}
.card-icon svg{width:40px;height:40px}
.feature{display:flex;flex-direction:column}
.feature .feature-num{margin-bottom:2px}
.feature .card-icon{width:34px;height:34px;margin:6px 0 4px}

/* scan section */
.section-scan{background:linear-gradient(160deg,var(--navy),var(--navy-2));color:var(--ivory);text-align:center}
.section-scan .section-eyebrow{color:var(--gold)}
.section-scan .section-title{color:var(--ivory);margin:10px auto 18px;max-width:760px}
.scan-lead{color:#cfd3df;max-width:680px;margin:0 auto 28px;font-size:1.05rem}
.scan-form{display:flex;gap:12px;max-width:620px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.scan-form input[type=url]{flex:1;min-width:280px;padding:15px 18px;border-radius:8px;border:1px solid var(--line-dark);
  background:rgba(255,255,255,.06);color:var(--ivory);font-size:1rem}
.scan-form input[type=url]::placeholder{color:#8a90a6}
.scan-form input[type=url]:focus{outline:2px solid var(--gold);border-color:var(--gold)}
.scan-note{margin-top:18px;font-size:.82rem;color:#8a90a6}

/* hero decorative mark */
.hero-mark{position:absolute;right:-40px;top:50%;transform:translateY(-50%);
  width:min(46vw,520px);height:min(46vw,520px);opacity:.06;z-index:0;pointer-events:none}
@media(max-width:820px){.hero-mark{right:-90px;width:380px;height:380px;opacity:.05}}
