:root {
  --bg: #f6f8f7;
  --surface: #ffffffcc;
  --text: #122119;
  --muted: #4a5f52;
  --line: #c9d9ce;
  --brand: #0f8a5f;
  --brand-dark: #0a5d40;
  --accent: #ff7a18;
  --max-width: 1060px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -5%, #c8ffe7 0%, transparent 30%),
    radial-gradient(circle at 100% 10%, #ffd7b0 0%, transparent 38%),
    var(--bg);
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  filter: blur(62px);
  opacity: 0.45;
  z-index: 0;
}

.bg-orb-a {
  width: 300px;
  height: 300px;
  background: #7ff3c1;
  top: 12%;
  right: -80px;
}

.bg-orb-b {
  width: 260px;
  height: 260px;
  background: #ffc280;
  bottom: 4%;
  left: -70px;
}

.site-header,
.container,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 18px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 8px 18px #0f8a5f44;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 18px 40px;
}

.hero {
  margin-top: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 44px #1f2e250f;
  animation: rise 0.55s ease-out both;
}

.eyebrow {
  margin: 0;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

h1 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.62;
  margin: 14px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  padding: 11px 15px;
  font-weight: 700;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.btn-ghost {
  color: var(--brand-dark);
  border: 1px solid var(--line);
  background: #ffffffde;
}

.meta {
  margin: 14px 0 0;
  color: #49614f;
  font-size: 0.92rem;
}

code {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  background: #eef5ef;
  border-radius: 7px;
  padding: 2px 7px;
  border: 1px solid #d8e6dc;
}

.grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffffd1;
  padding: 18px;
  animation: rise 0.65s ease-out both;
}

.card:nth-child(2) {
  animation-delay: 0.08s;
}

.card:nth-child(3) {
  animation-delay: 0.16s;
}

.card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.privacy-note {
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid #f3c89f;
  background: linear-gradient(120deg, #fff4e9, #fff7ee);
  padding: 20px;
  animation: rise 0.7s ease-out both;
}

.privacy-note h2 {
  margin: 0;
  font-size: 1.3rem;
}

.privacy-note p {
  margin: 10px 0 0;
  color: #5f462e;
  line-height: 1.58;
}

.privacy-note a {
  display: inline-block;
  margin-top: 12px;
  color: #7a3f0a;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.policy-main {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  backdrop-filter: blur(8px);
  padding: 26px;
  box-shadow: 0 18px 44px #1f2e250f;
  animation: rise 0.55s ease-out both;
}

.policy-main h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.policy-main h2 {
  margin: 26px 0 10px;
  font-size: 1.16rem;
}

.policy-main p,
.policy-main li {
  color: var(--muted);
  line-height: 1.62;
}

.policy-main ul,
.policy-main ol {
  margin: 8px 0 0;
  padding-left: 20px;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px 28px;
  color: #4f6658;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
