
    :root {
      --paper: #faf4ed;
      --paper-deep: #f2e9e1;
      --surface: #fffaf3;
      --ink: #1c1c1e;
      --muted: #656469;
      --line: #d9d3ce;
      --green: #2e7d32;
      --green-deep: #205d25;
      --green-soft: #ddefdc;
      --red: #b3261e;
      --warm: #e9a96d;
      --shadow: 0 22px 60px rgba(38, 40, 33, .12);
      --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    }
    html.dark {
      --paper: #1e1e2e;
      --paper-deep: #2a2a3b;
      --surface: #242435;
      --ink: #f1f0f5;
      --muted: #b7b4c2;
      --line: #444356;
      --green: #7fbe78;
      --green-deep: #a6d59f;
      --green-soft: #304b38;
      --red: #e8928a;
      --warm: #e9a96d;
      --shadow: 0 22px 60px rgba(0, 0, 0, .34);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      margin: 0;
      min-width: 0;
      overflow-x: hidden;
      color: var(--ink);
      background: var(--paper);
      font-family: var(--sans);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; }
    a[href] { cursor: pointer; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }
    img { display: block; max-width: 100%; }

    .site-nav {
      position: sticky;
      z-index: 30;
      top: 0;
      border-bottom: 1px solid rgba(217, 211, 206, .9);
      background: rgba(250, 244, 237, .94);
      backdrop-filter: blur(14px);
    }
    .nav-inner {
      width: min(1180px, calc(100% - 48px));
      height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-size: 18px;
      font-weight: 820;
      letter-spacing: -.02em;
      white-space: nowrap;
    }
    .brand img {
      width: 32px;
      height: 32px;
      border-radius: 9px;
    }
    .nav-links {
      order: 2;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 26px;
      margin-left: auto;
    }
    .nav-links a {
      color: #3f3f42;
      font-size: 14px;
      font-weight: 670;
      text-decoration: none;
    }
    .nav-links a:hover { color: var(--green); }
    .nav-links a.nav-cta.button.primary, .nav-links a.nav-cta.button.primary:hover { color: #fff; }
    .nav-cta,
    .button {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: 14px;
      border: 1px solid var(--green);
      background: var(--green);
      color: #fff;
      font-weight: 780;
      text-decoration: none;
      transition: background .16s, border-color .16s, transform .16s;
    }
    .nav-cta { min-height: 46px; padding-inline: 18px; font-size: 14px; }
    .nav-cta:hover, .button.primary:hover { background: var(--green-deep); border-color: var(--green-deep); }
    .button.secondary {
      background: transparent;
      color: var(--ink);
      border-color: #bdb7b2;
    }
    .button.secondary:hover { border-color: var(--ink); }
    .button.white {
      background: var(--surface);
      color: var(--ink);
      border-color: var(--line);
      font-weight: 800;
      font-size: 16px;
    }
    .button.white:hover { background: var(--surface); border-color: var(--green-deep); }
    .button.white .heart-ico { color: var(--green); stroke-width: 3.5; }
    .button .arrow { transition: transform .16s; }
    .button:hover .arrow { transform: translateX(3px); }
    .menu-button {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: var(--surface);
      color: var(--ink);
    }
    .menu-button svg { width: 21px; height: 21px; }

    main { overflow: hidden; }
    .hero {
      position: relative;
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 86px 0 88px;
      display: grid;
      grid-template-columns: minmax(0, .96fr) minmax(390px, .8fr);
      align-items: center;
      gap: clamp(56px, 8vw, 112px);
    }
    .hero-copy { position: relative; z-index: 1; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 22px;
      color: var(--green-deep);
      font-size: 14px;
      font-weight: 790;
    }
    .eyebrow::before {
      content: "";
      width: 32px;
      height: 2px;
      border-radius: 9px;
      background: var(--green);
    }
    h1 {
      max-width: 660px;
      margin: 0;
      font-size: clamp(50px, 6.4vw, 82px);
      line-height: .98;
      letter-spacing: -.06em;
      font-weight: 860;
    }
    .hero-copy > p {
      max-width: 590px;
      margin: 28px 0 0;
      color: #47464a;
      font-size: clamp(18px, 2vw, 21px);
      line-height: 1.55;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }
    .availability {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 24px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }
    .availability strong { color: var(--ink); }
    .availability .dot {
      flex: none;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(46, 125, 50, .12);
    }

    .hero-visual {
      position: relative;
      min-height: 590px;
      display: grid;
      place-items: center;
    }
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 8% -22% 6% 5%;
      background: var(--green-soft);
      border-radius: 47% 53% 56% 44% / 42% 39% 61% 58%;
      transform: rotate(-4deg);
    }
    .phone {
      position: relative;
      width: min(368px, 100%);
      padding: 10px;
      border-radius: 40px;
      border: 1px solid #bcb7b1;
      background: #171719;
      box-shadow: var(--shadow);
      transform: rotate(2deg);
    }
    .phone::before {
      content: "";
      position: absolute;
      z-index: 2;
      top: 18px;
      left: 50%;
      width: 86px;
      height: 23px;
      transform: translateX(-50%);
      border-radius: 20px;
      background: #171719;
    }
    .screen {
      position: relative;
      min-height: 590px;
      overflow: hidden;
      border-radius: 31px;
      background: var(--paper);
    }
    .mock-top {
      height: 66px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 0 20px 13px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 253, 248, .92);
    }
    .mock-top strong { font-size: 16px; }
    .mock-top span { color: var(--green); font-size: 12px; font-weight: 800; }
    .mock-content { padding: 20px 17px 84px; }
    .workout-context {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
    }
    .workout-context p { margin: 0; font-size: 12px; color: var(--muted); }
    .program-chip {
      flex: none;
      padding: 6px 9px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-deep);
      font-size: 10px;
      font-weight: 800;
    }
    .mock-card {
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: var(--surface);
      box-shadow: 0 6px 18px rgba(28, 28, 30, .05);
    }
    .mock-card + .mock-card { margin-top: 12px; }
    .mock-card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .mock-card h3 { margin: 0; font-size: 15px; letter-spacing: -.02em; }
    .mock-card-head span { color: var(--muted); font-size: 11px; }
    .warm-row + .warm-row { margin-top: 11px; }
    .warm-label { display: flex; justify-content: space-between; gap: 12px; font-size: 11px; }
    .warm-label strong { font-size: 11px; }
    .warm-bar { height: 7px; margin-top: 5px; overflow: hidden; border-radius: 999px; background: #e5e1dc; }
    .warm-bar i { display: block; height: 100%; border-radius: inherit; background: var(--green); }
    .warm-row.optional .warm-bar { background: repeating-linear-gradient(90deg, #e2ddd8 0 7px, transparent 7px 11px); }
    .warm-row.optional .warm-bar i { opacity: .58; }
    .exercise-name { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; }
    .exercise-name .number {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: var(--green-soft);
      color: var(--green-deep);
      font-size: 11px;
    }
    .set-head, .set-row {
      display: grid;
      grid-template-columns: 28px 1fr 1fr 34px;
      align-items: center;
      gap: 8px;
    }
    .set-head { margin: 14px 0 7px; color: var(--muted); font-size: 9px; text-align: center; }
    .set-row + .set-row { margin-top: 7px; }
    .set-num { color: var(--muted); font-size: 11px; text-align: center; }
    .set-value {
      height: 33px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fffdf8;
      font-size: 11px;
      font-weight: 720;
    }
    .set-check {
      width: 31px;
      height: 31px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: var(--green);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
    }
    .set-check.open { border: 1px solid var(--line); background: transparent; color: transparent; }
    .mock-nav {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 68px;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid var(--line);
      background: rgba(255, 253, 248, .97);
    }
    .mock-tab {
      display: grid;
      place-content: center;
      gap: 3px;
      color: #77757a;
      font-size: 8px;
      text-align: center;
    }
    .mock-tab svg { width: 17px; height: 17px; margin: 0 auto; }
    .mock-tab.active { color: var(--green); font-weight: 800; }
    .float-note {
      position: absolute;
      right: -30px;
      top: 18%;
      width: 170px;
      padding: 13px 15px;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: #fffdf8;
      box-shadow: 0 12px 34px rgba(28, 28, 30, .12);
      transform: rotate(-3deg);
    }
    .float-note strong { display: block; color: var(--green-deep); font-size: 12px; }
    .float-note span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.4; }

    .proof-strip {
      border-block: 1px solid var(--line);
      background: var(--surface);
    }
    .proof-inner {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.15fr repeat(4, 1fr);
      align-items: stretch;
    }
    .proof-intro, .proof-item { padding: 26px 28px; }
    .proof-intro { padding-left: 0; }
    .proof-intro p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
    .proof-item { border-left: 1px solid var(--line); }
    .proof-item strong { display: block; font-size: 24px; letter-spacing: -.035em; }
    .proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

    .section {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 112px 0;
    }
    .section-head {
      max-width: 760px;
      margin-bottom: 56px;
    }
    .section-head h2 {
      margin: 0;
      font-size: clamp(36px, 4.8vw, 58px);
      line-height: 1.05;
      letter-spacing: -.05em;
    }
    .section-head p {
      max-width: 620px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
    }
    .feature-list { border-top: 1px solid var(--line); }
    .feature {
      display: grid;
      grid-template-columns: 92px minmax(0, .72fr) minmax(320px, 1fr);
      gap: 28px;
      align-items: start;
      padding: 36px 0;
      border-bottom: 1px solid var(--line);
    }
    .feature-num { color: var(--green); font-size: 13px; font-weight: 800; }
    .feature h3 { margin: 0; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.04em; }
    .feature-copy { color: #4d4c50; font-size: 16px; line-height: 1.65; }
    .feature-copy p { margin: 0; }
    .feature-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
    .feature-tags span {
      padding: 6px 9px;
      border-radius: 999px;
      background: var(--paper-deep);
      color: #555358;
      font-size: 11px;
      font-weight: 730;
    }

    .migration-section {
      background: #202421;
      color: #fff;
    }
    .migration-inner {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 100px 0;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
      gap: 90px;
      align-items: center;
    }
    .migration-inner h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.02; letter-spacing: -.055em; }
    .migration-inner p { max-width: 570px; margin: 22px 0 30px; color: #d4d5d4; font-size: 18px; line-height: 1.6; }
    .migration-inner .button.secondary { border-color: #7f837f; color: #fff; }
    .migration-list { border-top: 1px solid #4b4e4b; }
    .migration-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 16px;
      padding: 20px 0;
      border-bottom: 1px solid #4b4e4b;
    }
    .migration-row b {
      width: 29px;
      height: 29px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #9fd8a3;
      color: #18331b;
      font-size: 13px;
    }
    .migration-row strong { display: block; font-size: 16px; }
    .migration-row span { display: block; margin-top: 5px; color: #b8bbb8; font-size: 13px; line-height: 1.45; }

    .free-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 80px;
      align-items: start;
    }
    .prog-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 70px; align-items: center; }
    .progression-showcase { padding-top: 36px; }
    .prog-mock .suggest-card { max-width: 440px; }
    .prog-mock .suggest-card.ghost { margin-top: 18px; margin-left: 34px; opacity: .72; }
    .suggest-row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
    .suggest-row span { color: var(--muted); }
    .suggest-row strong { font-weight: 800; }
    .suggest-row.next strong { color: var(--green-deep); font-size: 15px; }
    .suggest-basis { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
    .suggest-actions { display: flex; gap: 10px; margin-top: 14px; }
    .suggest-actions .button { padding: 10px 18px; font-size: 13px; }
    .prog-copy .page-kicker { margin-bottom: 14px; }
    .prog-copy h2 { margin: 0; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -.05em; }
    .prog-copy > p { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 560px; }
    .prog-points { margin: 22px 0 0; padding: 0; list-style: none; }
    .prog-points li { padding: 12px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 15px; line-height: 1.6; }
    .prog-points li:last-child { border-bottom: 1px solid var(--line); }
    .prog-points strong { color: var(--ink); }
    .free-statement {
      position: sticky;
      top: 110px;
    }
    .free-statement .answer {
      display: block;
      color: var(--green);
      font-size: clamp(72px, 10vw, 128px);
      line-height: .82;
      letter-spacing: -.075em;
      font-weight: 880;
    }
    .free-statement h2 {
      max-width: 500px;
      margin: 24px 0 0;
      font-size: clamp(34px, 4.2vw, 52px);
      line-height: 1.04;
      letter-spacing: -.05em;
    }
    .free-details { border-top: 1px solid var(--line); }
    .free-row { padding: 28px 0; border-bottom: 1px solid var(--line); }
    .free-row h3 { margin: 0 0 9px; font-size: 19px; }
    .free-row p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.62; }
    .free-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

    .pathways {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto 112px;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }
    .pathway {
      min-height: 380px;
      padding: clamp(30px, 5vw, 54px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: var(--surface);
    }
    .pathway.training { background: var(--green); color: #fff; border-color: var(--green); }
    .pathway h2 { max-width: 560px; margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.03; letter-spacing: -.05em; }
    .pathway p { max-width: 520px; margin: 18px 0 0; color: var(--muted); line-height: 1.6; }
    .pathway.training p { color: #e3f0e3; }
    .pathway a {
      align-self: flex-start;
      margin-top: 38px;
      font-weight: 800;
      text-decoration-thickness: 1px;
      text-underline-offset: 5px;
    }
    .pathway .small-mark {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 32px;
      border-radius: 15px;
      background: rgba(255,255,255,.14);
      font-size: 25px;
    }
    .journal-lines { display: grid; gap: 8px; margin-bottom: 34px; }
    .journal-lines i { display: block; height: 2px; background: var(--line); }
    .journal-lines i:nth-child(1) { width: 82%; }
    .journal-lines i:nth-child(2) { width: 100%; }
    .journal-lines i:nth-child(3) { width: 65%; }

    footer {
      border-top: 1px solid var(--line);
      background: var(--surface);
    }
    .footer-inner {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 54px 0 42px;
      display: grid;
      grid-template-columns: 1.1fr 2fr;
      gap: 44px;
      align-items: start;
    }
    .footer-brand { font-size: 20px; font-weight: 830; letter-spacing: -.025em; }
    .footer-copy { max-width: 400px; margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .footer-col h3 { margin: 0 0 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }
    .footer-col a { display: flex; align-items: center; gap: 6px; padding: 5px 0; color: #4c4b4f; font-size: 13px; font-weight: 680; text-decoration: none; }
    .footer-col a:hover { color: var(--green-deep); text-decoration: underline; text-underline-offset: 4px; }
    .footer-base {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
      padding: 18px 0 26px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }
    .footer-base .theme-toggle { width: 38px; height: 38px; border-radius: 11px; }
    .heart-ico { width: 15px; height: 15px; flex: none; color: var(--green); }

    .nav-controls { order: 3; display: none; align-items: center; gap: 10px; }
    .theme-toggle {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      flex: none;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface);
      color: var(--ink);
      cursor: pointer;
    }
    .theme-toggle svg { width: 19px; height: 19px; }
    .theme-toggle .moon { display: block; }
    .theme-toggle .sun { display: none; }
    html.dark .theme-toggle .moon { display: none; }
    html.dark .theme-toggle .sun { display: block; }

    .mockup-section { padding-top: 18px; }
    .mockup-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }
    .page-mockup { min-width: 0; }
    .page-mockup h3 { margin: 14px 3px 0; font-size: 15px; letter-spacing: -.02em; }
    .page-mockup > p { margin: 5px 3px 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
    .mini-phone {
      min-height: 348px;
      padding: 9px;
      border: 1px solid #aaa49f;
      border-radius: 25px;
      background: #171719;
      box-shadow: 0 12px 32px rgba(28, 28, 30, .1);
    }
    .mini-screen {
      min-height: 330px;
      overflow: hidden;
      border-radius: 18px;
      background: var(--paper);
    }
    .mini-top {
      min-height: 46px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 8px;
      padding: 0 12px 9px;
      border-bottom: 1px solid var(--line);
      background: var(--surface);
      font-size: 10px;
    }
    .mini-top strong { font-size: 11px; }
    .mini-top span { color: var(--green); font-weight: 800; }
    .mini-body { display: grid; gap: 9px; padding: 11px; }
    .mini-card { padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
    .mini-card strong { display: block; font-size: 10px; }
    .mini-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 8px; line-height: 1.4; }
    .mini-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 8px; }
    .mini-row:last-child { border-bottom: 0; }
    .mini-pill { padding: 3px 6px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: 7px; font-weight: 800; }
    .mini-chart { height: 70px; display: flex; align-items: end; gap: 5px; margin-top: 8px; }
    .mini-chart i { flex: 1; min-height: 12px; border-radius: 3px 3px 0 0; background: var(--green); opacity: .45; }
    .mini-chart i:nth-child(2) { height: 44%; }
    .mini-chart i:nth-child(3) { height: 68%; }
    .mini-chart i:nth-child(4) { height: 53%; }
    .mini-chart i:nth-child(5) { height: 88%; opacity: 1; }
    .mini-search { padding: 8px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-size: 8px; }
    .mini-progress { height: 5px; margin-top: 7px; overflow: hidden; border-radius: 999px; background: var(--paper-deep); }
    .mini-progress i { display: block; height: 100%; border-radius: inherit; background: var(--green); }

    .switch-choices { border-top: 1px solid #4b4e4b; }
    .switch-choice { border-bottom: 1px solid #4b4e4b; }
    .switch-choice summary {
      min-height: 62px;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 18px;
      list-style: none;
      cursor: pointer;
      font-weight: 780;
    }
    .switch-choice summary::-webkit-details-marker { display: none; }
    .switch-choice summary::after { content: "+"; color: #9fd8a3; font-size: 22px; font-weight: 500; }
    .switch-choice[open] summary::after { content: "−"; }
    .switch-choice summary span { color: #b8bbb8; font-size: 11px; font-weight: 650; }
    .switch-steps { margin: 0 0 20px; padding-left: 20px; color: #d4d5d4; font-size: 13px; line-height: 1.55; }
    .switch-steps li + li { margin-top: 5px; }
    .switch-note { margin: 15px 0 0 !important; color: #aeb1ae !important; font-size: 12px !important; }

    .article-link { font-weight: 760; text-underline-offset: 4px; }
    .placeholder-link {
      color: var(--muted);
      text-decoration-style: dashed;
      text-decoration-color: color-mix(in srgb, var(--muted) 55%, transparent);
      cursor: not-allowed;
    }
    .placeholder-link::after {
      content: "Coming soon";
      display: inline-block;
      margin-left: 8px;
      padding: 3px 7px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--paper-deep);
      color: var(--muted);
      font-size: 10px;
      font-weight: 760;
      text-decoration: none;
      vertical-align: 1px;
    }
    .placeholder-status { display: block; min-height: 18px; margin-top: 7px; color: var(--green-deep); font-size: 12px; }
    .page-view[hidden] { display: none; }
    .subpage {
      width: min(860px, calc(100% - 48px));
      margin: 0 auto;
      padding: 72px 0 112px;
    }
    .subpage-back {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 44px;
      color: var(--green-deep);
      font-size: 14px;
      font-weight: 780;
      text-decoration: none;
    }
    .subpage h1 { max-width: 760px; font-size: clamp(42px, 7vw, 68px); }
    .subpage-lede { max-width: 700px; margin: 22px 0 48px; color: var(--muted); font-size: 19px; line-height: 1.6; }
    .policy-block { padding: 28px 0; border-top: 1px solid var(--line); }
    .policy-block:last-child { border-bottom: 1px solid var(--line); }
    .policy-block h2 { margin: 0 0 11px; font-size: 25px; letter-spacing: -.03em; }
    .policy-block p, .policy-block li { color: var(--muted); font-size: 16px; line-height: 1.65; }
    .policy-block p { margin: 0; }
    .policy-block ul, .policy-block ol { margin: 0; padding-left: 22px; }
    .policy-block li + li { margin-top: 8px; }
    .tutorial-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .tutorial-step { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
    .tutorial-step b { color: var(--green); font-size: 12px; }
    .tutorial-step h2 { margin: 12px 0 8px; font-size: 23px; }
    .tutorial-step p { margin: 0; color: var(--muted); line-height: 1.58; }

    .nav-current {
      color: var(--muted);
      font-size: 14px;
      font-weight: 670;
      cursor: default;
    }
    .proof-link, .feature-link { color: inherit; text-decoration: none; }
    .proof-link:hover strong, .feature-link:hover h3 { color: var(--green-deep); }
    .page-kicker, .guide-kind {
      display: block;
      margin-bottom: 14px;
      color: var(--green-deep);
      font-size: 13px;
      font-weight: 800;
    }
    .example-workouts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .examples-section { margin-top: 64px; }
    .examples-section .section-h2 { margin: 0; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.04em; }
    .examples-section .section-lede { margin: 12px 0 0; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 640px; }
    .examples-section > .example-workouts { margin-top: 40px; }
    .program-card .program-pill { align-self: flex-start; margin: 18px 0 0; padding: 4px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .program-card h2 { margin-top: 10px; }
    .program-days { margin: 14px 0 0; font-size: 14px; color: var(--muted); }
    .program-days a { color: var(--green-deep); font-weight: 700; }
    .program-days .day-sep { color: var(--muted); margin: 0 4px; }
    .workout-example { display: flex; flex-direction: column; min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
    .example-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; color: var(--green-deep); font-size: 11px; font-weight: 760; }
    .workout-example h2 { margin: 20px 0 8px; font-size: 24px; letter-spacing: -.035em; }
    .workout-example > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
    .workout-example ol { margin: 22px 0 24px; padding: 0; border-top: 1px solid var(--line); list-style: none; }
    .workout-example li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
    .workout-example li strong { color: var(--ink); white-space: nowrap; }

    .switcher, .mode-toggle { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper-deep); }
    .switcher { margin-bottom: 22px; }
    .guide-switch-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
    .guide-switch-row .switcher { margin-bottom: 0; }
    .guide-switch-label { font-weight: 800; font-size: 14px; color: var(--muted); white-space: nowrap; }
    .switch-tab.import-toggle { border: 1px solid var(--line); background: var(--surface); border-radius: 12px; margin-left: 6px; white-space: nowrap; }
    .switch-tab.import-toggle.active { background: var(--green); border-color: var(--green); color: #fff; box-shadow: none; }
    .import-shots { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
    .import-shots .shot-placeholder { margin: 0; aspect-ratio: 4 / 3; }
    .switch-tab, .mode-button { min-height: 40px; padding: 0 14px; border: 0; border-radius: 10px; background: transparent; color: var(--muted); font-weight: 760; cursor: pointer; }
    .switch-tab.active, .mode-button.active { background: var(--surface); color: var(--ink); box-shadow: 0 2px 8px rgba(28, 28, 30, .08); }
    .guide-panel { padding: clamp(28px, 5vw, 46px); border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
    .guide-panel h2 { margin: 0 0 20px; font-size: 30px; letter-spacing: -.04em; }
    .guide-panel ol { margin: 0; padding-left: 23px; }
    .guide-panel li { padding-left: 8px; color: var(--muted); font-size: 16px; line-height: 1.65; }
    .guide-panel li + li { margin-top: 10px; }
    .guide-footnote { margin: 18px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }

    .bio-block {
      display: grid;
      grid-template-columns: minmax(180px, 220px) 1fr;
      gap: clamp(28px, 5vw, 54px);
      align-items: center;
      padding: clamp(24px, 5vw, 40px);
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--surface);
    }
    .headshot-slot {
      aspect-ratio: 4 / 5;
      display: grid;
      place-items: center;
      padding: 20px;
      border: 1px dashed color-mix(in srgb, var(--green) 50%, var(--line));
      border-radius: 18px;
      background: var(--green-soft);
      color: var(--green-deep);
      text-align: center;
    }
    .headshot-slot strong { display: block; font-size: 15px; }
    .headshot-slot span { display: block; margin-top: 5px; font-size: 12px; font-weight: 650; }
    .bio-copy h2 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.035em; }
    .bio-copy p { margin: 0; color: var(--muted); line-height: 1.6; }
    .service-card { margin-top: 48px; padding: clamp(24px, 5vw, 40px); border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
    .service-head { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
    .service-head h2 { margin: 0; font-size: 29px; letter-spacing: -.035em; }
    .service-panel { padding: 28px 0; }
    .service-panel h3 { margin: 0 0 14px; font-size: 23px; }
    .service-panel ul { display: grid; gap: 10px; margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.55; }
    .contact-strip { display: flex; justify-content: space-between; gap: 22px; align-items: center; padding-top: 22px; border-top: 1px solid var(--line); }
    .contact-strip strong, .contact-strip span { display: block; }
    .contact-strip span { margin-top: 4px; color: var(--muted); font-size: 13px; }
    .contact-strip .contact-placeholder { margin: 0; padding: 10px 13px; border-radius: 10px; background: var(--paper-deep); color: var(--muted); font-weight: 730; white-space: nowrap; }
    .training-note { margin-top: 20px; padding: 24px 26px; border-radius: 18px; background: var(--green-soft); }
    .training-note strong { color: var(--green-deep); }
    .training-note p { margin: 7px 0 0; color: var(--ink); line-height: 1.55; }

    .support-list { border-top: 1px solid var(--line); }
    .support-list article { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 30px 0; border-bottom: 1px solid var(--line); }
    .support-list article > span { color: var(--green); font-size: 13px; font-weight: 800; }
    .support-list h2 { margin: 0 0 8px; font-size: 26px; letter-spacing: -.03em; }
    .support-list p { max-width: 650px; margin: 0 0 12px; color: var(--muted); line-height: 1.6; }
    .support-list a, .support-list strong, .inline-link a { color: var(--green-deep); font-size: 14px; font-weight: 780; text-underline-offset: 4px; }
    .inline-link { margin-top: 12px !important; }
    .credit-list { border-top: 1px solid var(--line); }
    .credit-list article { display: grid; grid-template-columns: minmax(180px, .65fr) 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
    .credit-list h2 { margin: 0; font-size: 21px; }
    .credit-list p { margin: 0; color: var(--muted); line-height: 1.55; }

    html.dark .site-nav { background: rgba(30, 30, 46, .94); }
    html.dark .nav-links a, html.dark .footer-col a, html.dark .hero-copy > p, html.dark .feature-copy { color: #d5d2dc; }
    html.dark .set-value, html.dark .float-note { background: #2b2b3d; }
    html.dark .mock-top, html.dark .mock-nav { background: rgba(36, 36, 53, .97); }
    html.dark .migration-section { background: #151820; }
    html.dark .button.primary, html.dark .nav-cta { color: #172018; }
    html.dark .button.secondary { color: var(--ink); border-color: #6a6879; }
    html.dark .button.white { background: var(--surface); color: var(--ink); border-color: var(--line); }
    html.dark .migration-inner .button.secondary { color: #fff; }

    :focus-visible { outline: 3px solid rgba(46, 125, 50, .3); outline-offset: 3px; }

    @media (max-width: 900px) {
      .nav-inner { width: min(100% - 32px, 760px); }
      .menu-button { display: grid; }
      .nav-controls { display: flex; margin-left: auto; }
      .nav-links {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        display: none;
        justify-content: stretch;
        align-items: stretch;
        padding: 10px 16px 16px;
        border: 1px solid var(--line);
        border-radius: 0 0 16px 16px;
        background: var(--paper);
        box-shadow: 0 18px 32px rgba(28, 28, 30, .12);
        text-align: left;
      }
      .nav-links.open { display: grid; gap: 0; }
      .nav-links a, .nav-links .nav-current { min-height: 46px; display: flex; align-items: center; justify-content: flex-start; padding: 0 4px; border-bottom: 1px solid var(--line); }
      .nav-links .nav-current { color: var(--muted); }
      .nav-links .nav-cta { margin-top: 10px; padding-inline: 14px; border-bottom: 0; justify-content: center; }
      .nav-links .nav-cta.button.primary { color: #fff; }
      .hero { grid-template-columns: 1fr; width: min(100% - 40px, 720px); padding-top: 64px; gap: 58px; }
      .hero-copy { text-align: center; }
      .hero-copy h1, .hero-copy > p { margin-inline: auto; }
      .eyebrow, .hero-actions, .availability { justify-content: center; }
      .hero-visual { min-height: 570px; }
      .float-note { right: 3%; }
      .proof-inner { width: min(100% - 40px, 720px); grid-template-columns: repeat(4, 1fr); }
      .proof-intro { grid-column: 1 / -1; padding: 22px 0 14px; }
      .proof-item { padding: 20px 14px; }
      .proof-item:nth-of-type(2) { border-left: 0; }
      .section, .migration-inner, .pathways { width: min(100% - 40px, 720px); }
      .feature { grid-template-columns: 58px 1fr; }
      .feature-copy { grid-column: 2; }
      .migration-inner { grid-template-columns: 1fr; gap: 54px; }
      .free-grid { grid-template-columns: 1fr; gap: 54px; }
      .free-statement { position: static; }
      .prog-grid { grid-template-columns: 1fr; gap: 44px; }
      .prog-mock .suggest-card.ghost { margin-left: 0; }
      .pathways { grid-template-columns: 1fr; }
      .mockup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 18px; }
      .page-mockup:last-child { grid-column: 1 / -1; width: min(260px, 100%); justify-self: center; }
      .example-workouts { grid-template-columns: 1fr; }
      .bio-block { grid-template-columns: 1fr; gap: 22px; }
      .bio-note { min-height: 96px; }
      .import-shots { grid-template-columns: 1fr; }
      .guide-switch-row { align-items: stretch; }
      .guide-switch-label { align-self: center; }
      .service-head { flex-direction: column; }
    }

    @media (max-width: 600px) {
      .nav-inner { height: 64px; width: calc(100% - 28px); }
      .brand { font-size: 16px; }
      .brand img { width: 29px; height: 29px; }
      .nav-links { top: 64px; }
      .hero { width: calc(100% - 32px); padding: 48px 0 62px; }
      h1 { font-size: clamp(46px, 14.7vw, 66px); }
      .hero-copy > p { font-size: 17px; }
      .hero-actions { display: grid; }
      .button { width: 100%; }
      .availability { align-items: flex-start; text-align: left; }
      .availability .dot { margin-top: 5px; }
      .hero-visual { min-height: 545px; width: 100%; }
      .phone { width: min(334px, calc(100vw - 42px)); transform: rotate(0); }
      .screen { min-height: 548px; }
      .float-note { display: none; }
      .hero-visual::before { inset: 6% -30% 8% -12%; }
      .proof-inner { width: calc(100% - 44px); grid-template-columns: 1fr; padding-bottom: 8px; }
      .proof-intro { padding: 22px 0 12px; }
      .proof-item { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 0; border-left: 0; border-top: 1px solid var(--line); }
      .proof-item strong { font-size: 21px; }
      .proof-item span { text-align: right; }
      .section { width: calc(100% - 44px); padding: 82px 0; }
      .progression-showcase { padding-top: 30px; }
      .section-head { margin-bottom: 40px; }
      .section-head p { font-size: 16px; }
      .feature { grid-template-columns: 42px 1fr; gap: 16px; padding: 32px 0; }
      .feature-copy { font-size: 15px; }
      .migration-inner { width: calc(100% - 44px); padding: 78px 0; gap: 45px; }
      .migration-inner p { font-size: 16px; }
      .free-statement .answer { font-size: 82px; }
      .pathways { width: calc(100% - 44px); margin-bottom: 82px; }
      .pathway { min-height: 340px; border-radius: 23px; }
      .mockup-grid { grid-template-columns: 1fr; }
      .page-mockup, .page-mockup:last-child { grid-column: auto; width: min(286px, 100%); justify-self: center; }
      .subpage { width: calc(100% - 32px); padding: 48px 0 82px; }
      .subpage-back { margin-bottom: 32px; }
      .subpage-lede { font-size: 17px; margin-bottom: 36px; }
      .tutorial-steps { grid-template-columns: 1fr; }
      .switcher, .mode-toggle { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
      .switch-tab, .mode-button { min-width: 0; padding-inline: 10px; }
      .contact-strip { align-items: flex-start; flex-direction: column; }
      .contact-strip .contact-placeholder { white-space: normal; }
      .support-list article { grid-template-columns: 38px 1fr; gap: 10px; }
      .credit-list article { grid-template-columns: 1fr; gap: 8px; }
      .footer-inner, .footer-base { width: calc(100% - 32px); }
      .footer-inner { grid-template-columns: 1fr; align-items: start; gap: 32px; }
      .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
  
    /* ---- Example workout filters ---- */
    .filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 30px; }
    .filter-chip { min-height: 42px; padding: 0 17px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--muted); font-size: 13px; font-weight: 760; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
    .filter-chip:hover { border-color: var(--green); color: var(--green-deep); }
    .filter-chip.active { background: var(--green); border-color: var(--green); color: #fff; }
    .workout-example[hidden] { display: none; }
    .example-attr { margin: 18px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); }
    .example-attr a { color: var(--green-deep); font-weight: 760; text-underline-offset: 3px; }

    /* ---- Program detail hero: copy left, screenshot right ---- */
    .program-hero { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 36px; align-items: start; margin: 6px 0 10px; }
    .program-hero h1 { margin-top: 0; }
    .program-hero .subpage-lede { margin-bottom: 0; }
    .program-shot { margin: 0; max-width: none; aspect-ratio: 3 / 4; }

    /* ---- Share link (dummy, prominent) ---- */
    .share-wrap { margin-top: auto; padding-top: 22px; }
    .share-link { width: 100%; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border-radius: 14px; border: 1px solid var(--green); background: var(--green); color: #fff; font-size: 15px; font-weight: 800; cursor: pointer; transition: background .15s, border-color .15s; }
    .share-link:hover { background: var(--green-deep); border-color: var(--green-deep); }
    .share-note { display: block; min-height: 18px; margin-top: 8px; font-size: 11px; text-align: center; color: var(--muted); }

    /* ---- Pricing ---- */
    .pricing { margin-top: 64px; }
    .pricing h2 { margin: 14px 0 0; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.045em; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
    .price-card { display: flex; flex-direction: column; gap: 10px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
    .price-card h3 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
    .price-amount { font-size: 36px; font-weight: 850; letter-spacing: -.045em; }
    .price-amount small { font-size: 14px; font-weight: 650; letter-spacing: 0; color: var(--muted); }
    .price-badge { align-self: flex-start; padding: 6px 11px; border-radius: 999px; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; }
    .price-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .price-footnote { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

    /* ---- Switcher cleanup ---- */
    .switcher { gap: 6px; padding: 6px; border-radius: 16px; }
    .switch-tab { min-height: 44px; padding: 0 18px; font-size: 14px; border-radius: 11px; }

    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .program-hero { grid-template-columns: 1fr; gap: 24px; }
      .program-shot { max-width: 400px; }
    }

    @media (max-width: 600px) {
      .switcher { display: flex; overflow-x: auto; width: 100%; }
      .switch-tab { flex: 1 0 auto; white-space: nowrap; }
    }

    .compare-wrap { margin-top: 60px; }
    .compare-wrap h2 { margin: 0 0 8px; font-size: clamp(24px, 3.4vw, 32px); letter-spacing: -.02em; }
    .compare-lede { margin: 0 0 22px; color: var(--muted); max-width: 660px; line-height: 1.6; }
    .table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
    .compare-table { width: 100%; min-width: 660px; border-collapse: collapse; font-size: 14px; }
    .compare-table caption { text-align: left; padding: 16px 20px; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 1px solid var(--line); }
    .compare-table th, .compare-table td { padding: 13px 16px; text-align: center; border-top: 1px solid var(--line); white-space: nowrap; }
    .compare-table thead th { border-top: 0; font-size: 13px; }
    .compare-table thead th:first-child { text-align: left; }
    .compare-table tbody th { text-align: left; font-weight: 700; white-space: normal; min-width: 170px; }
    .compare-table tbody tr:nth-child(odd) { background: rgba(46,125,50,.045); }
    .compare-table .yes { color: var(--green); font-weight: 800; }
    .compare-table .no { color: var(--red); font-weight: 800; }
    .compare-table .dim { color: var(--muted); }
    html.dark .compare-table tbody tr:nth-child(odd) { background: rgba(255,255,255,.03); }
    .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

    /* Collapsed exercise lists on example cards */
    .workout-example h2 a { color: inherit; text-decoration: none; }
    .workout-example h2 a:hover { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
    .exercise-list { margin: 20px 0 22px; }
    .exercise-list summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 2px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; color: var(--green-deep); font-size: 13px; font-weight: 760; list-style: none; }
    .exercise-list summary::-webkit-details-marker { display: none; }
    .exercise-list summary::after { content: "+"; font-size: 18px; font-weight: 700; color: var(--green); }
    .exercise-list[open] summary::after { content: "\2212"; }
    .exercise-list[open] summary { border-bottom: none; }
    .workout-example .exercise-list .exercise-items { margin: 0; border-top: none; }

    /* Workout detail pages */
    .detail-back { margin: 0 0 20px; font-size: 14px; }
    .detail-back a { color: var(--green-deep); font-weight: 700; text-decoration: none; }
    .detail-back a:hover { text-decoration: underline; text-underline-offset: 3px; }
    .detail-h2 { margin: 42px 0 6px; font-size: 22px; letter-spacing: -.03em; }
    .exercise-items { margin: 0 0 26px; padding: 0; border-top: 1px solid var(--line); list-style: none; max-width: 660px; }
    .exercise-items li { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
    .exercise-items li strong { color: var(--ink); white-space: nowrap; }
    .shot-placeholder { margin: 30px 0; border: 2px dashed var(--line); border-radius: 20px; background: var(--surface); aspect-ratio: 16 / 9; max-width: 720px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; font-weight: 650; }
    .detail-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

    /* Beta notice + bug report form */
    .beta-note { display: block; text-align: center; max-width: 1080px; margin: 0 auto; padding: 14px 24px; font-size: 14px; color: var(--muted); }
    .beta-note a { color: var(--green-deep); font-weight: 760; text-underline-offset: 3px; }
    .beta-note .beta-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 8px; vertical-align: 1px; }
    .bug-form { display: grid; gap: 18px; max-width: 660px; margin-top: 30px; }
    .bug-form label { display: grid; gap: 8px; font-size: 14px; font-weight: 700; }
    .bug-form .form-hint { font-weight: 400; color: var(--muted); font-size: 13px; }
    .bug-form input, .bug-form textarea { font: inherit; font-weight: 400; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink); width: 100%; box-sizing: border-box; }
    .bug-form textarea { min-height: 110px; resize: vertical; }
    .bug-form input:focus, .bug-form textarea:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: var(--green); }
    .program-day-list { margin: 0 0 26px; padding: 0; list-style: none; max-width: 660px; border-top: 1px solid var(--line); }
    .program-day-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .program-day-list li a { font-weight: 700; font-size: 17px; }
    .program-day-list li p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }

    /* Comparison tables: app links + per-app notes */
    .compare-table thead th a { color: inherit; text-underline-offset: 3px; }
    .compare-table .app-sub { display: block; font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 2px; }
    .compare-note { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; max-width: 720px; }

    /* ---- Features page ---- */
    .hero-visual .feature-shot { position: relative; z-index: 1; width: 100%; max-width: 300px; margin-inline: auto; }
    .hero-shot { margin: 0; }
    .features { width: min(1120px, calc(100% - 48px)); margin: 20px auto 8px; }
    .features .feature { display: grid; grid-template-columns: minmax(0, 1fr) 272px; gap: 44px; align-items: center; margin: 64px 0; }
    .features .feature:nth-child(even) { grid-template-columns: 272px minmax(0, 1fr); }
    .features .feature:nth-child(even) .feature-copy { order: 2; }
    .features .feature:nth-child(even) .feature-shot { order: 1; }
    .feature-shot { margin: 0; border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: var(--surface); box-shadow: 0 18px 44px rgba(60, 40, 20, .10); }
    .feature-shot img { display: block; width: 100%; height: auto; }
    .feature-shots { display: grid; gap: 20px; margin: 0; }
    .feature-copy .eyebrow { margin-bottom: 10px; }
    .feature-copy h2 { margin: 0 0 12px; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.03em; line-height: 1.12; }
    .feature-copy p { margin: 0 0 12px; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 52ch; }
    .feature-copy p:last-child { margin-bottom: 0; }
    .trio { margin: 72px 0 8px; }
    .trio .eyebrow { margin-bottom: 10px; }
    .trio h2 { margin: 0 0 24px; font-size: clamp(24px, 3.4vw, 32px); letter-spacing: -.03em; }
    .trio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
    .trio-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
    .trio-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.02em; }
    .trio-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
    .cta-band { margin: 72px 0 24px; padding: 48px 32px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); text-align: center; }
    .cta-band h2 { margin: 0 0 10px; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.04em; }
    .cta-band p { margin: 0 0 24px; color: var(--muted); font-size: 15px; }
    .cta-band .hero-actions { justify-content: center; }
    @media (max-width: 900px) {
      .features .feature, .features .feature:nth-child(even) { grid-template-columns: 1fr; gap: 24px; }
      .features .feature:nth-child(even) .feature-copy { order: 0; }
      .features .feature:nth-child(even) .feature-shot { order: 0; }
      .feature-shot { max-width: 240px; margin-inline: auto; }
      .hero-visual .feature-shot { max-width: 240px; }
      .trio-grid { grid-template-columns: 1fr; }
    }

    /* ---- Shared screenshot frames ---- */
    .shot-frame { margin: 0; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--surface); box-shadow: 0 14px 36px rgba(60, 40, 20, .10); }
    .shot-frame img { display: block; width: 100%; height: auto; }
    .detail-shot { max-width: 400px; margin: 28px 0; }
    .program-shot { max-width: 320px; margin: 0; justify-self: end; }
    @media (max-width: 900px) {
      .program-shot { justify-self: start; }
    }
    /* ---- Pills ---- */
    .pill { display: inline-block; padding: 4px 12px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    /* ---- Credit note ---- */
    .credit-note { margin: 26px 0; max-width: 680px; }
    .credit-note a { color: var(--green-deep); font-weight: 700; text-underline-offset: 3px; }
    /* ---- Subtle copy link beside the primary CTA ---- */
    .subtle-copy { background: none; border: none; padding: 12px 6px; color: var(--green-deep); font: inherit; font-size: 14px; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
    .subtle-copy:hover { color: var(--green); }
    .detail-cta { align-items: center; }
