:root {
      --teal: #1aad74; --teal-dark: #0e9060; --teal-light: #d1fce7;
      --navy: #0d1f5a; --slate: #334155; --muted: #4b5563;
      --border: #e2e8f0; --bg: #f8fafc; --white: #ffffff; --radius: 12px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--slate); background: var(--bg); line-height: 1.6; }
    a { color: inherit; text-decoration: none; }

    /* ── Nav ── */
    nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 80px; position: sticky; top: 0; z-index: 50; }
    .logo { display: flex; align-items: center; gap: 4px; }
    .nav-links { display: none; }
    .logo-img { height: 52px; width: 52px; display: block; border-radius: 50%; object-fit: cover; object-position: center; }
    .logo-wordmark { display: flex; flex-direction: column; line-height: 1.15; }
    .lw-top { font-family: 'Space Grotesk', sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; color: var(--navy); text-transform: uppercase; }
    .lw-bot { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; color: var(--navy); text-transform: uppercase; }
    nav .nav-cta { background: #f97316; color: white; font-weight: 600; font-size: 0.875rem; padding: 8px 18px; border-radius: 50px; white-space: nowrap; }
    .nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px 4px; background: none; border: none; margin-right: 10px; }
    .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 20px 16px; z-index: 49; flex-direction: column; box-shadow: 0 6px 24px rgba(0,0,0,0.10); }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a { padding: 14px 4px; font-weight: 600; font-size: 1rem; color: var(--navy); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
    .nav-mobile-menu a:last-child { border-bottom: none; }
    .nav-mobile-menu a:hover { color: var(--teal); }
    .nav-mobile-menu .nm-prices { color: var(--teal); font-weight: 700; }

    /* Sticky CTA */
    .sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; background: linear-gradient(135deg, #0b7a55 0%, #0e9060 50%, #1aad74 100%); padding: 12px 20px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -2px 0 rgba(255,255,255,0.08), 0 -8px 32px rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.12); }
    .sticky-cta a { display: flex; align-items: center; gap: 8px; background: var(--white); color: #f97316; font-weight: 700; font-size: 0.95rem; padding: 11px 24px; border-radius: 50px; white-space: nowrap; transition: box-shadow .15s; animation: cta-buzz 5s ease-in-out infinite; box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
    .sticky-cta a:hover { transform: translateY(-1px); animation-play-state: paused; box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
    .sticky-cta span { color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; }

    /* Page header */
    .page-header { background: linear-gradient(135deg, var(--navy) 0%, #0d3d4a 100%); padding: 52px 20px 56px; text-align: center; }
    .page-header .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(26,173,116,0.25); border: 1px solid rgba(26,173,116,0.5); color: #a7f3d0; font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
    .page-header h1 { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 6vw, 2.8rem); color: white; line-height: 1.2; margin-bottom: 14px; }
    .page-header p { color: #94a3b8; font-size: 1rem; max-width: 480px; margin: 0 auto; }

    /* Content */
    .content-wrap { max-width: 760px; margin: 0 auto; padding: 48px 20px 100px; }

    /* Privacy sections */
    .pp-section { margin-bottom: 40px; }
    .pp-section h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--teal-light); }
    .pp-section h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 20px 0 8px; }
    .pp-section p { color: var(--slate); line-height: 1.75; margin-bottom: 12px; }
    .pp-section p:last-child { margin-bottom: 0; }
    .pp-section ul { margin: 8px 0 14px 20px; }
    .pp-section ul li { color: var(--slate); line-height: 1.75; margin-bottom: 6px; }

    /* CCPA rights box - bento grid */
    .rights-box { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin: 24px 0; }
    .rights-box h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
    .rights-box ul { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .rights-box ul li { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 0; }
    .rights-box ul li strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: 0.01em; }
    .rights-box ul li:last-child { grid-column: 1 / -1; }
    @media (max-width: 520px) { .rights-box ul { grid-template-columns: 1fr; } .rights-box ul li:last-child { grid-column: auto; } }

    /* Contact box */
    .contact-box { background: linear-gradient(135deg, var(--navy), #0a4538); border-radius: 16px; padding: 28px 28px 24px; margin: 40px 0 0; color: white; }
    .contact-box h2 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; color: #6ee7b7; margin-bottom: 12px; }
    .contact-box p { color: #94a3b8; line-height: 1.75; margin-bottom: 14px; font-size: 0.95rem; }
    .contact-box a { color: #6ee7b7; text-decoration: underline; }

    /* Last updated pill */
    .last-updated { display: inline-flex; align-items: center; gap: 6px; background: var(--teal-light); color: var(--teal-dark); font-size: 0.8rem; font-weight: 600; padding: 5px 14px; border-radius: 50px; margin-bottom: 32px; }

    /* ── Footer ── */
    footer { background: var(--navy); color: #64748b; padding: 40px 20px 96px; }
    .footer-inner { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
    .footer-logo { display: flex; align-items: center; gap: 8px; }
    .footer-logo .logo-img { height: 64px; width: 64px; background: white; border-radius: 50%; padding: 6px; object-fit: cover; flex-shrink: 0; }
    .footer-tagline { margin-top: 10px; font-size: 0.875rem; color: #64748b; }
    .footer-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
    .footer-contact a { color: #94a3b8; font-size: 0.875rem; transition: color .15s; display: flex; align-items: center; gap: 7px; }
    .footer-contact a:hover { color: #6ee7b7; }
    .footer-contact svg { width: 13px; height: 13px; stroke: #6ee7b7; fill: none; stroke-width: 2; flex-shrink: 0; }
    .footer-hours { color: #475569; font-size: 0.82rem; display: flex; align-items: center; gap: 7px; margin-top: 2px; }
    .footer-hours svg { width: 13px; height: 13px; stroke: #475569; fill: none; stroke-width: 2; flex-shrink: 0; }
    .footer-nav-col { display: flex; flex-direction: column; gap: 10px; }
    .footer-nav-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #475569; margin-bottom: 4px; }
    .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; font-size: 0.875rem; }
    .footer-links a { color: #94a3b8; transition: color .15s; }
    .footer-links a:hover { color: #6ee7b7; }
    .footer-legal { font-size: 0.8rem; line-height: 1.6; color: #475569; border-top: 1px solid #1e293b; padding-top: 20px; }
    @media (min-width: 640px) { .footer-inner { flex-direction: row; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; } }

    @media (min-width: 1024px) {
      nav { padding: 0 60px; }
      .nav-links { display: flex !important; align-items: center; gap: 36px; }
      .nav-hamburger { display: none !important; }
      .nav-mobile-menu { display: none !important; }
      .nav-links a { font-size: 0.9rem; font-weight: 600; color: var(--slate); }
      .nav-links a:hover { color: var(--teal); }
      .sticky-cta { display: none !important; }
      footer { padding: 48px 60px 60px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
    }

    /* ── Focus visible rings ── */
    :focus-visible {
      outline: 2px solid var(--teal);
      outline-offset: 3px;
      border-radius: 4px;
    }

@keyframes cta-buzz {
  0%,82%  { transform: translateX(0) rotate(0); }
  84%     { transform: translateX(-5px) rotate(-1.5deg); }
  86%     { transform: translateX(5px) rotate(1.5deg); }
  88%     { transform: translateX(-5px) rotate(-1.5deg); }
  90%     { transform: translateX(5px) rotate(1.5deg); }
  92%     { transform: translateX(-3px) rotate(-1deg); }
  94%     { transform: translateX(3px) rotate(1deg); }
  96%     { transform: translateX(-1px); }
  98%,100%{ transform: translateX(0) rotate(0); }
}

.nymbus-badge{display:flex;flex-direction:column;align-items:center;gap:5px;padding:20px 0 4px;margin-top:8px;border-top:1px solid rgba(255,255,255,0.06);color:rgba(255,255,255,0.18);text-decoration:none;transition:opacity .2s}.nymbus-badge:hover{opacity:0.6}.nymbus-badge img{filter:brightness(0) invert(1);opacity:0.22;width:48px;height:auto;transition:opacity .2s}.nymbus-badge:hover img{opacity:0.5}
.nymbus-badge span{font-size:0.58rem;letter-spacing:0.22em;font-weight:600;text-transform:uppercase}
