    :root {
      --bg:      #1a1714;
      --bg2:     #221e1b;
      --surface: #2a2522;
      --border:  #3d3733;
      --text:    #fafaf9;
      --muted:   #78716c;
      --muted2:  #a8a29e;
      --orange:  #f97316;
      --orange2: #fb923c;
      --green:   #22c55e;
    }
 
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
    html { scroll-behavior: smooth; }
 
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
    }
 
    /* ── NOISE TEXTURE ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }
 
    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(26,23,20,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
 
    .logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 26px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
 
    .logo span { color: var(--orange); }
 
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
 
    .nav-links a {
      color: var(--muted2);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: color 0.15s;
    }
 
    .nav-links a:hover { color: var(--text); }
 
    .nav-cta {
      background: var(--orange);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 8px;
      font-weight: 700 !important;
      transition: all 0.15s !important;
      box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }
 
    .nav-cta:hover {
      background: var(--orange2) !important;
      transform: translateY(-1px);
    }
 
    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 24px 80px;
      position: relative;
    }
 
    .hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -60%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .hero-inner {
      max-width: 800px;
      position: relative;
      z-index: 1;
    }
 
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(249,115,22,0.1);
      border: 1px solid rgba(249,115,22,0.3);
      color: var(--orange);
      padding: 6px 16px;
      border-radius: 20px;
      font-family: 'DM Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease forwards;
      opacity: 0;
    }
 
    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }
 
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }
 
    h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(52px, 10vw, 96px);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -1px;
      margin-bottom: 24px;
      animation: fadeUp 0.6s ease 0.1s forwards;
      opacity: 0;
    }
 
    h1 em {
      font-style: normal;
      color: var(--orange);
      display: block;
    }
 
    .hero-sub {
      font-size: 18px;
      color: var(--muted2);
      max-width: 560px;
      margin: 0 auto 40px;
      line-height: 1.6;
      font-weight: 500;
      animation: fadeUp 0.6s ease 0.2s forwards;
      opacity: 0;
    }
 
    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.6s ease 0.3s forwards;
      opacity: 0;
    }
 
    .btn-primary {
      background: var(--orange);
      color: #fff;
      padding: 16px 32px;
      border-radius: 10px;
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      font-weight: 800;
      text-decoration: none;
      transition: all 0.15s;
      box-shadow: 0 4px 20px rgba(249,115,22,0.35);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
 
    .btn-primary:hover {
      background: var(--orange2);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(249,115,22,0.4);
    }
 
    .btn-secondary {
      background: transparent;
      color: var(--text);
      padding: 16px 32px;
      border-radius: 10px;
      font-family: 'Barlow', sans-serif;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid var(--border);
      transition: all 0.15s;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
 
    .btn-secondary:hover {
      border-color: var(--muted2);
      transform: translateY(-2px);
    }
 
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 28px 40px;
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }
 
    .stat-item {
      text-align: center;
    }
 
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 42px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 4px;
    }
 
    .stat-label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
 
    /* ── SECTIONS ── */
    section {
      padding: 100px 24px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    .section-label {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
 
    .section-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--orange);
    }
 
    h2 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(36px, 6vw, 60px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: -0.5px;
      margin-bottom: 16px;
    }
 
    h2 span { color: var(--orange); }
 
    .section-desc {
      font-size: 17px;
      color: var(--muted2);
      max-width: 560px;
      line-height: 1.6;
      font-weight: 500;
      margin-bottom: 60px;
    }
 
    /* ── FEATURES GRID ── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 16px;
    }
 
    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      transition: all 0.2s;
    }
 
    .feature-card:hover {
      border-color: var(--orange);
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(249,115,22,0.1);
    }
 
    .feature-icon {
      font-size: 32px;
      margin-bottom: 16px;
      display: block;
    }
 
    .feature-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 0.3px;
    }
 
    .feature-desc {
      font-size: 14px;
      color: var(--muted2);
      line-height: 1.6;
      font-weight: 500;
    }
 
    /* ── HOW IT WORKS ── */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 680px;
    }
 
    .step {
      display: flex;
      gap: 24px;
      position: relative;
      padding-bottom: 40px;
    }
 
    .step:last-child { padding-bottom: 0; }
 
    .step-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
    }
 
    .step-num {
      width: 44px;
      height: 44px;
      background: var(--orange);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 900;
      color: #fff;
      flex-shrink: 0;
    }
 
    .step-line {
      width: 2px;
      flex: 1;
      background: var(--border);
      margin-top: 8px;
    }
 
    .step:last-child .step-line { display: none; }
 
    .step-content { padding-top: 8px; }
 
    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
 
    .step-desc {
      font-size: 15px;
      color: var(--muted2);
      line-height: 1.6;
      font-weight: 500;
    }
 
    /* ── PRICING ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 16px;
      max-width: 900px;
    }
 
    .pricing-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      position: relative;
    }
 
    .pricing-card.featured {
      border-color: var(--orange);
      background: rgba(249,115,22,0.05);
    }
 
    .featured-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: #fff;
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 14px;
      border-radius: 20px;
      white-space: nowrap;
    }
 
    .plan-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted2);
      margin-bottom: 12px;
    }
 
    .plan-price {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 56px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 4px;
    }
 
    .plan-price sup {
      font-size: 24px;
      vertical-align: top;
      margin-top: 10px;
      display: inline-block;
    }
 
    .plan-period {
      font-size: 13px;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 28px;
    }
 
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }
 
    .plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: var(--muted2);
    }
 
    .plan-features li::before {
      content: '✓';
      color: var(--green);
      font-weight: 800;
      flex-shrink: 0;
    }
 
    .plan-btn {
      display: block;
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      text-align: center;
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all 0.15s;
    }
 
    .plan-btn-primary {
      background: var(--orange);
      color: #fff;
      box-shadow: 0 4px 16px rgba(249,115,22,0.3);
    }
 
    .plan-btn-primary:hover { background: var(--orange2); }
 
    .plan-btn-secondary {
      background: var(--bg2);
      color: var(--text);
      border: 1px solid var(--border);
    }
 
    .plan-btn-secondary:hover { border-color: var(--muted2); }
 
    /* ── SMS DISCLOSURE ── */
    .sms-section {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 60px 24px;
    }
 
    .sms-inner {
      max-width: 800px;
      margin: 0 auto;
    }
 
    .sms-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
 
    .sms-text {
      font-size: 15px;
      color: var(--muted2);
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 16px;
    }
 
    .sms-keywords {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 20px;
    }
 
    .keyword-pill {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 8px;
      font-family: 'DM Mono', monospace;
      font-size: 13px;
      font-weight: 500;
    }
 
    .keyword-pill strong { color: var(--orange); }
 
    /* ── CTA ── */
    .cta-section {
      text-align: center;
      padding: 100px 24px;
      position: relative;
    }
 
    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 500px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .cta-inner { position: relative; z-index: 1; }
 
    .cta-inner h2 { margin-bottom: 16px; }
 
    .cta-inner p {
      font-size: 17px;
      color: var(--muted2);
      margin-bottom: 40px;
      font-weight: 500;
    }
 
    /* ── FOOTER ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 40px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
 
    .footer-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
    }
 
    .footer-logo span { color: var(--orange); }
 
    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
      flex-wrap: wrap;
    }
 
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      transition: color 0.15s;
    }
 
    .footer-links a:hover { color: var(--text); }
 
    .footer-copy {
      color: var(--muted);
      font-size: 12px;
      font-family: 'DM Mono', monospace;
    }
 
    /* ── MOBILE ── */
    @media (max-width: 768px) {
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .nav-cta {
      display: block !important;
      padding: 8px 16px;
      font-size: 13px;
    }
      .stats-bar { gap: 32px; padding: 28px 20px; }
      section { padding: 70px 20px; }
      footer { padding: 30px 20px; flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
