    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: #141824;
      background: #fff;
      line-height: 1.65;
      overflow-x: hidden;
    }
    :root {
      --blue: #2864ff;
      --blue-dark: #1242c6;
      --violet: #7c4dff;
      --pink: #ff5c9f;
      --green: #12b981;
      --orange: #ff8a3d;
      --ink: #141824;
      --muted: #667085;
      --soft: #f5f7fb;
      --soft-blue: #eef5ff;
      --line: #e6ebf3;
      --card: #fff;
      --shadow: 0 24px 70px rgba(40, 72, 126, 0.16);
      --radius: 8px;
      --wrap: 1280px;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4, p { margin: 0; }
    button, a { -webkit-tap-highlight-color: transparent; }
    .wrap { width: min(var(--wrap), calc(100% - clamp(32px, 6vw, 96px))); margin: 0 auto; }
    .section { padding: 86px 0; }
    .section-soft { background: var(--soft); }
    .section-head {
      max-width: 780px;
      margin-bottom: 36px;
    }
    .center { text-align: center; margin-left: auto; margin-right: auto; }
    h1 {
      color: #071338;
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.12;
      letter-spacing: 0;
      font-weight: 900;
    }
    h2 {
      color: #101a38;
      font-size: clamp(28px, 3.6vw, 46px);
      line-height: 1.18;
      letter-spacing: 0;
      font-weight: 900;
    }
    h3 { color: #13203b; font-size: 20px; line-height: 1.35; font-weight: 850; }
    .lead {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.85;
    }
    .gradient-text {
      color: transparent;
      background: linear-gradient(100deg, var(--blue), var(--violet) 52%, var(--pink));
      -webkit-background-clip: text;
      background-clip: text;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      margin-bottom: 16px;
      padding: 8px 14px;
      border: 1px solid rgba(40, 100, 255, 0.15);
      border-radius: 999px;
      background: #fff;
      color: #223659;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 12px 28px rgba(44, 60, 98, 0.08);
    }
    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      box-shadow: 0 0 0 5px rgba(40, 100, 255, 0.1);
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 50px;
      padding: 0 24px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-size: 16px;
      font-weight: 850;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      box-shadow: 0 12px 28px rgba(40, 100, 255, 0.24);
    }
    .btn-ghost {
      color: var(--blue);
      background: #fff;
      border-color: rgba(40, 100, 255, 0.32);
      box-shadow: 0 12px 26px rgba(44, 60, 98, 0.08);
    }
    .btn.with-arrow::after {
      content: "\2192";
      display: inline-block;
      font-weight: 900;
      transform: translateY(-1px);
      transition: transform 0.18s ease;
    }
    .btn.with-arrow:hover::after { transform: translate(3px, -1px); }

    .nav {
      position: fixed;
      z-index: 50;
      top: 0;
      left: 0;
      right: 0;
      height: 72px;
      background: rgba(255, 255, 255, 0.94);
      border-bottom: 1px solid rgba(226, 232, 240, 0.84);
      backdrop-filter: blur(18px);
    }
    .nav-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 172px;
      font-size: 22px;
      font-weight: 900;
    }
    .brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: #17213d;
      font-size: 15px;
      font-weight: 800;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 10px;
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      margin: 5px 0;
      border-radius: 999px;
      background: #17213d;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hero {
      position: relative;
      min-height: 790px;
      padding: 120px 0 58px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,249,255,0.98) 58%, #fff 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 72px 0 0;
      background:
        radial-gradient(circle at 82% 5%, rgba(40,100,255,0.16) 0 1px, transparent 1.5px) 0 0 / 10px 10px,
        linear-gradient(135deg, rgba(40,100,255,0.06), transparent 36%),
        linear-gradient(315deg, rgba(255,92,159,0.1), transparent 34%);
      opacity: 0.28;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
      gap: 48px;
      align-items: center;
    }
    .hero-copy .lead {
      max-width: 680px;
      margin-top: 26px;
      color: #4f5e7a;
      font-weight: 650;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }
    .hero-chips {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      max-width: 700px;
      margin-top: 30px;
    }
    .hero-chip {
      display: grid;
      justify-items: center;
      gap: 9px;
      min-height: 88px;
      padding: 13px 8px 12px;
      border: 1px solid rgba(224, 231, 245, 0.88);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.9);
      color: #263653;
      font-size: 13px;
      font-weight: 850;
      text-align: center;
      box-shadow: 0 16px 34px rgba(44, 60, 98, 0.08);
      backdrop-filter: blur(14px);
    }
    .chip-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(145deg, var(--blue), var(--violet));
      font-size: 15px;
      font-weight: 900;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
    }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 34px;
      padding-top: 28px;
      border-top: 1px solid rgba(226, 232, 240, 0.94);
    }
    .hero-stat strong {
      display: block;
      color: #071338;
      font-size: 26px;
      line-height: 1;
      font-weight: 900;
    }
    .hero-stat span {
      display: block;
      margin-top: 6px;
      color: #667085;
      font-size: 13px;
      font-weight: 750;
    }
    .hero-visual {
      position: relative;
      min-height: 620px;
    }
    .dashboard {
      position: relative;
      min-height: 600px;
      border: 1px solid rgba(215, 225, 242, 0.9);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.92);
      box-shadow: var(--shadow);
      overflow: hidden;
      backdrop-filter: blur(18px);
    }
    .dash-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      height: 72px;
      padding: 0 24px;
      border-bottom: 1px solid var(--line);
    }
    .dash-title {
      color: #101a38;
      font-size: 22px;
      font-weight: 900;
    }
    .dash-pills { display: flex; gap: 8px; }
    .dash-pill {
      padding: 7px 11px;
      border: 1px solid #dfe6f3;
      border-radius: var(--radius);
      color: #344054;
      background: #fff;
      font-size: 12px;
      font-weight: 850;
    }
    .dash-body {
      display: grid;
      grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1.05fr);
      gap: 18px;
      padding: 20px;
    }
    .panel {
      border: 1px solid rgba(226, 232, 240, 0.9);
      border-radius: var(--radius);
      background: #fff;
      padding: 20px;
      box-shadow: 0 10px 26px rgba(37, 56, 88, 0.05);
    }
    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }
    .panel-label {
      color: #667692;
      font-size: 14px;
      font-weight: 850;
    }
    .panel-tag {
      padding: 5px 9px;
      border-radius: 999px;
      color: #0aa375;
      background: #dcf8ed;
      font-size: 12px;
      font-weight: 900;
    }
    .panel-value {
      color: #101a38;
      font-size: 40px;
      line-height: 1;
      font-weight: 900;
    }
    .chart {
      position: relative;
      height: 144px;
      margin-top: 24px;
      border-bottom: 1px solid #e7edf7;
      background:
        linear-gradient(180deg, transparent 0 24%, rgba(231,237,247,0.68) 24% 25%, transparent 25% 49%, rgba(231,237,247,0.68) 49% 50%, transparent 50% 74%, rgba(231,237,247,0.68) 74% 75%, transparent 75%);
    }
    .chart svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .chart path {
      fill: none;
      stroke: url(#lineGradient);
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 8px 10px rgba(80, 72, 255, 0.14));
      stroke-dasharray: 420;
      animation: drawLine 2.4s ease both;
    }
    @keyframes drawLine {
      from { stroke-dashoffset: 420; }
      to { stroke-dashoffset: 0; }
    }
    .bar-list {
      display: grid;
      gap: 14px;
    }
    .bar-row {
      display: grid;
      grid-template-columns: 74px minmax(90px, 1fr) 42px;
      align-items: center;
      gap: 10px;
      color: #17213d;
      font-size: 13px;
      font-weight: 850;
    }
    .bar-track {
      height: 10px;
      border-radius: 999px;
      background: #edf1f7;
      overflow: hidden;
    }
    .bar-fill {
      height: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--violet) 70%, var(--pink));
    }
    .task-list {
      display: grid;
      gap: 12px;
    }
    .task {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      gap: 12px;
      align-items: center;
      min-height: 66px;
      padding: 12px;
      border: 1px solid #ecf0f7;
      border-radius: var(--radius);
      background: #fff;
      color: #17213d;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(37, 56, 88, 0.05);
    }
    .task i {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      font-style: normal;
      font-size: 14px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--violet));
    }
    .task strong,
    .task span {
      display: block;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .task strong { font-size: 14px; }
    .task span {
      margin-top: 4px;
      color: #64748b;
      font-size: 12px;
      font-weight: 750;
    }
    .task em {
      color: var(--green);
      font-style: normal;
      font-size: 12px;
      font-weight: 900;
    }
    .dash-footer {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      padding: 0 20px 20px;
    }
    .mini-card {
      min-height: 92px;
      padding: 16px;
      border: 1px solid #e7edf7;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #fff, #fbfcff);
    }
    .mini-card span {
      color: #667085;
      font-size: 12px;
      font-weight: 800;
    }
    .mini-card strong {
      display: block;
      margin-top: 8px;
      color: #101a38;
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
    }

    .grid-3, .grid-4, .module-grid, .faq-grid {
      display: grid;
      gap: 18px;
    }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: 0 10px 30px rgba(37, 56, 88, 0.06);
      overflow: hidden;
    }
    .pain-card {
      min-height: 276px;
      padding: 26px 24px;
      background: linear-gradient(180deg, #fff, #fcfdff);
      box-shadow: 0 18px 44px rgba(37, 56, 88, 0.08);
    }
    .card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }
    .card-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      font-size: 20px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--pink));
      box-shadow: 0 12px 24px rgba(84, 85, 255, 0.22);
    }
    .visual-mark {
      position: relative;
      width: 82px;
      height: 62px;
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 28% 36%, rgba(40,100,255,0.75) 0 8px, transparent 9px),
        radial-gradient(circle at 66% 58%, rgba(255,92,159,0.7) 0 10px, transparent 11px),
        linear-gradient(135deg, rgba(40,100,255,0.12), rgba(255,92,159,0.14));
    }
    .visual-mark::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 14px;
      top: 29px;
      height: 5px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
      transform: rotate(-18deg);
    }
    .pain-card p,
    .value-card p,
    .module-card p,
    .faq-card p {
      margin-top: 12px;
      color: var(--muted);
      font-size: 15px;
    }
    .solution {
      position: relative;
      margin-top: 18px;
      padding-top: 17px;
      padding-left: 30px;
      border-top: 1px dashed #d8e0ee;
      color: #283653;
      font-size: 14px;
      font-weight: 800;
    }
    .solution::before {
      content: "";
      position: absolute;
      left: 0;
      top: 16px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, var(--blue), var(--violet));
    }
    .solution::after {
      content: "";
      position: absolute;
      left: 6px;
      top: 20px;
      width: 5px;
      height: 9px;
      border-right: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(45deg);
    }

    .value-band {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: stretch;
      padding: 28px;
      border: 1px solid #dfe8fa;
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 88% 20%, rgba(255, 92, 159, 0.14), transparent 28%),
        linear-gradient(135deg, #ffffff, #f4f8ff);
      box-shadow: 0 16px 42px rgba(37, 56, 88, 0.08);
    }
    .value-visual {
      display: grid;
      align-content: center;
      gap: 14px;
      min-height: 320px;
      padding: 24px;
      border: 1px dashed #b8c9e8;
      border-radius: var(--radius);
      background: #fff;
    }
    .data-node {
      display: grid;
      grid-template-columns: 44px 1fr auto;
      gap: 12px;
      align-items: center;
      min-height: 66px;
      padding: 12px;
      border: 1px solid #edf1f7;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #fff, #fbfcff);
    }
    .data-node i {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      font-style: normal;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--violet));
    }
    .data-node strong {
      display: block;
      color: #17213d;
      font-size: 15px;
    }
    .data-node span {
      display: block;
      margin-top: 3px;
      color: #667085;
      font-size: 12px;
      font-weight: 750;
    }
    .data-node b {
      color: var(--green);
      font-size: 12px;
    }
    .value-list {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }
    .value-item {
      display: grid;
      grid-template-columns: 36px 1fr;
      gap: 12px;
      align-items: start;
    }
    .value-item i {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      color: #fff;
      font-style: normal;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--pink));
    }
    .value-item strong {
      display: block;
      color: #17213d;
      font-size: 16px;
      font-weight: 900;
    }
    .value-item span {
      display: block;
      margin-top: 4px;
      color: #667085;
      font-size: 14px;
    }

    .module-card {
      min-height: 322px;
      padding: 24px;
    }
    .module-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-a, var(--blue)), var(--accent-b, var(--pink)));
    }
    .module-card:nth-child(1) { --accent-a: #2864ff; --accent-b: #7c4dff; }
    .module-card:nth-child(2) { --accent-a: #ff8a3d; --accent-b: #ff5c9f; }
    .module-card:nth-child(3) { --accent-a: #12b981; --accent-b: #22c55e; }
    .module-card:nth-child(4) { --accent-a: #7c4dff; --accent-b: #ff5c9f; }
    .module-card:nth-child(5) { --accent-a: #0ea5e9; --accent-b: #2864ff; }
    .module-card:nth-child(6) { --accent-a: #3949ab; --accent-b: #7c4dff; }
    .module-kicker {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 5px 9px;
      border-radius: 999px;
      background: #f3f6ff;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
    }
    .module-card ul {
      margin: 16px 0 0;
      padding-left: 18px;
      color: #344054;
      font-size: 14px;
      font-weight: 700;
    }
    .module-card li { margin: 8px 0; }
    .flow {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .flow-card {
      position: relative;
      min-height: 190px;
      padding: 22px 18px;
      border: 1px solid #dfe8f6;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #fff, #f7fbff);
    }
    .flow-step {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-bottom: 16px;
      border-radius: 50%;
      color: #fff;
      background: var(--blue);
      font-weight: 900;
    }
    .flow-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 14px;
    }
    .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .faq-card {
      min-height: 178px;
      padding: 24px;
    }
    .contact-section {
      color: #fff;
      background:
        radial-gradient(circle at 80% 18%, rgba(255,92,159,0.22), transparent 32%),
        linear-gradient(135deg, #071338, #12245a 54%, #34195f);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 40px;
      align-items: center;
    }
    .contact-section h2,
    .contact-section h3 { color: #fff; }
    .contact-section .lead { color: rgba(255,255,255,0.78); }
    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
      color: rgba(255,255,255,0.82);
      font-size: 15px;
    }
    .contact-list div {
      display: grid;
      grid-template-columns: 86px 1fr;
      gap: 12px;
    }
    .contact-list span {
      color: rgba(255,255,255,0.54);
      font-weight: 850;
    }
    .qr-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.1);
      box-shadow: 0 24px 70px rgba(0,0,0,0.2);
      backdrop-filter: blur(16px);
      text-align: center;
    }
    .qr-card img {
      width: 228px;
      height: 228px;
      margin: 18px auto;
      border-radius: var(--radius);
      background: #fff;
      padding: 8px;
    }
    .qr-card p {
      color: rgba(255,255,255,0.68);
      font-size: 14px;
    }
    .mobile-link { display: none; }
    .footer {
      color: rgba(255,255,255,0.72);
      background: #080d1f;
      padding: 34px 0;
      font-size: 13px;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer a { color: rgba(255,255,255,0.82); }
    .footer a:hover { color: #fff; }
    .floating-consult {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      display: none;
      align-items: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 18px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(135deg, var(--green), #059a4a);
      box-shadow: 0 14px 32px rgba(18, 185, 129, 0.32);
      font-weight: 900;
    }
    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1120px) {
      .hero-inner,
      .value-band,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-visual { min-height: auto; }
      .nav-links {
        position: fixed;
        top: 72px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        padding: 13px 12px;
        border-radius: var(--radius);
      }
      .nav-links a:hover { background: #f5f7fb; }
      .nav-toggle { display: block; }
      .nav-cta { display: none; }
    }
    @media (max-width: 900px) {
      .section { padding: 64px 0; }
      .hero {
        min-height: auto;
        padding: 112px 0 46px;
      }
      .hero-chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .grid-3,
      .module-grid,
      .grid-4,
      .faq-grid,
      .flow,
      .dash-footer {
        grid-template-columns: 1fr;
      }
      .dash-body { grid-template-columns: 1fr; }
      .dashboard { min-height: auto; }
      .contact-grid { gap: 28px; }
      .contact-list div { grid-template-columns: 1fr; gap: 3px; }
      .qr-card { display: none; }
      .mobile-link { display: inline-flex; }
      .floating-consult { display: none; }
    }
    @media (max-width: 640px) {
      .wrap { width: min(var(--wrap), calc(100% - 32px)); }
      h1 { font-size: 38px; }
      .lead { font-size: 16px; }
      .hero-actions .btn { width: 100%; }
      .hero-chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .dash-top {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 18px;
      }
      .dash-pills { flex-wrap: wrap; }
      .task { grid-template-columns: 36px 1fr; }
      .task em { display: none; }
      .panel-value { font-size: 34px; }
      .value-band {
        padding: 18px;
      }
      .footer-inner { display: grid; }
    }
