:root {
    color-scheme: light;
    --ink: #101513;
    --muted: #536159;
    --line: #dbe5df;
    --paper: #f7faf7;
    --panel: #ffffff;
    --dark: #07130f;
    --green: #87efac;
    --green-strong: #047857;
    --cyan: #67e8f9;
    --amber: #fde68a;
    --shadow: 0 24px 80px rgb(7 19 15 / 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 100;
    width: calc(var(--scroll-progress, 0) * 1%);
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--amber));
    box-shadow: 0 0 18px rgb(135 239 172 / 0.5);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    background: rgb(7 19 15 / 0.82);
    color: #fff;
    backdrop-filter: blur(18px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    margin-top: 2px;
    color: rgb(255 255 255 / 0.58);
    font-size: 12px;
}

nav {
    display: flex;
    gap: 24px;
    color: rgb(255 255 255 / 0.72);
    font-size: 14px;
    font-weight: 650;
}

nav a:hover,
.header-cta:hover {
    color: #fff;
}

.header-cta {
    border-radius: 6px;
    background: #fff;
    color: var(--dark);
    padding: 11px 15px;
    font-size: 14px;
    font-weight: 750;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    overflow: hidden;
    background: var(--dark);
    color: #fff;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 28vh;
    background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.78;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.08) 1px, transparent 1px),
        radial-gradient(circle at 18% 22%, rgb(135 239 172 / 0.25), transparent 30%),
        radial-gradient(circle at 82% 20%, rgb(103 232 249 / 0.22), transparent 32%);
    background-size: 64px 64px, 64px 64px, 100% 100%, 100% 100%;
    animation: grid-drift 18s linear infinite;
}

.hero-inner,
.section,
.contact {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 44px;
    padding: 108px 0 72px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 840px;
    margin-bottom: 24px;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}

h3 {
    font-size: 28px;
    line-height: 1.1;
}

.hero-text {
    max-width: 680px;
    color: rgb(255 255 255 / 0.72);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.primary-btn,
.secondary-btn,
.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 6px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 800;
}

.primary-btn {
    background: var(--green);
    color: var(--dark);
}

.secondary-btn {
    border: 1px solid rgb(255 255 255 / 0.22);
    color: #fff;
}

.product-console {
    position: relative;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.1);
    box-shadow: 0 34px 120px rgb(0 0 0 / 0.35);
    padding: 14px;
    backdrop-filter: blur(18px);
}

.product-console::before {
    content: "";
    position: absolute;
    inset: -10%;
    z-index: -1;
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: 999px;
    transform: rotate(-14deg);
    animation: orbit-pulse 8s ease-in-out infinite;
}

.console-top {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px 6px 0 0;
    background: #0f1f19;
    padding: 14px;
}

.console-top span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
}

.console-top span:nth-child(2) {
    background: var(--cyan);
}

.console-top span:nth-child(3) {
    background: var(--amber);
}

.console-top strong {
    margin-left: auto;
    color: rgb(255 255 255 / 0.72);
    font-size: 13px;
}

.console-product {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    margin-top: 12px;
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: 8px;
    background: rgb(255 255 255 / 0.06);
    padding: 18px;
}

.console-product.active {
    background: rgb(135 239 172 / 0.13);
}

.console-product small {
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
}

.console-product h2 {
    margin: 8px 0;
    font-size: 28px;
}

.console-product p {
    margin-bottom: 0;
    color: rgb(255 255 255 / 0.64);
    line-height: 1.6;
}

.console-product a {
    align-self: start;
    border-radius: 5px;
    background: #fff;
    color: var(--dark);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.console-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.console-metrics div {
    border-radius: 6px;
    background: #fff;
    color: var(--dark);
    padding: 15px;
}

.console-metrics strong,
.console-metrics span {
    display: block;
}

.console-metrics strong {
    font-size: 22px;
}

.console-metrics span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.section {
    padding: 94px 0;
}

.section-heading {
    max-width: 760px;
}

.section-heading p:not(.eyebrow),
.company-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 38px;
}

.product-card,
.pillar,
.contact-card,
details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: 0 10px 36px rgb(7 19 15 / 0.06);
}

.product-card {
    padding: 30px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-label {
    display: inline-flex;
    border-radius: 5px;
    background: #dcfce7;
    color: #166534;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.travel .card-label {
    background: #cffafe;
    color: #155e75;
}

.card-lead {
    color: var(--ink);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.45;
}

.product-card p:not(.card-lead),
.product-card li,
.pillar p,
details p,
.contact-card {
    color: var(--muted);
    line-height: 1.7;
}

.product-card ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.product-card li {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 650;
}

.product-link {
    background: var(--dark);
    color: #fff;
}

.company {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 48px;
    align-items: start;
}

.pillars {
    display: grid;
    gap: 15px;
}

.pillar {
    padding: 24px;
}

.pillar span {
    color: var(--green-strong);
    font-weight: 900;
}

.pillar h3 {
    margin: 12px 0 8px;
    font-size: 21px;
}

.answers {
    padding-top: 30px;
}

.answer-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

details {
    padding: 20px 22px;
}

summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 850;
}

details p {
    margin: 12px 0 0;
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
    padding: 94px 0;
}

.contact-panel {
    border-radius: 8px;
    background: var(--dark);
    color: #fff;
    padding: 40px;
}

.contact-panel h2 {
    margin-bottom: 0;
}

.contact-card {
    display: grid;
    align-content: center;
    gap: 13px;
    padding: 34px;
    font-style: normal;
}

.contact-card strong {
    color: var(--ink);
    font-size: 20px;
}

.contact-card a {
    color: var(--green-strong);
    font-weight: 800;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px clamp(18px, 4vw, 56px);
    background: var(--dark);
    color: rgb(255 255 255 / 0.56);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms ease, transform 720ms ease;
}

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

@keyframes grid-drift {
    from {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }

    to {
        background-position: 64px 64px, 64px 64px, 0 0, 0 0;
    }
}

@keyframes orbit-pulse {
    0%,
    100% {
        transform: rotate(-14deg) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: rotate(-9deg) scale(1.03);
        opacity: 1;
    }
}

@media (max-width: 980px) {
    nav {
        display: none;
    }

    .hero-inner,
    .product-grid,
    .company,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding-top: 118px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding-inline: 14px;
    }

    .brand span,
    .header-cta {
        display: none;
    }

    h1 {
        font-size: 46px;
    }

    .product-card ul,
    .console-metrics {
        grid-template-columns: 1fr;
    }

    .console-product {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .product-card,
    .contact-card {
        padding: 24px;
    }

    footer {
        flex-direction: column;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
