/* ═══════════════════════════════════════════════════════════════════════════
   sentiga Beta Landing — styles
   Self-hosted fonts (no Google Fonts IP leak), sentiga brand palette.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Self-hosted fonts ───────────────────────────────────────────────────── */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/inter-700.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("/assets/fonts/inter-800.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap; src: url("/assets/fonts/cormorant-500.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/cormorant-600.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("/assets/fonts/cormorant-500-italic.woff2") format("woff2"); }

:root {
  --background: #f5ede3;
  --background-deep: #ede0ce;
  --cream: #fff8f2;
  --ink: #332f25;
  --ink-soft: #4b4337;
  --muted: #6b5f53; /* darkened for WCAG AA on cream/sand */
  --soft: #b6a99d;
  --sage: #8b9e6b;
  --sage-dark: #68774c;
  --sage-soft: #e7ecd8;
  --olive: #767d57;
  --peach: #f39b6d;
  --peach-soft: #f6cfa5;
  --peach-deep: #d97c4c;
  --gold: #e8a838;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px rgba(61, 50, 38, 0.12);
  --shadow-lg: 0 30px 80px rgba(61, 50, 38, 0.18);
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Ensure the [hidden] attribute always wins over display rules below. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  background-image:
    url("/assets/images/paper-texture.webp"),
    radial-gradient(circle at 12% -5%, rgba(243, 155, 109, 0.18), transparent 38rem),
    radial-gradient(circle at 95% 8%, rgba(139, 158, 107, 0.14), transparent 34rem),
    linear-gradient(180deg, var(--background) 0%, var(--background-deep) 100%);
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-size: 340px 340px, auto, auto, auto;
  background-blend-mode: multiply, normal, normal, normal;
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

em { font-style: italic; font-family: var(--serif); font-weight: 500; }

/* ── Accessibility ───────────────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  z-index: 100; background: var(--ink); color: var(--cream);
  padding: 10px 18px; border-radius: 0 0 12px 12px; font-weight: 700;
  text-decoration: none; transition: top 0.18s ease;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: var(--cream);
  box-shadow:
    0 12px 26px rgba(217, 124, 76, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(217, 124, 76, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.btn--ghost {
  background: rgba(255, 248, 242, 0.7);
  color: var(--ink);
  border: 1px solid rgba(182, 169, 157, 0.5);
}
.btn--ghost:hover { background: var(--cream); }
.btn--block { width: 100%; }
.btn--lg { font-size: 1.1rem; padding: 17px 34px; }
.btn--sm { font-size: 0.85rem; padding: 10px 16px; }
.btn--arrow::after {
  content: "→"; font-weight: 600; display: inline-block;
  transition: transform 0.18s ease;
}
.btn--arrow:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.99); }

.link-btn {
  background: none; border: none; cursor: pointer;
  color: var(--sage-dark); font-family: var(--sans); font-weight: 700;
  font-size: inherit; padding: 0; text-decoration: underline;
  text-decoration-color: rgba(104, 119, 76, 0.35);
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 40px);
  background: rgba(245, 237, 227, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(245, 237, 227, 0.92);
  border-bottom-color: rgba(182, 169, 157, 0.3);
  box-shadow: 0 8px 24px rgba(61, 50, 38, 0.06);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__mark { width: 34px; height: 34px; object-fit: contain; }
.brand__word { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--ink); }
.brand__dot { color: var(--peach); }

/* ── Layout sections ─────────────────────────────────────────────────────── */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 40px);
}
.section--narrow { max-width: 760px; text-align: center; }
.section__eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 14px;
}
.section__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.08;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 16px;
}
.section__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 640px; }
.section--narrow .section__lead { margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-dark);
  background: rgba(231, 236, 216, 0.7); border: 1px solid rgba(139, 158, 107, 0.3);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--peach-deep);
  box-shadow: 0 0 0 0 rgba(217, 124, 76, 0.5); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 124, 76, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(217, 124, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 124, 76, 0); }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), transparent 90%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), transparent 90%);
}
/* Decorative edge vines (frame the top of the page, scroll away). */
.page-vine {
  position: absolute; top: 0; z-index: 1;
  width: clamp(120px, 13vw, 195px); height: auto;
  opacity: 0.7; pointer-events: none; user-select: none;
}
.page-vine--left { left: 0; transform: scaleX(-1); }
.page-vine--right { right: 0; }
@media (max-width: 1024px) { .page-vine { display: none; } }

.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) clamp(20px, 5vw, 40px) clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: 1fr; gap: 38px;
  align-items: center;
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.7rem, 9vw, 4.8rem); line-height: 1.0;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 20px;
}
.hero__title .accent {
  font-style: italic;
  background: linear-gradient(120deg, var(--peach-deep), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 18px; }
.microtrust {
  display: flex; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 22px;
}
.microtrust span {
  position: relative; font-size: 0.82rem; font-weight: 700; color: var(--sage-dark);
  letter-spacing: 0.01em; padding-left: 18px;
}
.microtrust span::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2368774c'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.trust-row {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.trust-row li {
  position: relative; padding-left: 24px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
}
.trust-row li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff8f2'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ── Signup card ─────────────────────────────────────────────────────────── */
.signup__card {
  background: rgba(255, 248, 242, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 4vw, 34px);
}
.signup__head h2 { font-family: var(--serif); font-weight: 600; font-size: 1.8rem; color: var(--ink); }
.signup__head p { color: var(--muted); margin: 6px 0 20px; font-size: 0.98rem; }

