    /* ── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --evergreen:        #2E7D5E;
      --evergreen-dark:   #1f5a43;
      --evergreen-light:  #e8f5ef;
      --evergreen-mid:    #c2e0d2;
      --warm-fawn:        #D1B478;
      --thistle:          #B7ADCF;
      --dusty-rose:       #C49098;
      --powder-blue:      #98C1D9;
      --bg:               #faf8f5;
      --bg-card:          #ffffff;
      --bg-muted:         #f2efe9;
      --border:           rgba(0,0,0,0.07);
      --border-mid:       rgba(0,0,0,0.12);
      --text:             #1a1a1a;
      --text-mid:         #4a4a4a;
      --text-muted:       #6e6e6e;
      --text-faint:       #999;
      --font-display:     'Playfair Display', Georgia, serif;
      --font-body:        'Lato', -apple-system, sans-serif;
      --max-w:            840px;
      --radius:           12px;
      --radius-sm:        8px;
    }

    /* ── RESET ──────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      line-height: 1.7;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }
    a { color: var(--evergreen); text-decoration: none; }
    a:hover { text-decoration: underline; }
    img { max-width: 100%; display: block; }

    /* ── SUBTLE BACKGROUND GRADIENT ────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(209,180,120,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 100% 80%, rgba(183,173,207,0.07) 0%, transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    /* ── STICKY NAV ─────────────────────────────────────────────── */
    /*
      FIX 2: Nav is now a vertical column — brand on top, links below.
      text-align: center on the inner container centres both rows.
      We keep the frosted-glass backdrop and border as before.
    */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250,248,245,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .site-nav-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 10px 24px 12px;
      display: flex;
      flex-direction: column;   /* vertical stack */
      align-items: center;      /* centre both rows */
      gap: 8px;
    }
    .nav-brand {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 15px;
      color: var(--text);
      white-space: nowrap;
      letter-spacing: 0.01em;
    }
    .nav-brand span { color: var(--evergreen); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .nav-links a {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 4px 10px;
      border-radius: 100px;       /* pill shape ready for active state */
      transition: color 0.15s, background 0.15s;
    }
    .nav-links a:hover {
      color: var(--evergreen);
      background: var(--evergreen-light);
      text-decoration: none;
    }
    /*
      FIX 1: Active nav link — green pill, added/removed by the scrollspy JS.
      Uses a slightly higher-opacity background so it reads clearly as current position.
    */
    .nav-links a.active {
      color: var(--evergreen);
      background: var(--evergreen-light);
      border: 1px solid var(--evergreen-mid);
    }

    /* ==========================================================
   PRESS KIT SECTION NAVIGATION
   ========================================================== */

.presskit-nav {
  position: sticky;
  top: 63px;
  z-index: 90;

  background: rgba(250, 248, 245, 0.95);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid var(--border);
}

.presskit-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 28px;

  display: flex;
  align-items: center;
  gap: 22px;

  overflow-x: auto;

  scrollbar-width: none;
}

.presskit-nav-inner::-webkit-scrollbar {
  display: none;
}

.presskit-nav a {
  flex: 0 0 auto;

  font-size: 11px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.05em;

  color: var(--text-muted);

  text-decoration: none;
}

.presskit-nav a:hover,
.presskit-nav a.active {
  color: var(--evergreen);
  text-decoration: none;
}

