:root {
      --primary: #57489B;
      --primary-dark: #463a7d;
      --primary-deep: #3a3068;
      --send: #3d9b4a;
      --send-hover: #348540;
      --white: #ffffff;
      --off-white: #f7f6fb;
      --light-gray: #eceaf3;
      --mid-gray: #6b6780;
      --dark-gray: #2a2740;
      --black: #12101c;
      --success-bg: #e8f6ea;
      --error: #c0392b;
      --shadow: 0 12px 40px rgba(87, 72, 155, 0.15);
      --radius: 12px;
      --header-h: 76px;
      --font: "Manrope", sans-serif;
      --serif: "Instrument Serif", Georgia, serif;
      --max: 1120px;
      --transition: 0.25s ease;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font);
      color: var(--dark-gray);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    .container {
      width: min(100% - 2rem, var(--max));
      margin-inline: auto;
    }

    /* Header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--light-gray);
      min-height: var(--header-h);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: var(--header-h);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo img {
      height: 36px;
      width: auto;
    }

    .brand-tag {
      display: block;
      font-family: "Times New Roman", Times, serif;
      font-size: clamp(0.95rem, 2.5vw, 1.15rem);
      color: var(--primary);
      font-style: normal;
      white-space: nowrap;
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 1.5rem;
    }

    .nav-desktop a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--dark-gray);
      transition: color var(--transition);
    }

    .nav-desktop a:hover,
    .nav-desktop a:focus-visible,
    .nav-desktop a.is-active {
      color: var(--primary);
    }

    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid var(--light-gray);
      border-radius: 10px;
      background: var(--white);
      color: var(--primary);
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition);
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      background: var(--off-white);
      border-color: var(--primary);
      outline: none;
    }

    .nav-toggle-bars {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 20px;
    }

    .nav-toggle-bars span {
      display: block;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      gap: 0.25rem;
      padding: 0.5rem 0 1rem;
      border-top: 1px solid var(--light-gray);
    }

    .nav-mobile.is-open {
      display: flex;
    }

    .nav-mobile a {
      padding: 0.85rem 0.5rem;
      font-weight: 600;
      border-radius: 8px;
      transition: background var(--transition), color var(--transition);
    }

    .nav-mobile a:hover,
    .nav-mobile a:focus-visible,
    .nav-mobile a.is-active {
      background: var(--off-white);
      color: var(--primary);
      outline: none;
    }

    /* Page sections */

    /* Hero */
    .hero {
      position: relative;
      min-height: clamp(420px, 72vh, 640px);
      display: flex;
      align-items: center;
      color: #ffffff;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(120deg, rgba(87, 72, 155, 0.88) 0%, rgba(42, 39, 64, 0.72) 55%, rgba(87, 72, 155, 0.55) 100%),
        url("image2.jpeg") center / cover no-repeat;
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(87, 72, 155, 0.35), transparent 45%);
      animation: pulseGlow 8s ease-in-out infinite alternate;
    }

    @keyframes pulseGlow {
      from { opacity: 0.7; }
      to { opacity: 1; }
    }

    .hero-content {
      width: min(100% - 2rem, 720px);
      margin-inline: auto;
      text-align: center;
      padding: 4rem 0;
      color: #ffffff;
    }

    .hero-brand {
      font-family: "Times New Roman", Times, serif;
      font-size: clamp(2.4rem, 6vw, 3.75rem);
      font-weight: 400;
      font-style: normal;
      line-height: 1.1;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      color: #ffffff;
      animation: riseIn 0.7s ease both;
    }

    .hero-quote {
      font-size: clamp(1rem, 2.4vw, 1.2rem);
      font-weight: 500;
      opacity: 0.95;
      max-width: 34em;
      margin: 0 auto 1.25rem;
      color: #ffffff;
      animation: riseIn 0.7s ease 0.1s both;
    }

    .hero-lead {
      font-size: clamp(1.25rem, 3vw, 1.65rem);
      font-weight: 800;
      margin-bottom: 1.75rem;
      color: #ffffff;
      animation: riseIn 0.7s ease 0.2s both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      animation: riseIn 0.7s ease 0.3s both;
    }

    @keyframes riseIn {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.4rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.95rem;
      border: 2px solid transparent;
      cursor: pointer;
      transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(255, 255, 255, 0.7);
      outline-offset: 2px;
    }

    .btn:active {
      transform: scale(0.98);
    }

    .btn-primary {
      background: var(--white);
      color: var(--primary);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:hover {
      background: var(--off-white);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.65);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    .btn-send {
      background: var(--send);
      color: var(--white);
      border-radius: 8px;
      min-width: 120px;
      padding: 0.75rem 1.5rem;
    }

    .btn-send:hover {
      background: var(--send-hover);
      transform: translateY(-1px);
    }

    .btn-send:focus-visible {
      outline: 3px solid rgba(61, 155, 74, 0.45);
      outline-offset: 2px;
    }

    /* Page hero (inner) */
    .page-hero {
      position: relative;
      overflow: hidden;
      line-height: 0;
    }

    .page-hero-img {
      width: 100%;
      height: auto;
      min-height: 220px;
      max-height: min(42vw, 420px);
      object-fit: cover;
      object-position: center top;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(135deg, rgba(87, 72, 155, 0.78), rgba(18, 16, 28, 0.65)),
        url("image2.jpeg") center / cover no-repeat;
    }

    .page-hero-title {
      background: rgba(247, 246, 251, 0.92);
      color: var(--primary);
      font-size: clamp(1.6rem, 4vw, 2.25rem);
      font-weight: 800;
      padding: 1rem 1.75rem;
      border-radius: 10px;
      box-shadow: var(--shadow);
      text-align: center;
      animation: riseIn 0.55s ease both;
    }

    /* Sections */
    .section {
      padding: 4rem 0;
    }

    .section-alt {
      background: var(--off-white);
    }

    .section-title {
      font-size: clamp(1.6rem, 3.5vw, 2.1rem);
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 0.75rem;
      letter-spacing: -0.02em;
    }

    .section-lead {
      font-size: 1.05rem;
      color: var(--mid-gray);
      max-width: 46rem;
      margin-bottom: 2rem;
    }

    .sovereign-block {
      max-width: 900px;
      margin-inline: auto;
      text-align: center;
    }

    .sovereign-block h2 {
      font-size: clamp(1.45rem, 3.5vw, 2rem);
      color: var(--primary);
      margin-bottom: 1.5rem;
      line-height: 1.3;
      font-weight: 800;
    }

    .sovereign-block p {
      color: var(--dark-gray);
      font-size: clamp(1rem, 2vw, 1.08rem);
      line-height: 1.75;
      text-align: left;
    }

    .sovereign-block strong {
      color: var(--primary);
      font-weight: 700;
    }

    .sme-flow {
      color: var(--primary);
      font-weight: 700;
      white-space: nowrap;
    }

    /* Score · Match · Earn grid */
    .sme-grid {
      display: grid;
      gap: 2rem;
    }

    .sme-col {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: var(--radius);
      padding: 1.75rem 1.5rem;
      box-shadow: 0 4px 20px rgba(42, 39, 64, 0.05);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .sme-col:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      border-color: rgba(87, 72, 155, 0.3);
    }

    .sme-col h3 {
      font-size: 1.35rem;
      color: var(--primary);
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .sme-col p {
      color: var(--dark-gray);
      font-size: 0.98rem;
      line-height: 1.65;
      margin-bottom: 0.75rem;
    }

    .sme-col p:last-child {
      margin-bottom: 0;
    }

    /* Contact / purple band */
    .band {
      position: relative;
      background: var(--primary);
      color: var(--white);
      padding: 4.5rem 0 3.5rem;
      clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
      margin-top: 1rem;
    }

    .band-inner {
      display: grid;
      gap: 2.5rem;
      padding-top: 1rem;
    }

    .band h2 {
      font-size: clamp(1.5rem, 3vw, 1.9rem);
      margin-bottom: 0.5rem;
    }

    .band .intro {
      opacity: 0.92;
      margin-bottom: 1.5rem;
      max-width: 36rem;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--white);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      max-width: 420px;
      border: none;
      border-radius: 8px;
      padding: 0.8rem 0.9rem;
      background: var(--white);
      color: var(--dark-gray);
      transition: box-shadow var(--transition);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
    }

    .form-group input.is-invalid,
    .form-group textarea.is-invalid {
      box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.55);
    }

    .field-error {
      display: none;
      color: #ffe3e0;
      font-size: 0.82rem;
      margin-top: 0.35rem;
    }

    .field-error.is-visible {
      display: block;
    }

    .form-note {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 10px;
      padding: 1rem 1.1rem;
      margin-bottom: 1.25rem;
      max-width: 520px;
      font-size: 0.95rem;
    }

    .form-success {
      display: none;
      background: var(--success-bg);
      color: #1f6b2d;
      border-radius: 10px;
      padding: 1rem 1.1rem;
      margin-top: 1rem;
      max-width: 520px;
      font-weight: 600;
    }

    .form-success.is-visible {
      display: block;
      animation: riseIn 0.35s ease both;
    }

    .coming-soon h2 {
      margin-bottom: 1rem;
    }

    .store-badges {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .store-badges a {
      display: inline-block;
      transition: transform var(--transition), opacity var(--transition);
    }

    .store-badges a:hover,
    .store-badges a:focus-visible {
      transform: translateY(-2px);
      opacity: 0.92;
      outline: none;
    }

    .store-badges img {
      height: 52px;
      width: auto;
      border-radius: 8px;
    }

    /* Legal / content pages */
    .content-page {
      padding: 3rem 0 4rem;
    }

    .content-card {
      background: var(--white);
      border: 1px solid var(--light-gray);
      border-radius: var(--radius);
      padding: clamp(1.5rem, 3vw, 2.25rem);
      box-shadow: 0 4px 24px rgba(42, 39, 64, 0.05);
      max-width: 760px;
    }

    .content-card--legal {
      max-width: 920px;
    }

    .content-card h3 {
      font-size: 1.05rem;
      color: var(--primary);
      margin: 1.25rem 0 0.45rem;
      font-weight: 700;
    }

    .content-card h4 {
      font-size: 1rem;
      color: var(--dark-gray);
      margin: 1rem 0 0.35rem;
      font-weight: 700;
    }

    .pp-verified {
      margin-left: 1rem;
      color: var(--send) !important;
      font-weight: 700;
    }

    .pp-verified-text,
    .pp-level--high {
      color: var(--send);
      font-weight: 700;
    }

    .pp-level--low {
      color: #c0392b;
      font-weight: 700;
    }

    .pp-summary-intro {
      padding-left: 1.25rem;
      margin-bottom: 1rem;
    }

    .pp-summary-intro li {
      margin-bottom: 0;
    }

    .pp-table-wrap {
      overflow-x: auto;
      margin: 1.25rem 0 2rem;
      -webkit-overflow-scrolling: touch;
    }

    .pp-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-size: 0.9rem;
    }

    .pp-table th,
    .pp-table td {
      border: 1px solid var(--light-gray);
      padding: 0.85rem 0.75rem;
      vertical-align: top;
      text-align: left;
      line-height: 1.55;
    }

    .pp-table th {
      background: var(--primary);
      color: var(--white);
      font-weight: 700;
    }

    .pp-table tbody tr.pp-main-row {
      background: var(--white);
    }

    .pp-table tbody tr.pp-sub-row {
      background: #faf9fc;
    }

    .pp-table tbody tr:nth-child(even) {
      background: inherit;
    }

    .pp-table td:first-child {
      text-align: center;
      font-weight: 700;
      width: 4.5rem;
      vertical-align: top;
    }

    .pp-main-row td {
      vertical-align: top;
    }

    .pp-sub-row td {
      padding: 0;
      border-top: none;
    }

    .pp-sub-row .pp-nested-cell {
      border-bottom: 2px solid rgba(87, 72, 155, 0.25);
    }

    tbody tr.pp-sub-row:last-child .pp-nested-cell {
      border-bottom: none;
    }

    .pp-nested-cell {
      padding: 0 !important;
      background: #faf9fc;
    }

    .pp-score-cell {
      vertical-align: middle;
      text-align: center;
      width: 9rem;
    }

    .pp-subtable {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }

    .pp-subtable th,
    .pp-subtable td {
      border: 1px solid var(--light-gray);
      padding: 0.65rem 0.75rem;
      vertical-align: top;
      text-align: left;
      line-height: 1.5;
    }

    .pp-subtable th {
      background: #eceaf3;
      color: var(--dark-gray);
      font-weight: 700;
    }

    .pp-subtable td:last-child {
      text-align: center;
      width: 8rem;
      white-space: nowrap;
      font-weight: 700;
    }

    .pp-score-img {
      max-width: 110px;
      height: auto;
      margin-inline: auto;
    }

    .pp-verification-block {
      margin: 0 0 1.25rem;
      padding: 1rem 1.1rem;
      background: var(--off-white);
      border-radius: 8px;
      border: 1px solid var(--light-gray);
    }

    .pp-verification-block h4 {
      margin-top: 0;
      color: var(--primary);
    }

    .pp-verify-list {
      padding-left: 1.2rem;
      margin: 0;
    }

    .pp-verify-list li {
      margin-bottom: 0.65rem;
    }

    .pp-rights-table td:first-child {
      width: 11rem;
      text-align: left;
      font-weight: 700;
      vertical-align: top;
    }

    .pp-rights-table td p {
      margin-bottom: 0.65rem;
    }

    .pp-rights-table td p:last-child {
      margin-bottom: 0;
    }

    .tos-table td {
      width: 50%;
      vertical-align: top;
    }

    .tos-table td p {
      margin-bottom: 0.65rem;
    }

    .tos-table td p:last-child {
      margin-bottom: 0;
    }

    .pp-caps {
      font-size: 0.88rem;
      font-weight: 600;
    }

    .pp-nutrition-cards {
      display: grid;
      gap: 1rem;
      margin: 1rem 0 1.5rem;
    }

    @media (min-width: 768px) {
      .pp-nutrition-cards {
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
    }

    .content-card a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .content-card a:hover,
    .content-card a:focus-visible {
      color: var(--primary-dark);
    }

    .pp-divider {
      border: none;
      border-top: 1px solid var(--light-gray);
      margin: 1.5rem 0;
    }

    .pp-figure {
      margin: 1.25rem 0;
      text-align: center;
    }

    .pp-figure img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid var(--light-gray);
    }

    .content-card h1 {
      color: var(--primary);
      font-size: clamp(1.6rem, 3vw, 2rem);
      margin-bottom: 0.35rem;
    }

    .content-card .meta {
      color: var(--mid-gray);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .content-card h2 {
      font-size: 1.15rem;
      color: var(--dark-gray);
      margin: 1.5rem 0 0.5rem;
    }

    .content-card p,
    .content-card li {
      color: var(--mid-gray);
      margin-bottom: 0.75rem;
    }

    .content-card ul {
      padding-left: 1.2rem;
      margin-bottom: 0.75rem;
    }

    /* Footer */
    .site-footer {
      background: var(--primary-deep);
      color: var(--white);
      padding: 1.75rem 0;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
    }

    .footer-nav a {
      font-size: 0.92rem;
      font-weight: 500;
      opacity: 0.9;
      transition: opacity var(--transition);
    }

    .footer-nav a:hover,
    .footer-nav a:focus-visible {
      opacity: 1;
      text-decoration: underline;
      outline: none;
    }

    .to-top {
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 8px;
      background: var(--primary);
      color: var(--white);
      cursor: pointer;
      display: grid;
      place-items: center;
      transition: background var(--transition), transform var(--transition);
    }

    .to-top:hover,
    .to-top:focus-visible {
      background: var(--primary-dark);
      transform: translateY(-2px);
      outline: none;
    }

    .to-top svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .footer-copy {
      width: 100%;
      font-size: 0.82rem;
      opacity: 0.7;
      margin-top: 0.25rem;
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Breakpoints */
    @media (min-width: 640px) {
      .sme-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }

      .band-inner {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
      }

      .store-badges {
        padding-top: 2.5rem;
      }
    }

    @media (min-width: 900px) {
      .brand-tag {
        display: block;
      }
    }

    @media (max-width: 899px) {
      .band {
        clip-path: polygon(0 18px, 100% 0, 100% 100%, 0 100%);
      }
    }