/* ─── TOKENS ─── */
    :root {
      --orange:       #FF5733;
      --orange-bright:#FF6B4A;
      --orange-glow:  rgba(255,87,51,0.35);
      --bg:           #0D0F12;
      --bg-card:      #141720;
      --bg-panel:     #1A1E27;
      --border:       rgba(255,255,255,0.07);
      --border-hot:   rgba(255,87,51,0.5);
      --text:         #F0F2F5;
      --text-muted:   #8A94A6;
      --slate:        #2E3441;
      --green:        #22C55E;
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.5;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ─── NOISE OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }

    /* ─── UTILITY ─── */
    .container { max-width: 960px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
    .tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--orange);
      background: rgba(255,87,51,0.12);
      border: 1px solid var(--border-hot);
      padding: 4px 12px;
      border-radius: 2px;
    }

    /* ─── HEADER ─── */
    header {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(13,15,18,0.92);
      backdrop-filter: blur(12px);
      z-index: 100;
    }
    .logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .logo span { color: var(--orange); }
    .header-cta {
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 10px 20px;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
    }
    .header-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }

    /* ─── HERO ─── */
    #hero {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,87,51,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,87,51,0.04) 1px, transparent 1px);
      background-size: 40px 40px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
      pointer-events: none;
    }
    .hero-eyebrow { margin-bottom: 24px; }
    .hero-headline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(48px, 9vw, 96px);
      font-weight: 900;
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .hero-headline .line-orange { color: var(--orange); display: block; }
    .hero-headline .line-dim { color: rgba(240,242,245,0.45); display: block; font-size: 0.7em; font-weight: 600; letter-spacing: 0.05em; }
    .hero-subhead {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--text-muted);
      max-width: 560px;
      margin: 0 auto 16px;
      font-weight: 500;
    }
    .business-name-highlight {
      color: var(--orange);
      font-weight: 700;
    }
    .hero-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .proof-item .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      box-shadow: 0 0 6px var(--green);
    }

    /* ─── DEMO BUTTON ─── */
    .demo-btn-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }
    #demo-btn {
      position: relative;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(22px, 4vw, 32px);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 28px 52px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 0 40px var(--orange-glow), 0 4px 24px rgba(0,0,0,0.5);
      animation: pulse-glow 2.5s ease-in-out infinite;
      overflow: hidden;
    }
    #demo-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
      transform: skewX(-20deg);
      animation: shimmer 3s ease-in-out infinite;
    }
    #demo-btn:hover {
      transform: scale(1.04) translateY(-2px);
      box-shadow: 0 0 60px var(--orange-glow), 0 8px 32px rgba(0,0,0,0.6);
    }
    #demo-btn:active { transform: scale(0.98); }
    #demo-btn.active {
      background: #1a6639;
      box-shadow: 0 0 40px rgba(34,197,94,0.4);
      animation: none;
    }
    .demo-hint {
      font-size: 13px;
      color: var(--text-muted);
      text-align: center;
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 30px var(--orange-glow), 0 4px 24px rgba(0,0,0,0.5); }
      50%       { box-shadow: 0 0 60px rgba(255,87,51,0.55), 0 4px 24px rgba(0,0,0,0.5); }
    }
    @keyframes shimmer {
      0%   { left: -100%; }
      60%, 100% { left: 160%; }
    }

    /* ─── PROBLEM / PAIN STRIP ─── */
    #pain {
      padding: 60px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2px;
    }
    .pain-item {
      background: var(--bg-card);
      padding: 28px 24px;
      position: relative;
    }
    .pain-item::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 100%;
      background: var(--border);
    }
    .pain-stat {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 8px;
    }
    .pain-label {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ─── HOW IT WORKS ─── */
    #how {
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 52px;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(36px, 6vw, 60px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      margin-top: 12px;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }
    .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 32px 28px;
      position: relative;
      transition: border-color 0.2s, transform 0.2s;
    }
    .step-card:hover {
      border-color: var(--border-hot);
      transform: translateY(-4px);
    }
    .step-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 72px;
      font-weight: 900;
      color: rgba(255,87,51,0.12);
      line-height: 1;
      position: absolute;
      top: 16px;
      right: 20px;
    }
    .step-icon {
      font-size: 32px;
      margin-bottom: 16px;
    }
    .step-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      margin-bottom: 8px;
    }
    .step-body {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ─── PRICING ─── */
    #pricing {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }
    .pricing-card {
      max-width: 560px;
      margin: 0 auto;
      background: var(--bg-panel);
      border: 2px solid var(--border-hot);
      border-radius: 8px;
      padding: 52px 48px;
      text-align: center;
      position: relative;
      box-shadow: 0 0 60px rgba(255,87,51,0.12);
    }
    .pricing-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 2px;
      white-space: nowrap;
    }
    .pricing-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 48px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
    }
    .pricing-tagline {
      color: var(--text-muted);
      font-size: 15px;
      margin-bottom: 32px;
    }
    .price-display {
      margin-bottom: 8px;
    }
    .price-trial {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--green);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
    }
    .price-main {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 80px;
      font-weight: 900;
      line-height: 1;
      color: var(--text);
    }
    .price-main sup { font-size: 36px; vertical-align: super; }
    .price-main sub { font-size: 22px; color: var(--text-muted); font-weight: 600; }
    .price-cancel {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 36px;
    }
    .pricing-features {
      list-style: none;
      text-align: left;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
    }
    .pricing-features li .check {
      color: var(--green);
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    #activate-btn {
      display: block;
      width: 100%;
      background: var(--orange);
      color: #fff;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 26px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 22px 32px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-align: center;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(255,87,51,0.4);
    }
    #activate-btn:hover {
      background: var(--orange-bright);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255,87,51,0.55);
    }
    .pricing-guarantee {
      margin-top: 20px;
      font-size: 12px;
      color: var(--text-muted);
    }

    /* ─── SETUP / ACTIVATION ─── */
    #setup {
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }
    .setup-box {
      max-width: 680px;
      margin: 0 auto;
    }
    .setup-step-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .setup-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(34px, 6vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 16px;
    }
    .setup-title span { color: var(--orange); }
    .setup-desc {
      font-size: 16px;
      color: var(--text-muted);
      margin-bottom: 40px;
      max-width: 520px;
      line-height: 1.6;
    }
    .carrier-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
      margin-bottom: 24px;
    }
    .carrier-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 24px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      color: var(--text);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .carrier-btn:hover {
      border-color: var(--border-hot);
      background: rgba(255,87,51,0.06);
      transform: translateY(-3px);
    }
    .carrier-emoji { font-size: 28px; }
    .carrier-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .carrier-code {
      font-size: 11px;
      color: var(--text-muted);
      font-family: monospace;
      background: var(--slate);
      padding: 2px 6px;
      border-radius: 2px;
      text-align: center;
    }
    .carrier-btn.other-btn {
      border-color: var(--border-hot);
      background: rgba(255,87,51,0.04);
    }
    .carrier-btn.other-btn .carrier-name { color: var(--orange); }
    .setup-note {
      background: var(--bg-card);
      border-left: 3px solid var(--orange);
      padding: 16px 20px;
      font-size: 14px;
      color: var(--text-muted);
      border-radius: 0 4px 4px 0;
      line-height: 1.6;
    }
    .setup-note strong { color: var(--text); }

    /* ─── FOOTER ─── */
    footer {
      padding: 32px 24px;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .footer-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 18px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .footer-logo span { color: var(--orange); }
    .footer-copy {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }
    .footer-sms {
      font-size: 11px;
      color: var(--text-muted);
      max-width: 480px;
      margin: 0 auto 12px;
      line-height: 1.5;
      opacity: 0.7;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .footer-links a {
      font-size: 12px;
      color: var(--orange);
      text-decoration: none;
    }
    .footer-links a:hover { text-decoration: underline; }
    .footer-links span {
      font-size: 12px;
      color: var(--text-muted);
    }
    .footer-entity {
      font-size: 11px;
      color: var(--text-muted);
      opacity: 0.6;
      margin-top: 4px;
    }

    /* ─── VAPI STATUS BAR ─── */
    #vapi-status {
      display: none;
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg-card);
      border: 1px solid var(--border-hot);
      border-radius: 40px;
      padding: 12px 24px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text);
      z-index: 999;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
      animation: slide-up 0.3s ease;
      gap: 10px;
      align-items: center;
      white-space: nowrap;
    }
    #vapi-status.show { display: flex; }
    .status-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      animation: blink 1s ease-in-out infinite;
    }
    #vapi-stop {
      margin-left: 10px;
      background: rgba(255,87,51,0.15);
      border: 1px solid var(--border-hot);
      color: var(--orange);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      cursor: pointer;
    }
    @keyframes slide-up {
      from { opacity: 0; transform: translate(-50%, 16px); }
      to   { opacity: 1; transform: translate(-50%, 0); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.3; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 600px) {
      .pricing-card { padding: 40px 28px; }
      #demo-btn { padding: 24px 32px; }
      .carrier-grid { grid-template-columns: repeat(2, 1fr); }
    }