:root {
    --navy-950: #030914;
    --navy-900: #07111f;
    --navy-800: #0b1d33;
    --navy-700: #102b49;
    --industrial-orange: #f28c28;
    --industrial-orange-dark: #c96814;
    --industrial-orange-soft: #ffb765;
    --accent: var(--industrial-orange);
    --accent-dark: var(--industrial-orange-dark);
    --accent-soft: var(--industrial-orange-soft);
    --white: #ffffff;
    --steel-100: #eef4f8;
    --steel-200: #d7dde5;
    --steel-400: #9aa7b5;
    --steel-600: #647386;
    --line: rgba(255, 255, 255, 0.12);
    --card: rgba(255, 255, 255, 0.06);
    --card-strong: rgba(255, 255, 255, 0.1);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(242, 140, 40, 0.18), transparent 34rem),
        radial-gradient(circle at top right, rgba(201, 104, 20, 0.14), transparent 30rem),
        var(--navy-950);
    color: var(--white);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(3, 9, 20, 0.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 54px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    color: var(--steel-200);
    font-size: 0.92rem;
    font-weight: 700;
}

.nav-links a {
    transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    border: 1px solid rgba(242, 140, 40, 0.65);
    padding: 0.7rem 1rem;
    border-radius: 999px;
}

.hero-section {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    padding: 5rem 0 6rem;
}

.hero-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-copy {
    max-width: 920px;
}

.hero-copy .subheadline {
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    justify-content: center;
}

.hero-proof {
    justify-content: center;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
    font-size: 0.78rem;
    margin: 0 0 1rem;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 840px;
    font-size: clamp(3rem, 5.6vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: -0.075em;
    margin-bottom: 1.6rem;
}

.subheadline {
    color: var(--steel-200);
    font-size: 1.22rem;
    line-height: 1.65;
    max-width: 720px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.3rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    box-shadow: 0 14px 36px rgba(242, 140, 40, 0.28);
}

.button-secondary {
    color: var(--white);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.hero-proof {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-proof span {
    color: var(--steel-200);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
}

.section {
    padding: 6rem 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 2rem;
}

.section-heading h2,
.split-grid h2,
.cta-card h2 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 1rem;
}

.section-copy {
    color: var(--steel-200);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 620px;
}

.cards {
    display: grid;
    gap: 1rem;
}

.three-column {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    min-height: 280px;
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--card);
}

.card-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    border-radius: 14px;
    color: #ffe0bd;
    background: rgba(242, 140, 40, 0.14);
    border: 1px solid rgba(242, 140, 40, 0.30);
    font-weight: 900;
}

.card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.card p {
    color: var(--steel-200);
    line-height: 1.65;
    margin-bottom: 0;
}

.split-section {
    background: rgba(255, 255, 255, 0.025);
}

.split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.process-list {
    display: grid;
    gap: 1rem;
}

.process-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.process-item span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--navy-950);
    font-weight: 900;
}

.process-item h3 {
    margin-bottom: 0.35rem;
}

.process-item p {
    color: var(--steel-200);
    line-height: 1.6;
    margin-bottom: 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.industry-grid div {
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--steel-100);
    font-weight: 800;
}

.cta-section {
    padding: 6rem 0;
}

.cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.4rem;
    border-radius: 30px;
    border: 1px solid rgba(242, 140, 40, 0.30);
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.22), transparent 24rem),
        rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
}

.cta-card div {
    max-width: 780px;
}

.cta-card p {
    color: var(--steel-200);
    line-height: 1.65;
    margin-bottom: 0;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.8rem 0;
    color: var(--steel-400);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.footer-content p {
    margin-bottom: 0;
}




.product-showcase {
    background:
        radial-gradient(circle at 78% 30%, rgba(242, 140, 40, 0.14), transparent 28rem),
        rgba(255, 255, 255, 0.018);
}

.showcase-heading {
    max-width: 900px;
}

.dashboard-showcase-card {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 2rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(242, 140, 40, 0.30);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(7, 17, 31, 0.72);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard-showcase-copy {
    padding: 1.5rem;
}

.showcase-label {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 900;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.dashboard-showcase-copy h3 {
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
    letter-spacing: -0.055em;
    margin-bottom: 1rem;
}

.dashboard-showcase-copy p {
    color: var(--steel-200);
    line-height: 1.65;
}

.showcase-points {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.showcase-points span {
    position: relative;
    display: block;
    color: var(--steel-100);
    padding-left: 1.25rem;
    font-weight: 700;
    font-size: 0.94rem;
}

.showcase-points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(242, 140, 40, 0.48);
}

.dashboard-image-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

.dashboard-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(3, 9, 20, 0.18);
    z-index: 1;
}

.dashboard-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
}













@media (max-width: 980px) {
    .nav {
        height: auto;
        padding: 1rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .brand img {
        height: 48px;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.2rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

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

    .three-column,
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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


    .dashboard-showcase-card {
        grid-template-columns: 1fr;
    }

    .dashboard-showcase-copy {
        padding: 1rem;
    }


}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    h1 {
        font-size: 3.2rem;
    }

    .subheadline {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .metric-grid,
    .three-column,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-card h2 {
        font-size: 3.2rem;
    }

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

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }
}

.page-hero {
    min-height: 55vh;
}

/* Page detail blocks */
.statement-card {
    padding: 1.7rem;
    border-radius: 26px;
    border: 1px solid rgba(242, 140, 40, 0.28);
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.16), transparent 18rem),
        rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow);
}

.statement-card h3 {
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
}

.statement-card p {
    color: var(--steel-200);
    line-height: 1.65;
    margin-bottom: 0;
}

.service-grid .card,
.package-card {
    min-height: 330px;
}

.featured-card {
    border-color: rgba(242, 140, 40, 0.55);
    background:
        radial-gradient(circle at top right, rgba(242, 140, 40, 0.18), transparent 18rem),
        var(--card-strong);
}

.two-column-list,
.deliverables-list {
    grid-template-columns: repeat(2, 1fr);
}

.deliverables-list {
    padding: 1.5rem;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
}

.tools-grid {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
    .two-column-list,
    .deliverables-list,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}
