.elementor-2227 .elementor-element.elementor-element-07fe079{--display:flex;--min-height:100vh;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2227 .elementor-element.elementor-element-57d0f27{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2227 .elementor-element.elementor-element-a83c05f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-2227 .elementor-element.elementor-element-57d0f27{--width:50%;}.elementor-2227 .elementor-element.elementor-element-a83c05f{--width:50%;}}/* Start custom CSS for container, class: .elementor-element-07fe079 *//* Base Variables (Consistent with previous pages) */
    :root{
      --bg: #050505;
      --surface: #121212;
      --surface-highlight: #1A1A1A;
      --text: #EDEDED;
      --muted: #A1A1AA;
      --accent: #CFFF5E; 
      --radius: 12px;
      --border: 1px solid rgba(255,255,255,.08);
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', monospace;
      --max: 1140px;
    }

    *{ box-sizing: border-box; }
    
    body{
      margin: 0; background-color: var(--bg);
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 40px 40px;
      color: var(--text); font-family: var(--font-sans); line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Page Specific Styles */
    .container{ max-width: var(--max); margin: 0 auto; padding: 0 24px; }
    .mono{ font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.85rem; }
    
    /* Layout */
    .split-layout{
      display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh;
    }
    @media (max-width: 900px){ .split-layout{ grid-template-columns: 1fr; min-height: auto; } }

    /* Left Side: The Value Prop */
    .content-side{
      padding: 80px 60px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative;
    }
    @media (max-width: 900px){ .content-side{ padding: 60px 24px; } }

    h1{ font-size: clamp(2.5rem, 4vw, 3.8rem); line-height: 1.1; margin: 16px 0; letter-spacing: -0.03em; color: #fff; }
    p{ color: var(--muted); font-size: 1.1rem; max-width: 50ch; margin-bottom: 32px; }

    /* The "Roadmap" Visual Cards */
    .preview-list{ display: grid; gap: 16px; margin-top: 40px; }
    .preview-item{
      display: flex; align-items: center; gap: 16px;
      padding: 16px; border: var(--border); border-radius: 8px;
      background: rgba(255,255,255,0.02);
    }
    .preview-icon{
      width: 32px; height: 32px; border-radius: 6px; 
      background: rgba(207,255,94,0.1); color: var(--accent);
      display: grid; place-items: center;
    }

    /* Right Side: The Scanner Form */
    .form-side{
      background: var(--surface); border-left: var(--border);
      padding: 80px 60px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    @media (max-width: 900px){ .form-side{ padding: 60px 24px; border-left: none; border-top: var(--border); } }

    /* The "Scanner" aesthetic */
    .scan-line{
      position: absolute; top: 0; left: 0; width: 100%; height: 2px;
      background: var(--accent); box-shadow: 0 0 15px var(--accent);
      animation: scan 4s infinite linear; opacity: 0.5; pointer-events: none;
    }
    @keyframes scan { 0%{top:0;} 50%{top:100%;} 100%{top:0;} }

    .form-header{ margin-bottom: 32px; }
    .form-header h3{ font-size: 1.5rem; margin-bottom: 8px; }
    .form-header span{ color: var(--accent); font-family: var(--font-mono); font-size: 0.8rem; }

    /* CF7 Wrapper for this specific page */
    .roadmap-form-wrapper input[type="text"],
    .roadmap-form-wrapper input[type="email"],
    .roadmap-form-wrapper input[type="url"] {
      background: #000; border: 1px solid rgba(255,255,255,0.15);
      padding: 16px; border-radius: 6px; width: 100%; color: #fff;
      font-family: var(--font-mono); font-size: 0.9rem; margin-bottom: 16px;
    }
    .roadmap-form-wrapper input:focus{
      outline: none; border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(207,255,94,0.05);
    }
    .roadmap-form-wrapper label{
      display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em;
      color: #888; margin-bottom: 8px; font-family: var(--font-mono);
    }

    .btn-glow{
      width: 100%; padding: 16px; background: var(--accent); color: #000;
      font-weight: 700; border: none; border-radius: 6px; cursor: pointer;
      box-shadow: 0 0 20px rgba(207,255,94,0.15); transition: 0.2s;
      font-size: 1rem;
    }
    .btn-glow:hover{ box-shadow: 0 0 30px rgba(207,255,94,0.3); transform: translateY(-1px); }

    /* Nav */
    .nav-abs{ position: absolute; top: 30px; left: 60px; z-index: 10; font-weight: 800; font-size: 1.2rem; }
    @media (max-width: 900px){ .nav-abs{ left: 24px; } }/* End custom CSS */