:root{
      --bg: #f7f4f2;
      --paper: #ffffff;
      --ink: #1f2328;
      --muted: rgba(31,35,40,.68);
      --muted2: rgba(31,35,40,.52);
      --line: rgba(31,35,40,.12);

      --brand1: #ff6a2a;
      --brand2: #ff3b2e;
      --brand3: #ffb25a;

      --accent: #ff6a2a;
      --accent2: #ff3b2e;

      --shadow: 0 18px 50px rgba(255, 85, 35, .18), 0 2px 10px rgba(16,24,40,.08);
      --shadow2: 0 14px 40px rgba(16,24,40,.12);
      --softShadow: 0 10px 30px rgba(16,24,40,.08);

      --radius-xl: 22px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 10px;

      --container: 1120px;
    }

    *{ box-sizing: border-box; }
    html, body{ height: 100%; }
    body{
      margin: 0;
      font-family: ui-sans-serif, system-ui, -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      color: var(--ink);
      background: radial-gradient(900px 520px at 10% -10%, rgba(255, 106, 42, .14), rgba(255, 106, 42, 0) 60%),
                  radial-gradient(800px 480px at 90% 0%, rgba(255, 59, 46, .12), rgba(255, 59, 46, 0) 55%),
                  linear-gradient(180deg, #fff 0%, var(--bg) 40%, #fff 100%);
    }

    a{ color: inherit; text-decoration: none; }
    .skip-link{
      position: absolute;
      left: 10px; top: 10px;
      transform: translateY(-150%);
      background: #111827;
      color: #fff;
      padding: 10px 12px;
      border-radius: 10px;
      z-index: 9999;
      transition: transform .2s ease;
    }
    .skip-link:focus{ transform: translateY(0); outline: none; }

    .container{
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 18px;
    }

    .topbar{
      position: sticky;
      top: 0;
      z-index: 60;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, .72);
      border-bottom: 1px solid rgba(31,35,40,.08);
    }
    .topbar-inner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 0;
    }
    .brand{ display: flex; align-items: center; gap: 12px; min-width: 280px; }
    .logo{ width: 44px; height: 44px; object-fit: contain; }
    .brand-text{ line-height: 1.1; }
    .brand-name{ font-weight: 880; letter-spacing: .2px; }
    .brand-sub{ font-size: 12px; color: var(--muted); margin-top: 4px; }

    .nav{ display: flex; align-items: center; }
    .nav-toggle{
      display: none;
      border: 1px solid rgba(31,35,40,.14);
      background: rgba(255,255,255,.8);
      border-radius: 12px;
      padding: 10px 12px;
      gap: 10px;
      align-items: center;
      cursor: pointer;
    }
    .nav-toggle-lines{
      width: 18px; height: 12px; position: relative; display: inline-block;
      background:
        linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
        linear-gradient(var(--ink), var(--ink)) 0 50% / 100% 2px no-repeat,
        linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 2px no-repeat;
      opacity: .86;
    }
    .nav-toggle-label{ font-weight: 720; font-size: 14px; color: rgba(31,35,40,.86); }
    .nav-panel{
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 0;
    }
    .nav-link{
      font-size: 14px;
      color: rgba(31,35,40,.78);
      padding: 10px 10px;
      border-radius: 12px;
      transition: background .15s ease, color .15s ease, transform .15s ease;
      white-space: nowrap;
    }
    .nav-link:hover{
      background: rgba(255,106,42,.08);
      color: rgba(31,35,40,.95);
      transform: translateY(-1px);
    }
    .nav-link-cta{
      color: #fff;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 12px 30px rgba(255, 76, 34, .25);
      border: 1px solid rgba(255,255,255,.25);
    }
    .nav-link-cta:hover{
      background: linear-gradient(135deg, #ff7a33, #ff4a3e);
      transform: translateY(-1px);
    }

    .hero{
      position: relative;
      overflow: hidden;
      padding: 34px 0 22px;
    }
    .hero-inner{
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 20px;
      align-items: stretch;
      position: relative;
      z-index: 2;
    }
    .hero-bg{
      position: absolute;
      inset: -240px -240px auto -240px;
      height: 620px;
      background:
        radial-gradient(closest-side at 15% 55%, rgba(255,106,42,.36), rgba(255,106,42,0) 60%),
        radial-gradient(closest-side at 60% 0%, rgba(255,59,46,.30), rgba(255,59,46,0) 55%),
        radial-gradient(closest-side at 95% 25%, rgba(255,178,90,.22), rgba(255,178,90,0) 60%),
        linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0));
      filter: saturate(1.08);
      pointer-events: none;
    }

    .pill-row{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 10px 0 14px;
    }
    .pill{
      font-size: 13px;
      color: rgba(31,35,40,.86);
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.72);
      border-radius: 999px;
      padding: 8px 12px;
      box-shadow: 0 10px 30px rgba(16,24,40,.06);
    }

    .hero-title{
      margin: 0;
      font-size: clamp(26px, 3.4vw, 44px);
      letter-spacing: -0.6px;
      line-height: 1.08;
      font-weight: 920;
    }
    .hero-lead{
      margin: 14px 0 18px;
      color: rgba(31,35,40,.72);
      font-size: 15px;
      line-height: 1.7;
      max-width: 64ch;
    }

    .hero-actions{
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 18px 0 18px;
    }

    .btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 14px;
      font-weight: 760;
      font-size: 14px;
      border: 1px solid rgba(31,35,40,.12);
      cursor: pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      user-select: none;
      white-space: nowrap;
    }
    .btn:active{ transform: translateY(1px); }
    .btn-primary{
      color: #fff;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      border-color: rgba(255,255,255,.18);
      box-shadow: 0 18px 42px rgba(255, 74, 34, .25);
    }
    .btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 22px 55px rgba(255, 74, 34, .30); }
    .btn-ghost{
      background: rgba(255,255,255,.74);
      color: rgba(31,35,40,.86);
      box-shadow: 0 10px 30px rgba(16,24,40,.07);
    }
    .btn-ghost:hover{ transform: translateY(-1px); border-color: rgba(255,106,42,.28); background: rgba(255,255,255,.9); }
    .btn-small{
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
    }
    .btn-full{ width: 100%; }
    .hero-meta{
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .meta-item{
      flex: 1;
      min-width: 160px;
      background: rgba(255,255,255,.7);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: 16px;
      padding: 12px 14px;
      box-shadow: 0 16px 40px rgba(16,24,40,.06);
    }
    .meta-value{
      font-weight: 910;
      letter-spacing: -0.2px;
      font-size: 16px;
    }
    .meta-label{
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.3;
    }

    .hero-trust{
      margin-top: 14px;
      padding: 12px 12px;
      border-radius: 16px;
      border: 1px dashed rgba(31,35,40,.18);
      background: rgba(255,255,255,.55);
    }
    .trust-line{
      display: flex;
      gap: 10px;
      align-items: center;
      color: rgba(31,35,40,.78);
      font-size: 13px;
      line-height: 1.5;
      margin: 7px 0;
    }
    .trust-dot{
      width: 8px; height: 8px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.16);
      flex: 0 0 auto;
    }

    .hero-panel{
      position: relative;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: var(--softShadow);
      overflow: hidden;
    }
    .soft-ornament{
      position: absolute;
      width: 280px; height: 280px;
      border-radius: 50%;
      right: -120px; top: -150px;
      background: radial-gradient(closest-side, rgba(255,106,42,.35), rgba(255,106,42,0));
      filter: blur(2px);
      pointer-events: none;
    }
    .panel-head{ margin-bottom: 12px; position: relative; z-index: 2; }
    .panel-title{ font-weight: 900; letter-spacing: -0.2px; }
    .panel-sub{ margin-top: 6px; color: var(--muted); font-size: 13px; }

    .data-grid{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 10px 0 14px;
      position: relative;
      z-index: 2;
    }
    .data-card{
      border-radius: 16px;
      border: 1px solid rgba(31,35,40,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
      padding: 12px 12px;
      box-shadow: 0 14px 34px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 108px;
    }
    .data-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 20px 55px rgba(16,24,40,.10);
      border-color: rgba(255,106,42,.25);
    }
    .data-top{ display: flex; align-items: center; gap: 10px; }
    .icon{
      width: 28px; height: 28px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.92);
      font-weight: 900;
      flex: 0 0 auto;
    }
    .data-title{ font-weight: 800; font-size: 13px; color: rgba(31,35,40,.82); }
    .data-value{ margin-top: 10px; font-size: 18px; font-weight: 950; letter-spacing: -0.3px; }
    .data-desc{ margin-top: 6px; color: var(--muted); font-size: 12.5px; line-height: 1.35; }

    .panel-foot{
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 6px;
      border-top: 1px solid rgba(31,35,40,.10);
      margin-top: 10px;
    }
    .panel-note{ color: rgba(31,35,40,.72); font-size: 13px; display: flex; align-items: center; gap: 10px; }
    .note-badge{
      font-weight: 900;
      background: rgba(255,106,42,.14);
      color: rgba(255,59,46,.96);
      border: 1px solid rgba(255,106,42,.28);
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 12px;
      flex: 0 0 auto;
    }
    .hero-copy .hero-title{
      background: linear-gradient(135deg, rgba(31,35,40,1), rgba(31,35,40,.92));
      -webkit-text-fill-color: initial;
    }

    .section{
      padding: 46px 0;
    }
    .section-muted{
      background: linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.0));
      border-top: 1px solid rgba(31,35,40,.06);
      border-bottom: 1px solid rgba(31,35,40,.06);
    }
    .section-head{
      margin-bottom: 22px;
    }
    .section-kicker{
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: rgba(31,35,40,.85);
      font-weight: 820;
      font-size: 13px;
      letter-spacing: .2px;
      margin-bottom: 10px;
    }
    .section-kicker::before{
      content: "";
      width: 10px; height: 10px;
      border-radius: 3px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.16);
      display: inline-block;
    }
    .section-title{
      margin: 0;
      font-size: clamp(20px, 2.2vw, 30px);
      letter-spacing: -0.4px;
      line-height: 1.2;
      font-weight: 940;
    }
    .section-desc{
      margin: 12px 0 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 14.5px;
      max-width: 78ch;
    }

    .quick-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 14px;
    }
    .quick-card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: 18px;
      padding: 16px 16px;
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 122px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }
    .quick-card::after{
      content: "";
      position: absolute;
      width: 180px; height: 180px;
      right: -90px; top: -110px;
      background: radial-gradient(closest-side, rgba(255,106,42,.25), rgba(255,106,42,0));
      pointer-events: none;
    }
    .quick-card:hover{
      transform: translateY(-3px);
      border-color: rgba(255,106,42,.25);
      box-shadow: 0 26px 70px rgba(16,24,40,.10);
    }
    .quick-top{ display: flex; align-items: center; gap: 10px; position: relative; z-index: 2; }
    .quick-icon{
      width: 34px; height: 34px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,106,42,.25);
      background: rgba(255,106,42,.10);
      color: rgba(255,59,46,.92);
      font-weight: 900;
      flex: 0 0 auto;
    }
    .quick-title{ font-weight: 900; letter-spacing: -0.2px; }
    .quick-desc{ color: var(--muted); font-size: 13.5px; line-height: 1.5; position: relative; z-index: 2; }

    .two-col{
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: start;
    }
    .p{ color: var(--muted); line-height: 1.8; margin: 12px 0 16px; font-size: 14.8px; }
    .kicker{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 860;
      color: rgba(31,35,40,.85);
      margin-bottom: 10px;
      letter-spacing: .1px;
    }
    .kicker::before{
      content: "";
      width: 12px; height: 12px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--brand3), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.14);
      display: inline-block;
    }
    .tag-row{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag{
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.65);
      color: rgba(31,35,40,.86);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 720;
      box-shadow: 0 14px 34px rgba(16,24,40,.06);
    }

    .about-card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.08);
      position: relative;
      overflow: hidden;
    }
    .about-card::after{
      content: "";
      position: absolute;
      right: -160px; top: -170px;
      width: 320px; height: 320px;
      background: radial-gradient(closest-side, rgba(255,106,42,.20), rgba(255,106,42,0));
      pointer-events: none;
    }
    .about-card-top{ position: relative; z-index: 2; }
    .about-card-title{ font-weight: 950; letter-spacing: -0.3px; font-size: 18px; }
    .about-card-sub{ margin-top: 7px; color: var(--muted); font-size: 13.5px; }
    .about-list{ margin-top: 14px; display: grid; gap: 10px; position: relative; z-index: 2; }
    .about-item{ display: flex; gap: 10px; align-items: flex-start; padding: 10px 10px; border-radius: 16px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.56); }
    .check{
      width: 26px; height: 26px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,106,42,.12);
      color: rgba(255,59,46,.98);
      border: 1px solid rgba(255,106,42,.25);
      font-weight: 950;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .about-item-title{ font-weight: 900; }
    .about-item-desc{ margin-top: 4px; color: var(--muted); font-size: 13.2px; line-height: 1.5; }
    .about-card-actions{
      margin-top: 16px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      position: relative; z-index: 2;
    }

    .mini-callout{
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-top: 14px;
      padding: 14px 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
    }
    .mini-callout-icon{
      width: 38px; height: 38px;
      border-radius: 16px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex: 0 0 auto;
    }
    .mini-callout-title{ font-weight: 920; }
    .mini-callout-desc{ margin-top: 6px; color: var(--muted); line-height: 1.6; font-size: 13.5px; }

    .service-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .service-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
      transition: transform .18s ease, box-shadow .22s ease, border-color .2s ease;
      display: flex;
      flex-direction: column;
      min-height: 310px;
    }
    .service-card:hover{
      transform: translateY(-4px);
      border-color: rgba(255,106,42,.25);
      box-shadow: 0 30px 80px rgba(16,24,40,.10);
    }
    .service-top{
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .service-icon{
      width: 42px; height: 42px;
      border-radius: 18px;
      border: 1px solid rgba(255,106,42,.25);
      background: linear-gradient(180deg, rgba(255,106,42,.12), rgba(255,255,255,.0));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex: 0 0 auto;
    }
    .h3{ margin: 0; font-weight: 940; letter-spacing: -0.2px; font-size: 16.5px; }
    .service-desc{ margin: 12px 0 10px; color: var(--muted); line-height: 1.7; font-size: 14px; }
    .list{
      margin: 0;
      padding-left: 18px;
      color: rgba(31,35,40,.78);
      font-size: 13.8px;
      line-height: 1.7;
    }
    .link-btn{
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border-radius: 14px;
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.70);
      font-weight: 860;
      transition: transform .15s ease, border-color .2s ease, background .2s ease;
      width: fit-content;
    }
    .link-btn::after{ content: "→"; color: rgba(255,59,46,.95); font-weight: 950; }
    .link-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(255,106,42,.30);
      background: rgba(255,255,255,.92);
    }

    .model-strip{
      margin-top: 18px;
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
    }
    .strip-head{ display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .strip-title{ font-weight: 940; letter-spacing: -0.2px; }
    .strip-sub{ color: var(--muted); font-size: 13.5px; }
    .strip-tags{
      margin-top: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .chip{
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 13px;
      font-weight: 760;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.60);
      color: rgba(31,35,40,.80);
    }
    .chip-warm{
      border-color: rgba(255,106,42,.25);
      background: rgba(255,106,42,.10);
      color: rgba(255,59,46,.95);
    }

    .steps-grid{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }
    .step-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: 18px;
      padding: 16px 14px;
      box-shadow: 0 20px 55px rgba(16,24,40,.06);
      transition: transform .18s ease, border-color .2s ease;
      position: relative;
      overflow: hidden;
      min-height: 150px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .step-card::after{
      content: "";
      position: absolute;
      inset: -80px -70px auto auto;
      width: 160px; height: 160px;
      background: radial-gradient(closest-side, rgba(255,106,42,.22), rgba(255,106,42,0));
      pointer-events: none;
    }
    .step-card:hover{ transform: translateY(-3px); border-color: rgba(255,106,42,.25); }
    .step-no{
      width: 34px; height: 34px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 950;
      position: relative;
      z-index: 1;
    }
    .step-title{ font-weight: 950; letter-spacing: -0.2px; position: relative; z-index: 1; }
    .step-desc{ color: var(--muted); line-height: 1.6; font-size: 13.6px; position: relative; z-index: 1; }
    .is-active{
      border-color: rgba(255,106,42,.35);
      box-shadow: 0 30px 80px rgba(255, 74, 34, .14);
    }

    .cta-row{
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding: 16px 16px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
    }
    .cta-title{ font-weight: 950; letter-spacing: -0.2px; }
    .cta-sub{ margin-top: 6px; color: var(--muted); line-height: 1.7; font-size: 13.8px; }
    .cta-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

    .industry-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 12px;
    }
    .industry-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 16px;
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
      transition: transform .18s ease, border-color .2s ease;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .industry-card:hover{ transform: translateY(-3px); border-color: rgba(255,106,42,.25); }
    .industry-top{ display: flex; align-items: center; gap: 10px; }
    .industry-icon{
      width: 42px; height: 42px;
      border-radius: 18px;
      border: 1px solid rgba(255,106,42,.25);
      background: rgba(255,106,42,.10);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex: 0 0 auto;
    }
    .industry-desc{ color: var(--muted); margin: 2px 0 0; line-height: 1.7; font-size: 13.8px; }
    .industry-bullets{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
    .bullet{
      border-radius: 999px;
      padding: 8px 10px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(31,35,40,.10);
      font-size: 13px;
      color: rgba(31,35,40,.82);
      font-weight: 740;
    }

    .network-grid{
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 14px;
      align-items: start;
    }
    .map-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
      position: relative;
      overflow: hidden;
    }
    .map-title{ font-weight: 950; letter-spacing: -0.2px; font-size: 16.5px; }
    .map-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; }
    .map-visual{
      margin-top: 14px;
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.08);
      background: linear-gradient(180deg, rgba(255,106,42,.06), rgba(255,255,255,.2));
      height: 280px;
      position: relative;
      overflow: hidden;
    }
    .dot{
      position: absolute;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 6px rgba(255,106,42,.14);
      animation: pulse 2.8s ease-in-out infinite;
    }
    .d1{ left: 18%; top: 32%; animation-delay: .0s; }
    .d2{ left: 35%; top: 46%; animation-delay: .6s; }
    .d3{ left: 50%; top: 28%; animation-delay: 1.1s; }
    .d4{ left: 66%; top: 48%; animation-delay: .2s; }
    .d5{ left: 78%; top: 30%; animation-delay: 1.4s; }
    .wave{
      position: absolute;
      inset: auto auto 20% 10%;
      width: 220px; height: 220px;
      border-radius: 50%;
      border: 1px solid rgba(255,106,42,.22);
      background: radial-gradient(closest-side, rgba(255,106,42,.16), rgba(255,106,42,0));
      animation: wave 3.4s ease-in-out infinite;
      pointer-events: none;
    }
    .w1{ left: 8%; top: 10%; opacity: .7; }
    .w2{ left: 30%; top: 20%; width: 250px; height: 250px; opacity: .45; animation-delay: .7s; }
    .w3{ left: 52%; top: 12%; width: 240px; height: 240px; opacity: .35; animation-delay: 1.2s; }
    @keyframes pulse{
      0%, 100%{ transform: translateY(0); opacity: .95; }
      50%{ transform: translateY(-3px); opacity: .72; }
    }
    @keyframes wave{
      0%, 100%{ transform: scale(.98); opacity: .35; }
      50%{ transform: scale(1.06); opacity: .18; }
    }
    .map-badges{
      display: flex; gap: 10px; flex-wrap: wrap;
      margin-top: 14px;
    }
    .badge{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,35,40,.82);
      font-weight: 760;
      font-size: 13px;
    }

    .network-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .network-card-title{ font-weight: 950; letter-spacing: -0.2px; }
    .network-card-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; }
    .promise-list{ margin-top: 14px; display: grid; gap: 12px; }
    .promise-item{ display: flex; gap: 12px; align-items: flex-start; padding: 12px 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .promise-ic{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-size: 18px;
    }
    .promise-title{ font-weight: 920; }
    .promise-desc{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .network-actions{ margin-top: 14px; display: flex; gap: 12px; flex-wrap: wrap; }

    .link-strip{
      margin-top: 14px;
      background: rgba(255,255,255,.70);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 14px;
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
    }
    .link-strip-title{ font-weight: 940; margin-bottom: 10px; }
    .friend-links{
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .friend-link{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,35,40,.82);
      font-weight: 760;
      font-size: 13px;
      transition: transform .15s ease, border-color .2s ease;
    }
    .friend-link:hover{ transform: translateY(-2px); border-color: rgba(255,106,42,.25); }

    .compare-layout{
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items: start;
    }
    .review-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .review-top{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }
    .stars{ display: flex; gap: 6px; align-items: center; font-size: 26px; color: rgba(255,106,42,.95); }
    .star{ filter: drop-shadow(0 10px 20px rgba(255,106,42,.18)); }
    .star.is-half{ color: rgba(255,178,90,.95); }
    .review-score{ text-align: right; }
    .score-value{ font-size: 30px; font-weight: 980; letter-spacing: -0.6px; }
    .score-sub{ color: var(--muted); font-weight: 740; margin-top: 4px; }
    .review-note{
      margin-top: 14px;
      display: grid;
      gap: 10px;
    }
    .note-line{ display: flex; align-items: center; gap: 10px; color: rgba(31,35,40,.80); }
    .note-ic{
      width: 26px; height: 26px;
      border-radius: 12px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 950;
      color: rgba(255,59,46,.95);
      flex: 0 0 auto;
      font-size: 14px;
    }
    .review-actions{ margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

    .compare-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .compare-title{ font-weight: 960; letter-spacing: -0.2px; font-size: 18px; }
    .compare-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .table-wrap{
      margin-top: 14px;
      overflow-x: auto;
      border-radius: 16px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
    }
    .compare-table{
      width: 100%;
      border-collapse: collapse;
      min-width: 740px;
      font-size: 14px;
    }
    .compare-table th, .compare-table td{
      padding: 12px 12px;
      border-bottom: 1px solid rgba(31,35,40,.08);
      vertical-align: top;
      text-align: left;
    }
    .compare-table thead th{
      background: linear-gradient(135deg, rgba(255,106,42,.18), rgba(255,59,46,.12));
      color: rgba(31,35,40,.92);
      font-weight: 940;
      position: sticky;
      top: 0;
      z-index: 1;
    }
    .ok{
      color: rgba(255,59,46,.98);
      font-weight: 950;
      margin-right: 6px;
    }
    .muted{ color: rgba(31,35,40,.40); margin-right: 6px; font-weight: 900; }
    .compare-foot{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(31,35,40,.10);
    }
    .compare-foot-note{
      display: flex; align-items: center; gap: 10px;
      color: rgba(31,35,40,.78);
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 65ch;
    }
    .result-actions{ margin-top: 12px; }

    .token-layout{
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 14px;
      align-items: start;
    }
    .token-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .token-card-title{ font-weight: 960; letter-spacing: -0.2px; font-size: 18px; }
    .token-card-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

    .token-form{ margin-top: 14px; }
    .field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
    .field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .label{ font-weight: 820; color: rgba(31,35,40,.86); font-size: 13.5px; }
    .input{
      border-radius: 14px;
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.78);
      padding: 12px 12px;
      outline: none;
      font-size: 14px;
      color: rgba(31,35,40,.92);
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .input:focus{
      border-color: rgba(255,106,42,.45);
      box-shadow: 0 0 0 4px rgba(255,106,42,.14);
    }
    .textarea{ resize: vertical; min-height: 110px; }
    .token-result{
      margin-top: 14px;
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
      min-height: 86px;
    }
    .result-line{ display: flex; align-items: flex-start; gap: 10px; color: rgba(31,35,40,.86); font-weight: 800; }
    .result-ic{
      width: 32px; height: 32px;
      border-radius: 14px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 950;
      flex: 0 0 auto;
    }
    .result-empty{ color: var(--muted); line-height: 1.6; }
    .result-sub{ margin-top: 10px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .token-help{ margin-top: 14px; display: grid; gap: 10px; }
    .help-line{ display: flex; align-items: flex-start; gap: 10px; color: rgba(31,35,40,.78); font-size: 13.5px; line-height: 1.6; }
    .help-dot{
      width: 10px; height: 10px; border-radius: 4px;
      margin-top: 6px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.14);
      flex: 0 0 auto;
    }

    .token-side{ display: grid; gap: 14px; }
    .side-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .side-card.alt{ background: rgba(255,255,255,.78); }
    .side-card-title{ font-weight: 960; letter-spacing: -0.2px; }
    .side-card-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .opt-list{ margin-top: 14px; display: grid; gap: 12px; }
    .opt-item{ display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .opt-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 950;
      flex: 0 0 auto;
    }
    .opt-title{ font-weight: 920; }
    .opt-desc{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .quote-card{
      background: linear-gradient(180deg, rgba(255,106,42,.10), rgba(255,255,255,.70));
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .quote-top{ display: flex; align-items: center; gap: 12px; }
    .quote-mark{
      width: 40px; height: 40px;
      border-radius: 18px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 1000;
      font-size: 22px;
      flex: 0 0 auto;
    }
    .quote-title{ font-weight: 960; letter-spacing: -0.2px; }
    .quote-text{ margin-top: 12px; color: rgba(31,35,40,.78); line-height: 1.7; font-size: 14px; font-weight: 720; }

    .match-layout{
      display: grid;
      grid-template-columns: .98fr 1.02fr;
      gap: 14px;
      align-items: start;
    }
    .form-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .form-title{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .form-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .form{ margin-top: 14px; }
    .form-foot{ margin-top: 12px; }
    .form-agree{
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      line-height: 1.6;
    }
    .agree-dot{
      width: 10px; height: 10px; border-radius: 4px;
      margin-top: 6px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.14);
      flex: 0 0 auto;
    }
    .form-security{
      margin-top: 14px;
      border-top: 1px solid rgba(31,35,40,.10);
      padding-top: 12px;
      color: var(--muted);
      font-size: 13.5px;
    }
    .security-row{ display: flex; align-items: center; gap: 10px; }
    .security-ic{ width: 28px; height: 28px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,106,42,.10); border: 1px solid rgba(255,106,42,.25); flex: 0 0 auto; }

    .side-stack{ display: grid; gap: 14px; }
    .benefit-list{ margin-top: 14px; display: grid; gap: 12px; }
    .benefit{ display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .benefit-ic{
      width: 36px; height: 36px;
      border-radius: 16px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 950;
      flex: 0 0 auto;
    }
    .benefit-title{ font-weight: 920; }
    .benefit-desc{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

    .highlight{
      background: linear-gradient(180deg, rgba(255,106,42,.10), rgba(255,255,255,.75));
      border-color: rgba(255,106,42,.22);
    }
    .highlight-title{ font-weight: 980; letter-spacing: -0.2px; }
    .highlight-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .highlight-chips{ margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
    .chip-warm{ border-color: rgba(255,106,42,.25); background: rgba(255,106,42,.10); }

    .training-grid{
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .training-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .training-card.alt{ background: linear-gradient(180deg, rgba(255,106,42,.08), rgba(255,255,255,.78)); }
    .training-card-title{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .training-card-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .checklist{
      margin: 14px 0 0; padding: 0; list-style: none;
      display: grid; gap: 10px;
    }
    .checklist li{
      display: flex; align-items: flex-start; gap: 10px;
      padding: 10px 10px;
      border-radius: 16px;
      border: 1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.58);
      color: rgba(31,35,40,.82);
      font-weight: 760;
      line-height: 1.5;
    }
    .checkmark{
      width: 26px; height: 26px;
      border-radius: 12px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      color: rgba(255,59,46,.98);
      font-weight: 950;
      flex: 0 0 auto;
    }
    .training-actions{ margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }
    .training-steps{ margin-top: 14px; display: grid; gap: 12px; }
    .t-item{ display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .t-no{
      width: 44px; height: 44px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 1000;
      color: rgba(255,59,46,.98);
      flex: 0 0 auto;
    }
    .t-title{ font-weight: 950; letter-spacing: -0.2px; }
    .t-desc{ margin-top: 6px; color: var(--muted); line-height: 1.6; font-size: 13.5px; }
    .training-note{
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(31,35,40,.10);
      color: rgba(31,35,40,.78);
      display: flex; align-items: center; gap: 10px;
      font-size: 13.5px;
      line-height: 1.6;
    }

    .cases-grid{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .case-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
      transition: transform .18s ease, border-color .2s ease, box-shadow .22s ease;
      position: relative;
      overflow: hidden;
      min-height: 208px;
      display: flex; flex-direction: column;
    }
    .case-card::after{
      content:"";
      position:absolute; inset:-100px -120px auto auto;
      width: 260px; height: 260px;
      background: radial-gradient(closest-side, rgba(255,106,42,.20), rgba(255,106,42,0));
      pointer-events:none;
    }
    .case-card:hover{
      transform: translateY(-4px);
      border-color: rgba(255,106,42,.25);
      box-shadow: 0 36px 90px rgba(16,24,40,.10);
    }
    .case-top{ display:flex; align-items:center; justify-content: space-between; gap: 10px; position: relative; z-index: 2; }
    .case-badge{
      font-weight: 950;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      border: 1px solid rgba(31,35,40,.10);
      font-size: 13px;
      color: rgba(31,35,40,.86);
    }
    .case-badge.warm{
      border-color: rgba(255,106,42,.25);
      background: rgba(255,106,42,.10);
      color: rgba(255,59,46,.98);
    }
    .case-chip{
      font-weight: 820;
      padding: 7px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,35,40,.78);
      font-size: 13px;
      white-space: nowrap;
    }
    .case-title{ margin-top: 12px; font-weight: 980; letter-spacing: -0.2px; position: relative; z-index: 2; }
    .case-desc{ margin-top: 10px; color: var(--muted); line-height: 1.7; font-size: 14px; position: relative; z-index: 2; }
    .case-foot{ margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(31,35,40,.10); display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 2; }
    .case-metric{ color: rgba(31,35,40,.78); font-weight: 760; font-size: 13.5px; }
    .cases-actions{
      margin-top: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding: 16px 16px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
    }
    .cases-note{
      color: rgba(31,35,40,.78);
      line-height: 1.7;
      font-size: 13.5px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      max-width: 75ch;
    }

    .article-grid{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .article-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 16px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
      transition: transform .18s ease, border-color .2s ease, box-shadow .22s ease;
      display: flex;
      flex-direction: column;
      min-height: 210px;
    }
    .article-card:hover{
      transform: translateY(-4px);
      border-color: rgba(255,106,42,.25);
      box-shadow: 0 36px 90px rgba(16,24,40,.10);
    }
    .article-top{ display:flex; align-items:center; gap: 10px; }
    .article-dot{
      width: 10px; height: 10px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(255,106,42,.14);
    }
    .article-cat{
      font-weight: 900;
      font-size: 13px;
      color: rgba(31,35,40,.86);
    }
    .article-title{ margin-top: 12px; font-weight: 980; letter-spacing: -0.2px; line-height: 1.3; }
    .article-desc{ margin-top: 10px; color: var(--muted); line-height: 1.7; font-size: 13.8px; }
    .article-foot{ margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(31,35,40,.10); color: rgba(255,59,46,.98); font-weight: 880; }

    .article-more{
      margin-top: 14px;
      display:flex; align-items:center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
      padding: 16px 16px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
    }
    .more-note{ color: rgba(31,35,40,.78); font-size: 13.5px; line-height: 1.7; display: flex; gap: 10px; align-items: flex-start; }

    .faq-grid{
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 14px;
      align-items: start;
    }
    .tabs{
      display: flex;
      gap: 10px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: 18px;
      padding: 8px;
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
    }
    .tab{
      flex: 1;
      border-radius: 14px;
      padding: 12px 12px;
      border: 1px solid transparent;
      background: transparent;
      cursor: pointer;
      font-weight: 900;
      color: rgba(31,35,40,.75);
      transition: background .2s ease, border-color .2s ease, transform .15s ease;
    }
    .tab:hover{ transform: translateY(-1px); }
    .tab.is-active{
      background: linear-gradient(135deg, rgba(255,106,42,.18), rgba(255,59,46,.10));
      border-color: rgba(255,106,42,.25);
      color: rgba(31,35,40,.95);
    }

    .tab-panel{ margin-top: 14px; }
    .tab-panel:not(.is-active){ display: none; }

    .accordion{ display: grid; gap: 10px; }
    .acc-item{
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
      overflow: hidden;
    }
    .acc-btn{
      width: 100%;
      text-align: left;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 14px;
      border: 0;
      background: transparent;
      cursor: pointer;
      font-weight: 920;
      color: rgba(31,35,40,.92);
    }
    .acc-btn:focus{ outline: none; box-shadow: inset 0 0 0 3px rgba(255,106,42,.22); }
    .acc-ic{
      width: 34px; height: 34px;
      border-radius: 14px;
      display:inline-flex; align-items:center; justify-content:center;
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.62);
      color: rgba(255,59,46,.95);
      font-size: 18px;
      flex: 0 0 auto;
    }
    .acc-panel{
      padding: 0 14px 14px;
    }
    .acc-body{
      color: var(--muted);
      line-height: 1.75;
      font-size: 14px;
      padding-top: 6px;
    }

    .faq-footer{
      margin-top: 14px;
      padding: 16px 16px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 22px 60px rgba(16,24,40,.06);
      display:flex; align-items:center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    }
    .faq-footer-note{
      color: rgba(31,35,40,.78);
      line-height: 1.7;
      font-size: 13.5px;
      display:flex; gap: 10px; align-items:flex-start;
      max-width: 70ch;
    }

    .wiki-card{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .wiki-title{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .wiki-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .wiki-list{ margin-top: 14px; display: grid; gap: 12px; }
    .wiki-item{ display:flex; gap: 12px; align-items:flex-start; padding: 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .wiki-ic{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(255,59,46,.98);
      flex: 0 0 auto;
    }
    .wiki-item-title{ font-weight: 950; letter-spacing: -0.2px; }
    .wiki-item-desc{ margin-top: 6px; color: var(--muted); line-height: 1.6; font-size: 13.5px; }
    .wiki-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }

    .reviewimonials .side-card{ padding: 18px; }
    .comment-grid{
      margin-top: 14px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .comment-card{
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding: 14px;
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
      transition: transform .18s ease, border-color .2s ease;
      min-height: 160px;
    }
    .comment-card:hover{ transform: translateY(-3px); border-color: rgba(255,106,42,.25); }
    .comment-top{ display:flex; gap: 12px; align-items:flex-start; }
    .avatar{
      width: 42px; height: 42px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(255,59,46,.98);
      flex: 0 0 auto;
    }
    .comment-name{ font-weight: 950; letter-spacing: -0.2px; line-height: 1.2; }
    .comment-meta{ margin-top: 6px; color: var(--muted); font-size: 13.5px; }
    .comment-text{
      margin-top: 12px;
      color: rgba(31,35,40,.78);
      line-height: 1.7;
      font-size: 13.8px;
      font-weight: 720;
    }
    .comments-action{
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(31,35,40,.10);
      display:flex; gap: 12px; flex-wrap: wrap;
    }

    .tags-cloud{
      margin-top: 14px;
      padding: 18px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .tags-cloud-title{ font-weight: 980; letter-spacing: -0.2px; }
    .cloud{ margin-top: 12px; display:flex; flex-wrap: wrap; gap: 10px; }
    .cloud-chip{
      border-radius: 999px;
      padding: 9px 12px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      color: rgba(31,35,40,.82);
      font-weight: 760;
      font-size: 13px;
      transition: transform .15s ease, border-color .2s ease;
    }
    .cloud-chip:hover{ transform: translateY(-2px); border-color: rgba(255,106,42,.25); }

    .timeline{
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 14px;
      align-items: start;
    }
    .timeline-note{
      margin-top: 14px;
      display:flex; gap: 10px; align-items:flex-start;
      color: rgba(31,35,40,.78);
      line-height: 1.7;
      font-size: 13.5px;
    }
    .timeline-right{
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .trow{
      display:flex; gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(31,35,40,.08);
      align-items:flex-start;
    }
    .trow:last-of-type{ border-bottom: 0; }
    .tmark{
      width: 40px; height: 40px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(255,59,46,.98);
      flex: 0 0 auto;
    }
    .tname{ font-weight: 980; letter-spacing: -0.2px; }
    .ttext{ margin-top: 6px; color: var(--muted); line-height: 1.6; font-size: 13.5px; }
    .timeline-btn{ margin-top: 14px; }

    .contact-layout{
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 14px;
      align-items: start;
    }
    .contact-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .contact-card-title{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .contact-card-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

    .contact-blocks{
      margin-top: 14px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .cblock{
      padding: 12px;
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.58);
    }
    .cblock-title{ color: rgba(31,35,40,.86); font-weight: 900; }
    .cblock-value{ margin-top: 6px; color: var(--muted); line-height: 1.5; font-weight: 760; }
    .qr-row{ margin-top: 14px; display:grid; grid-template-columns: .55fr .45fr; gap: 14px; align-items: start; }
    .qr-card{
      border-radius: 22px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      padding: 12px;
      box-shadow: 0 18px 46px rgba(16,24,40,.06);
    }
    .qr-img{ width: 100%; height: auto; border-radius: 18px; display:block; }
    .qr-caption{ margin-top: 10px; text-align: center; color: rgba(31,35,40,.82); font-weight: 900; }
    .qr-title{ font-weight: 980; letter-spacing: -0.2px; }
    .text-link{ color: rgba(255,59,46,.98); font-weight: 900; }
    .list.compact{ padding-left: 16px; font-size: 13.5px; }
    .qr-action{ margin-top: 12px; }

    .contact-mini-links{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }
    .mini-link{
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid rgba(31,35,40,.10);
      background: rgba(255,255,255,.62);
      font-weight: 820;
      color: rgba(31,35,40,.82);
      transition: transform .15s ease, border-color .2s ease;
    }
    .mini-link:hover{ transform: translateY(-2px); border-color: rgba(255,106,42,.25); }

    .join-grid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 14px;
      align-items: start;
    }
    .join-card{
      background: rgba(255,255,255,.80);
      border: 1px solid rgba(31,35,40,.10);
      border-radius: var(--radius-xl);
      padding: 18px;
      box-shadow: 0 26px 70px rgba(16,24,40,.06);
    }
    .join-card.alt{
      background: linear-gradient(180deg, rgba(255,106,42,.08), rgba(255,255,255,.78));
    }
    .join-title{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .join-sub{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .join-list{ margin-top: 14px; display: grid; gap: 12px; }
    .join-item{ display:flex; gap: 12px; align-items:flex-start; padding: 12px; border-radius: 18px; border: 1px solid rgba(31,35,40,.08); background: rgba(255,255,255,.58); }
    .join-ic{
      width: 42px; height: 42px;
      border-radius: 18px;
      background: rgba(255,106,42,.10);
      border: 1px solid rgba(255,106,42,.25);
      display:flex; align-items:center; justify-content:center;
      font-weight: 1000;
      color: rgba(255,59,46,.98);
      flex: 0 0 auto;
    }
    .join-item-title{ font-weight: 950; letter-spacing: -0.2px; }
    .join-item-desc{ margin-top: 6px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
    .join-actions{ margin-top: 14px; display:flex; gap: 12px; flex-wrap: wrap; }
    .qa-list{ margin-top: 14px; display: grid; gap: 12px; }
    .qa{
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.08);
      background: rgba(255,255,255,.58);
      padding: 12px;
    }
    .qa-q{ font-weight: 950; letter-spacing: -0.2px; }
    .qa-a{ margin-top: 6px; color: var(--muted); line-height: 1.6; font-size: 13.5px; }
    .join-foot{ margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(31,35,40,.10); display:grid; gap: 8px; color: rgba(31,35,40,.78); font-weight: 760; }

    .footer{
      background: linear-gradient(180deg, rgba(17,24,39,.96), rgba(17,24,39,.98));
      color: rgba(255,255,255,.92);
      margin-top: 26px;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer-inner{
      padding: 28px 0 18px;
    }
    .footer-top{
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 18px;
      align-items: start;
    }
    .footer-brand{ display:flex; gap: 12px; align-items:flex-start; }
    .footer-logo{ width: 44px; height: 44px; object-fit: contain; filter: brightness(1.02) saturate(1.05); }
    .footer-name{ font-weight: 980; letter-spacing: -0.2px; font-size: 18px; }
    .footer-sub{ margin-top: 6px; color: rgba(255,255,255,.72); font-size: 13.5px; line-height: 1.6; }
    .footer-links{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .footer-col-title{
      font-weight: 940;
      color: rgba(255,255,255,.92);
      margin-bottom: 10px;
    }
    .footer-link{
      display: block;
      color: rgba(255,255,255,.74);
      padding: 8px 0;
      font-weight: 740;
      font-size: 14px;
      transition: color .2s ease, transform .15s ease;
    }
    .footer-link:hover{ color: rgba(255,255,255,.96); transform: translateY(-1px); }

    .footer-bottom{
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .footer-legal{
      color: rgba(255,255,255,.74);
      font-size: 13.5px;
      line-height: 1.6;
      font-weight: 720;
      display:flex; gap: 10px; align-items:center; flex-wrap: wrap;
    }
    .sep{ opacity: .45; }
    .footer-right{ color: rgba(255,255,255,.74); }
    .footer-sites{
      display:flex; gap: 10px; flex-wrap: wrap;
      justify-content: flex-end;
    }
    .footer-site-pill{
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      font-weight: 760;
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }

    .to-top{
      position: fixed;
      right: 16px;
      bottom: 92px;
      width: 44px; height: 44px;
      border-radius: 18px;
      border: 1px solid rgba(31,35,40,.12);
      background: rgba(255,255,255,.86);
      box-shadow: 0 18px 46px rgba(16,24,40,.12);
      color: rgba(31,35,40,.92);
      font-weight: 980;
      cursor: pointer;
      transform: translateY(12px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
      z-index: 80;
    }
    .to-top.show{
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .float-kefu{
      position: fixed;
      right: 16px;
      bottom: 22px;
      z-index: 90;
    }
    .float-kefu-btn{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,106,42,.30);
      background: linear-gradient(135deg, rgba(255,106,42,.95), rgba(255,59,46,.95));
      color: #fff;
      box-shadow: 0 22px 55px rgba(255, 76, 34, .28);
      transition: transform .16s ease, box-shadow .2s ease;
    }
    .float-kefu-btn:hover{
      transform: translateY(-2px);
      box-shadow: 0 30px 80px rgba(255, 76, 34, .35);
    }
    .float-kefu-ic{
      width: 32px; height: 32px;
      border-radius: 14px;
      background: rgba(255,255,255,.18);
      border: 1px solid rgba(255,255,255,.26);
      display:flex; align-items:center; justify-content:center;
      font-weight: 980;
    }
    .float-kefu-text{ font-weight: 920; }

    /* Reveal */
    .reveal{
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .reveal.in{
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior: auto !important; }
      .dot, .wave{ animation: none !important; }
      .reveal{ transition: none !important; }
    }

    @media (max-width: 980px){
      .hero-inner{ grid-template-columns: 1fr; }
      .nav-panel{ gap: 10px; }
      .quick-grid{ grid-template-columns: repeat(2, 1fr); }
      .service-grid{ grid-template-columns: repeat(2, 1fr); }
      .steps-grid{ grid-template-columns: repeat(3, 1fr); }
      .industry-grid{ grid-template-columns: repeat(2, 1fr); }
      .network-grid{ grid-template-columns: 1fr; }
      .compare-layout{ grid-template-columns: 1fr; }
      .token-layout{ grid-template-columns: 1fr; }
      .match-layout{ grid-template-columns: 1fr; }
      .training-grid{ grid-template-columns: 1fr; }
      .cases-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: repeat(2, 1fr); }
      .faq-grid{ grid-template-columns: 1fr; }
      .comment-grid{ grid-template-columns: 1fr; }
      .timeline{ grid-template-columns: 1fr; }
      .contact-layout{ grid-template-columns: 1fr; }
      .qr-row{ grid-template-columns: 1fr; }
      .join-grid{ grid-template-columns: 1fr; }
      .footer-top{ grid-template-columns: 1fr; }
      .footer-links{ grid-template-columns: 1fr; }
      .to-top{ bottom: 90px; }
    }

    @media (max-width: 720px){
      .nav-toggle{ display: inline-flex; }
      .nav-panel{
        display: none;
        position: absolute;
        right: 18px;
        top: 68px;
        width: min(320px, calc(100vw - 36px));
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(31,35,40,.12);
        border-radius: 18px;
        box-shadow: 0 30px 80px rgba(16,24,40,.18);
        padding: 12px;
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
      }
      .nav-panel.open{ display: flex; }
      .nav-link{ padding: 12px 10px; }
      .nav-link-cta{ width: 100%; }
      .brand{ min-width: auto; }
      .brand-sub{ display:none; }
      .hero{ padding-top: 22px; }
      .data-grid{ grid-template-columns: 1fr 1fr; }
      .steps-grid{ grid-template-columns: 1fr; }
      .service-grid{ grid-template-columns: 1fr; }
      .industry-grid{ grid-template-columns: 1fr; }
      .quick-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .field-row{ grid-template-columns: 1fr; }
      .hero-actions .btn{ width: 100%; }
      .hero-actions{ width: 100%; }
      .cta-actions .btn{ width: 100%; }
      .network-actions .btn{ width: 100%; }
      .review-actions .btn{ width: 100%; }
      .compare-foot .btn{ width: 100%; }
      .cases-actions .btn{ width: 100%; }
      .faq-footer .btn{ width: 100%; }
      .comments-action .btn{ width: 100%; }
      .join-actions .btn{ width: 100%; }
      .timeline-btn{ width: 100%; }
      .cta-row{ align-items: flex-start; }
    }