:root {
    --bg-dark: #06070b;
    --bg-card: rgba(12, 14, 19, 0.78);
    --moose-red: #d90429;
    --moose-dark-red: #8a031a;
    --moose-glow: #ff5400;
    --line-soft: rgba(255, 255, 255, 0.06);
    --text-main: #f8f9fa;
    --text-muted: #aab4c1;
    --font-main: 'Inter', sans-serif;
    --font-tech: 'Fira Code', monospace;
    --shell: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
    background: radial-gradient(circle at top, rgba(255,84,0,0.08), transparent 30%), var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }

#cyber-bg {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.max-shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.glass {
    background: rgba(7, 7, 9, 0.78) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(217, 4, 41, 0.14);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.glass-card.subtle {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}
.nav-container {
    max-width: var(--shell);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 2rem;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
}
.brand-logo img { height: 42px; }
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--text-main); }
.nav-btn {
    background: linear-gradient(135deg, var(--moose-red), var(--moose-dark-red));
    color: white !important;
    padding: 0.8rem 1rem;
    border-radius: 0.7rem;
}
.nav-btn.alt {
    background: transparent;
    border: 1px solid var(--line-soft);
}
.hamburger { display: none; cursor: pointer; font-size: 1.4rem; }

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: center;
    min-height: 88vh;
    padding-top: 7rem;
    padding-bottom: 4rem;
}
.hero-content h1 {
    font-size: clamp(2.75rem, 6vw, 4.6rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}
.hero-content p {
    font-size: 1.12rem;
    color: var(--text-muted);
    max-width: 60ch;
}
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-tech);
    font-size: 0.82rem;
    color: var(--moose-glow);
    background: rgba(255, 84, 0, 0.08);
    padding: 0.42rem 0.7rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,84,0,0.2);
    margin-bottom: 1.2rem;
}
.tech-badge.small { font-size: 0.72rem; }
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.hero-inline-note {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.hero-panel {
    padding: 1rem;
}
.hero-panel-head {
    display: flex;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem 0.85rem;
}
.dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    display: inline-block;
}
.dot.red { background: #ff5a5f; }
.dot.amber { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.terminal-shell {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(2, 4, 8, 0.75);
    padding: 1rem;
    font-family: var(--font-tech);
    color: #dfe7ef;
    min-height: 320px;
}
.terminal-line { margin-bottom: 0.9rem; word-break: break-word; }
.terminal-line span { color: var(--moose-glow); margin-right: 0.65rem; }
.terminal-line.success { color: #95f9c3; }

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.3rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    background: linear-gradient(135deg, var(--moose-red), var(--moose-dark-red));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
}
.cta-button.secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.16);
    color: var(--text-main);
}
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(255,84,0,0.24);
}

.services-section, .pricing-section, .addons-section, .workflow-section, .contact-section {
    padding-top: 4.5rem;
    padding-bottom: 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 2.4rem;
}
.section-header.compact { margin-bottom: 1.6rem; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.1;
}
.subtitle {
    max-width: 760px;
    margin: 0.75rem auto 0;
    color: var(--text-muted);
}
.divider {
    width: 68px;
    height: 4px;
    border-radius: 999px;
    background: var(--moose-red);
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.service-card {
    padding: 1.6rem;
}
.icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 4, 41, 0.1);
    margin-bottom: 1rem;
}
.service-icon {
    color: var(--moose-red);
    font-size: 1.45rem;
}
.service-card h3 { margin-bottom: 0.7rem; }
.service-card p { color: var(--text-muted); }

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.proof-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.3rem;
}
.proof-number {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 84, 0, 0.13);
    color: var(--moose-glow);
    font-weight: 800;
    flex-shrink: 0;
}
.proof-card p { color: var(--text-muted); }

