:root {
    --ax-bg: #071013;
    --ax-bg-soft: #0d171b;
    --ax-surface: #101f24;
    --ax-surface-2: #13292d;
    --ax-line: rgba(214, 236, 232, 0.14);
    --ax-text: #eef7f4;
    --ax-muted: #9fb6b0;
    --ax-teal: #22d3c5;
    --ax-teal-dark: #0f766e;
    --ax-gold: #e4b363;
    --ax-coral: #ff7a59;
    --ax-green: #88d18a;
    --ax-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ax-bg);
    color: var(--ax-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: var(--ax-teal);
    color: #021112;
    font-weight: 800;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.ax-navbar {
    background: rgba(7, 16, 19, 0.86);
    border-bottom: 1px solid var(--ax-line);
    backdrop-filter: blur(18px);
}

.navbar-toggler {
    border-color: var(--ax-line);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(34, 211, 197, 0.22);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.brand-mark {
    align-items: center;
    color: var(--ax-text);
    display: inline-flex;
    font-weight: 900;
    gap: 0.7rem;
    text-decoration: none;
}

.brand-mark:hover {
    color: var(--ax-text);
}

.brand-logo {
    display: block;
    height: 2.25rem;
    width: auto;
}

.brand-word {
    align-items: baseline;
    display: inline-flex;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    gap: 0.08em;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}

.brand-word .brand-x {
    color: var(--ax-teal);
    font-weight: 800;
    position: relative;
}

.brand-word-hero {
    font-size: inherit;
}

.brand-word-hero .brand-x::before,
.brand-word-card .brand-x::before {
    background: var(--ax-teal);
    border-radius: 999px;
    box-shadow: 0 0 0 0.13em rgba(34, 211, 197, 0.34), 0 0 0 0.28em rgba(34, 211, 197, 0.14);
    content: "";
    height: 0.13em;
    left: 50%;
    position: absolute;
    top: 0.08em;
    transform: translateX(-50%);
    width: 0.13em;
}

.brand-word-card {
    color: #031416;
    font-size: inherit;
}

.brand-word-card .brand-x {
    color: #0f766e;
}

.footer-logo {
    height: 2.65rem;
}

.brand-symbol {
    align-items: center;
    background: var(--ax-teal);
    border-radius: 8px;
    color: #031416;
    display: inline-flex;
    font-weight: 900;
    height: 2.25rem;
    justify-content: center;
    width: 2.25rem;
}

.ax-navbar .navbar-nav .nav-link {
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--ax-muted);
    font-weight: 700;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    position: relative;
}

.ax-navbar .navbar-nav .nav-link:hover,
.ax-navbar .navbar-nav .nav-link:focus {
    background: transparent;
    color: var(--ax-text);
}

.ax-navbar .navbar-nav .nav-link::after {
    background: var(--ax-teal);
    border-radius: 999px;
    bottom: 0.2rem;
    content: "";
    height: 2px;
    left: 0.85rem;
    opacity: 0;
    position: absolute;
    right: 0.85rem;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.ax-navbar .navbar-nav .nav-link.active,
.ax-navbar .navbar-nav .nav-link.active:hover,
.ax-navbar .navbar-nav .nav-link.active:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    color: var(--ax-text);
}

.ax-navbar .navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    gap: 0.5rem;
    justify-content: center;
}

.btn-axedo {
    background: var(--ax-teal);
    border-color: var(--ax-teal);
    color: #031416;
}

.btn-axedo:hover,
.btn-axedo:focus {
    background: #64f4e8;
    border-color: #64f4e8;
    color: #031416;
}

.btn-outline-light {
    border-color: rgba(238, 247, 244, 0.32);
    color: var(--ax-text);
}

.btn-outline-light:hover {
    background: var(--ax-text);
    color: #071013;
}

.hero-section,
.page-hero {
    overflow: hidden;
    position: relative;
}

.hero-section {
    align-items: center;
    display: flex;
    min-height: 88svh;
    padding: 8.5rem 0 5.5rem;
}

