:root {
    --navy: #0B132B;
    --navy-2: #162B59;
    --orange: #FF6A00;
    --orange-dark: #E85700;
    --yellow: #FFC107;
    --blue: #007AFF;
    --teal: #20C997;
    --slate: #64748B;
    --text: #182238;
    --muted: #667085;
    --line: #E4E7EC;
    --surface: #FFFFFF;
    --surface-soft: #F7F9FC;
    --surface-blue: #F2F6FF;
    --shadow-sm: 0 8px 28px rgba(11, 19, 43, .08);
    --shadow-lg: 0 30px 80px rgba(11, 19, 43, .18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, .brand strong {
    margin-top: 0;
    font-family: "Poppins", system-ui, sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em;
}
p { margin-top: 0; }

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    color: #fff;
    background: var(--navy);
    border-radius: 10px;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .86);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
    border-color: rgba(228, 231, 236, .9);
    box-shadow: 0 10px 30px rgba(11, 19, 43, .06);
}
.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    text-decoration: none;
}
.brand-copy { display: grid; gap: 1px; }
.brand strong { font-size: 1.35rem; }
.brand small {
    color: var(--orange);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .015em;
}
.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.primary-nav > a:not(.button) {
    color: #344054;
    font-size: .94rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}
.primary-nav > a:not(.button):hover { color: var(--orange); }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--surface-soft);
    cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
    border-radius: 999px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .9rem; }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #FF8A00);
    box-shadow: 0 14px 30px rgba(255, 106, 0, .25);
}
.button-primary:hover { box-shadow: 0 18px 36px rgba(255, 106, 0, .35); }
.button-secondary, .button-outline {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
}
.button-secondary:hover, .button-outline:hover { border-color: #B9C1D1; box-shadow: var(--shadow-sm); }
.button-light { color: var(--navy); background: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.16); }

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 92px;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 122, 255, .10), transparent 34%),
        linear-gradient(180deg, #fff 0%, #F7F9FC 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -150px;
    height: 250px;
    background: var(--navy);
    transform: rotate(-4deg);
    opacity: .025;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}
.hero-glow-one { width: 260px; height: 260px; left: -130px; top: 80px; background: rgba(255, 106, 0, .08); }
.hero-glow-two { width: 220px; height: 220px; right: 8%; bottom: -70px; background: rgba(32, 201, 151, .08); }
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 58px;
    align-items: center;
}
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.eyebrow span { width: 9px; height: 9px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 6px rgba(32, 201, 151, .12); }
.hero h1 {
    max-width: 720px;
    margin: 24px 0 24px;
    color: var(--navy);
    font-size: clamp(2.8rem, 5.4vw, 5.3rem);
    letter-spacing: -.065em;
}
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 11px 20px; margin-top: 25px; color: #475467; font-size: .88rem; font-weight: 700; }
.hero-points span::before { content: "✓"; margin-right: 7px; color: var(--teal); }

