:root {
    --black: #0A0A0A;
    --off-black: #111111;
    --charcoal: #1E1E1E;
    --gold: #D4920A;
    --gold-bright: #F5A800;
    --white: #F5F2EE;
    --pure: #FFFFFF;
    --mid: #888888;
    --light: #CCCCCC;
    --rule: #2A2A2A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    border-bottom: 1px solid var(--rule);
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(8px);
  }

  .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-link {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-link:hover { color: var(--white); }

  .nav-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold-bright);
    padding: 9px 20px;
    text-decoration: none;
    transition: all 0.15s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .nav-cta:hover { background: var(--white); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 420px;
    position: relative;
    overflow: hidden;
  }

  /* big geometric shapes */
  .hero::before {
    content: '';
    position: absolute;
    top: -200px; right: 380px;
    width: 600px; height: 600px;
    border: 1px solid rgba(212, 146, 10, 0.08);
    transform: rotate(15deg);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    border: 1px solid rgba(212, 146, 10, 0.05);
    transform: rotate(30deg);
    pointer-events: none;
  }

  .hero-left {
    padding: 140px 64px 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--rule);
    position: relative;
  }

  /* vertical running text */
  .hero-vertical {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(212, 146, 10, 0.3);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .hero-tag::after {
    content: '';
    display: block;
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(72px, 8vw, 118px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 40px;
  }

  .hero-title .stroke {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
  }

  .hero-title .gold { color: var(--gold-bright); }

  .hero-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 48px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
  }

  .h-stat {
    padding: 20px 28px;
    border: 1px solid var(--rule);
    border-right: none;
    position: relative;
  }

  .h-stat:last-child { border-right: 1px solid var(--rule); }

  .h-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
    display: block;
  }

  .h-stat-num em {
    font-style: normal;
    color: var(--gold-bright);
  }

  .h-stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--mid);
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
  }

  .hero-action {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
  }

    .hero-points {
      list-style: none;
      margin: 0 0 48px 0;
      padding: 0;
      display: grid;
      gap: 14px;
      max-width: 480px;
    }

    .hero-points li {
      position: relative;
      padding: 12px 14px 12px 42px;
      font-size: 15px;
      line-height: 1.6;
      color: var(--white);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--rule);
    }

    .hero-points li::before {
      content: '✓';
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Space Mono', monospace;
      font-size: 14px;
      color: var(--gold-bright);
    }

  .btn-block {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold-bright);
    padding: 16px 36px;
    text-decoration: none;
    transition: all 0.15s;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    display: inline-block;
  }

  .btn-block:hover { background: var(--white); transform: translateY(-2px); }

  .btn-outline {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .btn-outline:hover { color: var(--white); }

  /* FORM PANEL */
  .hero-right {
    background: var(--charcoal);
    padding: 100px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--rule);
    position: relative;
  }

  .form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }

  .form-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
  }

  .form-header p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
  }

  .fg {
    margin-bottom: 14px;
  }

  .fg label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--rule);
    border-bottom: 1px solid rgba(212, 146, 10, 0.3);
    padding: 11px 14px;
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
  }

  .fg input::placeholder, .fg textarea::placeholder { color: rgba(136,136,136,0.4); }
  .fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.06);
  }

  .fg select option { background: var(--charcoal); }
  .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .form-btn {
    width: 100%;
    background: var(--gold-bright);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    padding: 16px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.15s;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }

  .form-btn:hover { background: var(--white); }

  .form-small {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(136,136,136,0.4);
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
  }

  /* MARQUEE */
  .marquee-wrap {
    background: var(--gold-bright);
    overflow: hidden;
    padding: 14px 0;
    border-top: none;
    border-bottom: none;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
  }

  .marquee-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .marquee-item::after {
    content: '◆';
    font-size: 8px;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* PROBLEM SECTION */
  .problem-section {
    padding: 120px 64px;
    background: var(--off-black);
    position: relative;
  }

  .section-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 140px;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 40px;
    right: 64px;
    line-height: 1;
    letter-spacing: -4px;
    pointer-events: none;
    user-select: none;
  }

  .section-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 72px;
  }

  .section-num-small {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
    padding-top: 6px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(44px, 5vw, 72px);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.5px;
    color: var(--white);
  }

  .section-title .stroke {
    -webkit-text-stroke: 1px rgba(255,255,255,0.3);
    color: transparent;
  }

  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
  }

  .problem-card {
    background: var(--off-black);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }

  .problem-card:hover { background: var(--charcoal); }

  .problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--gold-bright);
    transition: height 0.3s;
  }

  .problem-card:hover::before { height: 100%; }

  .p-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: -16px;
  }

  .problem-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
  }

  .problem-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
  }

  /* TIERS */
  .tiers-section {
    background: var(--off-black);
    padding: 120px 64px;
    position: relative;
  }

  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    margin-top: 72px;
  }

  .tier-card {
    background: var(--off-black);
    padding: 24px 24px;
    position: relative;
    transition: background 0.2s;
  }

  .tier-card:hover { background: var(--charcoal); }

  .tier-card.featured {
    background: var(--charcoal);
    outline: 1px solid var(--gold);
    outline-offset: -1px;
    z-index: 2;
  }

  .tier-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
  }

  .tier-card:not(.featured) .tier-tag { color: var(--mid); }
  .tier-card.featured .tier-tag { color: var(--gold-bright); }

  .tier-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
  }

  .tier-card.featured .tier-name {
    border-bottom-color: rgba(212, 146, 10, 0.2);
  }

  .tier-price-setup {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--mid);
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .tier-price-monthly {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }

  .tier-price-monthly span {
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--mid);
    letter-spacing: 0;
  }

  .tier-card.featured .tier-price-monthly { color: var(--gold-bright); }

  .tier-list {
    list-style: none;
    margin-bottom: 36px;
  }

  .tier-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    font-size: 13px;
    color: var(--mid);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    line-height: 1.5;
  }

  .tier-card.featured .tier-list li { color: var(--light); }

  .tier-list li::before {
    content: '—';
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .tier-btn {
    display: block;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px;
    text-decoration: none;
    transition: all 0.15s;
  }

  .tier-card:not(.featured) .tier-btn {
    border: 1px solid var(--rule);
    color: var(--mid);
  }

  .tier-card:not(.featured) .tier-btn:hover {
    border-color: var(--white);
    color: var(--white);
  }

  .tier-card.featured .tier-btn {
    background: var(--gold-bright);
    color: var(--black);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }

  .tier-card.featured .tier-btn:hover { background: var(--white); }

  /* WHY SECTION */
  .why-section {
    background: var(--black);
    padding: 120px 64px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--rule);
    margin-top: 72px;
  }

  .why-card {
    background: var(--black);
    padding: 48px 44px;
    transition: background 0.2s;
    position: relative;
  }

  .why-card:hover { background: var(--off-black); }

  .why-card-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 100px;
    color: rgba(212, 146, 10, 0.06);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
    pointer-events: none;
  }

  .why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--mid);
    font-weight: 300;
    position: relative;
    z-index: 1;
  }

  /* CONTACT SECTION */
  .contact-section {
    background: var(--charcoal);
    padding: 120px 64px;
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: start;
    border-top: 1px solid var(--rule);
  }

  .contact-left .section-header { margin-bottom: 40px; }

  .contact-left .section-title {
    font-size: clamp(44px, 5vw, 68px);
  }

  .contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 48px;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
  }

  .cd-icon {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--gold);
    width: 28px;
    flex-shrink: 0;
  }

  .cd-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 3px;
  }

  .cd-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
  }

  .contact-form {
    background: var(--off-black);
    border: 1px solid var(--rule);
    padding: 48px 40px;
  }

  .contact-form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
  }

  .contact-form-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
  }

  .contact-form-header p {
    font-size: 13px;
    color: var(--mid);
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 1px solid var(--rule);
    padding: 48px 64px;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
  }

  .footer-logo em {
    font-style: normal;
    color: var(--gold-bright);
  }

  .footer-nav {
    display: flex;
    gap: 32px;
  }

  .footer-nav a {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav a:hover { color: var(--white); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(136,136,136,0.3);
  }

  .footer-domain {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(212, 146, 10, 0.3);
  }

  /* ANIMATIONS */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag { animation: fadeIn 0.5s ease both; }
  .hero-title { animation: fadeIn 0.5s ease 0.1s both; }
  .hero-body { animation: fadeIn 0.5s ease 0.2s both; }
  .hero-stats { animation: fadeIn 0.5s ease 0.3s both; }
  .hero-action { animation: fadeIn 0.5s ease 0.35s both; }
  .hero-right { animation: fadeIn 0.5s ease 0.15s both; }

  @media (max-width: 1000px) {
    nav { padding: 0 24px; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 110px 32px 60px; border-right: none; border-bottom: 1px solid var(--rule); }
    .hero-right { padding: 60px 32px; width: 100%; box-sizing: border-box; overflow: hidden; }
    .hero-vertical { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .tiers-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .contact-section { grid-template-columns: 1fr; padding: 80px 32px; }
    .problem-section, .tiers-section, .why-section { padding: 80px 32px; }
    footer { padding: 40px 32px; }
    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  @media (max-width: 600px) {
      .nav-logo img {
          width: 120px;
          height: auto;
      }
      .fg-row { 
          grid-template-columns: 1fr; 
      }
  }

  @media (max-width: 600px) {
      .nav-logo img {
          width: 120px;
          height: auto;
      }

      .nav-link {
          display: none;
      }

      .nav-cta {
          font-size: 11px;
          padding: 8px 14px;
          letter-spacing: 1px;
      }
  }

  /* ============================================================ DEMO SECTION */
  .demo-section {
    background: var(--charcoal);
    padding: 100px 48px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .demo-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  .demo-desc {
    font-size: 15px; color: var(--mid); font-weight: 300;
    line-height: 1.8; margin-bottom: 32px;
  }

  .demo-trades { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }

  .demo-trade {
    display: flex; align-items: center; gap: 14px; padding: 14px 18px;
    background: rgba(255,255,255,0.03); border: 1px solid var(--rule);
    border-radius: 3px; font-size: 14px; color: var(--light); transition: all 0.2s;
  }

  .demo-trade.featured {
    border-color: rgba(212,146,10,0.4); background: rgba(212,146,10,0.06);
  }

  .demo-trade-icon { font-size: 20px; }
  .demo-trade-label { font-weight: 500; color: var(--white); }
  .demo-trade-sub {
    font-size: 12px; color: var(--gold); margin-left: auto;
    font-family: 'Space Mono', monospace; letter-spacing: 0.5px;
  }

  .demo-preview {
    background: rgba(255,255,255,0.02); border: 1px solid var(--rule);
    border-radius: 6px; overflow: hidden;
  }

  .demo-preview-bar {
    background: rgba(0,0,0,0.4); padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--rule);
  }

  .demo-dot {
    width: 10px; height: 10px; border-radius: 50%;
  }
  .demo-dot.red    { background: #E05555; }
  .demo-dot.yellow { background: #F0B429; }
  .demo-dot.green  { background: #2ECC71; }

  .demo-preview-url {
    font-family: 'Space Mono', monospace; font-size: 11px;
    color: var(--mid); margin-left: 6px; letter-spacing: 0.5px;
  }

  .demo-preview-content { padding: 28px; }

  .demo-preview-content h3 {
    font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800;
    color: var(--white); letter-spacing: 2px; margin-bottom: 4px;
  }

  .demo-preview-meta {
    font-size: 12px; color: var(--mid); font-weight: 300;
    margin-bottom: 20px; letter-spacing: 0.3px;
  }

  .demo-preview-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

  .demo-preview-feature {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--light); font-weight: 300;
  }

  .demo-preview-feature::before {
    content: '✓'; color: var(--gold); font-weight: 700;
    font-size: 11px; font-family: 'Space Mono', monospace; flex-shrink: 0;
  }

  .demo-btn {
    display: inline-block; background: var(--gold); color: var(--black);
    font-size: 13px; font-weight: 700; padding: 11px 22px; border-radius: 3px;
    text-decoration: none; letter-spacing: 0.5px; transition: background 0.2s;
    font-family: 'Barlow Condensed', sans-serif;
  }

  .demo-btn:hover { background: var(--gold-bright); }

  @media (max-width: 1000px) {
    .demo-inner { grid-template-columns: 1fr; gap: 48px; }
    .demo-section { padding: 80px 32px; }
  }
