:root {
  --prm-ink: #10281d;
  --prm-muted: #64766d;
  --prm-green: #07552d;
  --prm-leaf: #168548;
  --prm-line: #cfe0d5;
  --prm-mint: #e7f5eb;
  --prm-cream: #fff7e4;
  --prm-sky: #e7f3f7;
  --prm-violet: #f0ecf8;
  --prm-white: #fff;
  --prm-shell: 1180px;
  --prm-shadow: 0 24px 70px rgba(20, 68, 39, .1);
  --prm-ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 152px; }
body {
  margin: 0;
  color: var(--prm-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 133, 72, .1), transparent 25rem),
    linear-gradient(180deg, #f8fbf8 0, #f3f8f4 48%, #fffaf0 100%);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.prm-shell { width: min(calc(100% - 40px), var(--prm-shell)); margin-inline: auto; }

.prm-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(168, 197, 177, .55);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}
.prm-site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.prm-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--prm-ink);
  text-decoration: none;
}
.prm-brand img { width: 44px; height: 44px; object-fit: contain; }
.prm-brand__text { display: grid; line-height: 1.2; }
.prm-brand__text strong { font-size: 15px; font-weight: 800; }
.prm-brand__text span { margin-top: 4px; color: var(--prm-muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.prm-header-actions { display: flex; gap: 9px; }
.prm-button {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--prm-line);
  border-radius: 14px;
  color: var(--prm-green);
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--prm-ease), border-color 180ms var(--prm-ease), background 180ms var(--prm-ease), box-shadow 180ms var(--prm-ease);
}
.prm-button svg { width: 19px; height: 19px; }
.prm-button:hover { transform: translateY(-2px); border-color: #9ec8ad; background: #f4fbf6; box-shadow: 0 10px 28px rgba(17, 76, 40, .1); }
.prm-button:active { transform: translateY(0) scale(.98); }
.prm-button:focus-visible, .prm-privacy-nav a:focus-visible, .prm-contact-button:focus-visible { outline: 3px solid rgba(22, 133, 72, .25); outline-offset: 3px; }

.prm-reading-progress { position: fixed; z-index: 110; inset: 0 0 auto; height: 3px; pointer-events: none; }
.prm-reading-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--prm-leaf), #e2b747); transform: scaleX(0); transform-origin: left; will-change: transform; }

