/* roulang page: index */
:root{
      --color-bg:#f7f5f0;
      --color-surface:#ffffff;
      --color-surface-2:#fbfaf7;
      --color-ink:#17140f;
      --color-muted:#6f675d;
      --color-soft:#938a80;
      --color-line:rgba(23,20,15,.12);
      --color-primary:#7c4a24;
      --color-primary-2:#b36b36;
      --color-accent:#1f6f63;
      --color-accent-2:#d7efe9;
      --color-danger:#9f3f36;
      --color-warn:#b58525;
      --shadow-sm:0 8px 24px rgba(35,27,16,.07);
      --shadow-md:0 18px 48px rgba(35,27,16,.12);
      --shadow-lg:0 28px 80px rgba(35,27,16,.18);
      --radius-sm:12px;
      --radius-md:20px;
      --radius-lg:30px;
      --radius-xl:42px;
      --container:1180px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 10% 2%, rgba(179,107,54,.13), transparent 28rem),
        radial-gradient(circle at 92% 8%, rgba(31,111,99,.12), transparent 24rem),
        linear-gradient(180deg,#fbfaf6 0%,var(--color-bg) 45%,#f3efe7 100%);
      line-height:1.75;
      letter-spacing:.01em;
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    a:hover{color:var(--color-primary)}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(124,74,36,.2);color:var(--color-ink)}
    :focus-visible{
      outline:3px solid rgba(31,111,99,.32);
      outline-offset:3px;
      border-radius:10px;
    }

    .site-shell{min-height:100vh;overflow:hidden}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin-inline:auto;
    }
    .section{
      padding:82px 0;
      position:relative;
    }
    .section.compact{padding:58px 0}
    .section-title-row{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:30px;
      padding:5px 12px;
      border:1px solid rgba(124,74,36,.18);
      border-radius:999px;
      background:rgba(255,255,255,.65);
      color:var(--color-primary);
      font-size:13px;
      font-weight:800;
      letter-spacing:.08em;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:99px;
      background:var(--color-accent);
      box-shadow:0 0 0 5px rgba(31,111,99,.12);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(38px,6vw,74px);
      line-height:1.03;
      letter-spacing:-.06em;
      margin-bottom:22px;
      font-weight:950;
    }
    h2{
      font-size:clamp(28px,3.4vw,46px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:920;
      margin-bottom:12px;
    }
    h3{
      font-size:22px;
      line-height:1.25;
      letter-spacing:-.02em;
      font-weight:880;
      margin-bottom:10px;
    }
    .lead{
      color:var(--color-muted);
      font-size:18px;
      max-width:760px;
      margin-bottom:0;
    }
    .muted{color:var(--color-muted)}
    .tiny{font-size:13px;color:var(--color-soft)}
    .divider{
      width:100%;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--color-line),transparent);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(251,250,246,.82);
      backdrop-filter:saturate(150%) blur(18px);
      border-bottom:1px solid rgba(23,20,15,.08);
    }
    .nav-main{
      min-height:70px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:950;
      letter-spacing:-.04em;
      font-size:20px;
      color:var(--color-ink);
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      color:#fff;
      background:
        linear-gradient(135deg,rgba(255,255,255,.24),transparent 45%),
        linear-gradient(135deg,var(--color-primary),var(--color-accent));
      box-shadow:0 12px 30px rgba(124,74,36,.25);
      font-size:18px;
      font-weight:950;
    }
    .nav-right{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      margin:0;
      list-style:none;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:40px;
      padding:0 16px;
      border-radius:999px;
      color:var(--color-muted);
      font-weight:800;
      font-size:14px;
    }
    .nav-link:hover{
      color:var(--color-ink);
      background:rgba(124,74,36,.08);
    }
    .nav-link.active{
      color:#fff;
      background:var(--color-ink);
      box-shadow:0 10px 26px rgba(23,20,15,.16);
    }
    .notice-chips{
      display:flex;
      align-items:center;
      gap:8px;
      padding-left:12px;
      border-left:1px solid var(--color-line);
    }
    .notice-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      height:34px;
      padding:0 11px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(23,20,15,.1);
      color:var(--color-muted);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .notice-chip strong{
      width:7px;height:7px;border-radius:999px;background:var(--color-accent);display:inline-block;
    }
    .notice-chip.warn strong{background:var(--color-warn)}
    .notice-chip.done strong{background:var(--color-primary)}
    .nav-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid var(--color-line);
      border-radius:14px;
      background:rgba(255,255,255,.82);
      color:var(--color-ink);
      align-items:center;
      justify-content:center;
      transition:background .22s var(--ease), transform .22s var(--ease);
    }
    .nav-toggle:hover{background:#fff;transform:translateY(-1px)}
    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after{
      content:"";
      display:block;
      width:18px;
      height:2px;
      border-radius:4px;
      background:currentColor;
      position:relative;
      transition:transform .22s var(--ease), top .22s var(--ease), opacity .22s var(--ease);
    }
    .nav-toggle span::before{position:absolute;top:-6px}
    .nav-toggle span::after{position:absolute;top:6px}
    .nav-toggle.is-open span{background:transparent}
    .nav-toggle.is-open span::before{top:0;transform:rotate(45deg);background:var(--color-ink)}
    .nav-toggle.is-open span::after{top:0;transform:rotate(-45deg);background:var(--color-ink)}

    .subbar{
      border-top:1px solid rgba(23,20,15,.06);
      background:rgba(255,255,255,.35);
    }
    .subbar-inner{
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      overflow:auto;
      scrollbar-width:none;
    }
    .subbar-inner::-webkit-scrollbar{display:none}
    .subbar-note{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--color-muted);
      font-size:13px;
      white-space:nowrap;
    }
    .subbar-note b{color:var(--color-ink)}
    .subbar-actions{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .subbar-pill{
      padding:6px 10px;
      border-radius:999px;
      color:var(--color-primary);
      background:rgba(124,74,36,.08);
      border:1px solid rgba(124,74,36,.12);
      font-weight:800;
      font-size:12px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      letter-spacing:-.01em;
      line-height:1;
      transition:transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
      user-select:none;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0) scale(.99)}
    .btn-primary{
      background:var(--color-ink);
      color:#fff;
      box-shadow:0 16px 34px rgba(23,20,15,.18);
    }
    .btn-primary:hover{color:#fff;background:#2a231b;box-shadow:0 20px 42px rgba(23,20,15,.24)}
    .btn-accent{
      background:var(--color-accent);
      color:#fff;
      box-shadow:0 16px 34px rgba(31,111,99,.18);
    }
    .btn-accent:hover{color:#fff;background:#185e54}
    .btn-ghost{
      background:rgba(255,255,255,.72);
      color:var(--color-ink);
      border-color:rgba(23,20,15,.12);
    }
    .btn-ghost:hover{background:#fff;color:var(--color-primary);border-color:rgba(124,74,36,.25)}
    .btn-block{width:100%}

    .hero{
      padding:34px 0 74px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(120deg,rgba(255,255,255,.82),rgba(255,255,255,.52)),
        radial-gradient(circle at 20% 30%,rgba(179,107,54,.18),transparent 24rem),
        radial-gradient(circle at 78% 36%,rgba(31,111,99,.18),transparent 26rem);
      border:1px solid rgba(23,20,15,.1);
      box-shadow:var(--shadow-lg);
      padding:34px;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(255,255,255,.72);
      border-radius:calc(var(--radius-xl) - 14px);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      padding:38px 24px 28px 12px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:22px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.75);
      border:1px solid rgba(23,20,15,.1);
      color:var(--color-muted);
      font-size:13px;
      font-weight:850;
      box-shadow:0 8px 20px rgba(35,27,16,.05);
    }
    .badge.strong{
      color:var(--color-primary);
      background:rgba(124,74,36,.1);
      border-color:rgba(124,74,36,.16);
    }
    .badge i{
      width:8px;height:8px;border-radius:999px;background:var(--color-accent);display:inline-block;
    }
    .hero-intro{
      font-size:19px;
      color:var(--color-muted);
      max-width:760px;
      margin-bottom:26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-bottom:26px;
    }
    .hero-kpis{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:760px;
    }
    .kpi{
      padding:16px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.7);
      border:1px solid rgba(23,20,15,.09);
    }
    .kpi b{
      display:block;
      font-size:26px;
      line-height:1;
      letter-spacing:-.04em;
      color:var(--color-ink);
      margin-bottom:6px;
    }
    .kpi span{
      color:var(--color-soft);
      font-size:13px;
      font-weight:750;
    }
    .hero-apply{
      display:flex;
      flex-direction:column;
      gap:16px;
      border-radius:30px;
      padding:22px;
      background:rgba(23,20,15,.9);
      color:#fff;
      box-shadow:0 24px 60px rgba(23,20,15,.26);
    }
    .apply-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .apply-top h2{
      color:#fff;
      font-size:26px;
      margin:0 0 8px;
      letter-spacing:-.04em;
    }
    .apply-top p{
      color:rgba(255,255,255,.68);
      margin:0;
      font-size:14px;
    }
    .apply-code{
      width:64px;
      height:64px;
      flex:0 0 auto;
      border-radius:20px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--color-primary-2),var(--color-accent));
      font-weight:950;
      font-size:20px;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.35);
    }
    .qualification{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .qualification li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.82);
      font-size:14px;
    }
    .qualification li::before{
      content:"✓";
      color:#b9f5e9;
      font-weight:950;
      line-height:1.5;
    }
    .mini-form{
      display:grid;
      gap:10px;
      margin-top:2px;
    }
    .field{
      position:relative;
    }
    .field label{
      display:block;
      color:rgba(255,255,255,.72);
      font-weight:800;
      font-size:12px;
      margin-bottom:6px;
    }
    .field input,.field textarea,.field select{
      width:100%;
      min-height:46px;
      border:1px solid rgba(255,255,255,.15);
      border-radius:16px;
      padding:0 14px;
      color:#fff;
      background:rgba(255,255,255,.08);
      box-shadow:none;
      margin:0;
      transition:border-color .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
    }
    .field textarea{min-height:96px;padding-top:12px;resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:rgba(255,255,255,.45)}
    .field input:focus,.field textarea:focus,.field select:focus{
      border-color:rgba(185,245,233,.7);
      background:rgba(255,255,255,.12);
      box-shadow:0 0 0 4px rgba(31,111,99,.18);
      outline:none;
    }
    .form-message{
      display:none;
      margin:8px 0 0;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(185,245,233,.12);
      color:#b9f5e9;
      font-size:13px;
    }
    .form-message.is-show{display:block}

    .card{
      border-radius:var(--radius-md);
      background:rgba(255,255,255,.76);
      border:1px solid rgba(23,20,15,.1);
      box-shadow:var(--shadow-sm);
      transition:transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(124,74,36,.2);
      background:#fff;
    }
    .card-pad{padding:24px}
    .icon{
      width:46px;
      height:46px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(124,74,36,.1);
      color:var(--color-primary);
      font-weight:950;
      margin-bottom:18px;
    }
    .feature-strip{
      display:grid;
      grid-template-columns:1fr 1.1fr 1fr;
      gap:18px;
      align-items:stretch;
      margin-top:30px;
    }
    .strip-card{
      padding:24px;
      border-radius:var(--radius-lg);
      border:1px solid rgba(23,20,15,.1);
      background:rgba(255,255,255,.68);
      min-height:196px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .strip-card.dark{
      background:var(--color-ink);
      color:#fff;
      box-shadow:var(--shadow-md);
    }
    .strip-card.dark p{color:rgba(255,255,255,.68)}
    .strip-card p{color:var(--color-muted);margin:0}
    .strip-stat{
      font-size:44px;
      line-height:1;
      letter-spacing:-.06em;
      font-weight:950;
    }

    .compare-wrap{
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(23,20,15,.1);
      box-shadow:var(--shadow-md);
    }
    .compare-table{
      width:100%;
      margin:0;
      border-collapse:separate;
      border-spacing:0;
      background:#fff;
    }
    .compare-table thead th{
      background:#211b15;
      color:#fff;
      font-size:14px;
      padding:18px 20px;
      border:0;
      font-weight:900;
      white-space:nowrap;
    }
    .compare-table tbody td{
      padding:18px 20px;
      border:0;
      border-top:1px solid rgba(23,20,15,.08);
      color:var(--color-muted);
      vertical-align:top;
    }
    .compare-table tbody td:first-child{
      color:var(--color-ink);
      font-weight:900;
      width:22%;
    }
    .compare-table tbody tr:hover td{background:rgba(124,74,36,.045)}
    .check{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-accent);
      font-weight:900;
    }
    .check::before{
      content:"";
      width:9px;height:9px;border-radius:99px;background:var(--color-accent);
      box-shadow:0 0 0 5px rgba(31,111,99,.1);
    }
    .minus{
      color:var(--color-soft);
      font-weight:800;
    }

    .plans{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      margin-top:30px;
    }
    .plan-card{
      position:relative;
      padding:26px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid rgba(23,20,15,.1);
      box-shadow:var(--shadow-sm);
      min-height:430px;
      display:flex;
      flex-direction:column;
    }
    .plan-card.recommended{
      background:
        linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.86)),
        radial-gradient(circle at 80% 0,rgba(31,111,99,.18),transparent 18rem);
      border-color:rgba(31,111,99,.28);
      box-shadow:var(--shadow-lg);
      transform:translateY(-8px);
    }
    .plan-label{
      position:absolute;
      top:18px;
      right:18px;
      padding:6px 10px;
      border-radius:999px;
      color:#fff;
      background:var(--color-accent);
      font-weight:900;
      font-size:12px;
    }
    .plan-price{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin:18px 0 18px;
    }
    .plan-price b{
      font-size:42px;
      line-height:1;
      letter-spacing:-.06em;
    }
    .plan-price span{color:var(--color-soft);font-weight:800}
    .clean-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:12px;
    }
    .clean-list li{
      display:flex;
      gap:10px;
      color:var(--color-muted);
      font-size:15px;
    }
    .clean-list li::before{
      content:"•";
      color:var(--color-primary);
      font-weight:950;
    }
    .plan-card .btn{margin-top:auto}

    .reward-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:18px;
      margin-top:30px;
      align-items:stretch;
    }
    .reward-box{
      position:relative;
      min-height:330px;
      border-radius:var(--radius-lg);
      padding:28px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(31,111,99,.92),rgba(23,20,15,.92)),
        radial-gradient(circle at 20% 20%,rgba(255,255,255,.3),transparent 12rem);
      color:#fff;
      box-shadow:var(--shadow-lg);
    }
    .reward-box::after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-90px;
      width:260px;
      height:260px;
      border-radius:80px;
      transform:rotate(24deg);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.16);
    }
    .reward-box h3{font-size:30px;color:#fff}
    .reward-box p{color:rgba(255,255,255,.7);max-width:420px}
    .reward-cards{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .reward-card{
      padding:20px;
      border-radius:22px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(23,20,15,.1);
    }
    .reward-card strong{
      display:block;
      margin-bottom:8px;
      font-size:18px;
      letter-spacing:-.02em;
    }
    .progress-line{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      overflow:hidden;
      margin:24px 0 12px;
    }
    .progress-line span{
      display:block;height:100%;width:72%;
      border-radius:999px;
      background:linear-gradient(90deg,#b9f5e9,#f5c77a);
    }

    .topic-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      margin-top:30px;
    }
    .topic-card{
      padding:20px;
      min-height:164px;
      border-radius:24px;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(23,20,15,.1);
      transition:transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
    }
    .topic-card:hover{
      transform:translateY(-4px);
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .topic-card .tag{
      display:inline-flex;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(31,111,99,.1);
      color:var(--color-accent);
      font-weight:900;
      font-size:12px;
      margin-bottom:16px;
    }
    .topic-card p{color:var(--color-muted);font-size:14px;margin:0}

    .news-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:18px;
      margin-top:30px;
      align-items:start;
    }
    .news-list{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid rgba(23,20,15,.1);
      overflow:hidden;
      box-shadow:var(--shadow-sm);
    }
    .news-item{
      display:grid;
      grid-template-columns:110px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:20px 22px;
      border-bottom:1px solid rgba(23,20,15,.08);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      display:flex;
      flex-direction:column;
      gap:2px;
      color:var(--color-soft);
      font-weight:800;
      font-size:13px;
    }
    .news-date b{
      font-size:24px;
      color:var(--color-primary);
      letter-spacing:-.04em;
      line-height:1;
    }
    .news-item h3{
      font-size:18px;
      margin-bottom:4px;
    }
    .news-item p{
      color:var(--color-muted);
      margin:0;
      font-size:14px;
    }
    .news-arrow{
      width:34px;
      height:34px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(124,74,36,.08);
      color:var(--color-primary);
      font-weight:950;
    }
    .news-item:hover{background:rgba(124,74,36,.045)}
    .news-item:hover .news-arrow{background:var(--color-primary);color:#fff;transform:translateX(3px)}
    .side-recommend{
      display:grid;
      gap:14px;
    }
    .rank-card{
      padding:22px;
      border-radius:var(--radius-lg);
      background:var(--color-ink);
      color:#fff;
      box-shadow:var(--shadow-md);
    }
    .rank-card h3{color:#fff}
    .rank-card p{color:rgba(255,255,255,.66);font-size:14px}
    .rank-list{
      display:grid;
      gap:10px;
      margin-top:16px;
    }
    .rank-row{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:11px 0;
      border-top:1px solid rgba(255,255,255,.1);
      color:rgba(255,255,255,.82);
      font-size:14px;
    }
    .rank-row b{color:#b9f5e9}

    .calendar{
      display:grid;
      grid-template-columns:320px minmax(0,1fr);
      gap:18px;
      margin-top:30px;
    }
    .calendar-intro{
      padding:26px;
      border-radius:var(--radius-lg);
      background:rgba(124,74,36,.1);
      border:1px solid rgba(124,74,36,.16);
    }
    .calendar-list{
      display:grid;
      gap:12px;
    }
    .calendar-item{
      display:grid;
      grid-template-columns:74px minmax(0,1fr) auto;
      gap:16px;
      align-items:center;
      padding:16px;
      border-radius:22px;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(23,20,15,.1);
    }
    .date-box{
      width:64px;height:64px;border-radius:18px;
      display:grid;place-items:center;
      background:#fff;
      border:1px solid rgba(23,20,15,.08);
      color:var(--color-primary);
      font-weight:950;
      text-align:center;
      line-height:1.1;
    }
    .date-box span{font-size:12px;color:var(--color-soft);display:block;font-weight:800}
    .calendar-item h3{font-size:17px;margin-bottom:4px}
    .calendar-item p{font-size:14px;color:var(--color-muted);margin:0}
    .state{
      padding:6px 10px;border-radius:999px;
      font-size:12px;font-weight:900;
      background:rgba(31,111,99,.1);color:var(--color-accent);
      white-space:nowrap;
    }
    .state.wait{background:rgba(181,133,37,.12);color:var(--color-warn)}

    .cta-section{padding:74px 0}
    .cta-panel{
      display:grid;
      grid-template-columns:minmax(0,1fr) 420px;
      gap:28px;
      align-items:center;
      padding:34px;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(135deg,rgba(23,20,15,.94),rgba(54,39,28,.92)),
        radial-gradient(circle at 82% 12%,rgba(179,107,54,.36),transparent 20rem);
      color:#fff;
      box-shadow:var(--shadow-lg);
      overflow:hidden;
      position:relative;
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      width:320px;height:320px;
      border-radius:100px;
      border:1px solid rgba(255,255,255,.12);
      right:-120px;top:-120px;
      transform:rotate(18deg);
    }
    .cta-panel h2{color:#fff}
    .cta-panel p{color:rgba(255,255,255,.68)}
    .cta-points{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:24px;
      position:relative;
      z-index:1;
    }
    .cta-point{
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.82);
      font-size:14px;
      font-weight:800;
    }
    .cta-form{
      position:relative;
      z-index:1;
      padding:22px;
      border-radius:28px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(12px);
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:360px minmax(0,1fr);
      gap:28px;
      align-items:start;
      margin-top:30px;
    }
    .faq-aside{
      position:sticky;
      top:116px;
      padding:26px;
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.72);
      border:1px solid rgba(23,20,15,.1);
      box-shadow:var(--shadow-sm);
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid rgba(23,20,15,.1);
      border-radius:22px;
      background:#fff;
      margin-bottom:12px;
      overflow:hidden;
      box-shadow:0 8px 24px rgba(35,27,16,.04);
    }
    .accordion-title{
      border:0!important;
      color:var(--color-ink)!important;
      font-weight:900;
      font-size:17px;
      padding:20px 56px 20px 20px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(124,74,36,.045);
      color:var(--color-primary)!important;
    }
    .accordion-title::before{
      right:22px;
      font-size:22px;
      margin-top:-14px;
      color:var(--color-primary);
    }
    .accordion-content{
      border:0!important;
      padding:0 20px 20px;
      color:var(--color-muted);
      background:#fff;
      font-size:15px;
    }

    .site-footer{
      padding:54px 0 28px;
      background:#17140f;
      color:rgba(255,255,255,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:28px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:#fff;
      font-weight:950;
      font-size:20px;
      letter-spacing:-.04em;
      margin-bottom:14px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .footer-text{
      max-width:520px;
      color:rgba(255,255,255,.62);
      margin:0;
    }
    .footer-col h3{
      color:#fff;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .footer-links a{
      color:rgba(255,255,255,.62);
      font-weight:750;
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      padding-top:22px;
      color:rgba(255,255,255,.48);
      font-size:13px;
    }
    .footer-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .footer-badge{
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      color:rgba(255,255,255,.6);
      background:rgba(255,255,255,.04);
    }

    @media (max-width:1024px){
      .section{padding:66px 0}
      .hero-grid,.cta-panel,.calendar,.faq-wrap,.news-layout,.reward-grid{
        grid-template-columns:1fr;
      }
      .hero-copy{padding:22px 4px 8px}
      .hero-apply{max-width:none}
      .feature-strip{grid-template-columns:1fr}
      .plans{grid-template-columns:1fr}
      .plan-card.recommended{transform:none}
      .topic-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .faq-aside{position:relative;top:auto}
      .footer-grid{grid-template-columns:1fr 1fr}
    }

    @media (max-width:768px){
      .container{width:min(calc(100% - 28px),var(--container))}
      .nav-main{min-height:64px}
      .brand{font-size:17px;max-width:calc(100vw - 94px);overflow:hidden;text-overflow:ellipsis}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .nav-toggle{display:flex}
      .nav-right{
        position:absolute;
        top:64px;
        left:14px;
        right:14px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        background:rgba(255,255,255,.96);
        border:1px solid rgba(23,20,15,.1);
        border-radius:22px;
        box-shadow:var(--shadow-md);
      }
      .nav-right.is-open{display:flex}
      .nav-links{flex-direction:column;align-items:stretch;width:100%}
      .nav-link{justify-content:flex-start;width:100%;height:44px}
      .notice-chips{
        border-left:0;
        padding-left:0;
        border-top:1px solid var(--color-line);
        padding-top:12px;
        overflow:auto;
      }
      .subbar-inner{padding:8px 0;align-items:flex-start;flex-direction:column;gap:8px}
      .hero{padding-top:22px}
      .hero-panel{padding:20px;border-radius:28px}
      .hero-panel::before{display:none}
      .hero-kpis{grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .section-title-row{display:block}
      .lead{font-size:16px}
      h1{font-size:42px}
      h2{font-size:31px}
      .reward-cards,.topic-grid,.cta-points{grid-template-columns:1fr}
      .news-item{
        grid-template-columns:1fr;
        gap:8px;
        align-items:start;
      }
      .news-arrow{display:none}
      .calendar-item{
        grid-template-columns:64px minmax(0,1fr);
      }
      .calendar-item .state{grid-column:2}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;align-items:flex-start}
    }

    @media (max-width:520px){
      body{line-height:1.68}
      .section{padding:54px 0}
      .hero-panel{padding:16px}
      .hero-copy{padding:18px 2px 4px}
      .hero-intro{font-size:16px}
      .apply-top{flex-direction:column}
      .apply-code{width:54px;height:54px;border-radius:17px}
      .compare-wrap{overflow-x:auto}
      .compare-table{min-width:720px}
      .plan-card,.card-pad,.reward-box,.cta-panel,.faq-aside{padding:20px}
      .cta-panel{border-radius:28px}
      .btn{min-height:46px;padding:0 16px}
    }
