
:root {
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --surface-2: #eef8f1;
  --ink: #19352a;
  --muted: #68796f;
  --accent: #1f5a45;
  --accent-soft: #cfead8;
  --border: #e5ddd0;
  --shadow: 0 20px 60px rgba(35, 74, 57, 0.10);
}

* { 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:
    radial-gradient(circle at 8% 5%, rgba(227, 188, 221, .24), transparent 24rem),
    radial-gradient(circle at 95% 12%, rgba(183, 226, 200, .30), transparent 25rem),
    var(--bg);
  line-height: 1.7;
}

a { color: var(--accent); text-underline-offset: 3px; }
.container { width: min(940px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background: linear-gradient(135deg, #173e31 0%, #245d49 56%, #34725a 100%);
  color: white;
}
.hero__content { position: relative; z-index: 2; }
.hero__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(15px);
  opacity: .28;
}
.hero__glow--one { background: #f2a9cf; top: -220px; right: 5%; }
.hero__glow--two { background: #d8efb8; bottom: -280px; left: -80px; }

.eyebrow {
  margin: 28px 0 4px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .83rem;
  color: #d7f1e2;
}
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.hero__lead {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.16rem;
  color: rgba(255,255,255,.82);
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  font-size: .92rem;
  color: rgba(255,255,255,.72);
}

.content { padding: 42px 0 70px; }
.notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin: 0 0 24px;
  padding: 24px;
  border: 1px solid #cce4d4;
  border-radius: 24px;
  background: var(--surface-2);
}
.notice__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 900;
}
.notice h2, .notice p { margin: 0; }
.notice p { color: var(--muted); margin-top: 4px; }

.toc {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.toc a {
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  font-weight: 700;
  font-size: .9rem;
}
.toc a:hover { background: white; border-color: #c5d8cc; }

.policy-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(222, 213, 198, .9);
  border-radius: 32px;
  background: rgba(255,253,248,.94);
  box-shadow: var(--shadow);
}
.policy-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.policy-card h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.2;
}
.policy-card p { margin: 10px 0; color: #34483f; }
.policy-card ul { padding-left: 22px; color: #34483f; }
.policy-card li + li { margin-top: 6px; }

.contact-box {
  padding: 20px;
  border-radius: 18px;
  background: #f2f7f3;
  border: 1px solid #d9e7dd;
}
.legal-note {
  margin: 22px 4px 0;
  color: var(--muted);
  font-size: .9rem;
}

footer {
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.5);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 640px) {
  .hero { padding: 58px 0 52px; }
  .meta-row { flex-direction: column; gap: 4px; }
  .notice { padding: 19px; }
  .footer__inner { flex-direction: column; }
}


.brand-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 7px;
  border-radius: 24px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 19px;
}
.app-identity {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
}
.app-identity img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
