
:root{
  --red:#e9003f;
  --green:#7caf00;
  --ink:#171717;
  --muted:#686868;
  --line:#e8e8e8;
  --soft:#f7f7f5;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,calc(100% - 40px));margin:auto}
.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;font-weight:800;font-size:1.15rem}
.brand img{width:48px;height:48px;object-fit:cover;border-radius:12px}
nav{display:flex;gap:22px;align-items:center}
nav a{text-decoration:none;color:#454545;font-weight:600;font-size:.95rem}
nav a:hover{color:var(--red)}
.hero{
  min-height:680px;display:grid;align-items:center;
  background:
    radial-gradient(circle at 12% 20%, rgba(233,0,63,.08), transparent 28%),
    radial-gradient(circle at 84% 30%, rgba(124,175,0,.10), transparent 30%);
}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;align-items:center;gap:70px;padding:80px 0}
.eyebrow{
  display:inline-flex;padding:7px 12px;border-radius:999px;background:#f1f5e8;
  color:#4d6f00;font-weight:800;font-size:.78rem;letter-spacing:.06em;text-transform:uppercase
}
h1,h2,h3{line-height:1.13;margin-top:0}
h1{font-size:clamp(3rem,7vw,6.2rem);letter-spacing:-.055em;margin:20px 0 24px}
h2{font-size:clamp(2rem,4vw,3.1rem);letter-spacing:-.035em}
h3{font-size:1.15rem}
.lead{font-size:1.16rem;color:var(--muted);max-width:660px}
.actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:32px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 20px;border-radius:12px;text-decoration:none;font-weight:800;
  border:1px solid var(--ink)
}
.btn-primary{background:var(--ink);color:white}
.btn-secondary{background:white}
.logo-card{
  max-width:470px;margin-left:auto;background:white;border:1px solid var(--line);
  border-radius:30px;padding:28px;box-shadow:0 24px 70px rgba(0,0,0,.08)
}
.logo-card img{border-radius:20px}
.section{padding:92px 0}
.section-soft{background:var(--soft)}
.section-head{max-width:720px;margin-bottom:42px}
.section-head p{color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{
  border:1px solid var(--line);border-radius:20px;padding:28px;background:white
}
.card p{color:var(--muted);margin-bottom:0}
.pill{font-size:.8rem;font-weight:800;color:var(--red)}
.notice{
  border-left:4px solid var(--green);background:#f5f8ee;padding:20px 22px;border-radius:0 14px 14px 0
}
.page-hero{padding:84px 0 48px;border-bottom:1px solid var(--line)}
.page-hero h1{font-size:clamp(2.6rem,5vw,4.7rem);max-width:820px}
.legal{max-width:820px;padding:60px 0 100px}
.legal h2{font-size:1.65rem;margin-top:46px;margin-bottom:14px}
.legal h3{margin-top:28px}
.legal p,.legal li{color:#444}
.legal ul{padding-left:22px}
.meta{color:var(--muted);font-size:.94rem}
footer{border-top:1px solid var(--line);padding:34px 0;color:#666}
.footer-inner{display:flex;justify-content:space-between;gap:30px;align-items:center}
.footer-links{display:flex;gap:18px;flex-wrap:wrap}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:var(--red)}
@media(max-width:800px){
  .hero-grid{grid-template-columns:1fr;gap:40px}
  .logo-card{margin:0;max-width:390px}
  .cards{grid-template-columns:1fr}
  .header-inner{min-height:68px}
  nav a:not(.privacy-link){display:none}
  .hero{min-height:auto}
  .section{padding:68px 0}
  .footer-inner{align-items:flex-start;flex-direction:column}
}
