:root{
      --bg: #fbf7f2;
      --surface: #ffffff;
      --text: #1f2430;
      --muted: #5b6476;
      --border: rgba(31,36,48,.12);
      --shadow: 0 18px 45px rgba(17,24,39,.08);
      --shadow2: 0 10px 28px rgba(17,24,39,.10);
      --accentA: #ff3b7a;
      --accentB: #2f6bff;
      --accentC: #00b894;
      --accentD: #ff8a00;
      --accentE: #7c3aed;
      --radius-xl: 26px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 12px;
      --container: 1120px;
      --padX: 20px;
      --focus: 0 0 0 4px rgba(47,107,255,.18);
    }

    *{ box-sizing: border-box; }
    html{ scroll-behavior: smooth; }
    body{
      margin: 0;
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "PingFang SC","Hiragino Sans GB","Microsoft YaHei", Arial, "Noto Sans", sans-serif;
      color: var(--text);
      background:
        radial-gradient(900px 420px at 15% 5%, rgba(255,59,122,.14), transparent 55%),
        radial-gradient(820px 420px at 85% 10%, rgba(47,107,255,.15), transparent 55%),
        radial-gradient(600px 360px at 60% 40%, rgba(0,184,148,.10), transparent 60%),
        linear-gradient(180deg, #fffdfb 0%, var(--bg) 52%, #fff 100%);
      overflow-x: hidden;
    }

    a{ color: inherit; text-decoration: none; }
    button, input, select, textarea{ font: inherit; }
    img{ display:block; max-width:100%; height:auto; }

    .container{
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--padX);
    }

    .nav{
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 251, .78);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(31,36,48,.08);
    }
    .nav-inner{
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 14px;
      padding: 12px 0;
    }
    .brand{
      display:flex; align-items:center; gap: 10px; min-width: 210px;
    }
    .brand img{
      width: 40px; height: 40px; object-fit: contain;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(255,59,122,.18);
      background: rgba(255,59,122,.06);
      border: 1px solid rgba(255,59,122,.18);
    }
    .brand .brand-meta{
      display:flex; flex-direction: column; line-height: 1.1;
    }
    .brand .name{
      font-weight: 800;
      letter-spacing: .2px;
      font-size: 14px;
    }
    .brand .sub{
      font-size: 12px;
      color: var(--muted);
      margin-top: 3px;
      white-space: nowrap;
    }

    .nav-right{
      display:flex; align-items:center; gap: 12px;
    }

    .menu{
      display:flex; align-items:center; gap: 14px;
      padding: 0;
      margin: 0;
      list-style:none;
    }
    .menu a{
      font-size: 13px;
      color: rgba(31,36,48,.86);
      padding: 8px 10px;
      border-radius: 12px;
      transition: background .2s ease, transform .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .menu a:hover{
      background: rgba(47,107,255,.10);
      color: #14307a;
      transform: translateY(-1px);
    }

    .nav-cta{
      display:flex; align-items:center; gap: 10px;
    }

    .btn{
      appearance: none;
      border: 1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.8);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 14px;
      cursor: pointer;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
      display:inline-flex; align-items:center; gap: 10px;
      user-select: none;
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      white-space: nowrap;
    }
    .btn:focus{ outline: none; box-shadow: var(--focus); }
    .btn:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17,24,39,.10);
      border-color: rgba(31,36,48,.18);
    }
    .btn-primary{
      border: 1px solid rgba(255,255,255,.30);
      color: #fff;
      background: linear-gradient(135deg, var(--accentA) 0%, var(--accentB) 55%, var(--accentE) 100%);
      box-shadow: 0 18px 42px rgba(47,107,255,.18);
    }
    .btn-primary:hover{
      box-shadow: 0 22px 50px rgba(47,107,255,.24);
    }
    .btn-ghost{
      background: rgba(255,255,255,.55);
      box-shadow: none;
    }

    .icon-dot{
      width: 10px; height: 10px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #fff 0%, rgba(255,255,255,.6) 20%, rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0)),
        linear-gradient(135deg, var(--accentA), var(--accentB));
      box-shadow: 0 10px 20px rgba(255,59,122,.18);
    }

    .mobile-toggle{
      display:none;
      width: 44px; height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.8);
      cursor: pointer;
      align-items:center; justify-content:center;
      box-shadow: 0 10px 22px rgba(17,24,39,.06);
      transition: transform .16s ease, box-shadow .16s ease;
    }
    .mobile-toggle:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17,24,39,.10);
    }
    .burger{
      width: 18px; height: 12px; position: relative;
    }
    .burger span{
      position:absolute; left:0; right:0;
      height: 2px; background: rgba(31,36,48,.86);
      border-radius: 999px;
      transition: transform .22s ease, top .22s ease, opacity .22s ease;
    }
    .burger span:nth-child(1){ top:0; }
    .burger span:nth-child(2){ top:5px; }
    .burger span:nth-child(3){ top:10px; }
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(1){ top:5px; transform: rotate(45deg); }
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(2){ opacity:0; }
    .mobile-toggle[aria-expanded="true"] .burger span:nth-child(3){ top:5px; transform: rotate(-45deg); }

    .mobile-panel{
      display:none;
      padding: 0 0 14px 0;
    }
    .mobile-panel .panel-inner{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,36,48,.10);
      border-radius: 18px;
      padding: 12px;
      box-shadow: 0 18px 45px rgba(17,24,39,.08);
    }
    .mobile-links{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 8px;
      margin-top: 10px;
    }
    .mobile-links a{
      display:flex; align-items:center; justify-content:center;
      padding: 10px 10px;
      border-radius: 14px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.7);
      font-size: 13px;
      color: rgba(31,36,48,.88);
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .mobile-links a:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17,24,39,.10);
      border-color: rgba(47,107,255,.18);
    }

    .hero{
      padding: 28px 0 10px 0;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
      align-items: start;
    }
    .hero-card{
      background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.62));
      border: 1px solid rgba(31,36,48,.10);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
      padding: 22px;
    }

    .hero-card:before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(560px 240px at 18% 10%, rgba(255,59,122,.26), transparent 60%),
        radial-gradient(520px 260px at 82% 15%, rgba(47,107,255,.22), transparent 62%),
        radial-gradient(440px 240px at 70% 80%, rgba(124,58,237,.16), transparent 60%);
      pointer-events:none;
      z-index:0;
    }
    .hero-card > *{ position: relative; z-index:1; }

    .pill-row{
      display:flex; flex-wrap: wrap; gap: 10px; align-items:center;
      margin-bottom: 14px;
    }
    .pill{
      display:inline-flex; align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,36,48,.10);
      box-shadow: 0 12px 26px rgba(17,24,39,.06);
      font-size: 13px;
      color: rgba(31,36,48,.88);
    }
    .pill strong{ font-weight: 900; }
    .hero h1{
      margin: 0;
      font-size: 34px;
      line-height: 1.15;
      letter-spacing: -.6px;
    }
    .hero .lead{
      margin-top: 12px;
      color: rgba(31,36,48,.78);
      font-size: 15px;
      line-height: 1.7;
      max-width: 60ch;
    }
    .hero-actions{
      display:flex; flex-wrap: wrap; gap: 12px;
      margin-top: 16px;
      align-items:center;
    }
    .mini-trust{
      display:flex; flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
      align-items:center;
    }
    .trust-chip{
      display:flex; align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(255,255,255,.65);
      border: 1px solid rgba(31,36,48,.10);
      color: rgba(31,36,48,.84);
      font-size: 13px;
      white-space: nowrap;
    }
    .trust-chip svg{ width: 18px; height: 18px; flex: 0 0 auto; }

    .hero-side{
      display:grid;
      gap: 14px;
    }
    .side-card{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      box-shadow: 0 18px 45px rgba(17,24,39,.07);
      padding: 18px;
      position: relative;
      overflow: hidden;
    }
    .side-card:after{
      content:"";
      position:absolute;
      width: 180px; height: 180px;
      right: -60px; top: -80px;
      background: radial-gradient(circle at 35% 35%, rgba(255,59,122,.25), rgba(255,59,122,0) 60%),
        radial-gradient(circle at 70% 70%, rgba(47,107,255,.22), rgba(47,107,255,0) 60%);
      pointer-events:none;
    }
    .side-card > *{ position: relative; z-index: 1; }

    .side-title{
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      margin-bottom: 10px;
    }
    .side-title h2{
      margin: 0;
      font-size: 14px;
      letter-spacing: .2px;
      color: rgba(31,36,48,.88);
    }
    .badge{
      font-size: 12px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.75);
      color: rgba(31,36,48,.84);
      white-space: nowrap;
    }

    .metric-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 10px;
    }
    .metric{
      padding: 12px;
      border-radius: 16px;
      border: 1px solid rgba(31,36,48,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.60));
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .metric:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
      border-color: rgba(47,107,255,.18);
    }
    .metric .k{
      font-weight: 950;
      letter-spacing: -.2px;
      font-size: 18px;
      display:flex; align-items: baseline; gap: 8px;
    }
    .metric .k span{
      font-size: 12px;
      color: rgba(31,36,48,.62);
      font-weight: 700;
    }
    .metric .v{
      margin-top: 6px;
      font-size: 12px;
      color: rgba(31,36,48,.72);
      line-height: 1.45;
    }

    .side-quick{
      display:flex; gap: 10px; flex-wrap: wrap;
      margin-top: 12px;
    }
    .tag{
      padding: 10px 12px;
      border-radius: 999px;
      background: rgba(47,107,255,.10);
      border: 1px solid rgba(47,107,255,.20);
      color: #14307a;
      font-size: 12.5px;
      font-weight: 700;
    }
    .tag.alt{
      background: rgba(255,59,122,.10);
      border-color: rgba(255,59,122,.20);
      color: #7a1432;
    }
    .tag.green{
      background: rgba(0,184,148,.10);
      border-color: rgba(0,184,148,.22);
      color: #0b5d50;
    }

    .section{
      padding: 18px 0;
    }

    .section-head{
      display:flex; align-items:flex-end; justify-content: space-between; gap: 16px;
      margin-bottom: 12px;
    }
    .section-head h2{
      margin: 0;
      font-size: 22px;
      letter-spacing: -.3px;
    }
    .section-head p{
      margin: 0;
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 60ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .card{
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(31,36,48,.10);
      border-radius: var(--radius-xl);
      box-shadow: 0 18px 45px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position: relative;
      overflow: hidden;
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow2);
      border-color: rgba(47,107,255,.18);
    }
    .card .card-title{
      display:flex; align-items:center; gap: 10px;
      font-weight: 900;
      letter-spacing: -.2px;
      margin-bottom: 8px;
      font-size: 15px;
    }
    .card p{
      margin: 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }

    .glyph{
      width: 38px; height: 38px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      border: 1px solid rgba(31,36,48,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.55));
    }
    .glyph svg{ width: 18px; height: 18px; }

    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: start;
    }

    .process{
      display:grid;
      gap: 12px;
    }
    .step{
      display:flex; gap: 12px; align-items:flex-start;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .step:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.20);
    }
    .step .num{
      width: 40px; height: 40px;
      border-radius: 16px;
      display:flex; align-items:center; justify-content:center;
      background: linear-gradient(135deg, rgba(255,59,122,.18), rgba(47,107,255,.18));
      border: 1px solid rgba(31,36,48,.10);
      font-weight: 950;
      color: rgba(31,36,48,.88);
      flex: 0 0 auto;
    }
    .step .st-meta{
      flex: 1 1 auto;
    }
    .step .st-meta .t{
      font-weight: 900;
      letter-spacing: -.2px;
      margin-bottom: 4px;
    }
    .step .st-meta .d{
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
      margin: 0;
    }

    .ability-list{
      display:flex; flex-wrap: wrap; gap: 10px;
      margin-top: 10px;
    }
    .ability{
      padding: 10px 12px;
      border-radius: 999px;
      border: 1px dashed rgba(31,36,48,.18);
      background: rgba(255,255,255,.6);
      color: rgba(31,36,48,.85);
      font-size: 12.5px;
      font-weight: 700;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .ability:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.30);
      background: rgba(47,107,255,.08);
    }

    .compare{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow:hidden;
    }
    .compare-head{
      padding: 16px;
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid rgba(31,36,48,.08);
      background:
        radial-gradient(600px 240px at 10% 10%, rgba(255,59,122,.14), transparent 60%),
        radial-gradient(520px 240px at 90% 20%, rgba(47,107,255,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
    }
    .rating{
      display:flex; align-items:center; gap: 14px;
    }
    .stars{
      display:flex; gap: 4px; align-items:center;
    }
    .star{
      width: 18px; height: 18px;
      background: linear-gradient(180deg, rgba(255,199,0,.98), rgba(255,153,0,.98));
      clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
      filter: drop-shadow(0 10px 18px rgba(255,153,0,.18));
    }
    .rating .score{
      display:flex; flex-direction: column; line-height: 1.1;
    }
    .rating .score strong{
      font-size: 26px; letter-spacing: -.6px;
    }
    .rating .score span{
      color: rgba(31,36,48,.70);
      font-size: 12.5px;
      margin-top: 6px;
    }
    .compare-head .note{
      color: rgba(31,36,48,.72);
      font-size: 13.5px;
      line-height: 1.6;
      max-width: 52ch;
      margin: 0;
    }

    table{
      width: 100%;
      border-collapse: collapse;
      font-size: 13.5px;
    }
    thead th{
      text-align: left;
      padding: 14px 14px;
      color: rgba(31,36,48,.88);
      background: rgba(255,255,255,.65);
      border-bottom: 1px solid rgba(31,36,48,.08);
      font-weight: 900;
    }
    tbody td{
      padding: 14px 14px;
      border-bottom: 1px solid rgba(31,36,48,.08);
      color: rgba(31,36,48,.80);
      vertical-align: top;
    }
    tbody tr:hover td{
      background: rgba(47,107,255,.05);
    }
    .ok{
      display:inline-flex; align-items:center; gap: 8px;
      font-weight: 800;
      color: #14307a;
    }
    .ok i{
      width: 18px; height: 18px; border-radius: 999px;
      background: rgba(47,107,255,.12);
      border: 1px solid rgba(47,107,255,.22);
      display:inline-flex; align-items:center; justify-content:center;
      font-style: normal;
      color: #14307a;
      flex: 0 0 auto;
    }
    .maybe{
      display:inline-flex; align-items:center; gap: 8px;
      font-weight: 800;
      color: rgba(31,36,48,.70);
    }
    .maybe i{
      width: 18px; height: 18px; border-radius: 999px;
      background: rgba(31,36,48,.06);
      border: 1px solid rgba(31,36,48,.14);
      display:inline-flex; align-items:center; justify-content:center;
      font-style: normal;
      flex: 0 0 auto;
    }

    .review-grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
    }
    .review{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      position: relative;
      overflow:hidden;
    }
    .review:before{
      content:"";
      position:absolute;
      width: 150px; height: 150px;
      right: -70px; bottom: -90px;
      background: radial-gradient(circle at 35% 35%, rgba(0,184,148,.18), transparent 60%);
      pointer-events:none;
    }
    .review > *{ position: relative; z-index: 1; }
    .review .who{
      display:flex; align-items:center; justify-content: space-between; gap: 10px;
      margin-bottom: 10px;
    }
    .avatar{
      width: 42px; height: 42px;
      border-radius: 16px;
      border: 1px solid rgba(31,36,48,.10);
      background: linear-gradient(135deg, rgba(255,59,122,.14), rgba(47,107,255,.12));
      display:flex; align-items:center; justify-content:center;
      font-weight: 950;
      color: rgba(31,36,48,.86);
      box-shadow: 0 16px 32px rgba(47,107,255,.12);
      flex: 0 0 auto;
    }
    .who .meta{
      display:flex; flex-direction: column; line-height: 1.2;
      margin-left: 10px;
    }
    .who .meta strong{ font-size: 14px; }
    .who .meta span{
      color: rgba(31,36,48,.70);
      font-size: 12.5px;
      margin-top: 4px;
    }
    .review .who-left{
      display:flex; align-items:center;
    }
    .review .body{
      color: rgba(31,36,48,.78);
      font-size: 13.5px;
      line-height: 1.75;
      margin: 0;
    }

    .timeline{
      display:grid;
      gap: 12px;
    }
    .time-row{
      display:flex; gap: 14px; align-items:flex-start;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .time-row:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.20);
    }
    .time-row .bar{
      width: 34px;
      display:flex; flex-direction: column; align-items:center;
      flex: 0 0 auto;
      margin-top: 2px;
    }
    .time-row .dot{
      width: 14px; height: 14px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accentA), var(--accentB));
      box-shadow: 0 14px 28px rgba(255,59,122,.18);
      border: 1px solid rgba(255,255,255,.65);
    }
    .time-row .line{
      width: 2px;
      flex: 1 1 auto;
      background: linear-gradient(180deg, rgba(31,36,48,.14), rgba(31,36,48,0));
      margin-top: 8px;
    }
    .time-row .content{
      flex: 1 1 auto;
    }
    .time-row .content .t{
      font-weight: 950;
      letter-spacing: -.2px;
      margin-bottom: 6px;
      font-size: 14.5px;
    }
    .time-row .content .d{
      margin: 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }

    .tag-cloud{
      display:flex; flex-wrap: wrap; gap: 10px;
      padding: 6px;
    }
    .tag-cloud a{
      border-radius: 999px;
      padding: 10px 12px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.7);
      color: rgba(31,36,48,.84);
      font-size: 12.5px;
      font-weight: 800;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .tag-cloud a:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.22);
      background: rgba(47,107,255,.08);
    }

    .cards-2{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .poster-grid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 14px;
    }

    .poster{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.74);
      box-shadow: 0 18px 45px rgba(17,24,39,.06);
      overflow: hidden;
    }
    .poster-media{
      padding: 14px;
      background:
        radial-gradient(520px 240px at 20% 10%, rgba(255,59,122,.14), transparent 60%),
        radial-gradient(420px 240px at 85% 10%, rgba(47,107,255,.14), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.45));
      border-bottom: 1px solid rgba(31,36,48,.08);
    }
    .poster-body{
      padding: 14px;
    }
    .poster .cap{
      font-weight: 950;
      letter-spacing: -.2px;
      margin-bottom: 6px;
      font-size: 14.5px;
    }
    .poster .desc{
      margin: 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }
    .poster .links{
      display:flex; gap: 10px; flex-wrap: wrap;
      margin-top: 10px;
    }

    .small-link{
      display:inline-flex; align-items:center; gap: 10px;
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      font-weight: 900;
      font-size: 13px;
      transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
    }
    .small-link:hover{
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(17,24,39,.10);
      border-color: rgba(255,59,122,.20);
    }
    .arrow{
      width: 22px; height: 22px;
      border-radius: 10px;
      display:inline-flex; align-items:center; justify-content:center;
      background: rgba(255,59,122,.10);
      border: 1px solid rgba(255,59,122,.18);
    }

    .list{
      display:grid;
      gap: 10px;
    }
    .list-item{
      display:flex; gap: 12px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.70);
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      align-items:flex-start;
    }
    .list-item:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
      border-color: rgba(47,107,255,.18);
    }
    .list-item .dot{
      width: 12px; height: 12px;
      border-radius: 999px;
      margin-top: 6px;
      background: linear-gradient(135deg, var(--accentB), var(--accentA));
      border: 1px solid rgba(255,255,255,.7);
      box-shadow: 0 14px 28px rgba(47,107,255,.16);
      flex: 0 0 auto;
    }
    .list-item .body .t{
      font-weight: 950;
      letter-spacing: -.2px;
      margin-bottom: 5px;
      font-size: 14.5px;
    }
    .list-item .body .d{
      margin: 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }

    .faq{
      display:grid;
      gap: 10px;
    }
    details{
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,36,48,.10);
      border-radius: 18px;
      padding: 12px 14px;
      box-shadow: 0 16px 32px rgba(17,24,39,.05);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    details[open]{
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 22px 50px rgba(47,107,255,.14);
    }
    summary{
      cursor: pointer;
      list-style: none;
      display:flex; align-items:flex-start; justify-content: space-between; gap: 12px;
      padding: 6px 0;
      font-weight: 950;
      letter-spacing: -.2px;
      color: rgba(31,36,48,.92);
      font-size: 14.5px;
    }
    summary::-webkit-details-marker{ display:none; }
    .sum-right{
      flex: 0 0 auto;
      width: 28px; height: 28px;
      border-radius: 12px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.75);
      display:flex; align-items:center; justify-content:center;
      margin-top: 2px;
      transition: transform .18s ease, border-color .18s ease;
    }
    details[open] .sum-right{
      transform: rotate(45deg);
      border-color: rgba(47,107,255,.22);
    }
    .faq-body{
      padding: 2px 0 8px 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.75;
    }

    .form-wrap{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .form-head{
      padding: 16px;
      border-bottom: 1px solid rgba(31,36,48,.08);
      background:
        radial-gradient(620px 260px at 12% 0%, rgba(255,59,122,.18), transparent 62%),
        radial-gradient(560px 260px at 90% 10%, rgba(47,107,255,.16), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.62));
    }
    .form-head .t{
      font-weight: 1000;
      letter-spacing: -.4px;
      font-size: 18px;
      margin: 0 0 6px 0;
    }
    .form-head .d{
      margin: 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }
    form{
      padding: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field{
      display:flex; flex-direction: column; gap: 7px;
    }
    .field label{
      font-weight: 900;
      font-size: 13px;
      color: rgba(31,36,48,.86);
    }
    .field input, .field select, .field textarea{
      border-radius: 14px;
      border: 1px solid rgba(31,36,48,.12);
      background: rgba(255,255,255,.85);
      padding: 12px 12px;
      color: rgba(31,36,48,.90);
      transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
    }
    .field input:focus, .field select:focus, .field textarea:focus{
      outline:none;
      box-shadow: var(--focus);
      border-color: rgba(47,107,255,.30);
    }
    .field textarea{
      resize: vertical;
      min-height: 110px;
    }
    .full{ grid-column: 1 / -1; }
    .form-actions{
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      grid-column: 1 / -1;
      margin-top: 2px;
    }
    .hint{
      color: rgba(31,36,48,.68);
      font-size: 12.5px;
      line-height: 1.6;
      max-width: 56ch;
    }
    .btn-row{
      display:flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
    }

    .article-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .article{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.72);
      box-shadow: 0 18px 45px rgba(17,24,39,.06);
      padding: 16px;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }
    .article:hover{
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(17,24,39,.10);
      border-color: rgba(47,107,255,.18);
    }
    .article .meta{
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      margin-bottom: 10px;
      color: rgba(31,36,48,.70);
      font-size: 12.5px;
    }
    .article .ttl{
      margin: 0;
      font-weight: 1000;
      letter-spacing: -.3px;
      font-size: 15.5px;
      line-height: 1.4;
    }
    .article .desc{
      margin: 8px 0 0 0;
      color: rgba(31,36,48,.76);
      font-size: 13.5px;
      line-height: 1.7;
    }
    .article .go{
      margin-top: 12px;
      display:flex; align-items:center; gap: 10px; flex-wrap: wrap;
    }

    .footer{
      margin-top: 10px;
      background: #0f172a;
      color: rgba(255,255,255,.88);
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .footer .foot-inner{
      padding: 22px 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 14px;
      align-items:start;
    }
    .foot-brand{
      display:flex; flex-direction: column; gap: 10px;
    }
    .foot-brand .row{
      display:flex; align-items:center; gap: 12px;
    }
    .foot-brand img{
      width: 44px; height: 44px; object-fit: contain;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.06);
      box-shadow: 0 22px 60px rgba(255,255,255,.08);
    }
    .foot-brand .h{
      font-weight: 1000;
      letter-spacing: -.3px;
      font-size: 15.5px;
      margin: 0;
    }
    .foot-brand .d{
      margin: 0;
      color: rgba(255,255,255,.72);
      font-size: 13.5px;
      line-height: 1.7;
    }
    .foot-col h3{
      margin: 0 0 10px 0;
      font-size: 14px;
      letter-spacing: .2px;
    }
    .foot-links{
      display:grid; gap: 8px;
    }
    .foot-links a{
      color: rgba(255,255,255,.76);
      font-size: 13.5px;
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .foot-links a:hover{
      transform: translateY(-1px);
      border-color: rgba(47,107,255,.30);
      background: rgba(47,107,255,.12);
      color: rgba(255,255,255,.92);
    }
    .copyright{
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.10);
      display:flex; align-items:center; justify-content: space-between; gap: 12px;
      flex-wrap: wrap;
      color: rgba(255,255,255,.68);
      font-size: 12.5px;
    }
    .partners{
      display:flex; flex-wrap: wrap; gap: 10px;
      margin-top: 10px;
    }
    .partners a{
      color: rgba(255,255,255,.82);
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.05);
      font-size: 12.5px;
      font-weight: 800;
      transition: transform .16s ease, border-color .16s ease, background .16s ease;
    }
    .partners a:hover{
      transform: translateY(-1px);
      border-color: rgba(255,59,122,.35);
      background: rgba(255,59,122,.14);
    }

    .fade-in{
      opacity: 0;
      transform: translateY(10px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fade-in.is-visible{
      opacity: 1;
      transform: translateY(0);
    }

    .floating{
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 60;
      display:flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn{
      width: 54px; height: 54px;
      border-radius: 20px;
      border: 1px solid rgba(31,36,48,.10);
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 45px rgba(17,24,39,.12);
      cursor: pointer;
      display:flex; align-items:center; justify-content:center;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      backdrop-filter: blur(10px);
    }
    .float-btn:hover{
      transform: translateY(-2px);
      border-color: rgba(47,107,255,.22);
      box-shadow: 0 26px 70px rgba(47,107,255,.20);
    }
    .float-btn svg{ width: 22px; height: 22px; }
    .float-btn.primary{
      background: linear-gradient(135deg, rgba(255,59,122,.95), rgba(47,107,255,.92));
      border-color: rgba(255,255,255,.25);
      color: #fff;
    }
    .float-btn.primary svg{ fill: #fff; }

    .sr-only{
      position:absolute;
      width:1px;height:1px;
      padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
    }

    .mobile-only{ display:none; }
    .desktop-only{ display: inline-flex; }

    @media (max-width: 980px){
      .hero-grid{ grid-template-columns: 1fr; }
      .menu{ display:none; }
      .mobile-toggle{ display:flex; }
      .mobile-panel{ display:block; }
      .hero h1{ font-size: 30px; }
      .grid-3{ grid-template-columns: 1fr; }
      .split{ grid-template-columns: 1fr; }
      .cards-2{ grid-template-columns: 1fr; }
      .review-grid{ grid-template-columns: 1fr; }
      .poster-grid{ grid-template-columns: 1fr; }
      .article-grid{ grid-template-columns: 1fr; }
      .footer-grid{ grid-template-columns: 1fr; }
      form{ grid-template-columns: 1fr; }
      .mobile-only{ display:block; }
      .desktop-only{ display:none; }
      .mobile-links{ grid-template-columns: 1fr; }
    }

    .anchor-gap{ scroll-margin-top: 90px; }
    .table-wrap{
      overflow:auto;
      -webkit-overflow-scrolling: touch;
    }

    .toast{
      position: fixed;
      left: 50%;
      bottom: 96px;
      transform: translateX(-50%);
      background: rgba(15,23,42,.92);
      color: rgba(255,255,255,.92);
      padding: 10px 12px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 22px 70px rgba(0,0,0,.25);
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
      z-index: 80;
      font-size: 13px;
      max-width: calc(100vw - 24px);
      text-align: center;
    }
    .toast.is-show{
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }