:root {
    --bg: #11100f;
    --panel: #191614;
    --panel-2: #211c18;
    --line: #3a2f27;
    --text: #fff7e8;
    --muted: #bda98d;
    --toast: #c8793b;
    --toast-deep: #7b3f22;
    --butter: #f5c76f;
    --cream: #ffe5b5;
    --ember: #df6f40;
    --outline: #24150d;
    --silver: #fff7e8;
    --success: #8ec98b;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
  }
  
  body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    border: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
  }
  
  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }
  
  .site-shell {
    position: relative;
    min-height: 100vh;
    background:
      linear-gradient(90deg, rgba(255, 229, 181, 0.035) 1px, transparent 1px),
      linear-gradient(0deg, rgba(255, 229, 181, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
  }
  
  .site-shell::before {
    content: none;
  }
  
  .site-shell::after {
    content: none;
  }
  
  .topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    border-bottom: 1px solid rgba(255, 229, 181, 0.12);
    background: rgba(17, 16, 15, 0.88);
    backdrop-filter: blur(18px);
  }
  
  .nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
  }
  
  .brand-logo-wrap {
    width: 112px;
    height: auto;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }
  
  .brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  }
  
  .brand-fallback {
    min-width: 92px;
    padding: 7px 10px 8px;
    border: 2px solid var(--toast-deep);
    border-radius: 6px;
    background: linear-gradient(180deg, #ffe1a2 0%, #ff9c08 72%);
    color: var(--outline);
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    box-shadow:
      0 0 0 3px rgba(42, 13, 3, 0.7),
      0 10px 0 rgba(42, 13, 3, 0.82);
  }
  
  .brand strong,
  .section-title h2,
  .hero-copy h1 {
    letter-spacing: 0;
  }
  
  .brand-copy,
  .brand-copy span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
  }
  
  .brand strong {
    color: var(--text);
    font-size: 16px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-size: 14px;
  }
  
  .nav-links a:hover {
    color: var(--cream);
  }
  
  .cart-pill {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(245, 199, 111, 0.35);
    border-radius: 8px;
    background: #241c16;
    color: var(--cream);
  }
  
  main {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .hero {
    width: min(1180px, calc(100% - 32px));
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: 38px;
    padding: 56px 0 38px;
  }
  
  .hero::before {
    content: none;
  }
  
  .hero-logo {
    width: min(360px, 100%);
    height: 118px;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: 0 0 24px;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.28));
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--butter);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
  }
  
  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember);
  }
  
  h1 {
    max-width: 780px;
    margin: 18px 0 18px;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 0.94;
  }
  
  .hero-copy p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }
  
  .btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 800;
  }
  
  .btn-primary {
    background: var(--butter);
    color: #24150d;
    box-shadow: 0 12px 36px rgba(245, 199, 111, 0.2);
  }
  
  .btn-secondary {
    border: 1px solid rgba(255, 229, 181, 0.22);
    background: rgba(33, 28, 24, 0.84);
    color: var(--cream);
  }
  
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 229, 181, 0.12);
    border-radius: 8px;
    background: rgba(255, 229, 181, 0.1);
  }
  
  .hero-stats div {
    min-height: 86px;
    padding: 18px;
    background: rgba(25, 22, 20, 0.86);
  }
  
  .hero-stats strong {
    display: block;
    color: var(--cream);
    font-size: 24px;
  }
  
  .hero-stats span {
    color: var(--muted);
    font-size: 13px;
  }
  
  .hero-art {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 229, 181, 0.14);
    border-radius: 8px;
    overflow: hidden;
    background: var(--panel);
    box-shadow: var(--shadow);
  }
  
  .hero-art img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
  }
  
  .status-panel {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(280px, calc(100% - 36px));
    padding: 16px;
    border: 1px solid rgba(255, 229, 181, 0.18);
    border-radius: 8px;
    background: rgba(17, 16, 15, 0.88);
    backdrop-filter: blur(12px);
  }
  
  .status-panel strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .status-panel strong span {
    color: var(--success);
    font-size: 13px;
  }
  
  .status-panel p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
  }
  
  .section {
    padding: 68px 0;
    border-top: 1px solid rgba(255, 229, 181, 0.1);
  }
  
  .section-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
  }
  
  .section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .section-title h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
  }
  
  .section-title p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
  }
  
  .filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  
  .filter {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 229, 181, 0.14);
    border-radius: 8px;
    background: var(--panel);
    color: var(--muted);
  }
  
  .filter.active {
    border-color: rgba(245, 199, 111, 0.56);
    background: #2d2118;
    color: var(--cream);
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    min-height: 448px;
    padding: 18px;
    border: 1px solid rgba(255, 229, 181, 0.13);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--panel), #151311);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  }
  
  .product-card[hidden] {
    display: none;
  }
  
  .product-error {
    grid-column: 1 / -1;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 229, 181, 0.13);
    border-radius: 8px;
    background: var(--panel);
    color: var(--muted);
  }
  
  .product-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
  }
  
  .script-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(245, 199, 111, 0.25);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(245, 199, 111, 0.24), transparent 48%),
      #261d17;
    display: grid;
    place-items: center;
    color: var(--butter);
    font-weight: 900;
  }
  
  .product-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }
  
  .tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(200, 121, 59, 0.15);
    color: var(--butter);
    font-size: 12px;
    font-weight: 800;
  }
  
  .version-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border: 1px solid rgba(245, 199, 111, 0.24);
    border-radius: 999px;
    background: rgba(255, 229, 181, 0.07);
    color: var(--cream);
    font-size: 12px;
    font-weight: 800;
  }
  
  .product-card h3 {
    margin: 18px 0 10px;
    font-size: 22px;
  }
  
  .product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
  }
  
  .features {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
    color: var(--cream);
    font-size: 14px;
  }
  
  .features li {
    display: flex;
    align-items: center;
    gap: 9px;
  }
  
  .features li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--toast);
    flex: 0 0 auto;
  }
  
  .card-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 229, 181, 0.1);
  }
  
  .price {
    display: grid;
    gap: 2px;
  }
  
  .price strong {
    font-size: 24px;
  }
  
  .price span {
    color: var(--muted);
    font-size: 12px;
  }
  
  .add-btn {
    min-width: 64px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--cream);
    color: #24150d;
    font-weight: 900;
    white-space: nowrap;
  }
  
  .demo-link {
    min-width: 64px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 229, 181, 0.18);
    border-radius: 8px;
    background: rgba(33, 28, 24, 0.72);
    color: var(--cream);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  
  .workflow {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: start;
  }
  
  .license-panel,
  .checkout-panel {
    align-self: start;
    min-width: 0;
    border: 1px solid rgba(255, 229, 181, 0.13);
    border-radius: 8px;
    background: var(--panel);
    padding: 24px;
  }
  
  .license-panel h2,
  .checkout-panel h2 {
    margin: 0 0 16px;
    font-size: 28px;
  }
  
  .license-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .license-list li {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(255, 229, 181, 0.1);
    border-radius: 8px;
    background: #151311;
  }
  
  .license-list strong {
    color: var(--cream);
  }
  
  .license-list span {
    color: var(--muted);
    line-height: 1.45;
  }
  
  .checkout-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 229, 181, 0.1);
    color: var(--muted);
  }
  
  .checkout-row span,
  .checkout-row strong {
    min-width: 0;
  }
  
  .checkout-row strong {
    color: var(--cream);
    text-align: right;
    overflow-wrap: anywhere;
  }
  
  .total-row {
    color: var(--text);
    font-size: 22px;
    font-weight: 900;
  }
  
  .checkout-form {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    margin-top: 18px;
  }
  
  .checkout-form input,
  .checkout-form select {
    min-width: 0;
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 229, 181, 0.14);
    border-radius: 8px;
    background: #151311;
    color: var(--cream);
    padding: 0 13px;
    font: inherit;
  }
  
  .checkout-form select {
    text-overflow: ellipsis;
  }
  
  .checkout-form input::placeholder {
    color: #856f58;
  }
  
  .checkout-form .wide,
  .checkout-form button {
    grid-column: 1 / -1;
  }
  
  .checkout-form button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    background: var(--toast);
    color: #160d08;
    font-weight: 950;
  }
  
  .footer {
    position: relative;
    z-index: 1;
    padding: 28px 0 42px;
    color: var(--muted);
  }
  
  .footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 229, 181, 0.1);
    padding-top: 22px;
    font-size: 14px;
  }
  
  @media (max-width: 940px) {
    .hero,
    .workflow {
      grid-template-columns: 1fr;
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero-art,
    .hero-art img {
      min-height: 390px;
    }
  
    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .section-title {
      display: grid;
    }
  }
  
  @media (max-width: 680px) {
    .nav {
      min-height: 68px;
    }
  
    .brand {
      min-width: auto;
    }
  
    .brand-copy,
    .nav-links {
      display: none;
    }
  
    .brand-logo-wrap {
      width: 92px;
      height: 50px;
    }
  
    .hero {
      padding-top: 36px;
    }
  
    .hero-logo {
      height: 106px;
    }
  
    .hero-stats,
    .product-grid,
    .checkout-form {
      grid-template-columns: 1fr;
    }
  
    .checkout-panel {
      padding: 18px;
    }
  
    .checkout-row {
      align-items: flex-start;
      flex-direction: column;
      gap: 4px;
    }
  
    .checkout-row strong {
      text-align: left;
    }
  
    .hero-art,
    .hero-art img {
      min-height: 320px;
    }
  
    .product-card {
      min-height: auto;
    }
  
    .card-footer {
      grid-template-columns: 1fr 1fr;
    }
  
    .price {
      grid-column: 1 / -1;
    }
  
    .footer-inner {
      display: grid;
    }
  }
  