
   
    /* HERO */
    .hero {
   
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  
    padding: 8.75rem 3rem 5rem;
    position: relative;
    overflow: hidden;
    }

    .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(
        ellipse 80% 60% at 50% 50%,
        black 30%,
        transparent 100%
    );
    opacity: 0.3;
    }

    .hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(232, 255, 71, 0.06) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    }

    .hero-tag {
    font-family: var(--mono);
    
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
   
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
    display: flex;
    align-items: center;
    
    gap: 0.75rem;
    }
    .hero-tag::before {
    content: "";
    display: block;
   
    width: 2rem;
    height: 1px;
    background: var(--accent);
    }

   

    .hero-sub {
    font-family: var(--mono);
   
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.7;
   
    max-width: 30rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.5s forwards;
    }

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
   
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.65s forwards;
    flex-direction: column;

    @media(min-width: 48rem){
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    
    gap: 0.625rem;
    background: var(--accent);
    color: #0a0a0a;
    font-family: var(--mono);
   
    font-size: 0.8125rem;
    font-weight: 500;
    
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    cursor: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    letter-spacing: 0.02em;
}
    .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 255, 71, 0.25);
    }
    .btn-primary svg {
       
        width: 0.875rem;
        height: 0.875rem;
    }

    .btn-ghost {
    font-family: var(--mono);
   
    font-size: 0.8125rem;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    cursor: none;
    }
    .btn-ghost:hover {
    color: var(--text);
    }

    .hero-social-proof {
   
    margin-top: 5rem;
    font-family: var(--mono);
    
    font-size: 0.6875rem;
    color: var(--muted2);
    letter-spacing: 0.08em;
    opacity: 0;
    animation: fadeUp 0.7s ease 0.8s forwards;
    display: flex;
    align-items: center;
   
    gap: 1rem;
    }
    .hero-social-proof span {
    color: var(--accent2);
    }

    /* TERMINAL DEMO */
    .demo-section {
    
    padding: 5rem 3rem 7.5rem;
    position: relative;
    }

    .section-label {
    font-family: var(--mono);
   
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 3rem;
  
    display: flex;
    align-items: center;
   
    gap: 1rem;
    }
    .section-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
    }

    .demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
   
    gap: 0.4rem;
    
    overflow: hidden;
    
    }

    .demo-pane {
    background: var(--bg2);
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;

    }

    .pane-header {
    display: flex;
    align-items: center;
    
    gap: 0.5rem;
    
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
    }
    .pane-dot {
    
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    }
    .pane-dot.r {
    background: #ff5f56;
    }
    .pane-dot.y {
    background: #ffbd2e;
    }
    .pane-dot.g {
    background: #27c93f;
    }
    .pane-title {
    font-family: var(--mono);
    
    font-size: 0.6875rem;
    color: var(--muted);
   
    margin-left: 0.5rem;
    }

    .pane-body {
   
    padding: 1.25rem;
    font-family: var(--mono);
   
    font-size: 0.75rem;
    line-height: 1.8;
   
    min-height: 17.5rem;
    }

    .commit {
    color: var(--muted);
    }
    .commit .hash {
    color: #f97316;
    }
    .commit .msg {
    color: #d4d4d4;
    }
    .commit .meta {
    color: var(--muted2);
    font-size: 11px;
    }

    .changelog-output {
    color: #d4d4d4;
    }
    .changelog-output .version {
    color: var(--accent);
   
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
   
    margin-bottom: 0.75rem;
    }
    .changelog-output .date {
    color: var(--muted);
   
    font-size: 0.6875rem;
    }
    .changelog-output .cat {
    color: var(--accent2);
  
    margin-top: 0.75rem;
    display: block;
    }
    .changelog-output li {
    list-style: none;
   
    padding-left: 1rem;
    color: #bbb;
  
    font-size: 0.75rem;
    }
    .changelog-output li::before {
    content: "→ ";
    color: var(--muted2);
    }

    

    /* HOW IT WORKS */
    .how-section {
    padding: 80px 48px 120px;
    border-top: 1px solid var(--border);
    }

    .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
    border-radius: 4px;
    overflow: hidden;
    }

    .step {
    background: var(--bg);
    padding: 40px 36px;
    position: relative;
    transition: background 0.3s;
    }
    .step:hover {
    background: var(--bg2);
    }

    .step-num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted2);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    }
    .step-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    }
    .step h3 {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    }
    .step p {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    }
    .step-accent {
    color: var(--accent);
    }

    /* FEATURES */
    .features-section {
    padding: 80px 48px 120px;
    border-top: 1px solid var(--border);
    }

    .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 48px;
    border-radius: 4px;
    overflow: hidden;
    }

    .feature {
    background: var(--bg);
    padding: 36px;
    transition: background 0.3s;
    }
    .feature:hover {
    background: var(--bg2);
    }

    .feature-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 16px;
    background: var(--bg3);
    }
    .feature h4 {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    }
    .feature p {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
    }

    /* PRICING */
    .pricing-section {
    
    padding: 5rem 3rem 7.5rem;
    border-top: 1px solid var(--border);
    }

    .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
   
    margin-top: 3rem;
    border-radius: 4px;
    overflow: hidden;
    }

    .plan {
    background: var(--bg);
   
    padding: 2.5rem 2.25rem;
    position: relative;
    transition: background 0.3s;
    }
    .plan:hover {
    background: var(--bg2);
    }
    .plan.featured {
    background: var(--bg2);
    outline: 1px solid var(--accent);
    outline-offset: -1px;
    z-index: 1;
    }

    .plan-badge {
    font-family: var(--mono);
   
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    color: var(--bg);
    background: var(--accent);
   
    padding: 0.1875rem 0.625rem;
    border-radius: 2px;
    text-transform: uppercase;
    display: inline-block;
   
    margin-bottom: 1.25rem;
    }

    .plan-name {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  
    margin-bottom: 1rem;
    }

    .plan-price {
    font-family: var(--sans);
   
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
   
    margin-bottom: 0.25rem;
    }
    .plan-price sup {
   
    font-size: 1.25rem;
    font-weight: 400;
    vertical-align: super;
    }
    .plan-price-note {
    font-family: var(--mono);
   
    font-size: 0.6875rem;
    color: var(--muted);
    
    margin-bottom: 2rem;
    }

    .plan-features {
    list-style: none;
   
    margin-bottom: 2.25rem;
    }
    .plan-features li {
    font-family: var(--mono);
    
    font-size: 0.75rem;
    color: var(--muted);
    
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
   
    gap: 0.625rem;
    }
    .plan-features li:last-child {
    border-bottom: none;
    }
    .plan-features li .check {
    color: var(--accent2);
    }
    .plan-features li .x {
    color: var(--muted2);
    }

    .plan-btn {
    display: block;
    text-align: center;
    font-family: var(--mono);
    
    font-size: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.2s;
    cursor: none;
    }
    .plan-btn:hover {
    border-color: var(--text);
    color: var(--text);
    }
    .plan.featured .plan-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    }
    .plan.featured .plan-btn:hover {
    box-shadow: 0 4px 20px rgba(232, 255, 71, 0.3);
    }

    /* WAITLIST */
    .waitlist-section {
    
    padding: 5rem 3rem 7.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
    }

    .waitlist-glow {
    position: absolute;
   
    width: 50rem;
    height: 25rem;
    background: radial-gradient(
        ellipse,
        rgba(232, 255, 71, 0.04) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    }

    

    .waitlist-section p {
    font-family: var(--mono);
    
    font-size: 0.8125rem;
    color: var(--muted);
   
    margin-bottom: 3rem;
    line-height: 1.7;
    }

    .waitlist-form {
        display: flex;
        gap: 0;
        flex-direction: column;
       
        max-width: 26.25rem;
        margin: 0 auto;
        border: 1px solid var(--border);
        border-radius: 3px;
        overflow: hidden;
        transition: border-color 0.2s;

        @media(min-width: 48rem){
            flex-direction: row;
        }
        }

    .waitlist-form:focus-within {
      border-color: var(--accent);
    }

    .waitlist-form input {
        flex: 1;
        background: var(--bg2);
        border: none;
        outline: none;
        text-align: center;
    
        padding: 0.875rem 1.25rem;
        font-family: var(--mono);
    
        font-size: 1rem;
    
        color: var(--text);
        caret-color: var(--accent);

        @media(min-width: 48rem){
            text-align: left;
        }
    }
    .waitlist-form input::placeholder {
    color: var(--muted2);
    }

    .waitlist-form button {
    background: var(--accent);
    border: none;
    
    padding: 0.875rem 1.5rem;
    font-family: var(--mono);
    
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--bg);
    cursor: none;
    transition: box-shadow 0.2s;
    white-space: nowrap;
    letter-spacing: 0.03em;
    }
    .waitlist-form button:hover {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.1);
    }

    .waitlist-note {
    font-family: var(--mono);
   
    font-size: 0.6875rem;
    color: var(--muted2);
   
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    }
    .waitlist-note span {
    color: var(--accent2);
    }

    /* SUCCESS STATE */
    .success-msg {
    display: none;
    font-family: var(--mono);
   
    font-size: 0.8125rem;
    color: var(--accent2);
  
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
    gap: 8px;
    }

    /* FOOTER */
    footer {
    border-top: 1px solid var(--border);
   
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    footer .logo {
   
    font-size: 0.875rem;
    }
    .footer-links {
    display: flex;
  
    gap: 2rem;
    }
    .footer-links a {
    font-family: var(--mono);
  
    font-size: 0.6875rem;
    color: var(--muted2);
    text-decoration: none;
    transition: color 0.2s;
    }
    .footer-links a:hover {
    color: var(--muted);
    }
    .footer-copy {
    font-family: var(--mono);
   
    font-size: 0.6875rem;
    color: var(--muted2);
    }

   

    .cursor-blink {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--accent);
    vertical-align: middle;
   
    margin-left: 0.125rem;
    animation: blink 1s step-end infinite;
    }

    /* Scroll reveal */
    .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    }
    .reveal.visible {
    opacity: 1;
    transform: translateY(0);
    }

    /* Typing animation */
    .typing {
    overflow: hidden;
    white-space: nowrap;
    }

    
   .plan-custom { font-family: var(--mono); font-size: 11px; color: var(--muted2); text-align: center; margin-top: 12px; }
  .plan-custom a { color: var(--accent2); text-decoration: none; }
  .plan-custom a:hover { opacity: 0.8; }