.product-shell {
    overflow: hidden;
    border: 1px solid rgba(184, 194, 212, .8);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: perspective(1100px) rotateY(-2deg) rotateX(1deg);
}
.browser-bar {
    height: 46px;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    padding: 0 14px;
    background: #F2F4F7;
    border-bottom: 1px solid #E4E7EC;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 9px; height: 9px; border-radius: 50%; background: #D0D5DD; }
.browser-dots span:first-child { background: #FF6B5E; }
.browser-dots span:nth-child(2) { background: #FFBD44; }
.browser-dots span:nth-child(3) { background: #00CA4E; }
.browser-address { justify-self: center; width: min(100%, 250px); padding: 7px 14px; color: #667085; background: #fff; border-radius: 8px; text-align: center; font-size: .72rem; }
.dashboard-preview { min-height: 448px; display: grid; grid-template-columns: 145px 1fr; background: #F8FAFC; }
.preview-sidebar { padding: 20px 14px; color: #7B8496; background: var(--navy); }
.preview-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #fff; font-size: .78rem; }
.preview-sidebar > span { display: block; margin: 7px 0; padding: 9px 10px; border-radius: 8px; font-size: .71rem; }
.preview-sidebar > span.active { color: #fff; background: rgba(255,255,255,.12); }
.preview-main { padding: 24px; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; }
.preview-heading small { color: var(--slate); }
.preview-heading h2 { margin: 3px 0 0; color: var(--navy); font-size: 1.25rem; }
.preview-avatar { width: 36px; height: 36px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 11px; font-size: .72rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 22px 0 16px; }
.metric-grid article { padding: 14px; background: #fff; border: 1px solid #EDF0F4; border-radius: 12px; box-shadow: 0 8px 20px rgba(11,19,43,.04); }
.metric-grid small, .metric-grid span { display: block; color: #98A2B3; font-size: .62rem; }
.metric-grid strong { display: block; margin: 5px 0; color: var(--navy); font-family: "Poppins"; font-size: 1.15rem; }
.preview-panels { display: grid; grid-template-columns: 1.45fr .8fr; gap: 12px; }
.job-list, .chart-card { padding: 14px; background: #fff; border: 1px solid #EDF0F4; border-radius: 12px; }
.panel-title { display: flex; justify-content: space-between; margin-bottom: 11px; color: var(--navy); font-size: .72rem; }
.panel-title span { color: var(--blue); font-size: .62rem; }
.job-row { display: grid; grid-template-columns: 8px 1fr auto; gap: 9px; align-items: center; padding: 9px 0; border-top: 1px solid #F0F2F5; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot.blue { background: var(--blue); }.dot.green { background: var(--teal); }.dot.orange { background: var(--orange); }
.job-row div { display: grid; }
.job-row strong { color: #344054; font-size: .67rem; }.job-row small { color: #98A2B3; font-size: .56rem; }
.status { padding: 4px 6px; border-radius: 999px; font-size: .49rem; }
.status.progress { color: #1769E0; background: #EAF2FF; }.status.done { color: #087B5B; background: #E7F8F2; }.status.pending { color: #C84C00; background: #FFF1E8; }
.chart { height: 145px; display: flex; align-items: flex-end; gap: 6px; padding-top: 14px; }
.chart span { flex: 1; min-height: 15px; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--orange), var(--yellow)); opacity: .88; }

.trust-strip { color: #fff; background: var(--navy); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 26px 28px; border-right: 1px solid rgba(255,255,255,.09); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { display: block; margin-bottom: 4px; color: var(--yellow); font-family: "Poppins"; }
.trust-grid span { color: rgba(255,255,255,.68); font-size: .84rem; }

.section { padding: 108px 0; }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading h2, .about-copy h2, .mode-card h2, .final-cta h2 {
    margin: 14px 0 16px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.45rem);
}
.section-heading p { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 255px; padding: 28px; overflow: hidden; background: var(--surface-soft); border: 1px solid #E8ECF2; border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-6px); border-color: #D3DAE7; box-shadow: var(--shadow-sm); }
.feature-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 44px; color: var(--orange); background: #fff; border: 1px solid #E4E7EC; border-radius: 12px; font-family: "Poppins"; font-size: .82rem; font-weight: 800; }
.feature-card::after { content: ""; position: absolute; width: 130px; height: 22px; right: -28px; top: 31px; background: linear-gradient(90deg, var(--yellow), var(--orange)); transform: rotate(-16deg); opacity: .12; }
.feature-card h3 { margin-bottom: 11px; color: var(--navy); font-size: 1.2rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.section-dark { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.section-dark::before { content: ""; position: absolute; inset: -100px -100px auto auto; width: 360px; height: 360px; border: 80px solid rgba(255,106,0,.08); border-radius: 50%; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: rgba(255,255,255,.68); }
.workflow-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workflow-card { padding: 28px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-md); }
.workflow-card span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 42px; color: var(--navy); background: linear-gradient(135deg, var(--yellow), var(--orange)); border-radius: 12px; font-family: "Poppins"; font-weight: 800; }
.workflow-card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.workflow-card p { margin: 0; color: rgba(255,255,255,.66); font-size: .91rem; }

.industry-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.industry-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-cloud span { padding: 14px 18px; color: var(--navy); background: #fff; border: 1px solid #E4E7EC; border-radius: 999px; box-shadow: 0 8px 22px rgba(11,19,43,.05); font-weight: 700; }
.industry-cloud span:nth-child(3n+1) { border-color: rgba(255,106,0,.32); }
.industry-cloud span:nth-child(3n+2) { border-color: rgba(0,122,255,.25); }
.industry-cloud span:nth-child(3n+3) { border-color: rgba(32,201,151,.28); }

.product-modes { padding-top: 0; }
.modes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode-card { min-height: 300px; padding: 34px; background: linear-gradient(145deg, #FFFFFF, #F4F7FB); border: 1px solid #E4E7EC; border-radius: var(--radius-md); }
.mode-card:nth-child(2) { color: #fff; background: linear-gradient(145deg, var(--navy), #162B59); border-color: transparent; }
.mode-card:nth-child(2) h2 { color: #fff; }
.mode-card:nth-child(2) p { color: rgba(255,255,255,.68); }
.mode-label { color: var(--orange); font-size: .77rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.mode-card h2 { margin-top: 42px; font-size: 2rem; }
.mode-card p { margin: 0; color: var(--muted); }

.about-section { background: var(--surface-soft); }
.about-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: center; }
.about-mark { display: grid; place-items: center; min-height: 390px; background: linear-gradient(145deg, #fff, #EEF2F8); border: 1px solid #E4E7EC; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about-copy h2 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.2rem); }
.about-copy > p { max-width: 760px; color: var(--muted); font-size: 1.03rem; }
.profile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
.profile-grid div { padding: 22px; background: #fff; border: 1px solid #E4E7EC; border-radius: 15px; }
.profile-grid strong { display: block; margin-bottom: 6px; color: var(--navy); font-family: "Poppins"; }
.profile-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq-section { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.faq-list details { border-top: 1px solid #E4E7EC; }
.faq-list details:last-child { border-bottom: 1px solid #E4E7EC; }
.faq-list summary { position: relative; padding: 22px 44px 22px 0; color: var(--navy); cursor: pointer; list-style: none; font-family: "Poppins"; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 17px; color: var(--orange); font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 44px 22px 0; margin: 0; color: var(--muted); }

.final-cta { position: relative; overflow: hidden; padding: 84px 0; color: #fff; background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 460px; height: 70px; right: -90px; background: var(--navy); transform: rotate(-17deg); opacity: .18; }
.final-cta::before { top: 20px; }.final-cta::after { bottom: -15px; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.final-cta .section-kicker { color: #fff; }
.final-cta h2 { max-width: 760px; margin-bottom: 10px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); }
.final-cta p { margin: 0; color: rgba(255,255,255,.84); }

.site-footer { padding: 58px 0 24px; color: rgba(255,255,255,.76); background: #081023; }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-brand { color: #fff; }
.footer-note { margin: 16px 0 0; color: rgba(255,255,255,.5); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.44); font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr; }
    .product-shell { max-width: 820px; transform: none; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-layout, .about-grid, .faq-layout { grid-template-columns: 1fr; gap: 38px; }
    .about-mark { min-height: 300px; }
}

@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        inset: 79px 18px auto;
        display: grid;
        gap: 5px;
        padding: 18px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        background: #fff;
        border: 1px solid #E4E7EC;
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }
    .primary-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .primary-nav > a:not(.button) { padding: 10px 8px; }
    .primary-nav .button { margin-top: 8px; }
    .hero { padding-top: 68px; }
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .preview-panels { grid-template-columns: 1fr; }
    .trust-grid, .modes-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid div:nth-child(2) { border-right: 0; }
    .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.09); }
    .cta-inner, .footer-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .site-header .brand small { display: none; }
    .hero { padding: 50px 0 65px; }
    .hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
    .hero-actions .button { width: 100%; }
    .product-shell { border-radius: 16px; }
    .browser-bar { grid-template-columns: 60px 1fr 30px; }
    .dashboard-preview { grid-template-columns: 1fr; min-height: 500px; }
    .preview-sidebar { display: none; }
    .preview-main { padding: 16px; }
    .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-grid, .workflow-grid, .modes-grid, .profile-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
    .trust-grid div:last-child { border-bottom: 0; }
    .section { padding: 78px 0; }
    .section-heading { margin-bottom: 32px; }
    .feature-card { min-height: auto; }
    .feature-number { margin-bottom: 28px; }
    .about-mark { min-height: 250px; }
    .footer-bottom { flex-direction: column; }
}
