    /* =========================================================
       SECTION 01 : ROOT + BASE
    ========================================================== */
    :root{
      --bg:#fffaf4;
      --surface:#fffdf8;
      --surface-soft:#fff7ea;
      --surface-soft-2:#fff3df;
      --text:#2f2417;
      --heading:#8a5a1c;
      --muted:#7b6955;
      --line:#eadcc7;
      --line-strong:#dcc8aa;
      --primary:#c07f22;
      --primary-dark:#945f1a;
      --accent:#efb35c;
      --shadow:0 14px 34px rgba(92,65,29,.08);
      --shadow-soft:0 8px 18px rgba(92,65,29,.05);
      --radius:18px;
      --radius-lg:24px;
      --max:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}

    body{
      margin:0;
      font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
      background:
        radial-gradient(circle at top left, rgba(192,127,34,.08), transparent 24%),
        radial-gradient(circle at top right, rgba(239,179,92,.10), transparent 22%),
        linear-gradient(180deg, #fffdf9 0%, #fdf6ec 44%, #fffaf4 100%);
      color:var(--text);
      line-height:1.55;
      overflow-x:hidden;
    }

    img{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    h1,h2,h3,h4,p,ul{margin:0}
    ul{padding-left:18px}
    main{background:transparent;padding:18px 0 26px}
    section{padding:18px 0}

    .container{
      width:min(var(--max),calc(100% - 24px));
      margin-inline:auto;
    }

    .section{
      padding:18px 0;
    }

    .section-tight{
      padding-top:0;
    }

    .outer-card,
    .cta-card{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }

    .outer-card{
      padding:20px;
      background:linear-gradient(180deg,#fffdf8 0%,#fff7e8 100%);
    }

    .section-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }

    .section-head h2{
      margin:0;
      color:var(--heading);
      font-size:clamp(20px,3vw,28px);
      line-height:1.15;
      letter-spacing:-.01em;
    }

    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:70ch;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid #f2dec2;
      background:linear-gradient(180deg,#fff5e6,#fff0dc);
      color:var(--primary-dark);
      padding:8px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:700;
    }

    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      flex:0 0 8px;
      border-radius:50%;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 0 0 4px rgba(192,127,34,.12);
    }

    .muted{
      color:var(--muted);
    }

    /* =========================================================
       SECTION 02 : BUTTONS
    ========================================================== */
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:12px 16px;
      border-radius:12px;
      border:1px solid transparent;
      font-weight:800;
      font-size:15px;
      cursor:pointer;
      transition:.2s ease;
      text-decoration:none;
      user-select:none;
      min-height:48px;
    }

    .btn:hover{
      transform:translateY(-1px);
    }

    .btn-primary{
      color:#fff;
      background:linear-gradient(180deg,var(--primary),var(--primary-dark));
      box-shadow:0 10px 24px rgba(192,127,34,.22);
    }

    .btn-secondary{
      color:var(--primary-dark);
      border-color:var(--line);
      background:linear-gradient(180deg,#fffaf0 0%,#fff2d9 100%);
    }

    .btn-secondary:hover{
      border-color:var(--line-strong);
      background:#fff7ea;
    }

    /* =========================================================
       SECTION 03 : HERO
    ========================================================== */
    .hero{
      position:relative;
      padding:20px 0 26px;
      border-bottom:1px solid var(--line);
      background:
        radial-gradient(1000px 280px at 10% 0%, rgba(192,127,34,.10), transparent 60%),
        radial-gradient(900px 260px at 90% 10%, rgba(227,165,72,.10), transparent 60%),
        linear-gradient(180deg,#fffdf8 0%,#fff7ea 100%);
    }

    .hero::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:-1px;
      height:18px;
      background:linear-gradient(to bottom, rgba(92,65,29,.10), transparent);
      pointer-events:none;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
      align-items:stretch;
    }

    .hero-copy,
    .hero-product-wrap{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      background:linear-gradient(180deg,#fffdf8 0%,#fff7e8 100%);
    }

    .hero-copy{
      padding:22px;
      position:relative;
      overflow:hidden;
      display:block;
    }

    .hero-copy h1{
      margin:12px 0 10px;
      color:var(--heading);
      font-size:clamp(26px,4vw,42px);
      line-height:1.12;
      letter-spacing:-.02em;
    }

    .lead{
      margin:0;
      color:var(--muted);
      font-size:16px;
      max-width:66ch;
      line-height:1.65;
    }

    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:8px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      background:#fffaf0;
      color:var(--primary-dark);
      font-size:13px;
      font-weight:700;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
    }

    .hero-product-wrap{
      padding:16px;
      display:grid;
      align-content:start;
      min-height:0;
    }

    .product-frame{
      border:1px solid var(--line);
      border-radius:18px;
      overflow:hidden;
      background:linear-gradient(145deg,#fff9ee,#fff3df);
      min-height:250px;
      display:grid;
      place-items:center;
      position:relative;
      padding:18px;
    }

    .product-frame::after{
      content:"Android App";
      position:absolute;
      top:12px;
      right:12px;
      background:#fff3df;
      color:var(--primary-dark);
      border:1px solid #eed8b6;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:800;
    }

    .product-frame img{
      width:auto;
      max-width:100%;
      max-height:360px;
      object-fit:contain;
      filter:drop-shadow(0 18px 28px rgba(92,65,29,.16));
    }

    /* =========================================================
       SECTION 04 : PRODUCT INFORMATION
    ========================================================== */
    .pricing-overlap{
      position:relative;
      z-index:1;
    }

    .pricing-table-wrap{
      overflow-x:auto;
      border:1px solid var(--line);
      border-radius:18px;
      background:#fffdf8;
      -webkit-overflow-scrolling:touch;
    }

    .pricing-table{
      width:100%;
      min-width:720px;
      border-collapse:collapse;
    }

    .pricing-table th,
    .pricing-table td{
      padding:15px 16px;
      text-align:left;
      border-bottom:1px solid var(--line);
      vertical-align:top;
    }

    .pricing-table th{
      color:var(--primary-dark);
      background:linear-gradient(180deg,#fff5e6,#fff0dc);
      font-size:14px;
      font-weight:900;
    }

    .pricing-table td:first-child{
      width:28%;
      color:var(--heading);
      font-weight:900;
      background:#fffdf8;
    }

    .pricing-table tr:last-child td{
      border-bottom:none;
    }

    /* =========================================================
       SECTION 05 : CONTENT CARDS
    ========================================================== */
    .about-copy-card,
    .content-panel-card,
    .pdf-report-card{
      padding:18px;
      border:1px solid var(--line);
      border-radius:18px;
      background:linear-gradient(180deg,#fffdf8,#fff7ea);
      box-shadow:var(--shadow-soft);
    }

    .about-copy-card h3,
    .content-panel-card h3,
    .pdf-report-card h3{
      margin:0 0 10px;
      color:var(--heading);
      font-size:clamp(17px,2vw,22px);
      line-height:1.25;
    }

    .about-copy-card p,
    .pdf-report-card p{
      color:var(--muted);
      font-size:15px;
      line-height:1.72;
    }

    .about-copy-card p + p,
    .pdf-report-card p + p{
      margin-top:16px;
    }

    /* =========================================================
       SECTION 06 : LIST OF CONTENT / TABS
    ========================================================== */
    .tabs-shell{
      display:block;
    }

    .tabs-head{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:14px;
    }

    .tab-btn{
      appearance:none;
      border:1px solid var(--line);
      background:#fffaf0;
      color:var(--primary-dark);
      border-radius:999px;
      padding:10px 14px;
      font-size:13px;
      font-weight:800;
      line-height:1.2;
      cursor:pointer;
      transition:all .2s ease;
    }

    .tab-btn:hover{
      border-color:var(--line-strong);
      background:#fff7ea;
      color:var(--primary-dark);
    }

    .tab-btn.active{
      border-color:var(--primary-dark);
      background:linear-gradient(180deg,var(--primary),var(--primary-dark));
      color:#fff;
      box-shadow:0 10px 22px rgba(192,127,34,.18);
    }

    .tab-panel{
      display:none;
    }

    .tab-panel.active{
      display:block;
    }

    .content-panel-card ul{
      margin:0;
      padding-left:18px;
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px 22px;
    }

    .content-panel-card li{
      color:#5c4738;
      font-size:14px;
      line-height:1.6;
      overflow-wrap:anywhere;
    }

    .content-panel-card li strong{
      color:var(--text);
    }

    /* =========================================================
       SECTION 07 : VIDEO DEMO
    ========================================================== */
    .video-only-card{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px;
      background:linear-gradient(180deg,#fffdf8,#fff7ea);
      box-shadow:var(--shadow-soft);
    }

    .video-frame-wrap{
      overflow:hidden;
      width:100%;
      min-height:460px;
      border:1px solid var(--line);
      border-radius:16px;
      background:#1b160f;
    }

    .video-frame{
      display:block;
      width:100%;
      height:460px;
      border:0;
      background:#000;
    }

    /* =========================================================
       SECTION 08 : CTA
    ========================================================== */
    .cta-card{
      padding:24px;
      color:var(--text);
      background:
        radial-gradient(800px 220px at 0% 0%, rgba(192,127,34,.12), transparent 62%),
        linear-gradient(180deg,#fffdf8 0%,#fff7e8 100%);
    }

    .cta-layout{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:18px;
      align-items:center;
    }

    .cta-card h2{
      color:var(--heading);
      font-size:clamp(22px,3vw,34px);
      line-height:1.15;
    }

    .cta-card p{
      color:var(--muted);
      margin-top:10px;
    }

    .cta-panel{
      padding:18px;
      border:1px solid var(--line);
      border-radius:18px;
      background:linear-gradient(180deg,#fffdf8,#fff7ea);
    }

    .sample-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    /* =========================================================
       SECTION 09 : RESPONSIVE
    ========================================================== */
    @media (max-width:1100px){
      .hero-grid,
      .cta-layout{
        grid-template-columns:1fr;
      }
    }

    @media (max-width:900px){
      .content-panel-card ul{
        grid-template-columns:1fr;
      }
      .video-frame-wrap{
        min-height:360px;
      }
      .video-frame{
        height:360px;
      }
    }

    @media (max-width:720px){
      .tabs-head{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:6px;
        scrollbar-width:thin;
      }
      .tab-btn{
        flex:0 0 auto;
        white-space:nowrap;
      }
    }

    @media (max-width:640px){
      .container{
        width:min(var(--max),calc(100% - 16px));
      }
      main{
        padding-top:12px;
      }
      .hero{
        padding:14px 0 20px;
      }
      .hero-copy,
      .hero-product-wrap,
      .outer-card,
      .cta-card{
        padding:16px;
      }
      .hero-copy h1{
        font-size:32px;
      }
      .btn{
        width:100%;
      }
      .hero-actions{
        display:grid;
        grid-template-columns:1fr;
      }
      .product-frame{
        min-height:220px;
      }
      .product-frame img{
        max-height:280px;
      }
      .pricing-table{
        min-width:100%;
      }
      .pricing-table,
      .pricing-table thead,
      .pricing-table tbody,
      .pricing-table tr,
      .pricing-table th,
      .pricing-table td{
        display:block;
        width:100%;
      }
      .pricing-table thead{
        display:none;
      }
      .pricing-table tr{
        border-bottom:1px solid var(--line);
      }
      .pricing-table tr:last-child{
        border-bottom:none;
      }
      .pricing-table td{
        border-bottom:none;
        padding:10px 12px;
      }
      .pricing-table td:first-child{
        width:100%;
        padding-bottom:4px;
        background:#fff5e6;
      }
      .video-frame-wrap{
        min-height:260px;
      }
      .video-frame{
        height:260px;
      }
      .sample-actions{
        display:grid;
        grid-template-columns:1fr;
      }
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .btn:hover{transform:none}
    }

