:root {
  --green: #1f4f25;
  --green-deep: #173d1c;
  --contour: rgba(161, 184, 137, 0.18);
  --white: #fbfcf8;
  --muted: rgba(251, 252, 248, 0.68);
  --ink: #17331b;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background-color: var(--green);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 35%, rgba(72, 122, 67, 0.28), transparent 42%),
    linear-gradient(150deg, #265d2c 0%, var(--green) 52%, var(--green-deep) 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, transparent 65%, rgba(8, 29, 12, 0.18));
}

a { color: inherit; }

.holding-page {
  display: grid;
  grid-template-rows: 1fr auto;
}

.holding-main {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 64px 24px 32px;
  text-align: center;
}

.brand-lockup { animation: arrive 850ms cubic-bezier(.2,.75,.25,1) both; }

.icon-frame {
  display: grid;
  width: fit-content;
  margin: 0 auto 40px;
  padding: clamp(20px, 3vw, 28px);
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(5, 24, 8, 0.58), 0 10px 26px rgba(5, 24, 8, 0.28);
}

.app-icon {
  display: block;
  width: clamp(168px, 22vw, 224px);
  height: auto;
  border-radius: 22.5%;
  box-shadow: 0 7px 22px rgba(14, 54, 19, 0.22);
}

.eyebrow {
  max-width: 620px;
  margin: 0 0 16px;
  color: rgba(251, 252, 248, 0.78);
  font-size: clamp(0.7rem, 1.6vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.15rem, 8vw, 6.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intro {
  max-width: 440px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.55;
}

.intro strong { color: var(--white); }
.pronunciation { white-space: nowrap; }

.proudly {
  margin: 12px auto 0;
  color: rgba(251, 252, 248, 0.58);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px clamp(24px, 5vw, 72px) 30px;
  color: rgba(251, 252, 248, 0.55);
  font-size: 0.78rem;
}

.site-footer a {
  text-underline-offset: 4px;
  text-decoration-color: rgba(251, 252, 248, 0.3);
}

.privacy-header {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 32px 0;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  text-decoration: none;
}

.mini-brand img { border-radius: 12px; }

.policy {
  width: min(100% - 40px, 760px);
  margin: 28px auto 64px;
  padding: clamp(28px, 6vw, 64px);
  color: var(--ink);
  background: rgba(251, 252, 248, 0.96);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(5, 24, 8, 0.25);
}

.policy .eyebrow { color: #617a61; }

.policy h1 {
  color: var(--ink);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
}

.updated {
  margin: 18px 0 36px;
  color: #667467;
  font-size: 0.85rem;
}

.policy > p:not(.eyebrow):not(.updated),
.policy section p {
  font-size: 1rem;
  line-height: 1.72;
}

.policy section { margin-top: 34px; }

.policy h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.policy section p { margin: 0 0 12px; color: #3d4d3e; }
.policy ul { margin: 12px 0 16px; padding-left: 22px; color: #3d4d3e; }
.policy li { margin-bottom: 9px; line-height: 1.62; }
.policy a { text-decoration-color: #819581; text-underline-offset: 3px; }

.back-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 36px;
  font-weight: 650;
}

.privacy-footer {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding-inline: 0;
}

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

@media (max-width: 560px) {
  .holding-main { padding-top: 48px; }
  .icon-frame { margin-bottom: 32px; }
  .site-footer { padding-bottom: 22px; }
  .privacy-header { padding: 20px 0; }
  .policy { margin-top: 8px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-lockup { animation: none; }
}