@media (max-width: 600px) {

  .presskit-nav {
    top: 56px;
  }

  .presskit-nav-inner {
    padding-left: 20px;
    padding-right: 20px;
    gap: 18px;
  }

}

    /* ── PAGE WRAPPER ───────────────────────────────────────────── */
    .page { position: relative; z-index: 1; }
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── HERO ───────────────────────────────────────────────────── */
    .hero {
      padding: 72px 0 60px;
      text-align: center;
    }
    .hero-eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--evergreen);
      background: var(--evergreen-light);
      border: 1px solid var(--evergreen-mid);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 28px;
    }

    /*
    Hero app icon.
      - Removed display:flex/align-items/justify-content from the container;
        instead we use line-height:0 + font-size:0 to kill any anonymous text
        nodes (including the stray ">" character that was in the original HTML).
      - The img itself is display:block with width/height 100% so it fills the
        container exactly and sits at the true top-left with no offset.
      - box-shadow is on the container, border-radius clips the image.
      - margin: 0 auto centres the block-level container horizontally.
    */
    .hero-app-icon {
      width: 96px;
      height: 96px;
      border-radius: 28px;
      margin: 0 auto 28px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.07);
      overflow: hidden;
      line-height: 0;      /* collapses any whitespace/text nodes inside */
      font-size: 0;        /* belt-and-suspenders: hides stray text nodes */
    }
    .hero-app-icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 6vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .hero h1 em { font-style: italic; color: var(--evergreen); }
    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: var(--text-mid);
      max-width: 540px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 100px;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-1px); text-decoration: none; }
    .btn-primary {
      background: var(--evergreen);
      color: #fff;
      box-shadow: 0 4px 16px rgba(46,125,94,0.3);
    }
    .btn-primary:hover { background: var(--evergreen-dark); box-shadow: 0 6px 20px rgba(46,125,94,0.4); }
    .btn-secondary {
      background: var(--bg-card);
      color: var(--text);
      border: 1.5px solid var(--border-mid);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .btn-secondary:hover { border-color: var(--evergreen); color: var(--evergreen); }
    .hero-contact-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--text-faint);
    }
    .hero-contact-note a { color: var(--text-muted); font-weight: 700; }
    .hero-contact-note a:hover { color: var(--evergreen); }

    /* ── SECTION STRUCTURE ──────────────────────────────────────── */
    .section {
      padding: 72px 0;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.5s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--evergreen);
      margin-bottom: 8px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 34px);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 32px;
    }
    .section-title em { font-style: italic; color: var(--evergreen); }

    /* ── AT A GLANCE — TABLE ────────────────────────────────────── */
    .glance-table { width: 100%; border-collapse: collapse; }
    .glance-table tr { border-bottom: 1px solid var(--border); }
    .glance-table tr:last-child { border-bottom: none; }
    .glance-table td {
      padding: 14px 0;
      font-size: 15px;
      vertical-align: top;
    }
    .glance-table td:first-child {
      width: 200px;
      font-weight: 700;
      color: var(--text-muted);
      padding-right: 24px;
    }
    .glance-table td:last-child { color: var(--text); }
    .glance-table a { word-break: break-all; }

    /* ── STORY ──────────────────────────────────────────────────── */
    .story-body {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-mid);
      max-width: 680px;
    }
    .story-body p { margin-bottom: 20px; }
    .story-body p:last-child { margin-bottom: 0; }
    .story-body strong { color: var(--text); font-weight: 700; }
    .story-pull {
      font-family: var(--font-display);
      font-size: clamp(20px, 3vw, 26px);
      font-style: italic;
      color: var(--text);
      line-height: 1.4;
      border-left: 3px solid var(--warm-fawn);
      padding-left: 24px;
      margin: 40px 0;
    }

    /* ── FEATURES ───────────────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .feature-card:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
      transform: translateY(-2px);
    }
    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }
    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 8px;
      color: var(--text);
    }
    .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    /* ── PRICING ────────────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px;
    }
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
    }
    .pricing-card.featured {
      border-color: var(--evergreen);
      background: var(--evergreen-light);
    }
    .pricing-card h3 {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .pricing-amount { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
    .pricing-amount span { font-size: 14px; font-weight: 400; color: var(--text-muted); }
    .pricing-note { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
    .pricing-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .pricing-card li {
      font-size: 13px;
      color: var(--text-mid);
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }
    .pricing-card li::before {
      content: '✓';
      color: var(--evergreen);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* ── TECHNICAL TABLE ────────────────────────────────────────── */
    .tech-table { width: 100%; border-collapse: collapse; }
    .tech-table tr { border-bottom: 1px solid var(--border); }
    .tech-table tr:last-child { border-bottom: none; }
    .tech-table td { padding: 12px 0; font-size: 14px; vertical-align: top; }
    .tech-table td:first-child {
      width: 200px;
      font-weight: 700;
      color: var(--text-muted);
      padding-right: 24px;
    }
    .tech-table code {
      font-family: 'SF Mono', 'Fira Mono', 'Menlo', monospace;
      font-size: 12px;
      background: var(--bg-muted);
      padding: 2px 6px;
      border-radius: 4px;
      color: var(--evergreen-dark);
    }

    /* ── FOUNDER BIO ────────────────────────────────────────────── */
    .founder-block { display: flex; gap: 32px; align-items: flex-start; }
    .founder-photo {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      line-height: 0;
      font-size: 0;
    }
    .founder-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .founder-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 4px; }
    .founder-role {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .founder-bio { font-size: 15px; line-height: 1.75; color: var(--text-mid); max-width: 600px; }
    .founder-bio p { margin-bottom: 12px; }
    .founder-bio p:last-child { margin-bottom: 0; }
    .founder-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
    .founder-link {
      font-size: 13px;
      font-weight: 700;
      color: var(--evergreen);
      border: 1.5px solid var(--evergreen-mid);
      padding: 5px 14px;
      border-radius: 100px;
      transition: background 0.15s;
    }
    .founder-link:hover { background: var(--evergreen-light); text-decoration: none; }

    /* ── QUOTES ─────────────────────────────────────────────────── */
    .quotes-label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 24px; }
    .quote-block {
      border-left: 3px solid var(--evergreen-mid);
      padding: 20px 28px;
      margin-bottom: 28px;
      background: var(--bg-card);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .quote-text {
      font-family: var(--font-display);
      font-size: 18px;
      font-style: italic;
      line-height: 1.6;
      color: var(--text);
      margin-bottom: 10px;
    }
    .quote-attr { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }

    /* ── BOILERPLATE ────────────────────────────────────────────── */
    .boilerplate-block {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 20px;
    }
    .boilerplate-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      background: var(--bg-muted);
    }
    .boilerplate-header h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .copy-btn {
      font-size: 12px;
      font-weight: 700;
      color: var(--evergreen);
      background: none;
      border: 1.5px solid var(--evergreen-mid);
      padding: 4px 14px;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.15s;
      font-family: var(--font-body);
    }
    .copy-btn:hover { background: var(--evergreen-light); }
    .copy-btn.copied { color: var(--text-muted); border-color: var(--border-mid); }
    .boilerplate-body { padding: 20px; font-size: 15px; line-height: 1.75; color: var(--text-mid); }

    /* ── FAQ ────────────────────────────────────────────────────── */
    .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-q {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .faq-q .chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--text-muted);
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q .chevron { transform: rotate(180deg); }
    .faq-a {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.75;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }

    /* ── ASSETS / BRAND ─────────────────────────────────────────── */
    .assets-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 16px;
    }
    .asset-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      text-align: center;
    }
    .asset-preview {
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: var(--text-faint);
      border-bottom: 1px solid var(--border);
    }
    .asset-preview.light-bg { background: #fff; }
    .asset-preview.dark-bg  { background: #1a1a1a; color: #666; }
    .asset-preview.gradient-bg {
      background: linear-gradient(135deg, #98C1D9 0%, #B7ADCF 50%, #D1B478 100%);
    }
    .asset-preview img { max-height: 80px; max-width: 80%; object-fit: contain; }
    .asset-info { padding: 14px; }
    .asset-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .asset-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
    .asset-link {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--evergreen);
      border: 1px solid var(--evergreen-mid);
      padding: 3px 10px;
      border-radius: 100px;
      transition: background 0.15s;
    }
    .asset-link:hover { background: var(--evergreen-light); text-decoration: none; }

    .color-swatches { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
    .swatch { text-align: center; }
    .swatch-dot {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      margin: 0 auto 8px;
      border: 1px solid rgba(0,0,0,0.08);
    }
    .swatch-name { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
    .swatch-hex { font-size: 11px; color: var(--text-faint); font-family: 'SF Mono', monospace; }

    .usage-note {
      background: var(--bg-muted);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-top: 28px;
    }
    .usage-note strong { color: var(--text); }

    /* ── SCREENSHOTS ────────────────────────────────────────────── */
    .screenshots-row {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      margin-bottom: 16px;
    }
    .screenshot-placeholder {
      flex-shrink: 0;
      width: 160px;
      height: 347px;
      background: linear-gradient(160deg, var(--bg-muted) 0%, #e8e4de 100%);
      border-radius: 16px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: var(--text-faint);
      text-align: center;
      object-fit: cover;  /* used when the element is an <img> */
    }

    /* ── CONTACT ────────────────────────────────────────────────── */
    .contact-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 40px;
      text-align: center;
      max-width: 500px;
    }
    .contact-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
    .contact-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
    .contact-email { font-size: 20px; font-weight: 700; color: var(--evergreen); margin-bottom: 8px; display: block; }
    .contact-response { font-size: 12px; color: var(--text-faint); margin-top: 12px; }

    /* ── FOOTER ─────────────────────────────────────────────────── */
    .footer { border-top: 1px solid var(--border); padding: 40px 0 56px; text-align: center; }
    .footer-brand { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 12px; }
    .footer-brand span { color: var(--evergreen); }
    .footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
    .footer-links a { font-size: 13px; color: var(--text-muted); }
    .footer-links a:hover { color: var(--evergreen); }
    .footer-copy { font-size: 12px; color: var(--text-faint); }

    /* ── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 600px) {
      .hero { padding: 48px 0 40px; }
      .founder-block { flex-direction: column; gap: 20px; }
      .glance-table td:first-child { width: 120px; font-size: 13px; }
      .contact-card { padding: 28px 24px; }
    }