.billing-toggle {
    width: fit-content;
    margin: 0 auto 1.6rem;
    padding: 0.35rem;
    display: flex;
    gap: 0.4rem;
}
.billing-option {
    background: transparent;
    color: var(--text-muted);
    border: 0;
    border-radius: 999px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 700;
}
.billing-option.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
}
.pricing-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
}
.pricing-card.highlight {
    border-color: rgba(255, 84, 0, 0.38);
    box-shadow: 0 18px 45px rgba(255, 84, 0, 0.12);
}
.pricing-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 84, 0, 0.12);
    color: var(--moose-glow);
    font-size: 0.8rem;
    font-weight: 700;
}
.pricing-head p, .pricing-audience { color: var(--text-muted); }
.price-line { display: flex; align-items: baseline; gap: 0.5rem; min-height: 56px; }
.price-value { font-size: 2.25rem; font-weight: 800; line-height: 1; }
.price-period { color: var(--text-muted); font-size: 0.95rem; }
.pricing-meta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.pricing-features {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    color: var(--text-muted);
    margin-top: auto;
}
.pricing-features li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.pricing-features i { color: var(--moose-glow); margin-top: 0.2rem; }
.pricing-actions { margin-top: 0.5rem; }
.plan-select-btn { width: 100%; }

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.addon-card {
    padding: 1.2rem;
    display: grid;
    gap: 0.4rem;
}
.addon-card span { color: var(--moose-glow); font-weight: 700; }
.addon-card p { color: var(--text-muted); }

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.workflow-step {
    padding: 1.35rem;
}
.workflow-step span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(217, 4, 41, 0.12);
    color: var(--moose-red);
    font-weight: 800;
    margin-bottom: 0.9rem;
}
.workflow-step p { color: var(--text-muted); }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 5rem;
}
.contact-card {
    padding: 1.2rem;
}
.contact-card p, .contact-card a { color: var(--text-muted); word-break: break-word; }

.footer-shell {
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--line-soft);
    margin-top: 2rem;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; }
.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links a { color: var(--text-muted); text-decoration: none; }

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}
.modal-shell.hidden { display: none; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}
.modal-card {
    position: relative;
    width: min(680px, 100%);
    padding: 1.5rem;
    z-index: 1;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line-soft);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
}
.modal-header p { color: var(--text-muted); }

.hidden { display: none !important; }

.direct-subscription-panel {
    display: grid;
    gap: 0.9rem;
}

.square-card-frame {
    min-height: 112px;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255,255,255,0.03);
    padding: 0.9rem 1rem;
}

.square-card-frame iframe {
    border-radius: 0.6rem;
}
.checkout-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}
.checkout-form label {
    display: grid;
    gap: 0.45rem;
}
.checkout-form span {
    font-size: 0.95rem;
    font-weight: 600;
}
.checkout-form input {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    padding: 0.9rem 1rem;
}
.checkout-form input:focus {
    outline: none;
    border-color: rgba(255, 84, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.12);
}
.form-note {
    padding: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}
.checkout-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}
.checkout-status {
    min-height: 1.4rem;
    color: var(--moose-glow);
    font-size: 0.95rem;
}

.success-page {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 7rem;
    padding-bottom: 3rem;
}
.success-card {
    padding: 1.7rem;
    width: min(960px, 100%);
}
.success-card p { color: var(--text-muted); }
.success-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.success-item {
    padding: 1rem;
    display: grid;
    gap: 0.25rem;
}
.success-item span { color: var(--text-muted); word-break: break-word; }
.success-summary {
    padding: 1rem;
    margin-top: 1rem;
}
.success-list { list-style: none; display: grid; gap: 0.45rem; color: var(--text-muted); }
.top-gap { margin-top: 1.4rem; }

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .services-grid,
    .pricing-grid,
    .addons-grid,
    .workflow-grid,
    .contact-grid,
    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: min(360px, 100%);
        height: calc(100vh - 76px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        background: rgba(7, 9, 13, 0.98);
        border-left: 1px solid var(--line-soft);
        transition: right 0.3s ease;
    }
    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; }
    .nav-links a, .nav-btn, .nav-btn.alt { display: block; width: 100%; text-align: center; }
    .max-shell { padding-left: 1.2rem; padding-right: 1.2rem; }
    .services-grid,
    .pricing-grid,
    .addons-grid,
    .workflow-grid,
    .contact-grid,
    .proof-strip,
    .success-grid {
        grid-template-columns: 1fr;
    }
    .footer-content { flex-direction: column; align-items: flex-start; }
    .hero-inline-note { flex-direction: column; align-items: flex-start; }
}