.field { display: block; margin-bottom: 14px; }
.field__label {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--ink-soft); margin-bottom: 6px; letter-spacing: 0.01em;
}
.field input {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid rgba(182, 169, 157, 0.5);
  border-radius: 14px; padding: 13px 15px; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: var(--soft); }
.field input:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139, 158, 107, 0.18);
}
.field input.is-valid { border-color: var(--sage); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2368774c'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; background-size: 18px; padding-right: 42px; }
.field input.is-invalid { border-color: var(--peach-deep); }

.cf-turnstile { margin: 4px 0 14px; }

.signup__form .btn--block { margin-top: 6px; }

.signup__reassure {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.82rem; color: var(--muted); margin-top: 16px; line-height: 1.45;
}
.signup__reassure svg { width: 16px; height: 16px; flex-shrink: 0; fill: var(--sage); margin-top: 2px; }

.signup__status {
  border-radius: 12px; padding: 11px 14px; font-size: 0.9rem;
  font-weight: 600; margin-bottom: 14px;
}
.signup__status--error { background: rgba(217, 124, 76, 0.14); color: var(--peach-deep); }
.signup__status--success { background: var(--sage-soft); color: var(--sage-dark); }

.signup__success { text-align: center; padding: 14px 4px; animation: rise 0.5s ease; }
.signup__success-art { width: 150px; height: auto; margin: 0 auto 12px; display: block; }
.signup__success h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin-bottom: 8px; }
.signup__success p { color: var(--muted); font-size: 0.98rem; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* Honeypot — visually hidden, out of tab flow. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ── Features ────────────────────────────────────────────────────────────── */
.features {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px;
}
.feature {
  background: rgba(255, 248, 242, 0.7);
  border: 1px solid rgba(182, 169, 157, 0.28);
  border-radius: var(--radius); padding: 18px 18px 24px;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__shot {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center;
  border-radius: 16px; margin-bottom: 16px; display: block;
  background: var(--cream); border: 1px solid rgba(182, 169, 157, 0.25);
  box-shadow: 0 12px 28px rgba(61, 50, 38, 0.16);
}
.feature h3 { font-family: var(--serif); font-weight: 600; font-size: 1.45rem; color: var(--ink); margin: 0 4px 6px; }
.feature p { color: var(--muted); font-size: 0.96rem; margin: 0 4px; }
.features__cta { text-align: center; margin-top: 34px; }

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trustbar { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.trustbar__inner {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  background: var(--cream); border: 1px solid rgba(182, 169, 157, 0.3);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 34px);
}
.trustpillar { display: flex; gap: 14px; align-items: flex-start; }
.trustpillar__icon {
  flex-shrink: 0; width: 60px; height: 60px; object-fit: contain;
}
.trustpillar h3 { font-family: var(--sans); font-weight: 800; font-size: 1rem; color: var(--ink); margin-bottom: 3px; }
.trustpillar p { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

/* ── Privacy ─────────────────────────────────────────────────────────────── */
.privacy__inner {
  display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center;
}
.privacy__list { list-style: none; display: grid; gap: 12px; margin-top: 22px; }
.privacy__list li {
  position: relative; padding-left: 30px; font-size: 1.02rem; color: var(--ink-soft);
}
.privacy__list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--sage)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff8f2'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.privacy__visual { display: flex; justify-content: center; }
.privacy__visual img {
  width: clamp(200px, 42vw, 300px); height: auto;
}

/* ── Steps ───────────────────────────────────────────────────────────────── */
.section--steps { text-align: center; }
.steps {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-top: 38px; text-align: left;
}
.step {
  position: relative; background: rgba(255, 248, 242, 0.7);
  border: 1px solid rgba(182, 169, 157, 0.28);
  border-radius: var(--radius); padding: 26px 24px;
}
.step__icon { width: 76px; height: 76px; object-fit: contain; margin-bottom: 8px; }
.step__label {
  display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 4px;
}
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ── Value ───────────────────────────────────────────────────────────────── */
.section--value { max-width: var(--maxw); }
.value__inner {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--ink) 0%, #2a261d 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(34px, 6vw, 64px);
}
.value__decor {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  width: clamp(150px, 26vw, 280px); height: auto; opacity: 0.85;
  bottom: -10px; right: -10px; transform: rotate(180deg);
}
.value__inner > :not(.value__decor) { position: relative; z-index: 1; }
.value__inner .section__eyebrow { color: var(--peach-soft); }
.value__inner .section__title { color: var(--cream); }
.value__list { list-style: none; display: grid; gap: 14px; margin: 8px 0 28px; max-width: 620px; }
.value__list li { position: relative; padding-left: 32px; font-size: 1.05rem; color: rgba(255, 248, 242, 0.86); }
.value__list strong { color: var(--cream); font-weight: 700; }
.value__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--peach)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23332f25'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq { margin-top: 30px; text-align: left; }
.faq__item {
  background: rgba(255, 248, 242, 0.7);
  border: 1px solid rgba(182, 169, 157, 0.28);
  border-radius: 16px; padding: 6px 20px; margin-bottom: 12px;
}
.faq__item summary {
  cursor: pointer; list-style: none; font-weight: 700; color: var(--ink);
  padding: 14px 0; position: relative; padding-right: 30px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--sage-dark); transition: transform 0.2s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--muted); padding: 0 0 16px; }