.prm-page { padding: 34px 0 72px; }
.prm-privacy-hero {
  position: relative;
  min-height: 330px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 247, 228, .18) 0 72px, transparent 73px),
    radial-gradient(circle at 92% 30%, transparent 0 106px, rgba(255, 255, 255, .08) 107px 133px, transparent 134px),
    linear-gradient(135deg, #073f25 0%, #07552d 55%, #176a3f 100%);
  box-shadow: var(--prm-shadow);
}
.prm-privacy-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, #d8b14b 0 22%, #75c091 22% 72%, #b7dbe7 72%); }
.prm-eyebrow { color: var(--prm-leaf); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.prm-privacy-hero .prm-eyebrow { color: #9fe5b5; }
.prm-privacy-hero h1 { max-width: 760px; margin: 12px 0 18px; font-size: clamp(34px, 5.2vw, 64px); line-height: 1.05; letter-spacing: -.052em; }
.prm-privacy-hero p { max-width: 760px; margin: 0; color: rgba(255, 255, 255, .77); font-size: clamp(14px, 1.5vw, 17px); }
.prm-privacy-hero__meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.prm-privacy-hero__meta span { min-height: 38px; padding: 8px 12px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: 11px; font-weight: 700; }
.prm-privacy-hero__meta svg { width: 17px; height: 17px; }
.prm-privacy-hero__mark { position: relative; display: grid; place-items: center; color: #d8b14b; }
.prm-privacy-hero__mark::before { content: ""; position: absolute; width: 190px; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 18px rgba(255, 255, 255, .035); }
.prm-privacy-hero__mark svg { position: relative; width: 116px; height: 116px; filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .16)); }

.prm-privacy-summary { margin: 18px 0 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.prm-privacy-summary article { min-height: 136px; padding: 20px; display: flex; gap: 15px; border: 1px solid var(--prm-line); border-radius: 20px; background: rgba(255, 255, 255, .9); box-shadow: 0 14px 36px rgba(20, 68, 39, .06); transition: transform 200ms var(--prm-ease), box-shadow 200ms var(--prm-ease), border-color 200ms var(--prm-ease); }
.prm-privacy-summary article:nth-child(2) { background: var(--prm-cream); }
.prm-privacy-summary article:nth-child(3) { background: var(--prm-sky); }
.prm-privacy-summary article:hover { transform: translateY(-4px); border-color: #a8cbb4; box-shadow: 0 22px 46px rgba(20, 68, 39, .1); }
.prm-privacy-summary article > span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: var(--prm-green); background: rgba(22, 133, 72, .1); font-size: 10px; font-weight: 800; }
.prm-privacy-summary strong { display: block; font-size: 14px; }
.prm-privacy-summary p { margin: 6px 0 0; color: var(--prm-muted); font-size: 12px; line-height: 1.65; }

.prm-privacy-nav {
  position: sticky;
  z-index: 80;
  top: 88px;
  margin-bottom: 24px;
  padding: 8px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  border: 1px solid var(--prm-line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 15px 35px rgba(20, 68, 39, .08);
  backdrop-filter: blur(16px);
}
.prm-privacy-nav::-webkit-scrollbar { display: none; }
.prm-privacy-nav a { flex: 0 0 auto; min-height: 38px; padding: 0 14px; display: inline-flex; align-items: center; border-radius: 11px; color: var(--prm-muted); font-size: 11px; font-weight: 800; text-decoration: none; transition: color 180ms var(--prm-ease), background 180ms var(--prm-ease), transform 180ms var(--prm-ease); }
.prm-privacy-nav a:hover { color: var(--prm-green); background: var(--prm-mint); transform: translateY(-1px); }
.prm-privacy-nav a.is-active { color: #fff; background: var(--prm-green); }

.prm-privacy-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; align-items: start; gap: 22px; }
.prm-privacy-document { display: grid; gap: 18px; }
.prm-policy-section { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--prm-line); border-radius: 26px; background: var(--prm-white); box-shadow: 0 16px 44px rgba(20, 68, 39, .06); transition: transform 220ms var(--prm-ease), box-shadow 220ms var(--prm-ease), border-color 220ms var(--prm-ease); }
.prm-policy-section:hover { transform: translateY(-3px); border-color: #a7cbb3; box-shadow: 0 24px 54px rgba(20, 68, 39, .1); }
.prm-policy-section--mint { background: linear-gradient(135deg, #f7fcf8, var(--prm-mint)); }
.prm-policy-section--sky { background: linear-gradient(135deg, #fff, var(--prm-sky)); }
.prm-policy-section--cream { background: linear-gradient(135deg, #fff, var(--prm-cream)); }
.prm-policy-section--violet { background: linear-gradient(135deg, #fff, var(--prm-violet)); }
.prm-policy-section--contact { color: #fff; background: linear-gradient(135deg, #0b4a2b, #15643b); }
.prm-policy-section header { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; }
.prm-policy-section header > span { flex: 0 0 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; color: var(--prm-green); background: rgba(22, 133, 72, .1); font-size: 11px; font-weight: 800; }
.prm-policy-section header small { display: block; margin-bottom: 3px; color: var(--prm-leaf); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.prm-policy-section h2 { margin: 0; font-size: clamp(20px, 3vw, 30px); line-height: 1.22; letter-spacing: -.035em; }
.prm-policy-section > p { margin: 0 0 14px; color: #485d52; font-size: 14px; }
.prm-policy-section > p:last-child { margin-bottom: 0; }
.prm-policy-section--contact header > span { color: #fff; background: rgba(255, 255, 255, .12); }
.prm-policy-section--contact header small { color: #a9e0b9; }
.prm-policy-section--contact > p { color: rgba(255, 255, 255, .76); }
.prm-policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.prm-policy-grid > div { padding: 18px; border: 1px solid rgba(111, 156, 127, .25); border-radius: 17px; background: rgba(255, 255, 255, .65); transition: transform 180ms var(--prm-ease), background 180ms var(--prm-ease); }
.prm-policy-grid > div:hover { transform: translateY(-2px); background: #fff; }
.prm-policy-grid strong { display: block; margin-bottom: 5px; font-size: 13px; }
.prm-policy-grid p { margin: 0; color: var(--prm-muted); font-size: 12px; }
.prm-policy-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; list-style: none; }
.prm-policy-list li { padding: 15px; display: flex; gap: 11px; border-radius: 15px; background: rgba(255, 255, 255, .7); }
.prm-policy-list span { color: var(--prm-leaf); font-size: 10px; font-weight: 800; }
.prm-policy-list p { margin: 0; color: #465b50; font-size: 12px; }
.prm-policy-note { margin-top: 18px; padding: 17px 18px; border-left: 4px solid #d5a936; border-radius: 4px 15px 15px 4px; background: rgba(255, 255, 255, .75); }
.prm-policy-note strong { font-size: 12px; }
.prm-policy-note p { margin: 4px 0 0; color: var(--prm-muted); font-size: 12px; }
.prm-contact-button { width: fit-content; min-height: 46px; margin-top: 20px; padding: 0 17px; display: inline-flex; align-items: center; gap: 14px; border-radius: 14px; color: var(--prm-green); background: #fff; font-size: 12px; font-weight: 800; text-decoration: none; transition: transform 180ms var(--prm-ease), box-shadow 180ms var(--prm-ease); }
.prm-contact-button svg { width: 18px; height: 18px; transition: transform 180ms var(--prm-ease); }
.prm-contact-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .16); }
.prm-contact-button:hover svg { transform: translateX(3px); }

.prm-privacy-reference { position: sticky; top: 158px; }
.prm-privacy-reference__card { padding: 25px; border: 1px solid var(--prm-line); border-radius: 24px; background: #fff; box-shadow: var(--prm-shadow); }
.prm-privacy-reference h2 { margin: 8px 0 8px; font-size: 22px; line-height: 1.24; letter-spacing: -.03em; }
.prm-privacy-reference p { margin: 0 0 18px; color: var(--prm-muted); font-size: 12px; }
.prm-privacy-reference a { padding: 13px 0; display: grid; border-top: 1px solid #e2ece5; text-decoration: none; transition: padding 180ms var(--prm-ease), color 180ms var(--prm-ease); }
.prm-privacy-reference a:hover { padding-left: 7px; color: var(--prm-green); }
.prm-privacy-reference a strong { font-size: 12px; }
.prm-privacy-reference a span { color: var(--prm-muted); font-size: 10px; }

.prm-footer { padding: 26px 0; border-top: 1px solid var(--prm-line); background: #fff; }
.prm-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.prm-footer__brand { display: flex; align-items: center; gap: 12px; }
.prm-footer__brand img { width: 38px; height: 38px; object-fit: contain; }
.prm-footer__brand > span { display: grid; }
.prm-footer__brand strong { font-size: 13px; }
.prm-footer__brand span span { color: var(--prm-muted); font-size: 10px; }
.prm-footer__credit { color: #4f6459; font-size: 11px; text-align: right; }
.prm-footer__credit a { color: var(--prm-green); font-weight: 800; text-decoration: none; }

.prm-motion [data-privacy-reveal] { opacity: 0; transform: translateY(18px); }
.prm-motion [data-privacy-reveal].is-visible { opacity: 1; transform: none; transition: opacity 480ms var(--prm-ease), transform 480ms var(--prm-ease); transition-delay: var(--privacy-delay, 0ms); }

@media (max-width: 900px) {
  .prm-privacy-hero { grid-template-columns: 1fr 130px; min-height: 290px; }
  .prm-privacy-hero__mark::before { width: 130px; }
  .prm-privacy-hero__mark svg { width: 82px; }
  .prm-privacy-layout { grid-template-columns: 1fr; }
  .prm-privacy-reference { position: static; }
  .prm-privacy-reference__card { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .prm-privacy-reference__card > .prm-eyebrow, .prm-privacy-reference__card > h2, .prm-privacy-reference__card > p { grid-column: 1 / -1; }
  .prm-privacy-reference a { border: 1px solid var(--prm-line); border-radius: 14px; padding: 14px; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 126px; }
  body { font-size: 14px; }
  .prm-shell { width: min(calc(100% - 24px), var(--prm-shell)); }
  .prm-site-header__inner { min-height: 68px; gap: 10px; }
  .prm-brand { min-width: 0; gap: 9px; }
  .prm-brand img { width: 37px; height: 37px; }
  .prm-brand__text strong { max-width: 155px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
  .prm-brand__text span { font-size: 9px; }
  .prm-header-actions { gap: 6px; }
  .prm-button { width: 42px; min-height: 42px; padding: 0; border-radius: 13px; }
  .prm-button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
  .prm-page { padding: 16px 0 48px; }
  .prm-privacy-hero { min-height: 0; padding: 25px 22px 27px; display: block; border-radius: 24px; }
  .prm-privacy-hero h1 { margin: 9px 0 12px; font-size: clamp(29px, 10vw, 42px); }
  .prm-privacy-hero p { font-size: 12px; line-height: 1.65; }
  .prm-privacy-hero__meta { margin-top: 18px; gap: 7px; }
  .prm-privacy-hero__meta span { min-height: 34px; padding: 7px 9px; font-size: 9px; }
  .prm-privacy-hero__mark { position: absolute; right: -22px; bottom: -22px; opacity: .22; }
  .prm-privacy-hero__mark::before { width: 120px; }
  .prm-privacy-summary { grid-template-columns: 1fr; gap: 9px; margin: 12px 0 14px; }
  .prm-privacy-summary article { min-height: 0; padding: 15px; border-radius: 17px; }
  .prm-privacy-summary p { font-size: 11px; }
  .prm-privacy-nav { top: 76px; margin-bottom: 14px; padding: 6px; border-radius: 14px; }
  .prm-privacy-nav a { min-height: 34px; padding: 0 11px; font-size: 10px; }
  .prm-privacy-document { gap: 11px; }
  .prm-policy-section { padding: 21px 18px; border-radius: 20px; }
  .prm-policy-section:hover { transform: none; }
  .prm-policy-section header { margin-bottom: 14px; gap: 11px; }
  .prm-policy-section header > span { flex-basis: 34px; height: 34px; border-radius: 11px; font-size: 9px; }
  .prm-policy-section h2 { font-size: 21px; }
  .prm-policy-section > p { font-size: 12px; line-height: 1.7; }
  .prm-policy-grid, .prm-policy-list { grid-template-columns: 1fr; }
  .prm-policy-grid > div { padding: 15px; }
  .prm-policy-list li { padding: 13px; }
  .prm-privacy-reference__card { padding: 19px; display: block; border-radius: 20px; }
  .prm-privacy-reference a { margin-top: 8px; }
  .prm-footer { padding: 22px 0; }
  .prm-footer__inner { align-items: flex-start; flex-direction: column; gap: 14px; }
  .prm-footer__credit { font-size: 10px; text-align: left; line-height: 1.7; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .prm-motion [data-privacy-reveal] { opacity: 1; transform: none; }
}
