
:root{
  --bg:#f6f8f7;
  --card:#ffffff;
  --text:#151a18;
  --muted:#68716d;
  --accent:#1f7a59;
  --accent-soft:#eaf6f0;
  --line:#e7ece9;
  --shadow:0 18px 50px rgba(24,49,39,.09);
  --radius:24px;
}
*{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;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.wrap{width:min(100% - 32px, 760px);margin:0 auto}
.topbar{
  position:sticky;top:0;z-index:20;
  background:rgba(246,248,247,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(231,236,233,.9);
}
.topbar .wrap{
  min-height:68px;display:flex;align-items:center;justify-content:space-between;gap:16px
}
.brand{display:flex;align-items:center;gap:11px;text-decoration:none;font-weight:800;letter-spacing:-.02em}
.brandmark{
  width:38px;height:38px;border-radius:13px;background:var(--accent-soft);
  display:grid;place-items:center;font-size:20px
}
.toplink{
  text-decoration:none;font-size:14px;font-weight:700;color:var(--accent);
  border:1px solid #cfe6da;padding:9px 13px;border-radius:999px;background:#fff
}
.hero{padding:36px 0 18px}
.hero-card{
  background:linear-gradient(180deg,#fff 0%,#fbfdfc 100%);
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:28px 22px 24px;
  overflow:hidden;
}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--accent-soft);color:#166143;
  border-radius:999px;padding:8px 12px;font-size:13px;font-weight:800
}
.hero h1{
  margin:18px 0 12px;font-size:clamp(34px,9vw,56px);line-height:1.02;letter-spacing:-.055em
}
.hero p{margin:0;color:var(--muted);font-size:17px;max-width:560px}
.hero-visual{
  margin:26px 0 22px;
  background:#f0f7f3;border:1px solid #dfede6;border-radius:24px;
  min-height:235px;display:grid;place-items:center;position:relative;overflow:hidden
}
.hero-visual:before,.hero-visual:after{
  content:"";position:absolute;border-radius:999px;background:#dff0e7;filter:blur(0)
}
.hero-visual:before{width:160px;height:160px;left:-70px;bottom:-80px}
.hero-visual:after{width:120px;height:120px;right:-45px;top:-48px}
.hero-visual img{width:min(78%,330px);height:auto;position:relative;z-index:2}
.cta{
  display:flex;align-items:center;justify-content:center;gap:9px;
  width:100%;text-decoration:none;background:var(--accent);color:#fff;
  font-weight:850;padding:16px 18px;border-radius:16px;
  box-shadow:0 10px 25px rgba(31,122,89,.18)
}
.micro{font-size:12px;color:#7b8580;text-align:center;margin:11px 4px 0}
.section{padding:20px 0}
.section h2{font-size:28px;line-height:1.15;letter-spacing:-.035em;margin:0 0 9px}
.section .lead{margin:0 0 18px;color:var(--muted)}
.grid{display:grid;grid-template-columns:1fr;gap:12px}
.card{
  background:var(--card);border:1px solid var(--line);border-radius:20px;padding:18px;
}
.icon{
  width:42px;height:42px;border-radius:13px;background:var(--accent-soft);
  display:grid;place-items:center;margin-bottom:12px;font-size:20px
}
.card h3{margin:0 0 6px;font-size:18px}
.card p{margin:0;color:var(--muted);font-size:15px}
.steps{counter-reset:step;display:grid;gap:12px}
.step{
  background:#fff;border:1px solid var(--line);border-radius:20px;padding:17px;
  display:grid;grid-template-columns:44px 1fr;gap:13px;align-items:start
}
.step:before{
  counter-increment:step;content:counter(step);
  width:42px;height:42px;border-radius:14px;background:var(--accent-soft);
  color:#176447;display:grid;place-items:center;font-weight:900
}
.step h3{margin:1px 0 4px;font-size:17px}
.step p{margin:0;color:var(--muted);font-size:14px}
.info{
  background:#152019;color:#fff;border-radius:24px;padding:22px;margin-top:2px
}
.info h2{color:#fff}
.info p{color:#cbd5cf}
.identity{
  display:grid;gap:8px;margin-top:16px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.11);border-radius:16px;padding:15px;font-size:14px
}
.identity strong{color:#fff}
.notice{
  margin-top:14px;padding:13px 14px;border-radius:15px;background:#f7faf8;
  border:1px solid var(--line);font-size:13px;color:#66706b
}
footer{padding:28px 0 38px;color:#69736e;font-size:13px}
.footer-links{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:12px}
.footer-links a{font-weight:750;color:#31473d;text-decoration:none}
.legal{
  min-height:100vh;padding:28px 0 45px
}
.legal-card{
  background:#fff;border:1px solid var(--line);border-radius:26px;padding:24px 20px;box-shadow:var(--shadow)
}
.legal h1{font-size:36px;letter-spacing:-.045em;line-height:1.05;margin:12px 0}
.legal h2{font-size:20px;margin:25px 0 7px}
.legal p,.legal li{color:#515c57}
.legal ul{padding-left:20px}
.back{display:inline-flex;text-decoration:none;color:var(--accent);font-weight:800;margin-bottom:14px}
@media (min-width:700px){
  .hero{padding-top:52px}
  .hero-card{padding:38px}
  .grid{grid-template-columns:repeat(3,1fr)}
}