/* ── Closing ─────────────────────────────────────────────────────────────── */
.closing__inner {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(40px, 7vw, 72px); text-align: center;
}
.closing__decor {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  width: clamp(120px, 22vw, 230px); height: auto; opacity: 0.92;
}
.closing__decor--tl { top: -8px; left: -8px; }
.closing__decor--br { bottom: -8px; right: -8px; transform: rotate(180deg); }
.closing__inner > :not(.closing__decor) { position: relative; z-index: 1; }
.closing__inner h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.9rem, 5vw, 2.9rem); margin-bottom: 10px; }
.closing__inner p { font-size: 1.1rem; color: rgba(255, 248, 242, 0.9); margin-bottom: 26px; }
.closing .btn--primary { background: var(--cream); color: var(--ink); box-shadow: 0 12px 26px rgba(0,0,0,0.18); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  max-width: var(--maxw); margin: 0 auto;
  padding: 40px clamp(20px, 5vw, 40px) 56px;
  border-top: 1px solid rgba(182, 169, 157, 0.3);
  display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center;
}
.site-footer__brand { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.site-footer__brand img { width: 26px; height: 26px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer__nav a, .site-footer__nav .link-btn { color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 600; }
.site-footer__nav a:hover { color: var(--sage-dark); }
.site-footer__meta { width: 100%; color: var(--muted); font-size: 0.85rem; }

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal {
  max-width: 760px; margin: 0 auto; padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 40px) 80px;
}
.legal h1 {
  font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ink); line-height: 1.05; margin-bottom: 18px;
}
.legal h2 {
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem;
  color: var(--ink); margin: 28px 0 8px;
}
.legal p { color: var(--ink-soft); margin-bottom: 12px; }
.legal__lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 8px; }
.legal ol, .legal ul { color: var(--ink-soft); margin: 8px 0 12px; padding-left: 1.2rem; }
.legal li { margin: 6px 0; }
.legal a { color: var(--sage-dark); font-weight: 600; }
.legal__note {
  background: var(--sage-soft); border-left: 4px solid var(--sage);
  border-radius: 12px; padding: 12px 16px; color: var(--sage-dark);
  font-weight: 600; font-size: 0.9rem; margin-bottom: 22px;
}

/* ── Floating CTA ────────────────────────────────────────────────────────── */
.floating-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 45;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--peach) 0%, var(--peach-deep) 100%);
  color: var(--cream); text-decoration: none; font-weight: 700;
  padding: 16px; border-radius: 999px; box-shadow: var(--shadow-lg);
  animation: rise 0.3s ease;
}

/* ── Consent banner ──────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; z-index: 60; left: 16px; right: auto; bottom: 16px;
  width: min(420px, calc(100% - 32px));
  background: var(--cream); border: 1px solid rgba(182, 169, 157, 0.4);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px;
}
.cookie-banner__title { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.cookie-banner__text { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.cookie-banner__options { display: grid; gap: 12px; margin-bottom: 16px; }
.cookie-option { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--ink-soft); }
.cookie-option input { margin-top: 3px; accent-color: var(--sage-dark); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-banner__actions .btn { flex: 1 1 auto; }

@media (max-width: 600px) {
  .cookie-banner {
    left: 10px; right: 10px; bottom: 10px; width: auto; padding: 16px;
    max-height: 80vh; overflow-y: auto;
  }
  .cookie-banner__title { font-size: 1.15rem; }
  .cookie-banner__text { font-size: 0.84rem; margin-bottom: 12px; }
  .cookie-banner__actions .btn { flex: 1 1 calc(50% - 8px); }
}

/* ── Scroll reveal (progressive enhancement) ───────────────────────────────
   Content is fully visible by default. Only once JS adds `reveal-ready` to the
   body do `.reveal` elements start hidden, then `.is-visible` reveals them. */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
/* staggered children */
.reveal-ready .features .feature,
.reveal-ready .steps .step { transition-delay: var(--reveal-delay, 0s); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (min-width: 720px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .trustbar__inner { grid-template-columns: repeat(3, 1fr); }
  .hero__title br { display: inline; }
}
@media (min-width: 960px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
  .signup { align-self: center; }
  .features { grid-template-columns: repeat(4, 1fr); }
  .privacy__inner { grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
  .floating-cta { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
}
