:root {
      --bg: #f5f1e8;
      --panel: rgba(255, 252, 246, 0.82);
      --ink: #102323;
      --muted: #61716d;
      --brand: #0f3d3e;
      --brand-dark: #082829;
      --gold: #c18b3a;
      --gold-soft: #f4dfbd;
      --line: rgba(16, 35, 35, 0.14);
      --shadow: 0 24px 70px rgba(15, 61, 62, 0.13);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --max: 1120px;

      font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(193, 139, 58, 0.20), transparent 32rem),
        radial-gradient(circle at top right, rgba(15, 61, 62, 0.16), transparent 38rem),
        linear-gradient(145deg, #f5efe4 0%, #fbf8f1 50%, #eef4f1 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(16, 35, 35, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 35, 35, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 78%);
    }

    a {
      color: inherit;
    }

    .page {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero {
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 15px 0 76px;
    }

    .logo-wrap {
      margin-bottom: clamp(10px, 5vw, 10px);
    }

    .logo {
      display: block;
      width: clamp(300px, 42vw, 400px);
      max-width: 88vw;
      height: auto;
      margin: 0 auto;
      filter: drop-shadow(0 18px 28px rgba(15, 61, 62, 0.11));
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin: 0 auto 24px;
      border: 1px solid rgba(193, 139, 58, 0.28);
      border-radius: 999px;
      padding: 10px 15px;
      background: rgba(244, 223, 189, 0.64);
      color: #68430f;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .eyebrow {
      margin: 0 0 14px;
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 850;
      letter-spacing: 0.16em;
      line-height: 1.2;
      text-transform: uppercase;
    }

    h1 {
      max-width: 980px;
      margin: 0 auto;
      font-size: clamp(3.1rem, 8vw, 7.4rem);
      line-height: 0.92;
      letter-spacing: -0.085em;
    }

    .hero-intro {
      max-width: 760px;
      margin: 30px auto 0;
      color: var(--muted);
      font-size: clamp(1.08rem, 1.7vw, 1.42rem);
      line-height: 1.64;
    }

    .actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      border-radius: 999px;
      padding: 0 24px;
      font-weight: 820;
      line-height: 1;
      text-decoration: none;
      transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button-primary {
      background: var(--brand);
      color: #fff;
      box-shadow: 0 18px 34px rgba(15, 61, 62, 0.22);
    }

    .button-primary:hover {
      background: var(--brand-dark);
    }

    .button-secondary {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.62);
      color: var(--brand);
    }

    .small-note {
      max-width: 650px;
      margin: 24px auto 0;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .section {
      padding: clamp(54px, 8vw, 96px) 0;
      border-top: 1px solid var(--line);
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 32px;
    }

    .section-heading.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    h2 {
      margin: 0;
      font-size: clamp(2rem, 4.6vw, 4rem);
      line-height: 1;
      letter-spacing: -0.065em;
    }

    h3 {
      margin: 0;
      letter-spacing: -0.035em;
    }

    p {
      overflow-wrap: break-word;
    }

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

    .feature-card,
    .signal-card,
    .proof-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.56);
      box-shadow: 0 14px 42px rgba(15, 61, 62, 0.07);
    }

    .feature-card {
      padding: 26px;
    }

    .feature-number {
      display: block;
      margin-bottom: 18px;
      color: var(--gold);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.12em;
    }

    .feature-card h3,
    .proof-card h3 {
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .feature-card p,
    .proof-card p,
    .split-copy p,
    .signal-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(30px, 6vw, 78px);
      align-items: start;
    }

    .split-copy {
      display: grid;
      gap: 18px;
      font-size: 1.08rem;
    }

    .signal-card {
      max-width: 820px;
      margin: 0 auto;
      padding: clamp(24px, 4vw, 36px);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 246, 0.82)),
        var(--panel);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .signal-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--brand), var(--gold));
    }

    .signal-topline {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    .pill {
      display: inline-flex;
      width: fit-content;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 9px 13px;
      background: rgba(255, 255, 255, 0.7);
      color: var(--brand);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .pill.gold {
      background: var(--gold-soft);
      color: #68430f;
      border-color: rgba(193, 139, 58, 0.28);
    }

    .signal-card h3 {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.05;
      margin-bottom: 14px;
    }

    .evidence-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 26px;
    }

    .evidence-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.62);
    }

    .evidence-item strong {
      display: block;
      margin-bottom: 6px;
      color: var(--brand);
      font-size: 0.75rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .evidence-item span {
      color: var(--muted);
      line-height: 1.5;
    }

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

    .proof-card {
      padding: 26px;
    }

    .cta {
      margin: 0 auto clamp(46px, 7vw, 80px);
      border-radius: var(--radius-xl);
      padding: clamp(32px, 6vw, 58px);
      background:
        linear-gradient(135deg, rgba(15, 61, 62, 0.96), rgba(8, 40, 41, 0.96)),
        var(--brand);
      color: #fff;
      box-shadow: var(--shadow);
      text-align: center;
    }

    .cta .eyebrow {
      color: #f0c77b;
    }

    .cta p {
      max-width: 690px;
      margin: 18px auto 28px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.65;
      font-size: 1.08rem;
    }

    .cta .button-primary {
      background: #fff;
      color: var(--brand);
      box-shadow: none;
    }

    .footer {
      width: min(var(--max), calc(100% - 32px));
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin: 0 auto;
      padding: 24px 0 34px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.92rem;
    }

    .footer p {
      margin: 0;
    }

    .footer-note {
      text-align: right;
    }
	
	.cookie-banner {
	  position: fixed;
	  left: 18px;
	  right: 18px;
	  bottom: 18px;
	  z-index: 50;
	  max-width: 980px;
	  margin: 0 auto;
	  display: flex;
	  gap: 18px;
	  align-items: center;
	  justify-content: space-between;
	  padding: 18px;
	  border: 1px solid rgba(16, 35, 35, 0.16);
	  border-radius: 22px;
	  background: rgba(255, 252, 246, 0.96);
	  box-shadow: 0 18px 48px rgba(15, 61, 62, 0.18);
	  backdrop-filter: blur(14px);
	}

	.cookie-banner[hidden] {
	  display: none;
	}

	.cookie-banner strong {
	  display: block;
	  margin-bottom: 5px;
	  color: var(--ink);
	}

	.cookie-banner p {
	  margin: 0;
	  color: var(--muted);
	  line-height: 1.5;
	  font-size: 0.94rem;
	}

	.cookie-banner a {
	  display: inline-flex;
	  margin-top: 8px;
	  color: var(--brand);
	  font-weight: 800;
	  text-decoration: none;
	}

	.cookie-actions {
	  display: flex;
	  gap: 10px;
	  flex-shrink: 0;
	}

	.cookie-actions button {
	  min-height: 42px;
	  border-radius: 999px;
	  padding: 0 16px;
	  border: 1px solid var(--line);
	  cursor: pointer;
	  font: inherit;
	  font-weight: 800;
	}

	#reject-analytics {
	  background: #fff;
	  color: var(--brand);
	}

	#accept-analytics {
	  background: var(--brand);
	  color: #fff;
	}

	@media (max-width: 760px) {
	  .cookie-banner {
		align-items: stretch;
		flex-direction: column;
	  }

	  .cookie-actions,
	  .cookie-actions button {
		width: 100%;
	  }
	}

    @media (max-width: 900px) {
      .hero {
        min-height: auto;
        padding-top: 28px;
      }

      .feature-grid,
      .proof-grid,
      .evidence-list,
      .split {
        grid-template-columns: 1fr;
      }

      .footer {
        flex-direction: column;
      }

      .footer-note {
        text-align: left;
      }
    }

    @media (max-width: 620px) {
      .page,
      .footer {
        width: min(100% - 22px, var(--max));
      }

      .hero {
        padding-bottom: 56px;
      }

      .logo {
        width: min(86vw, 390px);
      }

      h1 {
        font-size: clamp(2.75rem, 15vw, 4.7rem);
      }

      .hero-intro {
        font-size: 1.03rem;
      }

      .actions,
      .button {
        width: 100%;
      }

      .feature-card,
      .proof-card,
      .signal-card {
        padding: 22px;
      }

      .section {
        padding: 50px 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }
    }