:root {
    --orange: #f47a00;
    --orange-dark: #d85f00;
    --ink: #24262b;
    --muted: #666a73;
    --line: #e7e7e7;
    --paper: #ffffff;
    --soft: #f6f5f2;
    --dark: #25262a;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(31, 32, 35, 0.09);
    --shadow-strong: 0 28px 80px rgba(27, 28, 31, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
    outline: 3px solid rgba(244, 122, 0, 0.45);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    padding: 10px 15px;
    color: #fff;
    background: var(--ink);
    border-radius: 6px;
}

.skip-link:focus { transform: translateY(0); }

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

.section { padding: 100px 0; }

.topbar {
    color: rgba(255, 255, 255, 0.74);
    background: #1c1d20;
    font-size: 0.77rem;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-inner div { display: flex; gap: 24px; }
.topbar a { text-decoration: none; }
.topbar i { margin-right: 5px; color: var(--orange); }
.topbar a:hover { color: #fff; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

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

.brand img {
    display: block;
    width: 210px;
    height: 58px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    font-size: 0.94rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.main-nav a:hover { color: var(--orange); }
.main-nav a.active:not(.nav-cta) { color: var(--orange); }

.main-nav .nav-cta {
    padding: 10px 18px;
    color: #fff;
    background: var(--ink);
    border-radius: 999px;
}

.main-nav .nav-cta:hover {
    color: #fff;
    background: var(--orange);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.hero {
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 255, 255, 0.66) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.66) 1px, transparent 1px),
        radial-gradient(circle at 78% 22%, rgba(244, 122, 0, 0.17), transparent 25%),
        linear-gradient(120deg, #faf9f7 0%, #fff 55%, #f5f3ef 100%);
    background-size: 48px 48px, 48px 48px, auto, auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
    padding-block: 88px;
}

.eyebrow,
.section-kicker {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.eyebrow span {
    width: 32px;
    height: 2px;
    background: var(--orange);
}

h1, h2, h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.15;
}

h1 {
    max-width: 730px;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    letter-spacing: -0.055em;
}

h1 em {
    color: var(--orange);
    font-style: normal;
}

.hero-lead {
    max-width: 690px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 1.13rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 28px;
    color: #565961;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-proof i {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    margin-right: 5px;
    color: #fff;
    background: var(--orange);
    border-radius: 50%;
    font-size: 0.57rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(244, 122, 0, 0.22);
}

.button-primary:hover { background: var(--orange-dark); }

.button-ghost {
    border-color: #cacaca;
    background: rgba(255, 255, 255, 0.7);
}

.button-ghost:hover { background: #fff; }

.hero-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
}

.visual-label {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 26px;
    color: #747780;
    font: 700 0.68rem "Manrope", sans-serif;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.code-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    color: #e5e7eb;
    background: #27282d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(22, 22, 24, 0.22);
}

.code-card-main {
    width: min(480px, 100%);
    transform: perspective(900px) rotateY(-4deg) rotateZ(-1.5deg);
}

.code-top {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    background: #202126;
}

.code-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #55565d;
}

.code-top span:first-child { background: var(--orange); }
.code-top small { margin-left: auto; color: #8e9098; }

.code-lines {
    padding: 32px 26px 34px;
    font: 500 0.88rem/2.15 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.code-lines p { white-space: nowrap; }
.code-lines b { margin-right: 16px; color: #686b74; font-weight: 400; }
.purple { color: #c792ea; }
.orange { color: #ff9b50; }
.blue { color: #82aaff; }

.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-size: 0.86rem;
    font-weight: 700;
}

.float-card i { color: var(--orange); }
.float-card-top { top: 40px; right: -6px; }
.float-card-bottom { bottom: 38px; left: -14px; }

.visual-status {
    position: absolute;
    z-index: 4;
    right: 8px;
    bottom: 6px;
    padding: 8px 12px;
    color: #fff;
    background: rgba(37, 38, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.visual-status span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 7px;
    background: #54d18b;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(84, 209, 139, 0.14);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(244, 122, 0, 0.24);
    border-radius: 50%;
}

.orbit-one { width: 430px; height: 430px; }
.orbit-two { width: 560px; height: 560px; }

.facts {
    position: relative;
    z-index: 4;
    border-block: 1px solid var(--line);
    background: #fff;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid var(--line);
}

.fact:first-child { border-left: 1px solid var(--line); }
.fact i { color: var(--orange); font-size: 1.45rem; }
.fact span, .fact strong { display: block; }
.fact span { color: var(--muted); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; }
.fact strong { margin-top: 2px; font-size: 1.02rem; }

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.section-kicker { margin-bottom: 16px; }

.intro h2,
.section-heading h2,
.approach h2,
.contact h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    letter-spacing: -0.04em;
}

.intro-copy {
    padding-left: 32px;
    border-left: 3px solid var(--orange);
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-copy p + p { margin-top: 18px; }

.capabilities { padding-top: 20px; }

.section-heading.compact { margin-bottom: 40px; }

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.capabilities-grid article {
    position: relative;
    min-height: 290px;
    padding: 34px 28px;
    background: #fff;
    border-right: 1px solid var(--line);
    transition: color 0.25s ease, background 0.25s ease;
}

.capabilities-grid article:last-child { border-right: 0; }
.capabilities-grid article:hover { color: #fff; background: var(--dark); }

.capability-number {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #c9c9c9;
    font: 800 0.7rem "Manrope", sans-serif;
    letter-spacing: 0.12em;
}

.capabilities-grid i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 38px 0 28px;
    color: var(--orange);
    background: rgba(244, 122, 0, 0.1);
    border-radius: 14px;
    font-size: 1.25rem;
}

.capabilities-grid h3 { margin-bottom: 12px; font-size: 1.25rem; }
.capabilities-grid p { color: var(--muted); font-size: 0.92rem; }
.capabilities-grid article:hover p { color: rgba(255, 255, 255, 0.67); }

.program { background: var(--soft); }

.section-heading {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 52px;
}

.section-heading > p { color: var(--muted); }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.area-card {
    min-height: 370px;
    padding: 28px;
    background: #fff;
    border: 1px solid #eceae6;
    border-radius: var(--radius);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 122, 0, 0.45);
    box-shadow: var(--shadow);
}

.area-card.featured {
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
}

.area-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.area-head span {
    color: var(--orange);
    font: 800 0.8rem "Manrope", sans-serif;
    letter-spacing: 0.1em;
}

.area-head i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: rgba(244, 122, 0, 0.1);
    border-radius: 12px;
    font-size: 1.1rem;
}

.area-card h3 {
    min-height: 52px;
    margin-bottom: 22px;
    font-size: 1.25rem;
}

.area-card ul { list-style: none; }

.area-card li {
    position: relative;
    padding: 7px 0 7px 20px;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.45;
}

.area-card li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.area-card.featured li { color: rgba(255, 255, 255, 0.7); }

.ecosystem {
    padding: 34px 0;
    color: #fff;
    background: var(--orange);
    overflow: hidden;
}

.ecosystem-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 38px;
    align-items: center;
}

.ecosystem-inner > p {
    font: 700 0.8rem/1.45 "Manrope", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tool-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tool-list span {
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}

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

.approach-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: center;
}

.section-kicker.light { color: #ff9a3d; }
.approach-panel > p:not(.section-kicker) { margin: 26px 0; color: rgba(255, 255, 255, 0.68); }
.approach-panel > a { color: #fff; font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 5px; }
.approach-panel > a i { margin-left: 7px; font-size: 0.8rem; }

.approach-points article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-points article:first-child { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.approach-points span { color: var(--orange); font-weight: 800; }
.approach-points h3 { margin-bottom: 8px; font-size: 1.12rem; }
.approach-points p { color: rgba(255, 255, 255, 0.6); font-size: 0.94rem; }

.journey { background: #fff; }
.journey-heading { max-width: 670px; margin-bottom: 65px; }
.journey-heading h2, .faq h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -0.04em; }

.journey-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.journey-track::before {
    content: "";
    position: absolute;
    top: 43px;
    right: 7%;
    left: 7%;
    height: 1px;
    background: #d9d9d9;
}

.journey-track article {
    position: relative;
    z-index: 1;
    text-align: center;
}

.journey-track span {
    color: #aaa;
    font: 700 0.68rem "Manrope", sans-serif;
    letter-spacing: 0.1em;
}

.journey-dot {
    width: 17px;
    height: 17px;
    margin: 18px auto 25px;
    background: #fff;
    border: 4px solid var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 7px #fff;
}

.journey-track h3 { margin-bottom: 7px; font-size: 1rem; }
.journey-track p { color: var(--muted); font-size: 0.8rem; }

.faq { background: var(--soft); }

.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 95px;
}

.faq-intro > p:last-child {
    margin-top: 22px;
    color: var(--muted);
}

.faq-list details { border-bottom: 1px solid #dcdad5; }
.faq-list details:first-child { border-top: 1px solid #dcdad5; }

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    cursor: pointer;
    list-style: none;
    font: 700 1rem "Manrope", sans-serif;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary i {
    color: var(--orange);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; padding: 0 45px 23px 0; color: var(--muted); }

.contact { background: #fff; }

.contact-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
    padding: 56px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 92% 15%, rgba(244, 122, 0, 0.45), transparent 26%),
        var(--dark);
    border: 1px solid var(--dark);
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
}

.contact-box > div:first-child > p:last-child {
    max-width: 680px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.64);
}

.contact-box .section-kicker { color: #ff9a3d; }

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.phone-link {
    font-weight: 700;
    text-decoration: none;
}

.phone-link i { margin-right: 6px; color: var(--orange); }
.contact-box .phone-link { color: #fff; }

.site-footer {
    padding: 70px 0 24px;
    color: rgba(255, 255, 255, 0.68);
    background: #1c1d20;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 80px;
    padding-bottom: 50px;
}

.footer-brand img {
    width: 240px;
    padding: 8px;
    background: #fff;
    border-radius: 7px;
}

.footer-brand p { max-width: 430px; margin-top: 20px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { margin-bottom: 8px; color: #fff; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--orange); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
}

.mobile-contact { display: none; }

.scroll-progress {
    position: fixed;
    z-index: 150;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--orange);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 25px; }
    .hero-visual { min-height: 390px; }
    .facts-grid { grid-template-columns: repeat(2, 1fr); }
    .fact:nth-child(2) { border-right: 0; }
    .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .section-heading, .approach-grid, .faq-grid { grid-template-columns: 1fr; gap: 35px; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .capabilities-grid article:nth-child(2) { border-right: 0; }
    .capabilities-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .journey-track { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
    .journey-track::before { display: none; }
    .contact-box { grid-template-columns: 1fr; }
    .contact-actions { align-items: flex-start; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 28px, 1180px); }
    .section { padding: 74px 0; }
    .header-inner { min-height: 72px; }
    .topbar { display: none; }
    .brand img { width: 175px; height: 48px; }
    .menu-toggle { display: flex; align-items: center; gap: 8px; }
    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 4px; }
    .main-nav .nav-cta { margin-top: 6px; text-align: center; }
    .hero { min-height: auto; }
    .hero-grid { padding-block: 65px 75px; }
    h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-visual { min-height: 330px; }
    .code-lines { padding: 25px 17px; font-size: 0.7rem; }
    .float-card-top { right: 0; top: 4px; }
    .float-card-bottom { left: 0; bottom: 5px; }
    .visual-label { top: -8px; left: 0; }
    .visual-status { right: 0; bottom: -10px; }
    .orbit-one { width: 320px; height: 320px; }
    .orbit-two { display: none; }
    .facts-grid, .intro-grid, .areas-grid, .footer-grid, .capabilities-grid { grid-template-columns: 1fr; }
    .fact, .fact:first-child { border: 0; border-bottom: 1px solid var(--line); }
    .fact:last-child { border-bottom: 0; }
    .intro-grid { gap: 35px; }
    .intro-copy { padding-left: 22px; }
    .section-heading { margin-bottom: 34px; }
    .capabilities-grid article,
    .capabilities-grid article:nth-child(2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .capabilities-grid article:last-child { border-bottom: 0; }
    .ecosystem-inner { grid-template-columns: 1fr; gap: 18px; }
    .journey-track { grid-template-columns: repeat(2, 1fr); }
    .area-card { min-height: auto; }
    .area-card h3 { min-height: auto; }
    .approach-grid { gap: 50px; }
    .contact-box { padding: 35px 24px; }
    .footer-grid { gap: 36px; }
    .footer-bottom { flex-direction: column; }
    .mobile-contact {
        position: fixed;
        z-index: 90;
        right: 14px;
        bottom: 14px;
        left: 14px;
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        color: #fff;
        background: var(--orange);
        border-radius: 9px;
        box-shadow: 0 14px 35px rgba(216, 95, 0, 0.34);
        font-weight: 800;
        text-decoration: none;
        transform: translateY(90px);
        transition: transform 0.25s ease;
    }
    .mobile-contact.visible { transform: translateY(0); }
    .site-footer { padding-bottom: 94px; }
}

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