    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0e0d0b;
      --white: #f5f2eb;
      --orange: #e8510a;
      --orange-light: #ff6b2b;
      --yellow: #f5c842;
      --gray: #2a2825;
      --gray-mid: #4a4844;
      --gray-light: #b8b4ae;
      --border: rgba(245,242,235,0.1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 48px;
      background: rgba(14,13,11,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 22px;
      letter-spacing: 2px;
      color: var(--white);
      text-decoration: none;
    }

    .logo span { color: var(--orange); }

    nav ul { list-style: none; display: flex; gap: 36px; }
    nav ul a {
      color: var(--white);
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    nav ul a:hover { color: var(--white); }

    .nav-cta {
      background: var(--orange);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--orange-light) !important; color: var(--white) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232,81,10,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(245,200,66,0.05) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute; inset: 0; opacity: 0.04;
      background-image:
        linear-gradient(var(--white) 1px, transparent 1px),
        linear-gradient(90deg, var(--white) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1200px; margin: 0 auto; width: 100%;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(232,81,10,0.15);
      border: 1px solid rgba(232,81,10,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 13px; font-weight: 500;
      color: var(--orange-light);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge::before {
      content: ''; width: 6px; height: 6px;
      background: var(--orange); border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(64px, 8vw, 110px);
      line-height: 0.95;
      letter-spacing: 1px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    h1 .accent { color: var(--orange); }
    h1 .line2 { display: block; }

    .hero-sub {
      margin-top: 28px;
      font-size: 18px;
      color: var(--gray-light);
      max-width: 480px;
      line-height: 1.7;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 16px; flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      padding: 16px 36px;
      border-radius: 4px;
      font-size: 16px; font-weight: 500;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

    .btn-ghost {
      border: 1px solid var(--border);
      color: var(--gray-light);
      padding: 16px 32px;
      border-radius: 4px;
      font-size: 16px; font-weight: 400;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--gray-light); color: var(--white); }

    /* ── INVOICE MOCKUP ── */
    .hero-visual {
      animation: fadeIn 0.8s 0.3s ease both;
      position: relative;
    }

    .invoice-card {
      background: var(--gray);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .invoice-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--orange), var(--yellow));
    }

    .inv-header {
      display: flex; justify-content: space-between; align-items: flex-start;
      margin-bottom: 28px;
    }

    .inv-company { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; }
    .inv-company small { display: block; font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--gray-light); font-weight: 400; letter-spacing: 0; margin-top: 2px; }

    .inv-status {
      background: rgba(245,200,66,0.15);
      border: 1px solid rgba(245,200,66,0.3);
      color: var(--yellow);
      font-size: 11px; font-weight: 500;
      padding: 4px 12px; border-radius: 100px;
      letter-spacing: 0.5px;
    }

    .inv-divider { height: 1px; background: var(--border); margin: 20px 0; }

    .inv-row {
      display: flex; justify-content: space-between;
      font-size: 13px; padding: 6px 0;
    }
    .inv-row .label { color: var(--gray-light); }
    .inv-row .value { font-weight: 500; }

    .inv-total-row {
      display: flex; justify-content: space-between;
      padding: 14px 0 0;
      font-size: 22px; font-family: 'Bebas Neue', sans-serif;
      letter-spacing: 1px;
    }
    .inv-total-row .amount { color: var(--orange); font-size: 28px; }

    .inv-pay-btn {
      display: block; width: 100%;
      background: var(--orange); color: var(--white);
      text-align: center; padding: 14px;
      border-radius: 6px; margin-top: 20px;
      font-size: 15px; font-weight: 500;
      text-decoration: none;
      transition: background 0.2s;
    }
    .inv-pay-btn:hover { background: var(--orange-light); }

    .float-badge {
      position: absolute; bottom: -12px; right: 24px;
      background: var(--yellow); color: var(--black);
      font-size: 12px; font-weight: 600;
      padding: 6px 14px; border-radius: 100px;
      white-space: nowrap;
    }

    /* ── HOW IT WORKS ── */
    .section { padding: 100px 48px; max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 12px; font-weight: 500;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--orange); margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(42px, 5vw, 64px);
      line-height: 1;
      letter-spacing: 1px;
    }

    .steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 60px;
    }

    .step {
      background: var(--gray);
      padding: 40px 36px;
      border: 1px solid var(--border);
      position: relative;
      transition: border-color 0.2s;
    }
    .step:first-child { border-radius: 12px 0 0 12px; }
    .step:last-child { border-radius: 0 12px 12px 0; }
    .step:hover { border-color: rgba(232,81,10,0.3); }

    .step-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 72px; line-height: 1;
      color: rgba(232,81,10,0.2);
      margin-bottom: 16px;
    }

    .step h3 {
      font-size: 20px; font-weight: 500;
      margin-bottom: 12px;
    }

    .step p { font-size: 15px; color: var(--gray-light); line-height: 1.7; }

    /* ── FEATURES ── */
    .features-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1px; margin-top: 60px;
      border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
    }

    .feature {
      background: var(--gray);
      padding: 40px;
      border: 1px solid transparent;
      transition: background 0.2s;
    }
    .feature:hover { background: #302e2a; }

    .feature-icon {
      width: 44px; height: 44px;
      background: rgba(232,81,10,0.12);
      border: 1px solid rgba(232,81,10,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; margin-bottom: 20px;
    }

    .feature h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
    .feature p { font-size: 14px; color: var(--gray-light); line-height: 1.7; }

    /* ── PRICING ── */
    .pricing-section {
      padding: 100px 48px;
      background: var(--gray);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .pricing-inner { max-width: 1000px; margin: 0 auto; }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; margin-top: 60px;
    }

    .plan {
      background: var(--black);
      padding: 40px 36px;
      border: 1px solid var(--border);
      position: relative;
      transition: border-color 0.2s;
    }
    .plan:first-child { border-radius: 12px 0 0 12px; }
    .plan:last-child { border-radius: 0 12px 12px 0; }

    .plan.featured {
      background: var(--gray);
      border-color: var(--orange);
      transform: scaleY(1.02);
    }

    .plan-tag {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--orange); color: var(--white);
      font-size: 11px; font-weight: 600;
      padding: 4px 14px; border-radius: 100px;
      letter-spacing: 0.5px; white-space: nowrap;
    }

    .plan-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 24px; letter-spacing: 1px;
      color: var(--gray-light); margin-bottom: 20px;
    }

    .plan-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 60px; line-height: 1; letter-spacing: -1px;
    }

    .plan-price span { font-size: 20px; color: var(--gray-light); font-family: 'DM Sans', sans-serif; }

    .plan-period { font-size: 13px; color: var(--gray-light); margin-top: 4px; }

    .plan-divider { height: 1px; background: var(--border); margin: 28px 0; }

    .plan-features { list-style: none; }
    .plan-features li {
      font-size: 14px; color: var(--gray-light);
      padding: 7px 0; display: flex; align-items: center; gap: 10px;
    }
    .plan-features li::before {
      content: '✓'; color: var(--orange); font-weight: 600;
      flex-shrink: 0;
    }
    .plan-features li.off::before { content: '×'; color: var(--gray-mid); }
    .plan-features li.off { opacity: 0.5; }

    .plan-btn {
      display: block; width: 100%;
      text-align: center; padding: 13px;
      border-radius: 4px; margin-top: 28px;
      font-size: 14px; font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }
    .plan-btn.solid { background: var(--orange); color: var(--white); }
    .plan-btn.solid:hover { background: var(--orange-light); }
    .plan-btn.outline {
      border: 1px solid var(--border); color: var(--gray-light);
    }
    .plan-btn.outline:hover { border-color: var(--gray-light); color: var(--white); }

    /* ── TESTIMONIALS ── */
    .avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--orange); display: flex; align-items: center; justify-content: center;
      font-family: 'Bebas Neue', sans-serif; font-size: 16px;
    }

    /* ── CTA BANNER ── */
    .cta-banner {
      padding: 100px 48px;
      text-align: center;
      position: relative; overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(232,81,10,0.1) 0%, transparent 70%);
    }

    .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

    .cta-banner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(48px, 6vw, 80px);
      line-height: 1;
      margin-bottom: 20px;
    }

    .cta-banner p { font-size: 18px; color: var(--gray-light); margin-bottom: 44px; }

    /* ── FOOTER ── */
    footer {
      padding: 40px 48px;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }

    footer p { font-size: 13px; color: var(--gray-light); }
    footer ul { list-style: none; display: flex; gap: 28px; }
    footer ul a { color: var(--gray-light); text-decoration: none; font-size: 13px; }
    footer ul a:hover { color: var(--white); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 14px 16px; }
      nav ul { gap: 8px; }
      nav ul a { font-size: 13px; }
      .logo { font-size: 18px; }
      .nav-cta { padding: 8px 14px; font-size: 13px !important; }
      .hide-mobile { display: none; }
      .hero { padding: 100px 24px 60px; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .section { padding: 70px 24px; }
      .steps { grid-template-columns: 1fr; }
      .step { border-radius: 0; }
      .step:first-child { border-radius: 12px 12px 0 0; }
      .step:last-child { border-radius: 0 0 12px 12px; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-section { padding: 70px 24px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .plan { border-radius: 0; }
      .plan:first-child { border-radius: 12px 12px 0 0; }
      .plan:last-child { border-radius: 0 0 12px 12px; }
      .plan.featured { transform: none; }
      .cta-banner { padding: 70px 24px; }
      .cta-banner a.btn-primary { font-size: 15px !important; padding: 14px 24px !important; }
      footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
    }
    /* ── SKIP LINK ── */
    .skip-link {
      position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
    }
    .skip-link:focus {
      position: fixed; top: 12px; left: 12px; width: auto; height: auto;
      background: var(--orange); color: var(--white);
      padding: 8px 16px; border-radius: 4px; z-index: 9999;
      font-weight: 600; font-size: 14px; text-decoration: none;
    }

    /* ── FOCUS & MOTION ── */
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
      border-radius: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
    }


    /* ── Trade landing pages ───────────────────────────── */
    /* Reset the global fixed-nav styling — this is a breadcrumb, not the site nav.
       It stays a <nav> element for the landmark semantics screen readers expect. */
    .breadcrumb {
      position: static; display: block; height: auto;
      background: none; backdrop-filter: none; border-bottom: none;
      max-width: 1200px; margin: 0 auto; padding: 100px 24px 0;
      font-size: 13px; color: var(--gray-light);
    }
    .breadcrumb a { color: var(--gray-light); text-decoration: none; }
    .breadcrumb a:hover { color: var(--orange); }

    .trade-hero { max-width: 1200px; margin: 0 auto; padding: 32px 24px 56px; }
    .trade-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 6vw, 68px); line-height: 1.02; letter-spacing: 1px; margin-bottom: 20px; }
    .trade-hero h1 .accent { color: var(--orange); }
    .trade-hero .lede { font-size: 18px; line-height: 1.7; color: var(--gray-light); max-width: 680px; margin-bottom: 28px; }

    .prose { max-width: 760px; }
    .prose h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: 1px; margin: 48px 0 16px; }
    .prose h3 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; }
    .prose p { font-size: 16px; line-height: 1.8; color: var(--gray-light); margin-bottom: 16px; }
    .prose ul { margin: 0 0 20px 20px; }
    .prose li { font-size: 16px; line-height: 1.8; color: var(--gray-light); margin-bottom: 8px; }
    .prose strong { color: var(--white); font-weight: 600; }
    .prose a { color: var(--orange); }

    .lineitem-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 15px; }
    .lineitem-table th { text-align: left; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-light); border-bottom: 1px solid var(--border); padding: 10px 12px; }
    .lineitem-table td { padding: 12px; border-bottom: 1px solid var(--border); color: var(--gray-light); }
    .lineitem-table td:last-child { text-align: right; color: var(--white); font-weight: 600; white-space: nowrap; }
    .table-scroll { overflow-x: auto; }

    .faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
    .faq-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
    .faq-item p { font-size: 15px; line-height: 1.75; color: var(--gray-light); margin: 0; }

    .trade-links { max-width: 1200px; margin: 0 auto; padding: 56px 24px; border-top: 1px solid var(--border); }
    .trade-links-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .trade-links-grid a { display: inline-block; padding: 9px 16px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; color: var(--gray-light); text-decoration: none; transition: all .2s; }
    .trade-links-grid a:hover { border-color: var(--orange); color: var(--orange); }
