    /* ═══════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════ */
    :root {
      --navy: #0A2540;
      --navy2: #0F3460;
      --navy3: #1a4a8a;
      --teal: #00875A;
      --teal2: #006644;
      --teal3: #E3FCEF;
      --teal4: #ABF5D1;
      --amber: #FF8B00;
      --amber2: #FFF0B3;
      --amber3: #FF991F;
      --red: #DE350B;
      --red2: #FFEBE6;
      --red3: #FF5630;
      --blue: #0052CC;
      --blue2: #DEEBFF;
      --purple: #403294;
      --purple2: #EAE6FF;
      --slate: #5E6C84;
      --slate2: #97A0AF;
      --slate3: #C1C7D0;
      --slate4: #DFE1E6;
      --slate5: #F4F5F7;
      --slate6: #FAFBFC;
      --text: #172B4D;
      --text2: #344563;
      --text3: #5E6C84;
      --text4: #97A0AF;
      --white: #FFFFFF;
      --r4: 4px;
      --r6: 6px;
      --r8: 8px;
      --r12: 12px;
      --r16: 16px;
      --r20: 20px;
      --shadow-xs: 0 1px 2px rgba(9, 30, 66, .12);
      --shadow-sm: 0 1px 3px rgba(9, 30, 66, .13), 0 0 0 1px rgba(9, 30, 66, .04);
      --shadow-md: 0 3px 5px rgba(9, 30, 66, .2), 0 0 1px rgba(9, 30, 66, .31);
      --shadow-lg: 0 8px 16px rgba(9, 30, 66, .15), 0 0 1px rgba(9, 30, 66, .31);
      --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent
    }

    html {
      scroll-padding-top: 10px
    }

    body {
      font-family: var(--font);
      background: var(--slate6);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      overflow-x: hidden
    }

    button {
      font-family: var(--font);
      cursor: pointer;
      border: none;
      background: none
    }

    input,
    select {
      font-family: var(--font)
    }

    /* ═══════ NAV ═══════ */
    .nav {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .3)
    }

    .nav-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 18px;
      display: flex;
      align-items: center;
      height: 56px;
      gap: 0
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      flex-shrink: 0
    }

    .nav-logo-mark {
      width: 32px;
      height: 32px;
      border-radius: 50px;
      background: linear-gradient(135deg, var(--teal) 0%, #00B37E 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px
    }

    .nav-logo-name {
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -.3px
    }

    .nav-logo-name span {
      color: var(--teal4)
    }

    .nav-tabs {
      display: flex;
      gap: 2px;
      margin-left: auto
    }

    .nav-tab {
      padding: 6px 14px;
      border-radius: var(--r6);
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, .65);
      cursor: pointer;
      transition: all .15s
    }

    .nav-tab:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08)
    }

    .nav-tab.active {
      color: #fff;
      background: rgba(255, 255, 255, .12)
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 16px;
      flex-shrink: 0
    }

    .nav-streak {
      display: none;
      align-items: center;
      gap: 5px;
      background: rgba(255, 255, 255, .1);
      border-radius: var(--r20);
      padding: 4px 10px;
      font-size: 12px;
      font-weight: 700;
      color: #fff
    }

    .nav-streak.visible {
      display: flex
    }

    .view {
      display: none
    }

    .view.active {
      display: block;
      margin: 0;
      padding: 0
    }

    .page {
      max-width: 820px;
      margin: 0 auto;
      padding: 32px 20px 80px;
      overflow-x: hidden
    }

    .page-lg {
      max-width: 1100px;
      margin: 0 auto;
      padding: 32px 24px 80px
    }

    .honest-banner {
      background: var(--navy);
      color: #fff;
      padding: 20px 24px;
      margin-bottom: 32px;
      border-radius: var(--r12);
      border-left: 4px solid var(--teal)
    }

    .honest-banner h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--teal4);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 8px
    }

    .honest-banner p {
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
      line-height: 1.7
    }

    .honest-banner .can-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 14px
    }

    .can-col h4 {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 8px
    }

    .can-col.yes h4 {
      color: var(--teal4)
    }

    .can-col.no h4 {
      color: #ff8f73
    }

    .can-item {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 12px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.5;
      margin-bottom: 5px
    }

    .can-icon {
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 12px
    }

    .hero {
      background: var(--white);
      border-bottom: 1px solid var(--slate4);
      padding: 60px 0 64px;
      overflow: hidden
    }

    .hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--teal3);
      border: 1px solid var(--teal4);
      color: var(--teal2);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: var(--r20);
      margin-bottom: 18px
    }

    .hero-title {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 14px
    }

    .hero-title em {
      font-style: normal;
      color: var(--teal)
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text3);
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 28px
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 64px;
      align-items: center
    }

    .capability-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 32px
    }

    .cap-card {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      padding: 16px;
      box-shadow: var(--shadow-xs)
    }

    .cap-card-head {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px
    }

    .cap-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0
    }

    .cap-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy)
    }

    .confidence-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border-radius: var(--r20);
      padding: 2px 8px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .3px;
      margin-bottom: 8px
    }

    .conf-high {
      background: var(--teal3);
      color: var(--teal2)
    }

    .conf-med {
      background: var(--amber2);
      color: #6B3C00
    }

    .conf-low {
      background: var(--red2);
      color: var(--red)
    }

    .conf-na {
      background: var(--slate5);
      color: var(--slate)
    }

    .cap-desc {
      font-size: 12px;
      color: var(--text3);
      line-height: 1.6
    }

    .cap-ref {
      font-size: 11px;
      color: var(--text4);
      margin-top: 6px;
      font-style: italic
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-family: var(--font);
      font-weight: 600;
      cursor: pointer;
      border: none;
      border-radius: var(--r6);
      transition: all .12s;
      -webkit-appearance: none
    }

    .btn:active {
      transform: scale(.97)
    }

    .btn-xl {
      padding: 14px 28px;
      font-size: 16px
    }

    .btn-lg {
      padding: 11px 22px;
      font-size: 14px
    }

    .btn-md {
      padding: 9px 18px;
      font-size: 14px
    }

    .btn-sm {
      padding: 6px 14px;
      font-size: 13px
    }

    .btn-xs {
      padding: 4px 10px;
      font-size: 12px
    }

    .btn-primary {
      background: var(--teal);
      color: #fff
    }

    .btn-primary:hover {
      background: var(--teal2)
    }

    .btn-navy {
      background: var(--navy);
      color: #fff
    }

    .btn-navy:hover {
      background: var(--navy2)
    }

    .btn-pdf {
      background: linear-gradient(135deg, #1a3a5c 0%, #0A2540 100%);
      color: #fff;
      border: 2px solid rgba(255,255,255,.12);
      box-shadow: 0 2px 8px rgba(10,37,64,.35);
      letter-spacing: .1px
    }

    .btn-pdf:hover {
      background: linear-gradient(135deg, #1e4470 0%, #0d2f50 100%);
      box-shadow: 0 4px 12px rgba(10,37,64,.4)
    }

    .btn-outline {
      background: transparent;
      color: var(--text2);
      border: 2px solid var(--slate3)
    }

    .btn-outline:hover {
      border-color: var(--slate2);
      background: var(--slate5)
    }

    .btn-danger {
      background: var(--red2);
      color: var(--red);
      border: 1px solid #ffd2cc
    }

    .btn-danger:hover {
      background: #ffd2cc
    }

    .btn-ghost {
      background: transparent;
      color: var(--text3)
    }

    .btn-ghost:hover {
      background: var(--slate5);
      color: var(--text)
    }

    .btn-full {
      width: 100%;
      justify-content: center
    }

    .btn:disabled {
      opacity: .4;
      cursor: not-allowed;
      transform: none
    }

    .card {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      box-shadow: var(--shadow-xs);
      overflow: hidden;
      max-width: 100%;
      box-sizing: border-box
    }

    .card+.card {
      margin-top: 12px
    }

    .card-hd {
      padding: 16px 20px;
      border-bottom: 1px solid var(--slate4);
      display: flex;
      align-items: center;
      gap: 12px
    }

    .card-hd-icon {
      width: 38px;
      height: 38px;
      border-radius: var(--r8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0
    }

    .card-hd-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy)
    }

    .card-hd-sub {
      font-size: 12px;
      color: var(--text3);
      margin-top: 1px
    }

    .card-bd {
      padding: 20px;
      overflow: hidden;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .card-bd+.card-bd {
      border-top: 1px solid var(--slate4)
    }

    .section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--text4);
      margin: 28px 0 12px
    }

    .section-label:first-child {
      margin-top: 0
    }

    .divider {
      height: 1px;
      background: var(--slate4);
      margin: 20px 0
    }

    .assess-progress-bar {
      background: var(--white);
      border-bottom: 1px solid var(--slate4);
      padding: 12px 20px;
      top: 56px;
      z-index: 50
    }

    .assess-progress-inner {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 14px
    }

    .assess-back {
      width: 34px;
      height: 34px;
      border-radius: var(--r6);
      background: var(--slate5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      flex-shrink: 0;
      border: 1px solid var(--slate4);
      transition: all .12s;
      font-weight: 900;
    }

    .assess-back:hover {
      background: var(--slate4)
    }

    .progress-wrap {
      flex: 1
    }

    .progress-meta {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: var(--text3);
      margin-bottom: 5px
    }

    .progress-track {
      height: 3px;
      background: var(--slate4);
      border-radius: 2px;
      overflow: hidden
    }

    .progress-fill {
      height: 100%;
      background: var(--teal);
      border-radius: 2px;
      transition: width .4s
    }

    /* ═══════ SYMPTOM GRID ═══════ */
    .sym-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
      gap: 8px;
      margin-bottom: 20px
    }

    .sym-card {
      background: var(--white);
      border: 1.5px solid var(--slate4);
      border-radius: var(--r8);
      padding: 12px;
      cursor: pointer;
      transition: all .15s;
      text-align: left
    }

    .sym-card:hover {
      border-color: var(--slate2);
      box-shadow: var(--shadow-xs)
    }

    .sym-card.sel {
      border-color: var(--teal);
      background: var(--teal3)
    }

    .sym-card.sel .sym-name {
      color: var(--teal2)
    }

    .sym-emoji {
      font-size: 20px;
      margin-bottom: 6px;
      display: block
    }

    .sym-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.3
    }

    .sym-desc {
      font-size: 13px;
      color: var(--text3);
      margin-top: 3px
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 16px
    }

    .pill {
      padding: 6px 14px;
      border-radius: var(--r20);
      border: 1.5px solid var(--slate3);
      background: var(--white);
      font-size: 13px;
      font-weight: 500;
      color: var(--text2);
      cursor: pointer;
      transition: all .12s
    }

    .pill:hover {
      border-color: var(--slate2);
      background: var(--slate5)
    }

    .pill.sel {
      border-color: var(--teal);
      background: var(--teal3);
      color: var(--teal2);
      font-weight: 600
    }

    .range-block {
      margin-bottom: 20px
    }

    .range-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 6px
    }

    .range-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text2)
    }

    .range-value {
      font-size: 22px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.5px
    }

    .range-unit {
      font-size: 13px;
      font-weight: 500;
      color: var(--text3);
      margin-left: 3px
    }

    input[type=range] {
      width: 100%;
      height: 5px;
      -webkit-appearance: none;
      background: var(--slate4);
      border-radius: 3px;
      outline: none;
      cursor: pointer
    }

    input[type=range]::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--navy);
      border: 3px solid #fff;
      box-shadow: var(--shadow-sm);
      transition: transform .1s;
      cursor: pointer
    }

    input[type=range]::-webkit-slider-thumb:hover {
      transform: scale(1.2)
    }

    .range-ticks {
      display: flex;
      justify-content: space-between;
      margin-top: 4px
    }

    .range-ticks span {
      font-size: 10px;
      color: var(--text4)
    }

    .q-block {
      margin-bottom: 22px
    }

    .q-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 3px
    }

    .q-hint {
      font-size: 11px;
      color: var(--text3);
      margin-bottom: 9px;
      line-height: 1.5
    }

    .cam-box {
      background: var(--navy);
      border-radius: var(--r12);
      overflow: hidden;
      position: relative;
      margin-bottom: 10px;
      max-width: 100%
    }

    .cam-viewport {
      position: relative;
      aspect-ratio: 4/3
    }

    .cam-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scaleX(-1)
    }

    .cam-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: scaleX(-1)
    }

    .cam-hud {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      pointer-events: none
    }

    .cam-hud-top {
      background: linear-gradient(rgba(10, 37, 64, .9), transparent);
      padding: 12px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center
    }

    .cam-hud-bot {
      margin-top: auto;
      background: linear-gradient(transparent, rgba(10, 37, 64, .95));
      padding: 10px 12px
    }

    .cam-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      border-radius: var(--r20);
      padding: 3px 9px;
      font-size: 11px;
      font-weight: 600
    }

    .cam-pill-wait {
      background: rgba(255, 143, 0, .15);
      border: 1px solid rgba(255, 143, 0, .35);
      color: #FFD700
    }

    .cam-pill-go {
      background: rgba(0, 135, 90, .15);
      border: 1px solid rgba(0, 135, 90, .4);
      color: #57D9A3
    }

    .cam-pill-err {
      background: rgba(222, 53, 11, .15);
      border: 1px solid rgba(222, 53, 11, .4);
      color: #FF8F73
    }

    .rec-badge {
      display: none;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 700;
      color: rgba(255, 255, 255, .8)
    }

    .rec-badge.show {
      display: flex
    }

    .rec-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #FF5630;
      animation: recdot 1s infinite
    }

    @keyframes recdot {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .2
      }
    }

    .cam-stats {
      display: grid;
      gap: 5px
    }

    .cam-stat-row {
      display: flex;
      gap: 5px;
      flex-wrap: wrap
    }

    .cam-stat {
      flex: 1;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 5px;
      padding: 5px 8px;
      text-align: center
    }

    .cam-stat-val {
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      line-height: 1
    }

    .cam-stat-val.ok {
      color: #57D9A3
    }

    .cam-stat-val.warn {
      color: #FFD700
    }

    .cam-stat-val.bad {
      color: #FF8F73
    }

    .cam-stat-lbl {
      font-size: 9px;
      color: rgba(255, 255, 255, .45);
      margin-top: 2px;
      text-transform: uppercase;
      letter-spacing: .3px
    }

    .method-box {
      background: var(--slate5);
      border: 1px solid var(--slate4);
      border-radius: var(--r8);
      padding: 14px 16px;
      margin: 10px 0;
      overflow: hidden;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .method-head {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--text4);
      margin-bottom: 8px
    }

    .method-formula {
      background: var(--navy);
      color: #a5f3d0;
      font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
      font-size: 11px;
      padding: 9px 12px;
      border-radius: 5px;
      margin: 7px 0;
      overflow-x: auto;
      white-space: nowrap;
      display: block;
      max-width: 100%;
      box-sizing: border-box;
      -webkit-overflow-scrolling: touch
    }

    .method-text {
      font-size: 13px;
      color: var(--text3);
      line-height: 1.75;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .method-ref {
      display: flex;
      align-items: flex-start;
      gap: 5px;
      background: var(--teal3);
      border: 1px solid var(--teal4);
      border-radius: 5px;
      padding: 8px 10px;
      font-size: 12px;
      color: var(--teal2);
      margin-top: 8px;
      line-height: 1.6;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .method-limit {
      display: block;
      background: var(--amber2);
      border: 1px solid #FFE380;
      border-radius: 5px;
      padding: 10px 12px;
      font-size: 12px;
      color: #6B3C00;
      margin-top: 8px;
      line-height: 1.65;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .metric-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 14px 0;
      border-bottom: 1px solid var(--slate4)
    }

    .metric-row:last-child {
      border: none
    }

    .metric-left {
      flex: 1;
      padding-right: 12px
    }

    .metric-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text)
    }

    .metric-method {
      font-size: 11px;
      color: var(--text3);
      margin-top: 2px;
      line-height: 1.5
    }

    .metric-right {
      text-align: right;
      flex-shrink: 0
    }

    .metric-val {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.5px
    }

    .metric-unit {
      font-size: 11px;
      color: var(--text3)
    }

    .metric-status {
      font-size: 11px;
      font-weight: 700;
      margin-top: 2px
    }

    .s-ok {
      color: var(--teal)
    }

    .s-warn {
      color: var(--amber)
    }

    .s-bad {
      color: var(--red)
    }

    .s-na {
      color: var(--slate2)
    }

    .metric-track {
      height: 4px;
      background: var(--slate4);
      border-radius: 2px;
      overflow: hidden;
      margin-top: 8px
    }

    .metric-fill {
      height: 100%;
      border-radius: 2px;
      transition: width .6s ease
    }

    .metric-ci {
      font-size: 11px;
      color: var(--text4);
      margin-top: 5px;
      line-height: 1.5
    }

    .alert {
      border-radius: var(--r8);
      padding: 12px 14px;
      font-size: 13px;
      line-height: 1.65;
      margin-bottom: 14px;
      border-left: 3px solid;
      word-break: break-word;
      overflow-wrap: break-word
    }

    .alert-ok {
      background: var(--teal3);
      border-color: var(--teal);
      color: var(--teal2)
    }

    .alert-warn {
      background: var(--amber2);
      border-color: var(--amber);
      color: #6B3C00
    }

    .alert-err {
      background: var(--red2);
      border-color: var(--red);
      color: #5E0000
    }

    .alert-info {
      background: var(--blue2);
      border-color: var(--blue);
      color: #0747A6
    }

    .alert-honest {
      background: var(--slate5);
      border-color: var(--slate2);
      color: var(--text2)
    }

    .diag-hero {
      border-radius: var(--r12);
      padding: 24px;
      margin-bottom: 16px;
      border: 1px solid
    }

    .diag-title {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -.5px;
      margin-bottom: 6px
    }

    .diag-desc {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 16px;
      opacity: .85
    }

    .diag-score-label {
      font-size: 11px;
      font-weight: 700;
      opacity: .75;
      margin-bottom: 6px
    }

    .diag-score-num {
      font-size: 32px;
      font-weight: 900;
      letter-spacing: -1px
    }

    .diag-track {
      height: 6px;
      background: rgba(0, 0, 0, .12);
      border-radius: 3px;
      overflow: hidden;
      margin-top: 8px;
      margin-bottom: 4px
    }

    .diag-fill {
      height: 100%;
      border-radius: 3px
    }

    .diag-note {
      font-size: 11px;
      opacity: .65;
      margin-top: 4px
    }

    .diff-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--slate4)
    }

    .diff-row:last-child {
      border: none
    }

    .diff-rank {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      flex-shrink: 0
    }

    .diff-emoji {
      font-size: 18px;
      width: 24px;
      text-align: center;
      flex-shrink: 0
    }

    .diff-info {
      flex: 1
    }

    .diff-name {
      font-size: 13px;
      font-weight: 700
    }

    .diff-syms {
      font-size: 11px;
      color: var(--text3);
      margin-top: 2px
    }

    .diff-right {
      text-align: right;
      flex-shrink: 0
    }

    .diff-pct {
      font-size: 14px;
      font-weight: 800
    }

    .diff-bar-wrap {
      width: 70px;
      height: 3px;
      background: var(--slate4);
      border-radius: 2px;
      margin-top: 4px;
      overflow: hidden
    }

    .diff-bar {
      height: 100%;
      border-radius: 2px
    }

    .param-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 16px
    }

    .param-card {
      background: var(--slate5);
      border: 1px solid var(--slate4);
      border-radius: var(--r8);
      padding: 14px
    }

    .param-icon {
      font-size: 18px;
      margin-bottom: 6px
    }

    .param-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .4px;
      color: var(--text3);
      margin-bottom: 4px
    }

    .param-val {
      font-size: 18px;
      font-weight: 800;
      color: var(--navy)
    }

    .param-note {
      font-size: 11px;
      color: var(--text3);
      margin-top: 3px
    }

    /* ── Confidence Card ── */
    .conf-card {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      overflow: hidden;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm)
    }

    .conf-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px 14px;
      border-bottom: 1px solid var(--slate4)
    }

    .conf-card-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0
    }

    .conf-card-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy)
    }

    .conf-card-sub {
      font-size: 11px;
      color: var(--text4);
      margin-top: 2px
    }

    .conf-badge {
      margin-left: auto;
      text-align: center;
      padding: 8px 16px;
      border-radius: var(--r20);
      min-width: 84px;
      flex-shrink: 0
    }

    .conf-badge-pct {
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      display: block;
      letter-spacing: -.5px
    }

    .conf-badge-level {
      font-size: 11px;
      font-weight: 600;
      display: block;
      margin-top: 3px;
      opacity: .8
    }

    .conf-total-wrap {
      padding: 12px 20px 0
    }

    .conf-total-track {
      height: 7px;
      background: var(--slate4);
      border-radius: 4px;
      overflow: hidden
    }

    .conf-total-fill {
      height: 100%;
      border-radius: 4px;
      transition: width .7s cubic-bezier(.4,0,.2,1)
    }

    .conf-breakdown {
      padding: 14px 20px 18px;
      display: flex;
      flex-direction: column;
      gap: 11px
    }

    .conf-row {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .conf-row-icon {
      font-size: 15px;
      flex-shrink: 0;
      width: 20px;
      text-align: center
    }

    .conf-row-label {
      font-size: 12px;
      color: var(--text2);
      font-weight: 500;
      min-width: 110px;
      flex-shrink: 0
    }

    .conf-row-track {
      flex: 1;
      height: 5px;
      background: var(--slate4);
      border-radius: 3px;
      overflow: hidden
    }

    .conf-row-fill {
      height: 100%;
      border-radius: 3px;
      transition: width .6s cubic-bezier(.4,0,.2,1)
    }

    .conf-row-val {
      font-size: 12px;
      color: var(--text3);
      font-weight: 700;
      min-width: 40px;
      text-align: right;
      font-variant-numeric: tabular-nums
    }

    .conf-tip {
      margin: 0 20px 16px;
      font-size: 12px;
      color: var(--text2);
      background: var(--amber2);
      border: 1px solid #FDE68A;
      border-radius: var(--r6);
      padding: 9px 12px;
      line-height: 1.5
    }

    @media(max-width:480px) {
      .conf-row-label { min-width: 88px }
      .conf-card-head { gap: 10px }
    }

    .site-footer {
      text-align: center;
      padding: 28px 20px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      border-top: 1px solid var(--slate4);
    }

    .site-footer-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--text3);
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px 0;
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-color: var(--slate3);
      transition: color .15s
    }

    .site-footer-link:hover {
      color: var(--navy)
    }

    .site-footer-sep {
      font-size: 13px;
      color: var(--slate3)
    }

    .site-footer-copy {
      font-size: 12px;
      color: var(--text4)
    }

    /* ── Legal Overlay ── */
    .legal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 600;
      background: #FAFBFC;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch
    }

    .legal-overlay.active {
      display: block
    }

    .legal-inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 32px 20px 72px
    }

    .legal-logo {
      font-size: 22px;
      font-weight: 800;
      color: #0A2540;
      letter-spacing: -.5px;
      margin-bottom: 3px
    }

    .legal-logo span { color: #00875A }

    .legal-logo-sub {
      font-size: 12px;
      color: #5E6C84;
      margin-bottom: 28px
    }

    .legal-h1 {
      font-size: 22px;
      font-weight: 800;
      color: #0A2540;
      letter-spacing: -.3px;
      margin-bottom: 16px;
      line-height: 1.2
    }

    .legal-intro {
      font-size: 14px;
      color: #344563;
      line-height: 1.85;
      margin-bottom: 36px;
      padding: 18px;
      background: #fff;
      border: 1px solid #DFE1E6;
      border-left: 4px solid #00875A;
      border-radius: 8px
    }

    .legal-doc { margin-bottom: 40px }

    .legal-doc-title {
      font-size: 17px;
      font-weight: 800;
      color: #0A2540;
      letter-spacing: -.3px;
      padding-bottom: 9px;
      border-bottom: 2.5px solid #0A2540;
      margin-bottom: 20px;
      line-height: 1.3
    }

    .legal-doc-updated {
      font-size: 11px;
      color: #97A0AF;
      font-weight: 500;
      margin-top: 4px
    }

    .legal-h2 {
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      color: #0A2540;
      margin: 22px 0 9px;
      padding: 5px 10px;
      background: #F4F5F7;
      border-radius: 5px;
      display: block
    }

    .legal-p {
      font-size: 13.5px;
      color: #344563;
      line-height: 1.8;
      margin-bottom: 9px
    }

    .legal-ul {
      padding-left: 20px;
      margin-bottom: 9px
    }

    .legal-ul li {
      font-size: 13.5px;
      color: #344563;
      line-height: 1.8;
      margin-bottom: 5px
    }

    .legal-highlight {
      background: #FFF0B3;
      border: 1px solid #FDE68A;
      border-radius: 6px;
      padding: 11px 14px;
      margin: 12px 0;
      font-size: 13px;
      color: #344563;
      line-height: 1.7
    }

    .legal-warn {
      background: #FFEBE6;
      border: 1px solid #FFBDAD;
      border-radius: 6px;
      padding: 11px 14px;
      margin: 12px 0;
      font-size: 13px;
      color: #5E0000;
      line-height: 1.7
    }

    .legal-divider {
      border: none;
      border-top: 1px solid #DFE1E6;
      margin: 36px 0
    }

    .legal-back {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #0A2540;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      margin-bottom: 28px;
      font-family: var(--font);
      touch-action: manipulation
    }

    .legal-back:hover { background: #0F3460 }

    .legal-footer-note {
      text-align: center;
      font-size: 12px;
      color: #97A0AF;
      padding-top: 24px;
      border-top: 1px solid #DFE1E6;
      margin-top: 24px
    }

    @media (max-width: 480px) {
      .legal-inner { padding: 20px 16px 56px }
      .legal-h1 { font-size: 20px }
      .legal-doc-title { font-size: 16px }
      .legal-intro { font-size: 13.5px; padding: 14px }
      .legal-p, .legal-ul li { font-size: 13px }
      .legal-highlight, .legal-warn { font-size: 12.5px; padding: 10px 12px }
    }

    .plan-header {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      padding: 24px;
      margin-bottom: 16px;
      box-shadow: var(--shadow-xs)
    }

    .week-bar {
      display: flex;
      gap: 5px;
      margin-top: 14px
    }

    .week-day {
      flex: 1;
      height: 48px;
      border-radius: var(--r6);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px
    }

    .week-day.active {
      background: var(--navy);
      color: #fff
    }

    .week-day.done {
      background: var(--teal3);
      color: var(--teal2)
    }

    .week-day.rest {
      background: var(--slate5);
      color: var(--text4)
    }

    .week-day-name {
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .3px
    }

    .week-day-mark {
      font-size: 12px
    }

    .ex-card {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      margin-bottom: 8px;
      box-shadow: var(--shadow-xs);
      overflow: hidden
    }

    .ex-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 18px;
      cursor: pointer
    }

    .ex-head:hover {
      background: var(--slate6)
    }

    .ex-num {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      flex-shrink: 0
    }

    .ex-ico {
      width: 44px;
      height: 44px;
      border-radius: var(--r8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0
    }

    .ex-info {
      flex: 1
    }

    .ex-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy)
    }

    .ex-meta {
      display: flex;
      gap: 12px;
      margin-top: 3px
    }

    .ex-meta-item {
      font-size: 11px;
      color: var(--text3)
    }

    .ex-chevron {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--slate5);
      font-size: 14px;
      color: var(--text3);
      transition: transform .2s;
      flex-shrink: 0
    }

    .ex-body {
      display: none;
      padding: 0 18px 18px;
      border-top: 1px solid var(--slate4)
    }

    .ex-body.open {
      display: block
    }

    .ex-desc {
      font-size: 13px;
      color: var(--text3);
      line-height: 1.7;
      padding: 14px 0 10px
    }

    .ex-steps-label {
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      color: var(--text4);
      margin-bottom: 8px
    }

    .ex-steps {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 14px
    }

    .ex-step {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      background: var(--slate6);
      border-radius: var(--r6);
      padding: 9px 12px
    }

    .ex-step-n {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px
    }

    .ex-step-text {
      font-size: 13px;
      line-height: 1.6
    }

    .ex-evid {
      background: var(--teal3);
      border: 1px solid var(--teal4);
      border-radius: var(--r6);
      padding: 8px 12px;
      font-size: 11px;
      color: var(--teal2);
      line-height: 1.5;
      margin-bottom: 12px
    }

    .ex-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 14px
    }

    .ex-tag {
      font-size: 10px;
      font-weight: 600;
      padding: 2px 8px;
      border-radius: var(--r20);
      background: var(--slate5);
      color: var(--text3)
    }

    .timer-overlay {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(10, 37, 64, .97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px
    }

    .timer-overlay.open {
      display: flex
    }

    .timer-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      transition: all .15s
    }

    .timer-close:hover {
      background: rgba(255, 255, 255, .15)
    }

    .timer-ex-name {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 3px
    }

    .timer-ex-freq {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      text-align: center;
      margin-bottom: 28px
    }

    .timer-ring {
      position: relative;
      width: 200px;
      height: 200px;
      margin: 0 auto 28px
    }

    .timer-svg {
      transform: rotate(-90deg)
    }

    .timer-track {
      fill: none;
      stroke: rgba(255, 255, 255, .06);
      stroke-width: 7
    }

    .timer-prog {
      fill: none;
      stroke: var(--teal);
      stroke-width: 7;
      stroke-linecap: round;
      transition: stroke-dashoffset .9s linear
    }

    .timer-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center
    }

    .timer-time {
      font-size: 50px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1
    }

    .timer-state {
      font-size: 11px;
      color: rgba(255, 255, 255, .4);
      margin-top: 5px;
      letter-spacing: .5px;
      text-transform: uppercase
    }

    .timer-controls {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-bottom: 24px
    }

    .timer-btn {
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .15s;
      border: none
    }

    .timer-btn:active {
      transform: scale(.92)
    }

    .timer-main {
      width: 68px;
      height: 68px;
      font-size: 26px;
      background: var(--teal);
      color: #fff;
      box-shadow: 0 0 0 10px rgba(0, 135, 90, .12)
    }

    .timer-main:hover {
      background: var(--teal2)
    }

    .timer-sec {
      width: 50px;
      height: 50px;
      font-size: 18px;
      background: rgba(255, 255, 255, .07);
      color: rgba(255, 255, 255, .7);
      border: 1px solid rgba(255, 255, 255, .1)
    }

    .timer-sec:hover {
      background: rgba(255, 255, 255, .12)
    }

    .timer-step-box {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r12);
      padding: 14px 20px;
      text-align: center;
      max-width: 400px;
      width: 100%
    }

    .timer-step-n {
      font-size: 10px;
      color: rgba(255, 255, 255, .4);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 5px
    }

    .timer-step-t {
      font-size: 14px;
      color: rgba(255, 255, 255, .8);
      line-height: 1.6
    }

    .timer-dots {
      display: flex;
      gap: 6px;
      justify-content: center;
      margin-top: 18px
    }

    .timer-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .15);
      transition: all .2s
    }

    .timer-dot.done {
      background: rgba(0, 135, 90, .6)
    }

    .timer-dot.cur {
      background: var(--teal);
      width: 14px;
      border-radius: 3px
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-bottom: 16px
    }

    .stat-card {
      background: var(--white);
      border: 1px solid var(--slate4);
      border-radius: var(--r12);
      padding: 18px;
      box-shadow: var(--shadow-xs)
    }

    .stat-card.featured {
      background: var(--navy)
    }

    .stat-featured-num {
      font-size: 52px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -2px;
      line-height: 1
    }

    .stat-featured-lbl {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      margin-top: 4px;
      font-weight: 500
    }

    .stat-icon {
      font-size: 20px;
      margin-bottom: 6px
    }

    .stat-num {
      font-size: 30px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.5px
    }

    .stat-lbl {
      font-size: 11px;
      color: var(--text3);
      margin-top: 3px
    }

    .bar-chart {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      height: 80px;
      margin-bottom: 8px
    }

    .bar-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px
    }

    .bar-fill {
      width: 100%;
      border-radius: 3px 3px 0 0;
      min-height: 2px;
      transition: height .4s
    }

    .bar-fill.today-bar {
      background: var(--navy)
    }

    .bar-fill.prev-bar {
      background: var(--teal3);
      border: 1px solid var(--teal4)
    }

    .bar-day {
      font-size: 9px;
      font-weight: 600;
      color: var(--text4)
    }

    .bar-mins {
      font-size: 9px;
      color: var(--text3)
    }

    .notif-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 0;
      border-bottom: 1px solid var(--slate4)
    }

    .notif-row:last-child {
      border: none
    }

    .notif-info {
      flex: 1
    }

    .notif-title {
      font-size: 13px;
      font-weight: 600
    }

    .notif-sub {
      font-size: 11px;
      color: var(--text3);
      margin-top: 2px
    }

    .toggle {
      position: relative;
      width: 42px;
      height: 24px;
      flex-shrink: 0
    }

    .toggle input {
      opacity: 0;
      position: absolute;
      width: 0;
      height: 0
    }

    .toggle-track {
      position: absolute;
      inset: 0;
      background: var(--slate3);
      border-radius: 12px;
      transition: .2s;
      cursor: pointer
    }

    .toggle input:checked+.toggle-track {
      background: var(--teal)
    }

    .toggle-thumb {
      position: absolute;
      width: 18px;
      height: 18px;
      top: 3px;
      left: 3px;
      background: #fff;
      border-radius: 50%;
      transition: .2s;
      box-shadow: var(--shadow-xs);
      pointer-events: none
    }

    .toggle input:checked~.toggle-thumb {
      transform: translateX(18px)
    }

    #amsler-canvas {
      border: 1px solid var(--slate4);
      border-radius: var(--r8);
      cursor: crosshair;
      display: block;
      touch-action: none
    }

    .amsler-controls {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 10px
    }

    .amsler-color-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 3px solid transparent;
      cursor: pointer;
      transition: all .15s;
      flex-shrink: 0
    }

    .amsler-color-btn.active {
      border-color: var(--navy);
      transform: scale(1.15)
    }

    .ref-list {
      display: flex;
      flex-direction: column
    }

    .ref-item {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      padding: 9px 0;
      border-bottom: 1px solid var(--slate4);
      font-size: 12px;
      color: var(--text3);
      line-height: 1.5
    }

    .ref-item:last-child {
      border: none
    }

    .ref-n {
      font-size: 10px;
      font-weight: 800;
      background: var(--navy);
      color: #fff;
      border-radius: 3px;
      padding: 2px 5px;
      flex-shrink: 0;
      margin-top: 1px
    }

    /* ═══════ RESPONSIVE ═══════ */
    @media(max-width:700px) {
      .hero-grid {
        grid-template-columns: 1fr
      }

      .hero-visual {
        display: none
      }

      .capability-grid {
        grid-template-columns: 1fr
      }

      .param-grid {
        grid-template-columns: 1fr
      }

      .stat-grid {
        grid-template-columns: 1fr 1fr
      }

      .stat-grid .stat-card:last-child {
        display: none
      }

      .can-table {
        grid-template-columns: 1fr !important
      }

      .nav-tabs {
        display: none
      }

      .nav-cta {
        display: none !important
      }

      .nav-right {
        margin-left: auto
      }
    }

    @media(max-width:480px) {
      .sym-grid {
        grid-template-columns: 1fr 1fr
      }

      .cam-stat-row {
        grid-template-columns: 1fr 1fr
      }
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .1);
      border-radius: var(--r6);
      border: none;
      cursor: pointer;
      padding: 8px;
      flex-shrink: 0;
      transition: background .15s
    }

    .nav-hamburger:hover {
      background: rgba(255, 255, 255, .18)
    }

    .nav-hamburger span {
      display: block;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .25s
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg)
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0)
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg)
    }

    .mob-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 37, 64, .55);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      z-index: 200
    }

    .mob-overlay.open {
      display: block
    }

    .mob-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 280px;
      max-width: 85vw;
      height: 100%;
      background: var(--navy);
      z-index: 201;
      transform: translateX(100%);
      transition: transform .3s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 32px rgba(0, 0, 0, .35)
    }

    .mob-menu.open {
      transform: translateX(0)
    }

    .mob-menu-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 16px;
      height: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      flex-shrink: 0
    }

    .mob-menu-logo {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      letter-spacing: -.3px
    }

    .mob-menu-logo span {
      color: var(--teal4)
    }

    .mob-menu-close {
      width: 32px;
      height: 32px;
      border-radius: var(--r6);
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .8);
      font-size: 16px;
      cursor: pointer;
      border: none;
      transition: background .15s;
      font-family: var(--font)
    }

    .mob-menu-close:hover {
      background: rgba(255, 255, 255, .15)
    }

    .mob-menu-body {
      flex: 1;
      overflow-y: auto;
      padding: 12px
    }

    .mob-menu-item {
      display: flex;
      align-items: center;
      gap: 13px;
      width: 100%;
      padding: 13px 14px;
      border-radius: var(--r8);
      font-size: 15px;
      font-weight: 600;
      color: rgba(255, 255, 255, .7);
      cursor: pointer;
      border: none;
      background: transparent;
      text-align: left;
      transition: all .15s;
      font-family: var(--font)
    }

    .mob-menu-item:hover {
      background: rgba(255, 255, 255, .08);
      color: #fff
    }

    .mob-menu-item.active {
      background: rgba(255, 255, 255, .12);
      color: #fff
    }

    .mob-menu-item-icon {
      font-size: 18px;
      width: 26px;
      text-align: center;
      flex-shrink: 0
    }

    .mob-menu-footer {
      padding: 12px;
      border-top: 1px solid rgba(255, 255, 255, .08)
    }

    .mob-streak-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--r8);
      padding: 10px 14px;
      color: rgba(255, 255, 255, .75);
      font-size: 13px;
      font-weight: 600
    }

    @media(max-width:700px) {
      .nav-hamburger {
        display: flex
      }
    }

    .hero-visual {
      background: var(--slate5);
      border: 1px solid var(--slate4);
      border-radius: var(--r16);
      padding: 20px;
      font-size: 13px
    }

    .vis-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid var(--slate4)
    }

    .vis-row:last-child {
      border: none
    }

    .vis-icon {
      width: 36px;
      height: 36px;
      border-radius: var(--r8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0
    }

    .vis-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--text)
    }

    .vis-note {
      font-size: 11px;
      color: var(--text3);
      margin-top: 1px
    }

    .hw {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      background: #fff
    }

    .hh {
      position: relative;
      overflow: hidden;
      padding: 100px 24px 88px;
      text-align: center;
      background: #fff
    }

    #hero-cvs {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none
    }

    .hh-over {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .55) 80%, rgba(255, 255, 255, .95) 100%)
    }

    .hh-grid {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      opacity: .035;
      background-image: linear-gradient(#0a0f1e 1px, transparent 1px), linear-gradient(90deg, #0a0f1e 1px, transparent 1px);
      background-size: 44px 44px
    }

    .hh-inner {
      position: relative;
      z-index: 3
    }

    .hh-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 135, 90, .08);
      border: 1.5px solid rgba(0, 135, 90, .2);
      color: #059e9e;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 100px;
      margin-bottom: 32px
    }

    .hh-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00B37E;
      animation: hbdot 2s infinite
    }

    @keyframes hbdot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .35;
        transform: scale(.7)
      }
    }

    .hh-title {
      font-size: clamp(52px, 8vw, 76px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -1.5px;
      color: #0A0F1E;
      margin-bottom: 22px;
      -webkit-font-smoothing: antialiased;
      -webkit-text-stroke: 0.3px #0A0F1E
    }

    .hh-title em {
      font-style: normal;
      background: linear-gradient(135deg, #00B37E 0%, #0891B2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hh-sub {
      font-size: clamp(16px, 2.5vw, 20px);
      color: #4B5563;
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 40px;
      font-weight: 400
    }

    .hh-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 52px
    }

    .hh-btn-p {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #0A0F1E;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      padding: 18px 36px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 24px rgba(10, 15, 30, .18);
      transition: all .2s;
      white-space: nowrap;
      position: relative;
      z-index: 10
    }

    .hh-btn-p:hover {
      background: #1A2540;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(10, 15, 30, .25)
    }

    .hh-btn-s {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 2px solid #E5E7EB;
      color: #374151;
      font-size: 16px;
      font-weight: 600;
      padding: 17px 30px;
      border-radius: 14px;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
      position: relative;
      z-index: 10
    }

    .hh-btn-s:hover {
      border-color: #00B37E;
      color: #00875A;
      box-shadow: 0 4px 14px rgba(0, 179, 126, .12)
    }

    .hh-trust {
      display: flex;
      gap: 28px;
      justify-content: center;
      flex-wrap: wrap
    }

    .hh-trust-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 18px;
      color: #000610;
      font-weight: 500
    }

    .hh-trust-item span {
      font-size: 24px
    }

    /* METRICS */
    .hm {
      padding: 36px 24px;
      border-top: 1px solid #F3F4F6;
      border-bottom: 1px solid #F3F4F6;
      background: #FAFAFA;
      display: flex;
      justify-content: center;
      flex-wrap: wrap
    }

    .hm-item {
      flex: 1;
      min-width: 140px;
      max-width: 240px;
      text-align: center;
      padding: 16px 24px;
      border-right: 1px solid #F3F4F6
    }

    .hm-item:last-child {
      border: none
    }

    .hm-num {
      font-size: clamp(56px, 5vw, 48px);
      font-weight: 900;
      letter-spacing: -2px;
      background: linear-gradient(135deg, #00B37E, #0891B2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text
    }

    .hm-lbl {
      font-size: 16px;
      color: #0a0f1e;
      margin-top: 5px;
      font-weight: 600;
      line-height: 1.3;
    }

    .hs {
      padding: 80px 24px;
      max-width: 1000px;
      margin: 0 auto;
      width: 100%
    }

    .hs-tag {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      color: #00875A;
      margin-bottom: 12px
    }

    .hs-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: #0A0F1E;
      letter-spacing: -.8px;
      line-height: 1.3;
      margin-bottom: 14px
    }

    .hs-sub {
      font-size: 17px;
      color: #6B7280;
      line-height: 1.75;
      max-width: 520px
    }

    .hsteps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 44px
    }

    .hstep {
      background: #04a3971c;
      border: 1.5px solid #F3F4F6;
      border-radius: 20px;
      padding: 28px 22px;
      transition: all .25s;
      position: relative;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center
    }

    .hstep:hover {
      border-color: #00B37E;
      box-shadow: 0 8px 32px rgba(0, 179, 126, .1);
      transform: translateY(-4px)
    }

    .hstep-n {
      width: 70px;
      height: 38px;
      border-radius: 11px;
      background: linear-gradient(135deg, #E6FBF3, #E0F2FE);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      color: #00875A;
      margin-bottom: 18px;
      border: 1px solid rgba(0, 179, 126, .2);
      flex-shrink: 0
    }

    .hstep-ico {
      font-size: 45px;
      margin-bottom: 14px;
      display: block
    }

    .hstep-title {
      font-size: 17px;
      font-weight: 700;
      color: #0A0F1E;
      margin-bottom: 9px;
      text-align: center
    }

    .hstep-desc {
      font-size: 14px;
      color: #6B7280;
      line-height: 1.5;
      text-align: center
    }


    .htests {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 44px
    }

    .htest {
      background: #fff;
      border: 1.5px solid #F3F4F6;
      border-radius: 18px;
      padding: 22px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: all .2s
    }

    .htest:hover {
      border-color: #E5E7EB;
      box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
    }

    .htest-ico {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px
    }

    .htest-name {
      font-size: 15px;
      font-weight: 700;
      color: #0A0F1E;
      margin-bottom: 5px
    }

    .htest-desc {
      font-size: 13px;
      color: #6B7280;
      line-height: 1.65
    }

    .hconf {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px;
      padding: 3px 9px;
      border-radius: 20px;
      margin-top: 8px
    }

    .hconf-hi {
      background: #ECFDF5;
      color: #059669;
      border: 1px solid #A7F3D0
    }

    .hconf-md {
      background: #FFFBEB;
      color: #D97706;
      border: 1px solid #FDE68A
    }

    .hconf-lo {
      background: #FEF2F2;
      color: #DC2626;
      border: 1px solid #FECACA
    }

    /* HONEST */
    .honest-w {
      background: #F9FAFB;
      border: 1.5px solid #F3F4F6;
      border-radius: 24px;
      padding: 40px 36px
    }

    .honest-title {
      font-size: 26px;
      font-weight: 800;
      color: #0A0F1E;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .honest-sub {
      font-size: 16px;
      color: #6B7280;
      margin-bottom: 28px;
      line-height: 1.7
    }

    .honest-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px
    }

    .honest-col-head {
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 16px
    }

    .honest-col-head.yes {
      color: #059669
    }

    .honest-col-head.no {
      color: #DC2626
    }

    .honest-item {
      display: flex;
      gap: 10px;
      font-size: 15px;
      color: #4B5563;
      line-height: 1.6;
      margin-bottom: 13px;
      align-items: flex-start
    }

    .honest-dot {
      flex-shrink: 0;
      margin-top: 2px
    }

    .hrefs {
      background: #F9FAFB;
      border-top: 1px solid #F3F4F6;
      padding: 48px 24px
    }

    .hrefs-in {
      max-width: 900px;
      margin: 0 auto
    }

    .hrefs-title {
      font-size: 16px;
      font-weight: 700;
      color: #1d1f22;
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-bottom: 20px
    }

    .href-item {
      display: flex;
      gap: 10px;
      padding: 11px 0;
      border-bottom: 1px solid #F3F4F6;
      font-size: 13px;
      color: #6B7280;
      line-height: 1.6
    }

    .href-item:last-child {
      border: none
    }

    .href-n {
      font-size: 10px;
      font-weight: 800;
      background: #E5E7EB;
      color: #6B7280;
      border-radius: 4px;
      padding: 2px 7px;
      flex-shrink: 0;
      height: fit-content;
      margin-top: 2px
    }

    .hcta {
      background: linear-gradient(135deg, #0A0F1E 0%, #1A2540 100%);
      padding: 72px 24px;
      text-align: center
    }

    .hcta-title {
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.5px;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .hcta-sub {
      font-size: 17px;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 36px;
      line-height: 1.6
    }


    .hfoot {
      background: #ae0606;
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 28px 24px;
      text-align: center;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.727);
      line-height: 1.2;
      font-weight: 500;
    }

    @media(max-width:900px) {
      .hsteps {
        grid-template-columns: repeat(2, 1fr)
      }
    }

    @media(max-width:640px) {
      .hsteps {
        grid-template-columns: 1fr
      }

      .htests {
        grid-template-columns: 1fr
      }

      .honest-cols {
        grid-template-columns: 1fr
      }

      .hm {
        gap: 0
      }

      .hm-item {
        border-right: none;
        border-bottom: 1px solid #F3F4F6;
        min-width: 50%
      }

      .hm-item:last-child {
        border: none
      }

      .hh {
        padding: 72px 20px 64px
      }

      .hs {
        padding: 60px 20px
      }

      .honest-w {
        padding: 28px 20px
      }
    }

    @media(max-width:420px) {
      .hh-btns {
        flex-direction: column;
        align-items: stretch
      }

      .hh-btn-p,
      .hh-btn-s {
        justify-content: center
      }
    }