
    :root{
      --bg:#1A1A1B;
      --panel:#222225;
      --panel-2:#2A2A2D;
      --line:#3A3A3D;
      --text:#E8E8EA;
      --muted:#A7A7AA;
      --body:#C4C4C8;
      --orange:#FF4D00;
      --orange-2:#FF7A1A;
      --white:#FFFFFF;
      --danger:#ffbf99;
      --radius:20px;
      --radius-sm:16px;
      --radius-lg:32px;
      --shadow:0 26px 80px rgba(0,0,0,.38);
      --shadow-card:0 18px 46px rgba(0,0,0,.22);
      --container:1200px;
      --hero-content:1120px;
      --section-y:88px;
      --section-y-compact:72px;
      --pad-card:28px;
      --pad-panel:32px;
      --radius-pill:999px;
      --border-subtle:rgba(255,255,255,.08);
      --border-faint:rgba(255,255,255,.06);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.65;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{width:min(100% - 48px,var(--container));margin:0 auto}
    .section{padding:var(--section-y) 0;border-top:1px solid var(--border-faint)}
    .section.compact{padding:var(--section-y-compact) 0}
    .section-head{max-width:820px;margin:0 0 44px}
    .section-head.center{text-align:center;margin-left:auto;margin-right:auto}
    .eyebrow{
      color:var(--orange);
      text-transform:uppercase;
      letter-spacing:.15em;
      font-size:12px;
      font-weight:900;
      margin:0 0 12px;
      display:inline-flex;
      align-items:center;
      gap:10px;
    }
    .eyebrow:before{content:"";width:30px;height:2px;background:var(--orange)}
    h1,h2,h3{margin:0;line-height:1.08;letter-spacing:-.035em;color:var(--text)}
    h1{font-size:clamp(34px,4.6vw,62px);max-width:900px}
    h2{font-size:clamp(30px,4vw,50px)}
    h3{font-size:22px}
    p{margin:0;color:var(--body)}
    .lead{font-size:18px;margin-top:16px;color:var(--body);max-width:72ch}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      min-height:50px;padding:14px 24px;border-radius:var(--radius-pill);
      font-weight:900;font-size:14px;border:1px solid transparent;
      transition:.2s ease;white-space:nowrap;cursor:pointer;
    }
    .btn-primary{background:linear-gradient(135deg,var(--orange),var(--orange-2));color:#fff;box-shadow:0 16px 40px rgba(255,77,0,.28)}
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 52px rgba(255,77,0,.38)}
    .btn-outline{background:transparent;color:var(--text);border-color:var(--line)}
    .btn-outline:hover{border-color:var(--orange);color:#fff}
    .text-link{color:var(--orange);font-weight:900;display:inline-flex;align-items:center;justify-content:flex-start;gap:8px;margin-top:auto;padding-top:18px;white-space:nowrap;line-height:1.1}
    .text-link:after{content:"→";transition:.2s;flex:0 0 auto}.text-link:hover:after{transform:translateX(5px)}

    /* Header */
    .site-header{
      position:sticky;top:0;z-index:100;
      background:rgba(26,26,27,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--border-subtle);
    }
    .nav{height:76px;width:min(100% - 48px,var(--container));margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px}
    .brand{display:flex;align-items:center;gap:12px;font-weight:950;letter-spacing:.03em}
    .brand-mark{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,#3A3A3D,#111);position:relative;border:1px solid #47474b}
    .brand-mark:after{content:"";position:absolute;right:-5px;bottom:-5px;width:18px;height:18px;background:var(--orange);border-radius:50%;border:3px solid var(--bg)}
    .nav-links{display:flex;gap:22px;align-items:center;font-size:14px;font-weight:800;color:var(--muted)}
    .nav-links a:hover{color:#fff}
    .nav-item.has-submenu{position:relative}
    .nav-parent{display:inline-flex;align-items:center;gap:4px}
    .nav-submenu-toggle{
      display:none;align-items:center;justify-content:center;
      width:32px;height:32px;margin-left:4px;padding:0;
      border:1px solid var(--line);border-radius:8px;
      background:transparent;color:var(--muted);font-size:14px;line-height:1;cursor:pointer;
    }
    .nav-submenu-toggle:hover{color:#fff;border-color:rgba(255,77,0,.45)}
    .nav-submenu{
      position:absolute;top:calc(100% + 12px);left:0;min-width:220px;
      margin:0;padding:8px 0;list-style:none;
      background:#1c1c1e;border:1px solid var(--line);border-radius:var(--radius-sm);
      box-shadow:var(--shadow-card);opacity:0;visibility:hidden;transform:translateY(6px);
      transition:opacity .2s ease,transform .2s ease,visibility .2s;
      z-index:120;
    }
    .nav-item.has-submenu:hover .nav-submenu,
    .nav-item.has-submenu:focus-within .nav-submenu,
    .nav-item.has-submenu.is-submenu-open .nav-submenu{
      opacity:1;visibility:visible;transform:translateY(0);
    }
    .nav-submenu li{margin:0}
    .nav-submenu a{
      display:block;padding:10px 18px;color:var(--muted);font-size:13px;font-weight:800;
      white-space:nowrap;border:0;
    }
    .nav-submenu a:hover{color:#fff;background:rgba(255,77,0,.1)}
    .mobile-toggle{display:none;background:transparent;color:#fff;border:0;font-size:28px}

    /* Hero */
    .hero{
      min-height:760px;
      background:
        linear-gradient(90deg,rgba(26,26,27,.98) 0%,rgba(26,26,27,.88) 43%,rgba(26,26,27,.55) 70%,rgba(26,26,27,.35) 100%),
        url('../images/hero-1600c-u-type-sic-heating-element.webp') center/cover no-repeat;
      position:relative;overflow:hidden;
    }
    .hero:after{
      content:"";position:absolute;inset:auto 0 0 0;height:160px;
      background:linear-gradient(0deg,var(--bg),transparent);
    }
    .hero .container{
      min-height:760px;display:flex;align-items:center;justify-content:flex-start;position:relative;z-index:2;padding:90px 0;
    }
    .hero-content{width:100%;max-width:var(--hero-content);margin:0;text-align:left}
    .hero-text{font-size:18px;max-width:820px;margin-top:20px;color:var(--body)}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
    .hero-tags{display:flex;gap:10px;flex-wrap:wrap;margin-top:30px}
    .hero-tags span{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);padding:9px 13px;border-radius:var(--radius-pill);color:var(--body);font-size:13px;font-weight:800}

    /* Sticky right sidebar */
    .sticky-sidebar,.sticky-tools{
      position:fixed;right:18px;top:50%;transform:translateY(-50%);
      z-index:90;display:flex;flex-direction:column;gap:10px;
    }
    .sticky-sidebar a,.sticky-tools a{
      width:50px;height:50px;border-radius:var(--radius-sm);
      background:rgba(34,34,37,.92);border:1px solid var(--line);
      display:flex;align-items:center;justify-content:center;
      color:#fff;font-weight:950;box-shadow:0 14px 40px rgba(0,0,0,.28);
      backdrop-filter:blur(12px);
    }
    .sticky-sidebar a.quote,.sticky-tools a.quote{background:var(--orange);border-color:var(--orange)}
    .sticky-sidebar a:hover,.sticky-tools a:hover{transform:translateX(-3px)}
    .sticky-sidebar span,.sticky-tools span{font-size:12px}

    /* Grids */
    .grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;align-items:stretch}
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;align-items:stretch}
    .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:stretch}
    .card{
      background:linear-gradient(180deg,var(--panel),#1f1f21);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:var(--pad-card);
      box-shadow:var(--shadow-card);
      height:100%;
      display:flex;flex-direction:column;
    }
    .card h3{margin-bottom:12px;color:var(--text);line-height:1.25}.card p{font-size:15px;color:var(--body);line-height:1.62}.card ul{padding-left:0;color:var(--body);margin:18px 0 0;list-style:none}.card li{margin:0 0 12px;display:grid;grid-template-columns:18px 1fr;column-gap:10px;line-height:1.65}.card li:before{content:"•";color:var(--muted);font-size:22px;line-height:1.1;padding-top:1px}
    .metric{
      display:inline-flex;align-items:center;justify-content:center;
      width:44px;height:44px;border-radius:var(--radius-sm);background:rgba(255,77,0,.1);color:var(--orange);font-weight:950;margin-bottom:18px;
      border:1px solid rgba(255,77,0,.18);
    }

    /* Product Cards */
    .product-card.card{padding:0;overflow:hidden;display:flex;flex-direction:column}
    .product-visual{
      width:100%;
      aspect-ratio:1 / 1;
      box-sizing:border-box;
      flex:0 0 auto;
      align-self:stretch;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:0;
      margin:0;
      background:radial-gradient(circle at 80% 20%,rgba(255,77,0,.18),transparent 28%),linear-gradient(135deg,#111,#303034);
      border-bottom:1px solid var(--line);
      border-radius:calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    }
    .product-visual img{
      display:block;
      width:auto;
      height:auto;
      max-width:100%;
      max-height:100%;
      object-fit:contain;
      object-position:center;
      filter:drop-shadow(0 20px 34px rgba(0,0,0,.45));
    }
    .product-body{padding:var(--pad-card);display:flex;flex-direction:column;flex:1;min-height:420px}.product-body .label{min-height:30px;align-items:center}.product-body h3{min-height:46px;display:flex;align-items:flex-start;margin-bottom:12px;color:var(--text)}.product-body p{min-height:98px;margin-bottom:0;color:var(--body)}.product-body ul{min-height:156px;margin-top:22px;margin-bottom:24px;color:var(--body)}.product-body li{align-items:start;margin-bottom:12px}.product-body .text-link{margin-top:auto;min-height:32px;display:inline-flex;align-items:center;white-space:nowrap}
    .grid-product-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;align-items:stretch}
    .grid-product-cards .product-card .product-visual{padding:16px}
    .grid-product-cards .product-card .product-body{min-height:auto;padding:22px}
    .grid-product-cards .product-card .product-body .label{min-height:auto}
    .grid-product-cards .product-card .product-body h3{min-height:auto;font-size:clamp(17px,1.5vw,22px)}
    .grid-product-cards .product-card .product-body p{min-height:auto;font-size:14px;line-height:1.58}
    .grid-product-cards .product-card .product-body ul{min-height:auto;margin-top:16px;margin-bottom:18px}
    .grid-product-cards .product-card .product-body li{font-size:14px;margin-bottom:10px}
    .label{display:inline-flex;color:var(--orange);font-size:11px;text-transform:uppercase;font-weight:950;letter-spacing:.13em;margin-bottom:12px}

    /* Table */
    .table-note{font-size:13px;margin-top:14px;color:var(--muted)}

    /* Applications */
    .application-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
    .application-grid a{min-height:96px;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius-sm);padding:18px;display:flex;align-items:center;font-weight:900;color:var(--text);transition:.2s}
    .application-grid a:hover{border-color:var(--orange);color:#fff;transform:translateY(-3px)}

    /* Tech Center */
    .download-card{
      background:linear-gradient(135deg,#242427,#171718);
      border:1px solid var(--line);border-radius:var(--radius);padding:var(--pad-panel);height:100%;
      display:flex;flex-direction:column;align-items:flex-start;min-height:300px;
    }
    .download-card h3{min-height:78px;margin-bottom:10px;line-height:1.18;color:var(--text)}
    .download-card p{margin-bottom:24px;min-height:108px;line-height:1.65;color:var(--body)}
    .download-card .text-link{margin-top:auto;align-self:flex-start;display:inline-flex;align-items:center;min-height:32px}
    .locked{color:var(--orange);font-size:13px;font-weight:950;margin-bottom:10px;display:block}

    /* Multi-step form */
    .form-shell{background:linear-gradient(180deg,var(--panel),#1e1e20);border:1px solid var(--line);border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:var(--pad-panel)}
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:26px}
    .step-indicator{border:1px solid var(--line);border-radius:var(--radius-sm);padding:12px;color:var(--muted);font-weight:900;text-align:center}
    .step-indicator.active{border-color:var(--orange);color:#fff;background:rgba(255,77,0,.1)}
    .form-step{display:none}.form-step.active{display:block}
    .form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .full{grid-column:1/-1}
    label{display:block;font-size:13px;font-weight:900;margin-bottom:7px;color:var(--text);opacity:.92}
    input,select,textarea{
      width:100%;background:#141416;border:1px solid var(--line);color:#fff;border-radius:var(--radius-sm);padding:13px 14px;font:inherit;outline:none;
    }
    textarea{min-height:130px;resize:vertical}
    input:focus,select:focus,textarea:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(255,77,0,.13)}
    input[type="file"]{padding:12px;background:#141416;color:var(--body);cursor:pointer}
    .field-help{display:block;margin-top:7px;color:var(--muted);font-size:12.5px;line-height:1.45}
    .form-actions{display:flex;gap:12px;justify-content:space-between;flex-wrap:wrap;margin-top:24px}
    .honeypot{position:absolute;left:-9999px;opacity:0;height:0;width:0;overflow:hidden}
    .form-note{font-size:13px;color:var(--muted);margin-top:12px}

    /* Footer */
    footer{background:#111113;border-top:1px solid var(--line);padding:58px 0 34px}
    .footer-grid{display:grid;grid-template-columns:1.2fr .8fr .9fr 1.05fr;gap:28px;align-items:start}
    footer h3{font-size:16px;margin-bottom:14px;color:var(--text)} footer p, footer a, footer span{color:var(--muted);font-size:14px}
    footer a{display:block;margin:8px 0} footer a:hover{color:#fff}
    .social-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px;max-width:310px}
    .footer-contact-social{max-width:360px;align-items:center}
    footer .social-label{margin-top:18px;margin-bottom:10px;color:var(--text);font-size:13px;font-weight:950;letter-spacing:.05em;text-transform:uppercase}
    .social-links a{display:inline-flex;margin:0;justify-content:center;text-align:center;min-height:42px;padding:9px 12px;border-radius:var(--radius-pill);background:#202023;border:1px solid var(--line);font-weight:900;color:var(--text)}
    .footer-bottom{border-top:1px solid var(--line);margin-top:36px;padding-top:22px;display:flex;justify-content:space-between;gap:18px;flex-wrap:wrap;color:var(--muted)}


    /* Hero core points: same surface language as cards */
    .hero-core-points{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:20px;
      width:100%;
      margin-top:40px;
      align-items:stretch;
    }
    .hero-core-points span{
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
      min-height:150px;
      height:100%;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      border-radius:var(--radius-sm);
      padding:22px;
      color:var(--body);
      backdrop-filter:blur(10px);
      box-sizing:border-box;
    }
    .hero-core-points strong{
      display:block;
      color:var(--text);
      font-size:16px;
      line-height:1.3;
      letter-spacing:-.01em;
      margin-bottom:12px;
      min-height:42px;
    }
    .hero-core-points em{
      display:block;
      color:var(--muted);
      font-style:normal;
      font-size:13.5px;
      line-height:1.55;
      font-weight:650;
    }
    .section-head,
    .product-body,
    .card{
      text-align:left;
    }
    @media(max-width:1180px){
      .hero-core-points{grid-template-columns:repeat(2,minmax(0,1fr))}
      .hero-core-points span{min-height:136px}
      .product-body{min-height:auto}.product-body p,.product-body ul,.product-body h3{min-height:auto}
    }
    @media(min-width:1280px){
      h1{font-size:60px;line-height:1.06}
      .hero-text{max-width:760px}
    }
    @media(max-width:1080px){
      .site-header{position:relative}
      .site-header .nav{position:relative;z-index:101}
      .mobile-toggle{
        display:flex;align-items:center;justify-content:center;
        width:48px;height:48px;padding:0;border-radius:var(--radius-sm);
        background:transparent;border:1px solid var(--line);color:#fff;
        font-size:22px;line-height:1;cursor:pointer;flex-shrink:0;
      }
      .site-header .nav-links{display:none}
      .site-header.is-nav-open .nav-links{
        display:flex;flex-direction:column;align-items:stretch;gap:0;
        position:fixed;top:76px;left:0;right:0;bottom:0;
        padding:12px min(48px,5vw) 32px;
        background:rgba(17,17,19,.97);
        border-top:1px solid var(--line);
        z-index:100;overflow-y:auto;
        box-shadow:0 24px 60px rgba(0,0,0,.45);
      }
      .site-header.is-nav-open .nav-links a{
        display:block;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.06);
        font-size:15px;font-weight:800;
      }
      .nav-item.has-submenu{display:block;border-bottom:1px solid rgba(255,255,255,.06)}
      .nav-item.has-submenu .nav-parent{display:flex;align-items:center;justify-content:space-between;padding:14px 0;border:0}
      .nav-submenu-toggle{display:inline-flex;flex-shrink:0}
      .nav-submenu{
        position:static;opacity:1;visibility:visible;transform:none;
        display:none;min-width:0;margin:0;padding:0 0 8px;
        background:transparent;border:0;border-radius:0;box-shadow:none;
      }
      .nav-item.has-submenu.is-submenu-open .nav-submenu{display:block}
      .nav-submenu a{padding:10px 0 10px 14px;font-size:14px;border:0}
      .nav-submenu a:hover{background:transparent}
      .grid-4,.application-grid,.grid-product-cards{grid-template-columns:repeat(2,1fr);gap:18px}
      .grid-3{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media(max-width:720px){
      .hero-core-points{grid-template-columns:1fr;gap:14px;margin-top:30px}
      .hero-core-points span{min-height:auto;padding:18px}
      .hero-core-points strong{min-height:auto}
      .download-card h3,.download-card p{min-height:auto}

      .container{width:min(100% - 28px,var(--container))}

      h1{font-size:clamp(32px,9vw,44px);line-height:1.08}
      .hero-text{font-size:16px}
      .section{padding:68px 0}
      .hero,.hero .container{min-height:700px}
      .hero-actions,.form-actions{flex-direction:column}
      .hero-actions .btn,.form-actions .btn,.form-shell .form-actions .btn{width:100%}
      .grid-2,.grid-4,.application-grid,.footer-grid,.form-grid{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .sticky-sidebar,.sticky-tools{
        top:auto;right:10px;left:10px;bottom:10px;transform:none;flex-direction:row;justify-content:center;
      }
      .sticky-sidebar a,.sticky-tools a{flex:1;width:auto;border-radius:var(--radius-pill);height:46px}
      .sticky-sidebar span,.sticky-tools span{display:inline}
      .product-visual{padding:16px}
      .grid-product-cards .product-card .product-visual{padding:14px}
      .social-links{max-width:none}
    }
  
    /* Honeypot anti-spam field: visually hidden and keyboard-inaccessible */
    .confirm-system-check {
      opacity: 0 !important;
      position: absolute !important;
      top: 0;
      left: 0;
      height: 0;
      width: 0;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }

  

    /* Responsive Technical Table Upgrade */
    .table-wrap{
      position:relative;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:linear-gradient(180deg,var(--panel),#1c1c1e);
      box-shadow:var(--shadow);
    }
    .table-scroll-hint{
      display:none;
      margin:12px 0 0;
      color:var(--muted);
      font-size:13px;
      text-align:center;
    }
    .table-wrap table{
      width:100%;
      min-width:980px;
      border-collapse:separate;
      border-spacing:0;
      font-size:14px;
    }
    .table-wrap thead th{
      position:sticky;
      top:0;
      z-index:3;
      background:#111113;
      color:#fff;
      text-align:left;
      padding:16px;
      border-bottom:1px solid var(--line);
      white-space:nowrap;
    }
    .table-wrap tbody td{
      overflow:hidden;
      overflow-wrap:break-word;
      padding:16px;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:var(--body);
      vertical-align:middle;
    }
    .table-wrap tbody tr{
      transition:background .2s ease, transform .2s ease;
    }
    .table-wrap tbody tr:hover{
      background:rgba(255,77,0,.055);
    }
    .table-wrap .table-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:100%;
      max-width:150px;
      min-width:0;
      min-height:38px;
      padding:9px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,77,0,.12);
      border:1px solid rgba(255,77,0,.34);
      color:var(--orange-2);
      font-weight:900;
      line-height:1;
      white-space:nowrap;
    }
    .table-wrap .table-cta:hover{
      background:var(--orange);
      color:#fff;
      transform:translateY(-1px);
    }
    .table-wrap td:last-child,
    .table-wrap th:last-child{
      text-align:center;
      width:170px;
    }

    @media(min-width:1021px){
      .table-wrap{
        overflow-x:visible;
      }
      .table-wrap table{
        min-width:0;
        table-layout:fixed;
      }
      .table-wrap th:nth-child(1), .table-wrap td:nth-child(1){width:16%}
      .table-wrap th:nth-child(2), .table-wrap td:nth-child(2){width:17%}
      .table-wrap th:nth-child(3), .table-wrap td:nth-child(3){width:17%}
      .table-wrap th:nth-child(4), .table-wrap td:nth-child(4){width:14%}
      .table-wrap th:nth-child(5), .table-wrap td:nth-child(5){width:20%}
      .table-wrap th:nth-child(6), .table-wrap td:nth-child(6){width:16%; min-width:160px;}
    }

    @media(max-width:900px){
      .table-scroll-hint{
        display:block;
      }
      .table-wrap{
        overflow:visible;
        border:0;
        background:transparent;
        box-shadow:none;
      }
      .table-wrap table,
      .table-wrap thead,
      .table-wrap tbody,
      .table-wrap th,
      .table-wrap td,
      .table-wrap tr{
        display:block;
        width:100%;
        min-width:0;
      }
      .table-wrap thead{
        display:none;
      }
      .table-wrap tbody tr{
        background:linear-gradient(180deg,var(--panel),#1f1f21);
        border:1px solid var(--line);
        border-radius:20px;
        padding:16px;
        margin:0 0 16px;
        box-shadow:0 18px 42px rgba(0,0,0,.22);
      }
      .table-wrap tbody td{
        display:grid;
        grid-template-columns:130px 1fr;
        gap:12px;
        align-items:start;
        padding:11px 0;
        border-bottom:1px solid rgba(255,255,255,.07);
        color:var(--body);
      }
      .table-wrap tbody td:last-child{
        border-bottom:0;
        display:flex;
        justify-content:flex-start;
        padding-top:16px;
        width:100%;
        text-align:left;
      }
      .table-wrap tbody td::before{
        content:attr(data-label);
        color:var(--muted);
        font-size:12px;
        font-weight:950;
        text-transform:uppercase;
        letter-spacing:.05em;
        line-height:1.35;
      }
      .table-wrap tbody td:last-child::before{
        display:none;
      }
      .table-wrap .table-cta{
        width:100%;
        max-width:none;
        min-height:44px;
      }
    }

    .reveal-up{
      opacity:0;
      transform:translateY(24px);
      transition:opacity .65s ease, transform .65s ease;
    }
    .reveal-up.is-visible{
      opacity:1;
      transform:translateY(0);
    }

  
/* Inner pages: layout aliases */
.wrap{width:min(100% - 48px,var(--container));margin:0 auto}
.page-hero{padding:72px 0 56px;background:radial-gradient(circle at 70% 0,rgba(255,77,0,.14),transparent 36%),linear-gradient(180deg,#1d1d1f,var(--bg));border-bottom:1px solid var(--border-faint)}
.page-hero h1{font-size:clamp(34px,4.6vw,56px);line-height:1.08;letter-spacing:-.035em;margin:0 0 18px;max-width:900px;color:var(--text)}
.breadcrumb{color:var(--muted);font-size:14px;margin-bottom:18px}
.breadcrumb a{color:var(--body)}
.breadcrumb a:hover{color:var(--text)}
.section .wrap{padding:0}
.section-title{font-size:clamp(28px,3.2vw,44px);line-height:1.1;margin:0 0 14px;color:var(--text);letter-spacing:-.03em}
.section-desc{margin:0 0 28px;font-size:18px;color:var(--body);max-width:72ch;line-height:1.65}
.grid{display:grid;gap:22px}
.card h2{margin:0 0 12px;color:var(--text);line-height:1.25;font-size:clamp(20px,2.2vw,24px)}
.card .card-action{margin-top:auto;padding-top:18px}
.card > a.btn.card-action{margin-top:auto;align-self:flex-start;padding-top:18px}
.card-action a.btn{width:auto}
.card .eyebrow{margin-bottom:10px}
.card .eyebrow:before{width:22px}
.data-table-wrap{position:relative;overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);border-radius:var(--radius);background:linear-gradient(180deg,var(--panel),#1c1c1e);box-shadow:var(--shadow)}
.data-table-wrap table{width:100%;min-width:720px;border-collapse:separate;border-spacing:0;font-size:14px}
.data-table-wrap th{position:sticky;top:0;z-index:2;background:#111113;color:#fff;text-align:left;padding:16px 18px;border-bottom:1px solid var(--line);font-weight:900}
.data-table-wrap td{padding:16px 18px;border-bottom:1px solid rgba(255,255,255,.07);color:var(--body);vertical-align:middle}
.data-table-wrap tr:last-child td{border-bottom:0}
.pill,.data-table-wrap .pill{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:9px 12px;border-radius:var(--radius-pill);background:rgba(255,77,0,.12);border:1px solid rgba(255,77,0,.34);color:var(--orange-2);font-weight:900;white-space:nowrap;text-decoration:none}
.pill:hover{background:var(--orange);color:#fff}
.btn-ghost,.btn.btn-ghost{background:transparent;color:var(--text);border-color:var(--line);box-shadow:none}
.btn-ghost:hover,.btn.btn-ghost:hover{border-color:var(--orange);color:#fff}
.site-footer{background:#111113;border-top:1px solid var(--line);padding:58px 0 34px}
.site-footer .footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:28px;width:min(100% - 48px,var(--container));margin:0 auto;align-items:start}
.site-footer .footer-title{font-size:16px;font-weight:950;color:var(--text);margin-bottom:14px}
.site-footer .footer-list{display:grid;gap:10px;color:var(--muted);font-size:14px}
.site-footer .footer-list a{display:block;color:var(--muted);margin:0}
.site-footer .footer-list a:hover{color:#fff}
.site-footer .footer-grid>div>p{margin-top:18px;color:var(--muted);font-size:14px;line-height:1.65}
.social-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px;max-width:310px}
.social-row a{display:inline-flex;justify-content:center;align-items:center;min-height:42px;padding:9px 12px;border-radius:var(--radius-pill);background:#202023;border:1px solid var(--line);font-weight:900;color:var(--text);font-size:14px;text-decoration:none}
.social-row a:hover{color:#fff;border-color:var(--orange)}
.copyright{width:min(100% - 48px,var(--container));margin:36px auto 0;padding-top:22px;border-top:1px solid var(--line);color:var(--muted);font-size:14px}
.form.card{display:flex;flex-direction:column;gap:18px}
.field{display:grid;gap:8px}
.field label{font-size:13px;font-weight:900;color:var(--text);opacity:.92}
.field input,.field select,.field textarea{width:100%;background:#141416;border:1px solid var(--line);color:#fff;border-radius:var(--radius-sm);padding:13px 14px;font:inherit;outline:none}
.field textarea{min-height:130px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--orange);box-shadow:0 0 0 3px rgba(255,77,0,.13)}
.note{border-radius:var(--radius-sm);padding:18px 22px;background:rgba(255,255,255,.04);border:1px solid var(--line);border-left:3px solid var(--orange);color:var(--body)}
.equal-card{min-height:320px}
.mobile-menu{display:none!important}
@media(max-width:720px){
  .site-footer .footer-grid{grid-template-columns:1fr}
  .social-row{max-width:none}
  .copyright{width:min(100% - 28px,var(--container))}
  .data-table-wrap table{min-width:560px}
  .equal-card{min-height:auto}
}
@media(max-width:900px){
  .page-hero{padding:56px 0 44px}
}

.wrap > .grid + .note{margin-top:28px}

/* Product detail pages */
.product-card--link{text-decoration:none;color:inherit;transition:border-color .2s ease,transform .2s ease}
.product-card--link:hover{border-color:rgba(255,77,0,.45);transform:translateY(-3px)}
.product-card--link .text-link{color:var(--orange-2)}
.product-card--link:hover .text-link{color:#fff}
.product-detail-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1.05fr);gap:40px;align-items:start}
.product-detail-visual{
  width:100%;
  aspect-ratio:1 / 1;
  border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);
  background:radial-gradient(circle at 80% 20%,rgba(255,77,0,.18),transparent 28%),linear-gradient(135deg,#111,#303034);
  display:flex;align-items:center;justify-content:center;padding:24px;box-sizing:border-box;
}
.product-detail-visual img{display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;object-position:center;filter:drop-shadow(0 20px 34px rgba(0,0,0,.45))}
.product-detail-info .label{margin-bottom:14px}
.product-detail-info h2{font-size:clamp(28px,3vw,40px);line-height:1.12;margin:0 0 16px;color:var(--text)}
.product-detail-info .lead-detail{font-size:18px;line-height:1.65;color:var(--body);margin:0 0 24px;max-width:58ch}
.product-detail-highlights{display:grid;gap:12px;margin:0 0 28px;padding:0;list-style:none}
.product-detail-highlights li{display:grid;grid-template-columns:18px 1fr;gap:10px;color:var(--body);line-height:1.6;font-size:15px}
.product-detail-highlights li:before{content:"•";color:var(--orange);font-size:22px;line-height:1.1}
.product-detail-actions{display:flex;flex-wrap:wrap;gap:12px}
.product-detail-actions .btn{margin:0}
.product-detail-meta{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:28px}
.product-detail-meta .meta-item{background:rgba(255,255,255,.03);border:1px solid var(--line);border-radius:var(--radius-sm);padding:16px}
.product-detail-meta .meta-label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.12em;font-weight:950;color:var(--muted);margin-bottom:6px}
.product-detail-meta .meta-value{color:var(--text);font-weight:800;font-size:15px;line-height:1.4}
.page-hero--compact{padding:48px 0 40px}
.related-products-head{margin-bottom:28px}
@media(max-width:900px){
  .product-detail-layout{grid-template-columns:1fr}
  .product-detail-meta{grid-template-columns:1fr}
}
@media(max-width:720px){
  .product-detail-actions{flex-direction:column}
  .product-detail-actions .btn{width:100%}
}

/* Blog */
.blog-filters{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 32px}
.blog-filter{
  display:inline-flex;align-items:center;min-height:40px;padding:0 16px;border-radius:var(--radius-pill);
  border:1px solid var(--line);background:rgba(255,255,255,.03);color:var(--body);font-size:14px;font-weight:800;
  cursor:pointer;transition:border-color .2s,background .2s,color .2s;
}
.blog-filter:hover,.blog-filter.is-active{border-color:rgba(255,77,0,.45);background:rgba(255,77,0,.1);color:#fff}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.blog-card{
  display:flex;flex-direction:column;overflow:hidden;padding:0;height:100%;
  text-decoration:none;color:inherit;transition:border-color .2s ease,transform .2s ease;
}
.blog-card:hover{border-color:rgba(255,77,0,.45);transform:translateY(-3px)}
.blog-card-visual{
  width:100%;
  aspect-ratio:1 / 1;
  box-sizing:border-box;
  display:flex;align-items:center;justify-content:center;padding:18px;
  background:radial-gradient(circle at 75% 15%,rgba(255,77,0,.16),transparent 30%),linear-gradient(135deg,#141416,#2a2a2e);
  border-bottom:1px solid var(--line);
  border-radius:calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.blog-card-visual img{display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;object-position:center;opacity:.92}
.blog-card-body{padding:22px;display:flex;flex-direction:column;flex:1}
.blog-card-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:12px;font-size:12px;color:var(--muted)}
.blog-card-meta .tag{
  display:inline-flex;align-items:center;padding:4px 10px;border-radius:var(--radius-pill);
  background:rgba(255,77,0,.1);border:1px solid rgba(255,77,0,.28);color:var(--orange-2);font-weight:900;text-transform:uppercase;letter-spacing:.08em;
}
.blog-card h2{font-size:clamp(18px,1.8vw,22px);line-height:1.25;margin:0 0 12px;color:var(--text)}
.blog-card p{font-size:15px;line-height:1.62;color:var(--body);margin:0 0 18px;flex:1}
.blog-card .text-link{margin-top:auto;padding-top:0;min-height:auto}
.blog-featured{
  display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);gap:0;margin-bottom:40px;
  overflow:hidden;border-radius:var(--radius);border:1px solid var(--line);
  background:linear-gradient(180deg,var(--panel),#1e1e20);text-decoration:none;color:inherit;
  transition:border-color .2s,transform .2s;
}
.blog-featured:hover{border-color:rgba(255,77,0,.45);transform:translateY(-2px)}
.blog-featured-visual{
  min-height:280px;display:flex;align-items:center;justify-content:center;padding:40px;
  background:radial-gradient(circle at 80% 20%,rgba(255,77,0,.2),transparent 32%),linear-gradient(135deg,#111,#303034);
}
.blog-featured-visual img{max-height:200px;object-fit:contain}
.blog-featured-body{padding:36px 32px;display:flex;flex-direction:column;justify-content:center}
.blog-featured-body .label{margin-bottom:12px}
.blog-featured-body h2{font-size:clamp(26px,3vw,34px);line-height:1.15;margin:0 0 14px;color:var(--text)}
.blog-featured-body p{font-size:17px;line-height:1.65;color:var(--body);margin:0 0 20px;max-width:52ch}
.blog-cta-panel{
  margin-top:48px;padding:32px 36px;border-radius:var(--radius);border:1px solid var(--line);
  background:linear-gradient(135deg,rgba(255,77,0,.08),rgba(255,255,255,.02));
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:20px;
}
.blog-cta-panel h2{margin:0 0 8px;font-size:clamp(22px,2.5vw,28px);color:var(--text)}
.blog-cta-panel p{margin:0;color:var(--body);max-width:56ch;line-height:1.6}
/* Blog article detail: same .wrap width as Parameters / product pages (not viewport-full, not a narrow column) */
.article-meta{display:flex;flex-wrap:wrap;gap:12px 18px;margin-bottom:28px;padding-bottom:22px;border-bottom:1px solid var(--line);color:var(--muted);font-size:14px}
.article-meta .tag{
  display:inline-flex;align-items:center;padding:4px 10px;border-radius:var(--radius-pill);
  background:rgba(255,77,0,.1);border:1px solid rgba(255,77,0,.28);color:var(--orange-2);font-weight:900;text-transform:uppercase;letter-spacing:.08em;font-size:12px;
}
.article-content{color:var(--body);font-size:17px;line-height:1.75}
.article-content h2{font-size:clamp(22px,2.4vw,28px);margin:36px 0 14px;color:var(--text);line-height:1.2}
.article-content h3{font-size:20px;margin:28px 0 10px;color:var(--text)}
.article-content p{margin:0 0 18px}
.article-content ul{margin:0 0 22px;padding-left:0;list-style:none}
.article-content li{margin:0 0 10px;padding-left:22px;position:relative}
.article-content li:before{content:"•";position:absolute;left:0;color:var(--orange)}
.article-content a{color:var(--orange-2);font-weight:800}
.article-content a:hover{color:#fff}
.article-sidebar{margin-top:48px;padding-top:32px;border-top:1px solid var(--line)}
.article-related{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
@media(max-width:1020px){
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .blog-featured{grid-template-columns:1fr}
  .article-related{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:720px){
  .blog-grid,.article-related{grid-template-columns:1fr}
  .blog-featured-body{padding:24px}
  .blog-cta-panel{flex-direction:column;align-items:flex-start}
  .blog-cta-panel .btn{width:100%}
}


/* Launch-ready optimization additions */
.page-hero{padding:120px 0 76px;background:radial-gradient(circle at 80% 10%,rgba(255,77,0,.16),transparent 30%),linear-gradient(135deg,#111113,#242427);border-bottom:1px solid var(--line)}
.page-hero .lead{max-width:860px}.breadcrumb{font-size:13px;color:var(--muted);margin-bottom:16px;font-weight:800}.breadcrumb a{color:#d8d8da}.breadcrumb a:hover{color:#fff}
.note-panel{border:1px solid rgba(255,77,0,.25);background:rgba(255,77,0,.08);border-radius:var(--radius);padding:22px;color:var(--body)}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}.process-card{background:linear-gradient(180deg,var(--panel),#1f1f21);border:1px solid var(--line);border-radius:var(--radius);padding:24px;display:flex;flex-direction:column;gap:10px}.process-card .metric{margin-bottom:4px}
.simple-list{display:grid;gap:12px;margin:18px 0 0;padding:0;list-style:none}.simple-list li{display:grid;grid-template-columns:18px 1fr;gap:10px;color:var(--body)}.simple-list li:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--orange);margin-top:10px}
.media-panel{width:100%;aspect-ratio:1 / 1;min-height:0;border:1px solid var(--line);border-radius:var(--radius);background:radial-gradient(circle at 80% 20%,rgba(255,77,0,.16),transparent 28%),linear-gradient(135deg,#111,#303034);display:flex;align-items:center;justify-content:center;padding:24px;overflow:hidden;box-sizing:border-box}.media-panel img{display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;object-position:center;filter:drop-shadow(0 18px 34px rgba(0,0,0,.45))}
.split{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:center}.split.top{align-items:start}
.page-cta{background:linear-gradient(135deg,#242427,#151516);border:1px solid var(--line);border-radius:var(--radius-lg);padding:38px;box-shadow:var(--shadow);display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}.page-cta .lead{margin-top:10px}
.faq{display:grid;gap:14px}.faq details{background:linear-gradient(180deg,var(--panel),#1f1f21);border:1px solid var(--line);border-radius:var(--radius-sm);padding:18px 20px}.faq summary{cursor:pointer;font-weight:950;color:var(--text)}.faq p{margin-top:10px;font-size:15px}
.badge-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.badge-row span{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.05);border-radius:var(--radius-pill);padding:8px 12px;color:var(--body);font-size:13px;font-weight:800}
.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:34px}.article-layout aside{position:sticky;top:96px;align-self:start}.article-body h2{margin-top:34px;margin-bottom:12px}.article-body p{margin:12px 0}.article-body ul{color:var(--body)}
.form-section-label{margin:22px 0 12px;color:var(--orange);font-size:12px;text-transform:uppercase;letter-spacing:.12em;font-weight:950}
@media(max-width:1080px){.process-grid{grid-template-columns:repeat(2,1fr)}.split,.article-layout{grid-template-columns:1fr}.article-layout aside{position:static}}
@media(max-width:720px){.page-hero{padding:86px 0 58px}.process-grid{grid-template-columns:1fr}.page-cta{padding:24px;display:block}.page-cta .btn{margin-top:18px;width:100%}}

/* API-driven banner / catalog / detail */
.hero.has-api-banner{background:none}
.hero-banner-slider{position:absolute;inset:0;z-index:0}
.hero-banner-slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease;background-position:center;background-size:cover;background-repeat:no-repeat}
.hero-banner-slide.is-active{opacity:1}
.hero-banner-slider:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(26,26,27,.98) 0%,rgba(26,26,27,.88) 43%,rgba(26,26,27,.55) 70%,rgba(26,26,27,.35) 100%);pointer-events:none}
.hero-banner-dots{position:absolute;left:50%;bottom:36px;transform:translateX(-50%);display:flex;gap:10px;z-index:3}
.hero-banner-dots button{width:10px;height:10px;border-radius:50%;border:0;padding:0;background:rgba(255,255,255,.35);cursor:pointer}
.hero-banner-dots button.is-active{background:var(--orange)}
.api-status{padding:18px 20px;border:1px dashed var(--line);border-radius:var(--radius-sm);color:var(--muted);text-align:center}
.api-status.is-error{border-color:rgba(255,77,0,.35);color:var(--body);background:rgba(255,77,0,.06)}
.product-price-row{display:flex;align-items:baseline;gap:12px;margin-top:14px;flex-wrap:wrap}
.product-price-row .price{font-size:22px;font-weight:950;color:#fff}
.product-price-row .price-original{color:var(--muted);text-decoration:line-through;font-size:14px}
.product-detail-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:start}
.product-gallery{display:grid;gap:14px}
.product-gallery-main{border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;background:#151517;aspect-ratio:4/3}
.product-gallery-main img{width:100%;height:100%;object-fit:cover;display:block}
.product-gallery-thumbs{display:flex;gap:10px;flex-wrap:wrap}
.product-gallery-thumbs button{width:72px;height:72px;padding:0;border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#151517;cursor:pointer}
.product-gallery-thumbs button.is-active{border-color:var(--orange)}
.product-gallery-thumbs img{width:100%;height:100%;object-fit:cover;display:block}
.product-editor{margin-top:28px;color:var(--body)}
.product-editor img{max-width:100%;height:auto;display:block;margin:12px 0}
.form-submit-status{margin-top:16px;font-size:14px;color:var(--body)}
.form-submit-status.is-error{color:#ff8f66}
.form-submit-status.is-success{color:var(--green,#4ee1a0)}
@media(max-width:980px){.product-detail-layout{grid-template-columns:1fr}.hero-banner-dots{bottom:20px}}
