  /* ── Video ────────────────────────────────────── */
  .watch {
    padding: 5rem 2rem;
    background: #143728;
  }
  .video {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(116,198,157,.18);
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
  }
  .video img, .video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
  }
  .video img { object-fit: cover; }
  .video-play {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 84px; height: 84px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: var(--green-500);
    color: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0,0,0,.45);
    transition: transform .15s, background .2s;
  }
  .video-play svg { margin-left: 4px; }
  .video-play:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--green-400); }
  .video-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
  .video-fallback {
    position: absolute;
    left: 50%; bottom: 1rem;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 600;
  }
  .chapters {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    max-width: 880px;
    margin: 1.5rem auto 0;
  }
  .chapters a {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    border-radius: 100px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(116,198,157,.15);
    color: var(--green-100);
    font-size: .85rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s, background .2s;
  }
  .chapters a:hover { border-color: rgba(116,198,157,.4); background: rgba(255,255,255,.08); }
  .chapters span { color: var(--green-400); font-variant-numeric: tabular-nums; }
  .watch-note {
    text-align: center;
    color: rgba(255,255,255,.4);
    font-size: .8rem;
    margin-top: 1rem;
  }

  /* ── Pricing ──────────────────────────────────── */
  .pricing {
    padding: 5rem 2rem;
    background: var(--green-900);
  }
  .price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
  }
  .price-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(116,198,157,.12);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
  .price-card.featured {
    border-color: rgba(244,162,97,.45);
    background: rgba(244,162,97,.06);
  }
  .price-card h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--green-300);
    margin-bottom: .75rem;
  }
  .price {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1;
  }
  .price small {
    font-size: .95rem;
    font-weight: 500;
    color: var(--green-300);
    letter-spacing: 0;
    margin-left: .25rem;
  }
  .price-card ul {
    list-style: none;
    margin: 1.5rem 0 0;
    display: grid;
    gap: .55rem;
    font-size: .92rem;
    color: var(--green-100);
    line-height: 1.45;
  }
  .price-card li { padding-left: 1.4rem; position: relative; }
  .price-card li::before {
    content: '';
    position: absolute;
    left: 0; top: .5em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-500);
  }
  .price-card.featured li::before { background: var(--orange); }
  .price-note {
    text-align: center;
    color: var(--green-300);
    font-size: .9rem;
    margin-top: 2rem;
    line-height: 1.6;
  }
  .price-legal {
    text-align: center;
    color: rgba(255,255,255,.35);
    font-size: .78rem;
    margin-top: .75rem;
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto; margin-right: auto;
  }

  /* ── What's new ───────────────────────────────── */
  .whats-new {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #143728 0%, var(--green-900) 100%);
  }
  .release {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(116,198,157,.12);
    border-radius: 20px;
    padding: 2.25rem;
  }
  .release-meta {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--green-400);
    margin-bottom: 1rem;
  }
  .release ul {
    list-style: none;
    display: grid;
    gap: .8rem;
    font-size: .95rem;
    color: var(--green-100);
    line-height: 1.55;
  }
  .release li { padding-left: 1.4rem; position: relative; }
  .release li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green-500);
  }

  /* ── FAQ ─────────────────────────────────────── */
  .faq {
    padding: 5rem 2rem;
    background: var(--green-900);
  }
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: .75rem;
  }
  .faq-list details {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(116,198,157,.12);
    border-radius: 16px;
    padding: 0 1.5rem;
  }
  .faq-list details[open] { border-color: rgba(116,198,157,.3); }
  .faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 0;
    font-weight: 700;
    font-size: 1.02rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .faq-list summary::-webkit-details-marker { display: none; }
  .faq-list summary::after {
    content: '+';
    color: var(--green-400);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
  }
  .faq-list details[open] summary::after { content: '–'; }
  .faq-list details p {
    color: var(--green-300);
    font-size: .95rem;
    line-height: 1.6;
    padding-bottom: 1.25rem;
  }

  /* ── Blog ─────────────────────────────────────── */
  .blog {
    padding: 5rem 2rem;
    background: #143728;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
  }
  .blog-card {
    display: block;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(116,198,157,.12);
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: transform .2s, border-color .3s;
  }
  .blog-card:hover { transform: translateY(-3px); border-color: rgba(116,198,157,.35); }
  .blog-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: .5rem; color: #fff; }
  .blog-card p { font-size: .9rem; color: var(--green-300); line-height: 1.5; }

  /* ── Footer CTA ──────────────────────────────── */
  .footer-cta {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background: #143728;
    position: relative;
  }

  .footer-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .footer-cta p {
    color: var(--green-300);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    margin-left: auto; margin-right: auto;
  }

  .footer-links {
    margin-top: 3rem;
    font-size: .85rem;
    color: rgba(255,255,255,.35);
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-links a { color: rgba(255,255,255,.55); text-decoration: none; }
  .footer-links a:hover { color: #fff; }

  .copyright {
    margin-top: 1.25rem;
    font-size: .8rem;
    color: rgba(255,255,255,.25);
  }

  /* ── App Store badge ────────────────────────── */
  .store-badge {
    display: inline-block;
    transition: transform .15s, filter .2s;
  }
  .store-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  }
  .store-badge img { height: 56px; width: auto; display: block; }

  /* ── Responsive ─────────────────────────────── */
  @media (max-width: 600px) {
    .feature-row { grid-template-columns: 1fr; padding: 1.5rem; }
  }
