/* roulang page: index */
:root{
      --bg:#fff8f1;
      --bg-soft:#fffdf9;
      --surface:#ffffff;
      --surface-warm:#fff3e5;
      --primary:#ff7a45;
      --primary-dark:#e65f2c;
      --secondary:#7c5cff;
      --accent:#ffd166;
      --text:#241b16;
      --muted:#6f625b;
      --light:#9b8d84;
      --border:#f1ded0;
      --border-strong:#e9c7b4;
      --shadow:0 18px 48px rgba(119,68,34,.12);
      --shadow-soft:0 10px 30px rgba(60,38,24,.08);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --container:1180px;
      --nav-h:74px;
      --transition:.24s ease;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255,209,102,.28), transparent 28%),
        radial-gradient(circle at 88% 2%, rgba(124,92,255,.12), transparent 30%),
        linear-gradient(180deg,#fffaf4 0%,#fffdf9 42%,#fff7ef 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{border:0;cursor:pointer}
    ::selection{background:rgba(255,122,69,.22)}

    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      height:var(--nav-h);
      background:rgba(255,255,255,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(233,199,180,.74);
      box-shadow:0 8px 28px rgba(93,54,28,.05);
    }
    .nav-wrap{
      height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ffb067 52%,var(--secondary));
      box-shadow:0 12px 24px rgba(255,122,69,.24);
      font-size:20px;
    }
    .brand span{font-size:17px}
    .nav-menu{
      display:flex;
      align-items:center;
      gap:8px;
      padding:6px;
      background:#fff8f1;
      border:1px solid var(--border);
      border-radius:999px;
    }
    .nav-menu a{
      padding:9px 15px;
      border-radius:999px;
      color:#6d5e55;
      font-size:14px;
      font-weight:700;
      transition:var(--transition);
      white-space:nowrap;
    }
    .nav-menu a:hover{color:var(--primary-dark);background:#fff}
    .nav-menu a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ff9b60);
      box-shadow:0 8px 18px rgba(255,122,69,.22);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:320px;
      justify-content:flex-end;
    }
    .search{
      height:42px;
      width:190px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid var(--border);
      border-radius:999px;
      background:#fff;
      color:var(--light);
      transition:var(--transition);
    }
    .search:focus-within{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(255,122,69,.12);
    }
    .search input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:14px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:999px;
      font-weight:800;
      transition:var(--transition);
      border:1px solid transparent;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#ff9b5f);
      box-shadow:0 14px 26px rgba(255,122,69,.24);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 34px rgba(255,122,69,.32)}
    .btn-secondary{
      color:var(--primary-dark);
      background:#fff;
      border-color:var(--border-strong);
      box-shadow:var(--shadow-soft);
    }
    .btn-secondary:hover{border-color:var(--primary);transform:translateY(-2px)}
    .btn-dark{
      color:#fff;
      background:#241b16;
      box-shadow:0 16px 30px rgba(36,27,22,.18);
    }
    .btn-dark:hover{transform:translateY(-2px);background:#3b2b22}
    .btn:focus-visible,.nav-menu a:focus-visible,.brand:focus-visible{
      outline:3px solid rgba(255,122,69,.28);
      outline-offset:3px;
    }

    main{position:relative}
    section{padding:76px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff3e5;
      border:1px solid var(--border);
      color:var(--primary-dark);
      font-size:13px;
      font-weight:900;
      margin-bottom:14px;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:26px;
      margin-bottom:28px;
    }
    .section-title{font-size:34px;line-height:1.22;letter-spacing:-.04em}
    .section-desc{max-width:620px;color:var(--muted);font-size:16px}
    .card{
      background:rgba(255,255,255,.9);
      border:1px solid var(--border);
      border-radius:var(--radius-md);
      box-shadow:var(--shadow-soft);
      transition:var(--transition);
    }
    .card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--border-strong)}
    .badge{
      display:inline-flex;
      align-items:center;
      padding:5px 10px;
      border-radius:999px;
      background:#fff1df;
      color:#b44f25;
      font-size:12px;
      font-weight:900;
    }

    .hero{
      min-height:610px;
      padding:44px 0 58px;
      display:flex;
      align-items:center;
      background:
        linear-gradient(135deg,rgba(36,27,22,.74),rgba(84,47,34,.45)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='760' viewBox='0 0 1600 760'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23ffb36d'/%3E%3Cstop offset='.45' stop-color='%23ffe4c7'/%3E%3Cstop offset='1' stop-color='%237c5cff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='760' fill='url(/%23g)'/%3E%3Ccircle cx='250' cy='160' r='160' fill='%23fff' opacity='.22'/%3E%3Ccircle cx='1330' cy='180' r='210' fill='%23fff' opacity='.16'/%3E%3Cpath d='M0 558 C240 500 330 650 560 590 C780 532 850 430 1090 494 C1280 545 1390 640 1600 560 L1600 760 L0 760 Z' fill='%23fff7ef' opacity='.78'/%3E%3Cg opacity='.36'%3E%3Crect x='770' y='120' width='260' height='150' rx='30' fill='%23fff'/%3E%3Crect x='1060' y='270' width='230' height='128' rx='28' fill='%23fff'/%3E%3Crect x='910' y='430' width='310' height='150' rx='34' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 70% 18%,rgba(255,255,255,.26),transparent 26%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      align-items:center;
      gap:34px;
    }
    .hero-panel{
      max-width:720px;
      padding:42px;
      border:1px solid rgba(255,255,255,.28);
      border-radius:34px;
      background:rgba(255,255,255,.15);
      box-shadow:0 28px 80px rgba(34,20,10,.24);
      backdrop-filter:blur(16px);
    }
    .hero h1{
      font-size:clamp(38px,6vw,68px);
      line-height:1.05;
      letter-spacing:-.06em;
      margin:12px 0 18px;
    }
    .hero p{
      max-width:650px;
      color:rgba(255,255,255,.9);
      font-size:18px;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .countdown{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin-top:28px;
      padding:12px;
      border-radius:22px;
      background:rgba(36,27,22,.35);
      border:1px solid rgba(255,255,255,.22);
    }
    .time-box{
      text-align:center;
      padding:12px 8px;
      border-radius:16px;
      background:rgba(255,255,255,.16);
    }
    .time-box strong{display:block;font-size:26px;line-height:1;font-weight:900}
    .time-box span{font-size:12px;color:rgba(255,255,255,.78)}
    .hero-side{
      display:grid;
      gap:16px;
    }
    .kv-card{
      padding:22px;
      border-radius:28px;
      background:rgba(255,255,255,.86);
      color:var(--text);
      box-shadow:0 24px 60px rgba(45,24,12,.2);
      border:1px solid rgba(255,255,255,.72);
    }
    .kv-card.large{min-height:220px}
    .avatar-wall{display:flex;align-items:center;margin:16px 0}
    .avatar{
      width:42px;height:42px;border-radius:50%;
      display:grid;place-items:center;
      color:#fff;font-weight:900;
      border:3px solid #fff;
      margin-left:-10px;
      background:linear-gradient(135deg,var(--primary),var(--secondary));
      box-shadow:0 6px 18px rgba(0,0,0,.16);
    }
    .avatar:first-child{margin-left:0}
    .quote-bubble{
      position:relative;
      margin-top:12px;
      padding:14px 16px;
      border-radius:18px 18px 18px 6px;
      background:#fff7ef;
      color:#5d4f46;
      font-size:14px;
    }
    .mini-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .metric strong{font-size:32px;line-height:1;color:var(--primary-dark)}
    .metric span{display:block;color:var(--muted);font-size:13px}

    .category-section{background:var(--bg-soft)}
    .category-layout{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:22px;
      align-items:stretch;
    }
    .category-main{
      padding:30px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff,#fff1df);
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .category-entry{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .entry-card{
      padding:22px;
      border-radius:24px;
      border:1px solid var(--border);
      background:#fff;
      min-height:150px;
    }
    .entry-card .icon{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:#fff0df;
      color:var(--primary-dark);
      font-size:22px;
      margin-bottom:16px;
    }
    .entry-card h3{font-size:18px;margin-bottom:8px}
    .entry-card p{color:var(--muted);font-size:14px}

    .resource-band{
      background:
        linear-gradient(180deg,#fffdf9,#fff8f1);
    }
    .resource-wrap{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .resource-list{
      display:grid;
      gap:14px;
    }
    .resource-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .rank{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,#ffefe1,#fff8f1);
      color:var(--primary-dark);
      font-weight:900;
    }
    .resource-item h3{font-size:17px;margin-bottom:4px}
    .resource-item p{font-size:14px;color:var(--muted)}
    .resource-side{
      padding:26px;
      border-radius:var(--radius-lg);
      background:#241b16;
      color:#fff;
      box-shadow:0 22px 60px rgba(36,27,22,.22);
    }
    .progress{
      height:12px;
      background:rgba(255,255,255,.16);
      border-radius:999px;
      overflow:hidden;
      margin:20px 0 14px;
    }
    .progress span{
      display:block;height:100%;width:72%;
      background:linear-gradient(90deg,var(--accent),var(--primary));
      border-radius:inherit;
    }
    .tier-list{display:grid;gap:12px;margin-top:20px}
    .tier{
      padding:14px;
      border-radius:16px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.15);
    }
    .tier strong{display:block;color:#fff}
    .tier span{font-size:13px;color:rgba(255,255,255,.76)}

    .news-section{background:#fff}
    .news-layout{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:24px;
    }
    .news-list{
      display:grid;
      gap:12px;
    }
    .news-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px 20px;
      border-radius:18px;
      border:1px solid var(--border);
      background:#fffdf9;
      transition:var(--transition);
    }
    .news-link:hover{background:#fff4e7;border-color:var(--border-strong);transform:translateX(3px)}
    .news-date{
      color:var(--primary-dark);
      font-size:13px;
      font-weight:900;
      min-width:70px;
    }
    .news-link h3{font-size:16px}
    .news-link p{color:var(--muted);font-size:14px;margin-top:2px}
    .arrow{color:var(--light);font-weight:900}
    .recommend{
      padding:24px;
      border-radius:var(--radius-lg);
      background:linear-gradient(135deg,#fff0df,#fff);
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .point-card{
      margin-top:14px;
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--border);
    }
    .point-card blockquote{
      color:#5d4f46;
      font-weight:700;
      line-height:1.8;
    }

    .download-section{
      background:
        radial-gradient(circle at 18% 20%,rgba(255,209,102,.22),transparent 24%),
        linear-gradient(135deg,#fff8f1,#fff);
    }
    .download-card{
      display:grid;
      grid-template-columns:1fr .9fr;
      gap:34px;
      align-items:center;
      padding:36px;
      border-radius:34px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .device-panel{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .device{
      padding:20px;
      border-radius:22px;
      background:#fff8f1;
      border:1px solid var(--border);
    }
    .device strong{display:block;font-size:18px;margin-bottom:6px}
    .device span{color:var(--muted);font-size:14px}
    .store-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}

    .timeline-section{background:#fffdf9}
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
      max-width:900px;
      margin:0 auto;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:22px;top:8px;bottom:8px;
      width:2px;background:var(--border-strong);
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:70px 1fr;
      gap:18px;
      align-items:start;
    }
    .timeline-time{
      position:relative;
      z-index:1;
      width:46px;height:46px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--primary);
      color:#fff;
      font-size:13px;
      font-weight:900;
      box-shadow:0 8px 20px rgba(255,122,69,.28);
    }
    .timeline-content{
      padding:18px 20px;
      border-radius:20px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .timeline-content h3{font-size:18px;margin-bottom:4px}
    .timeline-content p{color:var(--muted);font-size:14px}

    .update-section{background:#fff}
    .changelog{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .change-card{
      padding:24px;
      border-radius:24px;
      background:#fffdf9;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .change-card h3{font-size:19px;margin:12px 0 8px}
    .change-card p{color:var(--muted);font-size:14px}
    .change-card .dot{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--primary),#ffb36d);
      color:#fff;
      font-weight:900;
    }

    .voice-section{
      background:linear-gradient(180deg,#fffdf9,#fff7ef);
    }
    .voice-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .voice{
      padding:24px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow-soft);
    }
    .voice-top{display:flex;align-items:center;gap:12px;margin-bottom:14px}
    .voice-avatar{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      color:#fff;font-weight:900;
      background:linear-gradient(135deg,var(--secondary),var(--primary));
    }
    .voice p{color:#5f5148;font-size:14px}
    .stars{color:#ffb020;letter-spacing:2px;margin-top:14px}

    .faq-section{background:#fff}
    .faq-wrap{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:26px;
      align-items:start;
    }
    .faq-list{display:grid;gap:14px}
    details{
      border:1px solid var(--border);
      border-radius:20px;
      background:#fffdf9;
      padding:18px 20px;
      box-shadow:var(--shadow-soft);
    }
    summary{
      cursor:pointer;
      font-weight:900;
      list-style:none;
      display:flex;
      justify-content:space-between;
      gap:18px;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{content:"+";color:var(--primary);font-size:22px;line-height:1}
    details[open] summary:after{content:"−"}
    details p{margin-top:12px;color:var(--muted);font-size:15px}

    .final-cta{
      padding:68px 0 82px;
      background:#241b16;
      color:#fff;
    }
    .cta-box{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:26px;
      padding:34px;
      border-radius:32px;
      background:
        radial-gradient(circle at 90% 20%,rgba(255,122,69,.34),transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.15);
    }
    .cta-box h2{font-size:34px;line-height:1.22}
    .cta-box p{color:rgba(255,255,255,.74);max-width:670px;margin-top:10px}

    .site-footer{
      background:#1c1511;
      color:rgba(255,255,255,.72);
      padding:42px 0 26px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-brand .brand-mark{box-shadow:none}
    .footer-links{
      display:flex;
      justify-content:flex-end;
      gap:14px;
      flex-wrap:wrap;
    }
    .footer-links a{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      transition:var(--transition);
    }
    .footer-links a:hover{background:rgba(255,122,69,.2);color:#fff}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      padding-top:22px;
      font-size:13px;
      color:rgba(255,255,255,.52);
    }

    @media (max-width:1024px){
      .nav-actions{min-width:auto}
      .search{display:none}
      .hero-inner,.category-layout,.resource-wrap,.download-card,.news-layout,.faq-wrap{
        grid-template-columns:1fr;
      }
      .hero{min-height:auto}
      .hero-side{grid-template-columns:1fr 1fr}
      .section-title{font-size:30px}
      .changelog,.voice-grid{grid-template-columns:1fr 1fr}
      .news-layout{gap:18px}
    }
    @media (max-width:768px){
      :root{--nav-h:auto}
      .site-header{position:relative}
      .nav-wrap{
        height:auto;
        padding:12px 0;
        flex-wrap:wrap;
      }
      .brand{width:100%;justify-content:space-between}
      .brand span{font-size:15px}
      .nav-menu{
        order:3;
        width:100%;
        overflow-x:auto;
        justify-content:flex-start;
        border-radius:18px;
      }
      .nav-actions{margin-left:auto}
      .nav-actions .btn{min-height:40px;padding:0 14px;font-size:13px}
      .hero{padding:28px 0 42px}
      .hero-panel{padding:26px;border-radius:26px}
      .hero p{font-size:16px}
      .hero-side,.category-entry,.mini-grid,.device-panel,.changelog,.voice-grid{
        grid-template-columns:1fr;
      }
      .section-head{display:block}
      .section-desc{margin-top:10px}
      section{padding:54px 0}
      .countdown{grid-template-columns:repeat(2,1fr)}
      .resource-item,.news-link{grid-template-columns:1fr;gap:8px}
      .download-card,.cta-box{padding:24px}
      .cta-box{display:block}
      .cta-box .hero-actions{margin-top:20px}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px,var(--container))}
      .hero h1{font-size:34px}
      .section-title,.cta-box h2{font-size:26px}
      .hero-actions,.store-row{flex-direction:column;align-items:stretch}
      .btn{width:100%}
      .category-main{padding:22px}
      .timeline-item{grid-template-columns:54px 1fr}
      .timeline:before{left:22px}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }

/* roulang page: category1 */
:root {
      --bg: #fffaf5;
      --bg-soft: #fff3e7;
      --surface: #ffffff;
      --surface-2: #fff8f1;
      --text: #241b18;
      --muted: #73645e;
      --weak: #9b8b83;
      --primary: #ff7a59;
      --primary-dark: #e95d3b;
      --primary-soft: #ffe0d5;
      --secondary: #7c5cff;
      --secondary-soft: #eee9ff;
      --accent: #ffbf4c;
      --green: #43b581;
      --border: rgba(71, 43, 32, .12);
      --shadow: 0 18px 50px rgba(121, 70, 40, .12);
      --shadow-hover: 0 24px 70px rgba(121, 70, 40, .18);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --container: 1180px;
      --header-h: 76px;
      --ease: all .25s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
      line-height: 1.65;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(255, 191, 76, .20), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(124, 92, 255, .13), transparent 24%),
        linear-gradient(180deg, #fffaf5 0%, #fff 44%, #fff8f1 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input {
      border: 0;
      outline: none;
      background: transparent;
      min-width: 0;
    }

    ::selection {
      color: #fff;
      background: var(--primary);
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(77, 47, 34, .06);
    }

    .nav-wrap {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: -.03em;
      color: var(--text);
      white-space: nowrap;
    }

    .brand {
      font-size: 18px;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background:
        linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 10px 22px rgba(255, 122, 89, .28);
      flex: 0 0 auto;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 6px;
      background: rgba(255, 246, 239, .85);
      border: 1px solid rgba(71, 43, 32, .08);
      border-radius: 999px;
    }

    .nav-menu a {
      padding: 9px 15px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      color: var(--muted);
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
      color: var(--primary-dark);
      background: #fff;
      outline: none;
    }

    .nav-menu a.active {
      color: #fff;
      background: var(--text);
      box-shadow: 0 10px 22px rgba(36, 27, 24, .16);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .search {
      width: 210px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 14px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      color: var(--weak);
      transition: var(--ease);
    }

    .search:focus-within {
      border-color: rgba(255, 122, 89, .55);
      box-shadow: 0 0 0 4px rgba(255, 122, 89, .13);
    }

    .search input {
      width: 100%;
      color: var(--text);
      font-size: 14px;
    }

    .search input::placeholder {
      color: var(--weak);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: var(--ease);
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #ff9f43);
      box-shadow: 0 14px 28px rgba(255, 122, 89, .27);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(255, 122, 89, .35);
    }

    .btn-secondary {
      color: var(--text);
      background: #fff;
      border-color: var(--border);
      box-shadow: 0 10px 25px rgba(90, 55, 40, .08);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 122, 89, .35);
      color: var(--primary-dark);
    }

    .btn:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(255, 122, 89, .35);
      outline-offset: 3px;
    }

    main {
      display: block;
    }

    .section {
      padding: 78px 0;
    }

    .section.compact {
      padding: 54px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 7px 12px;
      background: rgba(255, 122, 89, .10);
      border: 1px solid rgba(255, 122, 89, .16);
      border-radius: 999px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.14;
      letter-spacing: -.05em;
      margin-bottom: 16px;
    }

    .section-desc {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .hero {
      padding: 34px 0 74px;
    }

    .flagship {
      position: relative;
      min-height: 560px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: stretch;
      padding: 34px;
      border-radius: 38px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(36, 27, 24, .92), rgba(105, 60, 47, .76)),
        radial-gradient(circle at 65% 22%, rgba(255, 191, 76, .42), transparent 34%),
        linear-gradient(135deg, #6d4638, #2a1f1d);
      box-shadow: var(--shadow);
      color: #fff;
    }

    .flagship::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(135deg, rgba(0,0,0,.4), transparent 62%);
      pointer-events: none;
    }

    .series-tabs {
      position: absolute;
      left: 34px;
      right: 34px;
      top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      z-index: 2;
    }

    .series-tabs a,
    .series-tabs span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 13px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      color: rgba(255, 255, 255, .88);
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(12px);
    }

    .series-tabs a:hover {
      background: rgba(255, 255, 255, .22);
      transform: translateY(-1px);
    }

    .hero-copy {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-top: 78px;
    }

    .hero-badge {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      margin-bottom: 18px;
      border-radius: 999px;
      color: #fff6d7;
      background: rgba(255, 191, 76, .14);
      border: 1px solid rgba(255, 191, 76, .28);
      font-weight: 900;
      font-size: 13px;
    }

    h1 {
      max-width: 720px;
      font-size: clamp(38px, 6.2vw, 70px);
      line-height: .98;
      letter-spacing: -.07em;
      margin-bottom: 22px;
    }

    .hero-copy p {
      max-width: 650px;
      color: rgba(255, 255, 255, .78);
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .hero-actions .btn-secondary {
      background: rgba(255, 255, 255, .10);
      color: #fff;
      border-color: rgba(255, 255, 255, .18);
      box-shadow: none;
    }

    .hero-panel {
      position: relative;
      z-index: 1;
      align-self: end;
      padding: 24px;
      border-radius: 30px;
      background: rgba(255, 255, 255, .92);
      color: var(--text);
      box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
      border: 1px solid rgba(255, 255, 255, .5);
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 18px;
    }

    .panel-title {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .level-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #8a5200;
      background: #fff1c8;
      font-size: 12px;
      font-weight: 900;
    }

    .guide-card {
      padding: 16px;
      border-radius: 22px;
      background: var(--surface-2);
      border: 1px solid var(--border);
      margin-bottom: 14px;
      transition: var(--ease);
    }

    .guide-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(90, 55, 40, .09);
    }

    .guide-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .guide-card p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .mini-stat {
      padding: 14px 10px;
      border-radius: 18px;
      text-align: center;
      background: #fff;
      border: 1px solid var(--border);
    }

    .mini-stat b {
      display: block;
      font-size: 20px;
      line-height: 1.1;
      color: var(--primary-dark);
    }

    .mini-stat span {
      color: var(--weak);
      font-size: 12px;
      font-weight: 700;
    }

    .intro-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 34px;
      align-items: start;
    }

    .summary-card {
      position: sticky;
      top: 100px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .summary-card p {
      color: var(--muted);
      margin-top: 12px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--bg-soft);
      color: var(--muted);
      border: 1px solid var(--border);
      font-size: 13px;
      font-weight: 800;
    }

    .value-stack {
      display: grid;
      gap: 16px;
    }

    .value-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 18px;
      padding: 22px;
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, .78);
      border: 1px solid var(--border);
      box-shadow: 0 12px 34px rgba(90, 55, 40, .06);
    }

    .icon-box {
      width: 56px;
      height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      color: #fff;
      font-size: 24px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      box-shadow: 0 12px 24px rgba(255, 122, 89, .20);
    }

    .value-item h3 {
      font-size: 20px;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .value-item p {
      color: var(--muted);
    }

    .feature-board {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 22px;
      align-items: stretch;
      margin-top: 34px;
    }

    .feature-main,
    .feature-side {
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .feature-main {
      padding: 30px;
      background:
        radial-gradient(circle at 80% 18%, rgba(255, 191, 76, .22), transparent 34%),
        #fff;
    }

    .feature-main h3 {
      font-size: 30px;
      line-height: 1.2;
      letter-spacing: -.05em;
      margin-bottom: 14px;
    }

    .feature-main p {
      color: var(--muted);
      margin-bottom: 24px;
    }

    .check-list {
      display: grid;
      gap: 12px;
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255, 248, 241, .86);
      border: 1px solid rgba(71, 43, 32, .08);
      color: var(--muted);
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: var(--green);
      font-size: 13px;
      font-weight: 900;
      margin-top: 1px;
    }

    .feature-side {
      display: grid;
      gap: 0;
    }

    .side-row {
      padding: 24px;
      border-bottom: 1px solid var(--border);
    }

    .side-row:last-child {
      border-bottom: 0;
    }

    .side-row b {
      display: block;
      margin-bottom: 5px;
      font-size: 18px;
    }

    .side-row span {
      color: var(--muted);
      font-size: 14px;
    }

    .scenario-strip {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: center;
      padding: 30px;
      border-radius: 34px;
      background: linear-gradient(135deg, #fff, #fff2e5);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      margin-top: 34px;
    }

    .avatar-wall {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    .avatar {
      aspect-ratio: 1;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      font-size: 18px;
      background: linear-gradient(135deg, var(--secondary), #ff8fc7);
      box-shadow: 0 12px 24px rgba(124, 92, 255, .18);
      border: 3px solid rgba(255,255,255,.85);
      transition: var(--ease);
    }

    .avatar:nth-child(2n) {
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .avatar:nth-child(3n) {
      background: linear-gradient(135deg, #43b581, #7ee0aa);
    }

    .avatar:hover {
      transform: translateY(-4px) rotate(-2deg);
    }

    .bubble-list {
      display: grid;
      gap: 14px;
    }

    .bubble {
      position: relative;
      padding: 17px 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 12px 30px rgba(90, 55, 40, .08);
      color: var(--muted);
    }

    .bubble::before {
      content: "";
      position: absolute;
      left: -7px;
      top: 22px;
      width: 14px;
      height: 14px;
      background: #fff;
      border-left: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transform: rotate(45deg);
    }

    .bubble strong {
      color: var(--text);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 34px;
    }

    .step {
      position: relative;
      padding: 24px;
      min-height: 210px;
      border-radius: var(--radius-md);
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 12px 34px rgba(90, 55, 40, .06);
      overflow: hidden;
      transition: var(--ease);
    }

    .step:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .step-num {
      position: absolute;
      right: 16px;
      top: 8px;
      font-size: 60px;
      line-height: 1;
      color: rgba(255, 122, 89, .13);
      font-weight: 900;
      letter-spacing: -.08em;
    }

    .step h3 {
      position: relative;
      font-size: 20px;
      margin: 46px 0 10px;
      letter-spacing: -.03em;
    }

    .step p {
      position: relative;
      color: var(--muted);
      font-size: 15px;
    }

    .proof-zone {
      padding: 34px;
      border-radius: 34px;
      color: #fff;
      background:
        radial-gradient(circle at 82% 10%, rgba(255, 191, 76, .26), transparent 30%),
        linear-gradient(135deg, #241b18, #55352d);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 26px;
      align-items: center;
    }

    .proof-zone .section-desc {
      color: rgba(255,255,255,.72);
    }

    .proof-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .metric {
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(12px);
    }

    .metric b {
      display: block;
      font-size: 34px;
      line-height: 1;
      margin-bottom: 8px;
      color: #ffd78a;
      letter-spacing: -.05em;
    }

    .metric span {
      color: rgba(255,255,255,.72);
      font-size: 14px;
      font-weight: 700;
    }

    .pricing-layout {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 24px;
      align-items: stretch;
      margin-top: 34px;
    }

    .price-note {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--secondary-soft);
      border: 1px solid rgba(124, 92, 255, .16);
    }

    .price-note h3 {
      font-size: 26px;
      letter-spacing: -.04em;
      margin-bottom: 12px;
    }

    .price-note p {
      color: #665c82;
      margin-bottom: 18px;
    }

    .price-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .price-card {
      position: relative;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: var(--ease);
    }

    .price-card.featured {
      border-color: rgba(255, 122, 89, .38);
      box-shadow: 0 24px 70px rgba(255, 122, 89, .17);
    }

    .price-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .price-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
      letter-spacing: -.03em;
    }

    .price-card .price {
      display: flex;
      align-items: end;
      gap: 6px;
      margin: 14px 0 18px;
      color: var(--primary-dark);
    }

    .price b {
      font-size: 42px;
      line-height: 1;
      letter-spacing: -.06em;
    }

    .price span {
      color: var(--muted);
      font-weight: 800;
      margin-bottom: 5px;
    }

    .price-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .76fr 1.24fr;
      gap: 30px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      padding: 22px;
      border-radius: var(--radius-md);
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 10px 26px rgba(90, 55, 40, .06);
      transition: var(--ease);
    }

    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .faq-item h3 {
      font-size: 18px;
      margin-bottom: 8px;
      letter-spacing: -.02em;
    }

    .faq-item p {
      color: var(--muted);
    }

    .cta-card {
      position: relative;
      padding: 42px;
      border-radius: 36px;
      overflow: hidden;
      background:
        radial-gradient(circle at 88% 16%, rgba(255,255,255,.30), transparent 30%),
        linear-gradient(135deg, var(--primary), #ffb44d);
      color: #fff;
      box-shadow: 0 26px 80px rgba(255, 122, 89, .28);
    }

    .cta-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -90px;
      bottom: -110px;
      border-radius: 50%;
      background: rgba(255,255,255,.18);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .cta-card h2 {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      letter-spacing: -.06em;
      margin-bottom: 12px;
    }

    .cta-card p {
      color: rgba(255,255,255,.84);
      max-width: 720px;
      font-size: 17px;
    }

    .cta-card .btn-secondary {
      background: #fff;
      color: var(--primary-dark);
      border-color: rgba(255,255,255,.4);
    }

    .site-footer {
      padding: 54px 0 26px;
      background: #241b18;
      color: rgba(255,255,255,.76);
      margin-top: 56px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: start;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .footer-brand {
      color: #fff;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .site-footer p {
      max-width: 560px;
      color: rgba(255,255,255,.62);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 12px;
    }

    .footer-links a {
      padding: 9px 12px;
      border-radius: 999px;
      color: rgba(255,255,255,.70);
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      font-size: 14px;
      font-weight: 700;
    }

    .footer-links a:hover {
      color: #fff;
      background: rgba(255,122,89,.22);
      border-color: rgba(255,122,89,.28);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      color: rgba(255,255,255,.48);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-wrap {
        flex-wrap: wrap;
        padding: 14px 0;
      }

      .nav-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
      }

      .flagship,
      .intro-layout,
      .feature-board,
      .scenario-strip,
      .proof-grid,
      .pricing-layout,
      .faq-layout {
        grid-template-columns: 1fr;
      }

      .summary-card {
        position: static;
      }

      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .proof-metrics {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      :root {
        --header-h: auto;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        position: sticky;
      }

      .nav-wrap {
        gap: 12px;
      }

      .brand {
        width: 100%;
        justify-content: flex-start;
      }

      .nav-actions {
        width: 100%;
      }

      .search {
        flex: 1;
        width: auto;
      }

      .nav-actions .btn {
        padding: 0 14px;
      }

      .section {
        padding: 58px 0;
      }

      .hero {
        padding-top: 20px;
      }

      .flagship {
        min-height: auto;
        padding: 22px;
        border-radius: 28px;
      }

      .series-tabs {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-bottom: 26px;
      }

      .hero-copy {
        padding-top: 0;
      }

      .hero-panel {
        padding: 18px;
      }

      .mini-stats,
      .price-cards,
      .proof-metrics {
        grid-template-columns: 1fr;
      }

      .avatar-wall {
        grid-template-columns: repeat(4, 1fr);
      }

      .cta-inner {
        grid-template-columns: 1fr;
      }

      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        flex-direction: column;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .brand span:last-child {
        white-space: normal;
        line-height: 1.25;
      }

      .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
      }

      .nav-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .search {
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        align-items: stretch;
      }

      .panel-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .value-item {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .avatar-wall {
        grid-template-columns: repeat(3, 1fr);
      }

      .cta-card {
        padding: 28px;
        border-radius: 28px;
      }

      .proof-zone {
        padding: 24px;
        border-radius: 28px;
      }
    }