.hero-grid {
    background-image:
        linear-gradient(rgba(238, 247, 244, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238, 247, 244, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    inset: 0;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    opacity: 0.52;
    position: absolute;
}

.hero-section::before,
.page-hero::before {
    background:
        linear-gradient(120deg, rgba(34, 211, 197, 0.12), transparent 34%),
        linear-gradient(270deg, rgba(228, 179, 99, 0.10), transparent 42%);
    content: "";
    inset: 0;
    position: absolute;
}

.eyebrow {
    color: var(--ax-gold);
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    color: var(--ax-text);
    font-size: 7rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 0.88;
    margin-bottom: 1.35rem;
}

.hero-copy,
.page-hero .lead {
    color: #cfe0dd;
    font-size: 1.25rem;
    max-width: 46rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-proof {
    border-top: 1px solid var(--ax-line);
    color: var(--ax-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    margin-top: 2.25rem;
    padding-top: 1.25rem;
}

.hero-proof strong {
    color: var(--ax-text);
}

.nfc-visual {
    align-items: center;
    display: grid;
    gap: 1.25rem;
    justify-items: center;
}

.nfc-card {
    aspect-ratio: 1.58 / 1;
    background:
        linear-gradient(135deg, rgba(34, 211, 197, 0.95), rgba(11, 57, 62, 0.98) 58%, rgba(228, 179, 99, 0.94));
    border: 1px solid rgba(238, 247, 244, 0.3);
    border-radius: 8px;
    box-shadow: var(--ax-shadow);
    color: #031416;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 24rem;
    min-height: 15rem;
    padding: 1.35rem;
    position: relative;
    transform: rotate(-4deg);
    width: min(100%, 24rem);
}

.card-chip {
    background:
        linear-gradient(90deg, rgba(3, 20, 22, 0.22), transparent 30%, rgba(3, 20, 22, 0.2)),
        #f2d084;
    border: 1px solid rgba(3, 20, 22, 0.18);
    border-radius: 8px;
    height: 3.2rem;
    width: 4.2rem;
}

.nfc-lines {
    display: grid;
    gap: 0.34rem;
    position: absolute;
    right: 1.35rem;
    top: 1.5rem;
}

.nfc-lines span {
    border: 2px solid rgba(3, 20, 22, 0.34);
    border-left: 0;
    border-radius: 0 7px 7px 0;
    display: block;
    height: 1.5rem;
    width: 1rem;
}

.nfc-lines span:nth-child(2) {
    width: 1.55rem;
}

.nfc-lines span:nth-child(3) {
    width: 2.1rem;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}

.nfc-card h2 {
    font-size: 2rem;
    font-weight: 950;
    margin: 0;
}

.card-foot,
.signal-stack div {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.card-foot {
    color: rgba(3, 20, 22, 0.86);
    font-weight: 900;
}

.signal-stack {
    display: grid;
    gap: 0.75rem;
    max-width: 21rem;
    width: 100%;
}

.signal-stack div,
.insight-list div,
.contact-options a,
.flow-panel div {
    background: rgba(16, 31, 36, 0.9);
    border: 1px solid var(--ax-line);
    border-radius: 8px;
    color: var(--ax-text);
    gap: 0.75rem;
    padding: 0.9rem 1rem;
}

.signal-stack i,
.insight-list i,
.contact-options i,
.flow-panel i {
    color: var(--ax-teal);
    font-size: 1.2rem;
}

.section-band,
.split-section,
.cta-section,
.legal-section {
    padding: 6rem 0;
    position: relative;
}

.section-band {
    background: var(--ax-bg-soft);
    border-top: 1px solid var(--ax-line);
    border-bottom: 1px solid var(--ax-line);
}

.section-heading {
    margin-bottom: 2.5rem;
    max-width: 50rem;
}

.section-heading h2,
.split-section h2,
.cta-inner h2,
.page-hero h1 {
    font-size: 3rem;
    font-weight: 930;
    letter-spacing: 0;
    line-height: 1.04;
}

.section-copy {
    color: #c8d9d5;
    font-size: 1.08rem;
}

.feature-card,
.module-row,
.pricing-card,
.step-card,
.value-card,
.support-panel,
.quote-panel,
.legal-content {
    background: linear-gradient(180deg, rgba(19, 41, 45, 0.92), rgba(12, 25, 29, 0.96));
    border: 1px solid var(--ax-line);
    border-radius: 8px;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.feature-card,
.value-card,
.support-panel {
    padding: 1.4rem;
}

.feature-card i,
.value-card i,
.support-panel i {
    color: var(--ax-teal);
    font-size: 1.75rem;
}

.feature-card h3,
.value-card h2,
.support-panel h3,
.step-card h2,
.step-card h3,
.module-row h2,
.pricing-card h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin: 1rem 0 0.65rem;
}

.feature-card p,
.value-card p,
.support-panel p,
.step-card p,
.module-row p,
.pricing-card li,
.legal-content p {
    color: var(--ax-muted);
}

.accent-card {
    background: linear-gradient(180deg, rgba(34, 211, 197, 0.16), rgba(228, 179, 99, 0.12));
}

.check-list {
    display: grid;
    gap: 0.8rem;
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.check-list li {
    align-items: flex-start;
    display: flex;
    gap: 0.65rem;
}

.check-list i {
    color: var(--ax-green);
    font-size: 1.15rem;
    margin-top: 0.1rem;
}

.text-link {
    align-items: center;
    color: var(--ax-teal);
    display: inline-flex;
    font-weight: 900;
    gap: 0.4rem;
    text-decoration: none;
}

.text-link:hover {
    color: #78f6ed;
}

.metric-panel {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-panel div {
    background: var(--ax-surface);
    border: 1px solid var(--ax-line);
    border-radius: 8px;
    padding: 1.3rem;
}

.metric-panel strong {
    color: var(--ax-gold);
    display: block;
    font-size: 2.5rem;
    font-weight: 950;
    line-height: 1;
}

.metric-panel span {
    color: var(--ax-muted);
    display: block;
    margin-top: 0.8rem;
}

.process-band {
    background:
        linear-gradient(180deg, rgba(10, 25, 29, 0.94), rgba(7, 16, 19, 0.98)),
        var(--ax-bg);
}

.timeline-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
    padding: 1.25rem;
}

.step-card span,
.module-index,
.plan-label {
    color: var(--ax-gold);
    font-size: 0.82rem;
    font-weight: 950;
}

.cta-section {
    background:
        linear-gradient(90deg, rgba(34, 211, 197, 0.16), transparent 45%),
        linear-gradient(270deg, rgba(255, 122, 89, 0.12), transparent 42%),
        var(--ax-bg);
}

.cta-inner {
    align-items: center;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.cta-inner h2 {
    max-width: 48rem;
}

.page-hero {
    padding: 9rem 0 5rem;
}

.compact-hero {
    background: var(--ax-bg);
}

.module-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr;
    padding: 1.4rem;
}

.module-row i {
    color: var(--ax-teal);
    font-size: 1.6rem;
}

.flow-panel,
.insight-list,
.contact-options {
    display: grid;
    gap: 0.85rem;
}

.flow-panel {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-panel div,
.insight-list div {
    align-items: center;
    display: flex;
}

.pricing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    padding: 1.4rem;
}

.pricing-card.featured {
    border-color: rgba(34, 211, 197, 0.6);
}

.price {
    color: var(--ax-text);
    font-size: 1.35rem;
    font-weight: 900;
    margin: 0.8rem 0 1rem;
}

.quote-panel {
    padding: 2rem;
}

.quote-panel p {
    color: var(--ax-text);
    font-size: 1.35rem;
    font-weight: 800;
}

.quote-panel span {
    color: var(--ax-gold);
    font-weight: 900;
}

.contact-options a {
    align-items: center;
    display: flex;
    text-decoration: none;
}

.contact-options a:hover {
    border-color: rgba(34, 211, 197, 0.5);
}

.contact-form {
    background: var(--ax-surface);
    border: 1px solid var(--ax-line);
    border-radius: 8px;
    padding: 1.5rem;
}

.form-label,
.form-check-label {
    color: #d7e8e5;
    font-weight: 750;
}

.form-control,
.form-select {
    background-color: #081519;
    border: 1px solid rgba(238, 247, 244, 0.18);
    border-radius: 8px;
    color: var(--ax-text);
}

.form-control:focus,
.form-select:focus {
    background-color: #081519;
    border-color: var(--ax-teal);
    box-shadow: 0 0 0 0.18rem rgba(34, 211, 197, 0.18);
    color: var(--ax-text);
}

.form-control::placeholder {
    color: var(--ax-muted);
}

.form-check-input {
    background-color: #081519;
    border-color: rgba(238, 247, 244, 0.25);
}

.form-check-input:checked {
    background-color: var(--ax-teal-dark);
    border-color: var(--ax-teal);
}

.hidden-field {
    display: none;
}

.alert {
    border-radius: 8px;
}

.legal-content {
    margin: 0 auto;
    max-width: 56rem;
    padding: 2rem;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-top: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content a {
    color: var(--ax-teal);
    font-weight: 800;
}

.floating-demo {
    align-items: center;
    background: var(--ax-teal);
    border-radius: 999px;
    bottom: 1.25rem;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
    color: #031416;
    display: inline-flex;
    font-weight: 950;
    gap: 0.45rem;
    padding: 0.85rem 1rem;
    position: fixed;
    right: 1.25rem;
    text-decoration: none;
    z-index: 1030;
}

.floating-demo:hover {
    color: #031416;
    transform: translateY(-2px);
}

.site-footer {
    background: #050c0e;
    border-top: 1px solid var(--ax-line);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.25rem;
}

.footer-text {
    color: var(--ax-muted);
    max-width: 26rem;
}

.footer-title {
    color: var(--ax-text);
    font-size: 0.85rem;
    font-weight: 950;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a,
.footer-links span {
    color: var(--ax-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--ax-teal);
}

.footer-bottom {
    border-top: 1px solid var(--ax-line);
    color: var(--ax-muted);
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.25rem;
}

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .timeline-grid,
    .flow-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 7.5rem;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .section-heading h2,
    .split-section h2,
    .cta-inner h2,
    .page-hero h1 {
        font-size: 2.35rem;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-copy,
    .page-hero .lead {
        font-size: 1.08rem;
    }

    .section-band,
    .split-section,
    .cta-section,
    .legal-section {
        padding: 4rem 0;
    }

    .page-hero {
        padding: 7.5rem 0 3.5rem;
    }

    .timeline-grid,
    .flow-panel,
    .metric-panel {
        grid-template-columns: 1fr;
    }

    .module-row {
        grid-template-columns: 1fr;
    }

    .nfc-card {
        min-height: 13rem;
        transform: none;
    }

    .footer-bottom {
        gap: 0.5rem;
        flex-direction: column;
    }

    .floating-demo {
        bottom: 0.9rem;
        right: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
