:root {
    --orange: #ff6b00;
    --orange-2: #ff8a2d;
    --orange-soft: #fff1e6;
    --orange-pale: #fff8f2;
    --ink: #111318;
    --ink-2: #191c22;
    --graphite: #2d3139;
    --muted: #6f747d;
    --line: #e8e8ea;
    --paper: #ffffff;
    --paper-2: #f7f7f8;
    --warm: #fbf5ef;
    --green: #1da66b;
    --shadow: 0 24px 70px rgba(17, 19, 24, .10);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body.site-body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: .022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; }
.section-light { background: var(--paper); }
.section-warm { background: var(--warm); }
.pt-tight { padding-top: 54px; }

h1, h2, h3, h4 {
    font-family: 'Manrope', 'DM Sans', sans-serif;
    letter-spacing: -.035em;
    margin: 0;
}
p { margin: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,107,0,.10); }
.eyebrow-on-dark { color: #ff9b56; }

.button {
    min-height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--orange-2)); box-shadow: 0 12px 28px rgba(255,107,0,.22); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(255,107,0,.30); }
.button-ghost { color: var(--ink); background: #fff; border-color: var(--line); }
.button-ghost:hover { border-color: #c7c8cc; box-shadow: 0 10px 30px rgba(17,19,24,.06); }
.button-dark { color: #fff; background: var(--ink); }
.button-dark-outline { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.03); }
.button-dark-outline:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.07); }
.button-sm { min-height: 42px; padding: 0 16px; font-size: 13px; border-radius: 12px; }
.button-lg { min-height: 54px; padding: 0 24px; font-size: 15px; }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-weight: 800; color: var(--ink); }
.text-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link-light { color: #fff; }

/* Navigation */
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; padding-top: 18px; transition: padding .25s ease; }
.site-header.is-scrolled { padding-top: 10px; }
.nav-shell {
    height: 70px;
    padding: 0 12px 0 18px;
    border: 1px solid rgba(17,19,24,.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,.84);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 10px 36px rgba(17,19,24,.06);
    transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled .nav-shell { box-shadow: 0 18px 46px rgba(17,19,24,.09); border-color: rgba(17,19,24,.10); }
.brand-link { flex: 0 0 auto; display: flex; align-items: center; }
.brand-logo { width: 148px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.nav-link { position: relative; padding: 10px 11px; color: #4e535b; font-size: 14px; font-weight: 700; border-radius: 10px; transition: .2s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--ink); background: #f7f7f8; }
.nav-link.is-active::after { content: ''; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.language-switch { min-width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; color: var(--muted); background: #f4f4f5; transition: .2s ease; }
.language-switch:hover { color: var(--orange); background: var(--orange-soft); }
.nav-login { padding: 10px 8px; font-size: 13px; font-weight: 800; color: #4f545c; }
.mobile-menu-toggle { display: none; width: 46px; height: 46px; border-radius: 13px; border: 1px solid var(--line); background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 4px; transition: transform .25s ease, opacity .25s ease; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; margin-top: 8px; background: rgba(255,255,255,.98); backdrop-filter: blur(20px); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.mobile-menu.is-open { display: block; }
.mobile-menu-inner { padding: 16px; }
.mobile-nav-link { display: flex; padding: 14px 12px; font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 800; border-bottom: 1px solid #f0f0f1; }
.mobile-nav-link.is-active { color: var(--orange); }
.mobile-menu-actions { display: grid; grid-template-columns: 48px 1fr; gap: 10px; margin-top: 16px; }
.mobile-menu-actions .button-primary { grid-column: 1 / -1; }

/* Hero */
.hero-section { min-height: 820px; padding: 174px 0 90px; position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fffaf6 100%); }
.hero-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(17,19,24,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17,19,24,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 75%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 520px; height: 520px; right: -180px; top: 90px; background: radial-gradient(circle, rgba(255,107,0,.14), rgba(255,107,0,0) 68%); }
.hero-orb-two { width: 360px; height: 360px; left: -160px; bottom: 0; background: radial-gradient(circle, rgba(255,177,112,.14), rgba(255,177,112,0) 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .94fr 1.06fr; gap: 58px; align-items: center; }
.hero-copy { max-width: 610px; }
.hero-title { font-size: clamp(48px, 6vw, 78px); line-height: .99; font-weight: 700; }
.hero-title span { display: block; color: var(--ink); }
.hero-title strong { display: block; margin-top: 8px; color: var(--orange); font-weight: 800; }
.hero-subtitle { max-width: 640px; margin-top: 28px; color: #5f646d; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.proof-row span { display: inline-flex; align-items: center; gap: 7px; color: #70757d; font-size: 12px; font-weight: 700; }
.proof-row svg { width: 16px; height: 16px; color: var(--green); stroke-width: 2.4; }
.hero-visual { position: relative; min-height: 590px; display: flex; align-items: center; justify-content: center; }
.command-card { width: 100%; max-width: 610px; padding: 20px; background: rgba(255,255,255,.96); border: 1px solid rgba(17,19,24,.08); border-radius: 30px; box-shadow: 0 36px 90px rgba(47, 39, 31, .15); transform: rotate(-1.2deg); }
.command-topbar { display: flex; align-items: flex-start; justify-content: space-between; padding: 6px 4px 17px; border-bottom: 1px solid #ececef; }
.command-topbar > div:first-child { display: flex; flex-direction: column; gap: 2px; }
.command-kicker { color: var(--orange); font-family: 'Manrope', sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.command-topbar strong { font-family: 'Manrope', sans-serif; font-size: 15px; }
.status-live { display: flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 9px; background: #effaf5; color: #267654; font-size: 10px; font-weight: 800; }
.status-live span { width: 6px; height: 6px; border-radius: 50%; background: #22a76d; box-shadow: 0 0 0 4px rgba(34,167,109,.10); }
.command-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; padding: 17px 0 13px; }
.metric-card { min-width: 0; padding: 13px 12px; border: 1px solid #ededf0; border-radius: 14px; background: #fafafb; }
.metric-card span { display: block; color: #7f848c; font-size: 9px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.metric-card strong { display: block; margin-top: 5px; font-family: 'Manrope', sans-serif; font-size: 17px; }
.metric-card small { display: block; margin-top: 3px; color: #81858c; font-size: 9px; }
.metric-orange { background: var(--orange-soft); border-color: #ffd7bb; }
.metric-orange strong, .metric-orange small { color: #d75600; }
.command-main-grid { display: grid; grid-template-columns: 1.45fr .8fr; gap: 10px; }
.chart-panel, .activity-panel { min-height: 185px; border: 1px solid #ededf0; border-radius: 16px; background: #fff; }
.chart-panel { padding: 14px; position: relative; overflow: hidden; }
.chart-header { display: flex; align-items: center; justify-content: space-between; font-size: 10px; font-weight: 800; }
.chart-header small { color: #9a9ea5; font-weight: 600; }
.chart-bars { height: 112px; display: flex; align-items: end; gap: 8px; margin-top: 18px; border-bottom: 1px solid #eeeeef; }
.chart-bars i { flex: 1; min-width: 8px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, rgba(255,107,0,.92), rgba(255,107,0,.18)); }
.chart-line { position: absolute; left: 15px; right: 15px; top: 92px; height: 2px; transform: rotate(-7deg); background: linear-gradient(90deg, transparent, #17191e 18%, #17191e 82%, transparent); opacity: .55; }
.activity-panel { padding: 10px; display: flex; flex-direction: column; justify-content: center; }
.activity-row { display: flex; gap: 9px; align-items: center; padding: 10px 4px; border-bottom: 1px solid #f1f1f2; }
.activity-row:last-child { border-bottom: 0; }
.activity-icon { width: 28px; height: 28px; border-radius: 8px; background: #f2f2f4; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.activity-row div { min-width: 0; }
.activity-row b { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 9px; }
.activity-row small { display: block; margin-top: 2px; color: #999da4; font-size: 8px; }
.ai-insight { margin-top: 10px; padding: 13px 14px; border-radius: 16px; color: #fff; background: linear-gradient(135deg, #17191e, #2c2f36); display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; }
.ai-mark { width: 34px; height: 34px; border-radius: 11px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; }
.ai-insight strong { font-family: 'Manrope', sans-serif; font-size: 10px; }
.ai-insight p { margin-top: 2px; color: #c7cad0; font-size: 9px; line-height: 1.4; }
.ai-arrow { color: #ff9d59; }
.floating-chip { position: absolute; padding: 10px 13px; border-radius: 12px; background: rgba(255,255,255,.97); border: 1px solid rgba(17,19,24,.08); box-shadow: 0 15px 35px rgba(17,19,24,.10); font-size: 10px; font-weight: 800; }
.chip-one { left: -20px; top: 105px; transform: rotate(4deg); }
.chip-two { right: -24px; bottom: 92px; transform: rotate(-3deg); color: #13764b; }

.trust-strip { padding: 25px 0; border-top: 1px solid #ececef; border-bottom: 1px solid #ececef; background: #fff; }
.trust-strip .site-container { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.trust-strip p { max-width: 410px; color: #767b83; font-size: 12px; font-weight: 700; }
.industry-ticker { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; color: #31343a; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; }
.industry-ticker i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

/* General section patterns */
.section-heading h2, .split-heading h2, .architecture-copy h2, .module-showcase-copy h2, .intelligence-copy h2, .two-column-story h2, .guardrail-grid h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.08; font-weight: 800; }
.section-heading p, .architecture-copy p, .module-showcase-copy p, .intelligence-copy > p { margin-top: 20px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.max-copy { max-width: 760px; }
.three-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.premium-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; transition: .25s ease; }
.premium-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(17,19,24,.07); border-color: #dddde0; }
.number-badge { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--orange); background: var(--orange-soft); font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 800; }
.premium-card h3 { margin-top: 46px; font-size: 22px; font-weight: 800; }
.premium-card p { margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.architecture-section { color: #fff; background: radial-gradient(circle at 85% 15%, rgba(255,107,0,.17), transparent 26%), linear-gradient(135deg, #111318, #191c22 65%, #14161b); overflow: hidden; }
.architecture-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.architecture-copy p { color: #aeb2b9; }
.layer-stack { display: grid; gap: 12px; }
.layer-card { padding: 25px 26px; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; background: rgba(255,255,255,.04); backdrop-filter: blur(10px); position: relative; overflow: hidden; }
.layer-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(var(--orange), #ff9c58); opacity: .95; }
.layer-card span { color: #ff9b55; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.layer-card h3 { margin-top: 7px; font-size: 23px; }
.layer-card p { margin-top: 8px; color: #aeb2b9; font-size: 14px; line-height: 1.6; }

.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.split-heading p { padding-bottom: 8px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.industry-card { min-height: 245px; padding: 24px; border-radius: 22px; background: #fff; border: 1px solid rgba(17,19,24,.07); transition: .25s ease; }
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(79,57,39,.08); }
.industry-card-top { display: flex; justify-content: space-between; align-items: center; }
.industry-index { color: var(--orange); font-size: 11px; font-weight: 800; }
.industry-arrow { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #f4f4f5; }
.industry-card h3 { margin-top: 54px; font-size: 21px; }
.industry-card p { margin-top: 11px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.center-action { text-align: center; margin-top: 36px; }

.module-showcase-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.module-cloud { min-height: 360px; padding: 32px; border-radius: 30px; background: linear-gradient(145deg, #f6f6f7, #fff); border: 1px solid var(--line); display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 12px; }
.module-pill { padding: 13px 16px; border: 1px solid #e1e1e4; border-radius: 999px; background: #fff; font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; box-shadow: 0 8px 20px rgba(17,19,24,.04); }
.module-pill-accent { color: #d95b02; border-color: #ffd2b2; background: var(--orange-soft); }

.intelligence-section { background: #fff; }
.intelligence-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 78px; align-items: center; }
.intelligence-panel { padding: 22px; border-radius: 30px; background: #13151a; color: #fff; box-shadow: 0 32px 70px rgba(17,19,24,.18); }
.ai-console-top { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ai-console-mark { width: 34px; height: 34px; border-radius: 11px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; }
.ai-console-top div { display: flex; flex-direction: column; }
.ai-console-top small { color: #777d87; font-size: 8px; letter-spacing: .13em; }
.ai-console-top strong { font-size: 12px; }
.ai-console-top i { margin-left: auto; padding: 6px 9px; border-radius: 8px; background: rgba(255,107,0,.13); color: #ff9851; font-style: normal; font-size: 9px; font-weight: 800; }
.ai-message { max-width: 88%; margin-top: 18px; padding: 14px 16px; border-radius: 15px; font-size: 12px; line-height: 1.55; }
.ai-message-user { margin-left: auto; color: #22252b; background: #fff; border-bottom-right-radius: 5px; }
.ai-message-system { display: flex; gap: 10px; color: #c5c9cf; background: #1d2026; border: 1px solid rgba(255,255,255,.06); border-bottom-left-radius: 5px; }
.ai-message-system b { color: #ff9650; }
.mini-loader { flex: 0 0 auto; width: 9px; height: 9px; margin-top: 4px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,.10); }
.ai-suggestions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.ai-suggestions span { padding: 8px 10px; border-radius: 9px; color: #9da1aa; border: 1px solid rgba(255,255,255,.08); font-size: 9px; }
.question-list { display: grid; gap: 10px; margin-top: 28px; }
.question-list div { display: flex; gap: 10px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid #ededee; color: #51565f; font-size: 14px; }
.question-list span { color: var(--orange); font-weight: 800; }

.cta-section { padding-top: 60px; }
.cta-card { position: relative; overflow: hidden; padding: 68px; border-radius: 34px; color: #fff; background: #111318; }
.cta-card h2 { max-width: 900px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.08; }
.cta-card > p { max-width: 680px; margin-top: 18px; color: #aeb2b9; font-size: 16px; line-height: 1.7; }
.cta-actions { display: flex; gap: 11px; flex-wrap: wrap; margin-top: 30px; }
.cta-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; right: -160px; top: -210px; background: radial-gradient(circle, rgba(255,107,0,.35), rgba(255,107,0,0) 70%); }

/* Inner page hero */
.page-hero { min-height: 670px; padding: 185px 0 92px; background: linear-gradient(180deg, #fff 0%, #fff8f2 100%); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; right: -170px; top: 70px; background: radial-gradient(circle, rgba(255,107,0,.15), transparent 70%); }
.page-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; position: relative; z-index: 2; }
.page-hero h1, .page-hero-centered h1 { max-width: 800px; font-size: clamp(45px, 5.6vw, 72px); line-height: 1.03; font-weight: 800; }
.page-hero p, .page-hero-centered p { max-width: 680px; margin-top: 24px; color: var(--muted); font-size: 18px; line-height: 1.72; }
.compact-hero { min-height: 510px; padding-bottom: 70px; }
.page-hero-centered { max-width: 880px; margin: 0 auto; text-align: center; }
.page-hero-centered p { margin-left: auto; margin-right: auto; }

.core-map { position: relative; width: min(520px, 100%); aspect-ratio: 1; margin: 0 auto; border-radius: 50%; border: 1px solid rgba(17,19,24,.07); background: radial-gradient(circle at center, #fff 0 24%, #f8f8f9 24.2% 46%, #fff 46.2% 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.5), 0 30px 70px rgba(17,19,24,.08); }
.core-map::before, .core-map::after { content: ''; position: absolute; inset: 18%; border-radius: 50%; border: 1px dashed #dedfe2; }
.core-map::after { inset: 35%; border-style: solid; border-color: #f0f0f1; }
.core-center { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); width: 118px; height: 118px; border-radius: 34px; color: #fff; background: #111318; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 20px 40px rgba(17,19,24,.18); z-index: 4; }
.core-center span { width: 34px; height: 34px; border-radius: 11px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; }
.core-center strong { font-family: 'Manrope', sans-serif; font-size: 11px; line-height: 1.15; }
.core-node { position: absolute; z-index: 3; padding: 8px 11px; border-radius: 10px; background: #fff; border: 1px solid #e7e7e9; box-shadow: 0 10px 22px rgba(17,19,24,.06); font-size: 9px; font-weight: 800; }
.core-node-1 { left: 39%; top: 7%; }.core-node-2 { right: 4%; top: 25%; }.core-node-3 { right: 2%; top: 55%; }.core-node-4 { right: 16%; bottom: 8%; }.core-node-5 { left: 39%; bottom: 3%; }.core-node-6 { left: 8%; bottom: 14%; }.core-node-7 { left: 1%; top: 53%; }.core-node-8 { left: 4%; top: 25%; }.core-node-9 { left: 39%; top: 24%; }

.principle-card { display: grid; grid-template-columns: 75px 1fr; gap: 24px; padding: 34px; border-radius: 26px; background: var(--warm); border: 1px solid #eee3d9; }
.principle-card > span { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--orange); color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800; }
.principle-card h2 { font-size: 28px; }
.principle-card p { max-width: 860px; margin-top: 10px; color: #6b6865; font-size: 16px; line-height: 1.7; }
.entity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.entity-card { min-height: 190px; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: #fff; }
.entity-dot { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px var(--orange-soft); }
.entity-card h3 { margin-top: 30px; font-size: 20px; }
.entity-card p { margin-top: 9px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.two-column-story, .guardrail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.large-copy { color: var(--muted); font-size: 19px; line-height: 1.75; }
.architecture-section .large-copy { color: #b8bbc2; }
.profile-flow { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.profile-flow span, .profile-flow strong { padding: 10px 12px; border-radius: 11px; background: #fff; border: 1px solid #e5ded8; font-size: 12px; }
.profile-flow strong { color: #fff; background: var(--orange); border-color: var(--orange); }
.profile-flow b { color: var(--orange); }
.check-grid { display: grid; gap: 12px; }
.check-grid div { display: flex; gap: 12px; align-items: center; padding: 15px 16px; border-radius: 13px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); color: #d1d4d8; }
.check-grid svg { flex: 0 0 auto; width: 18px; height: 18px; color: #ff9a56; stroke-width: 2.3; }

/* Industry page */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pack-card { min-height: 300px; padding: 26px; border-radius: 24px; border: 1px solid var(--line); background: #fff; transition: .25s ease; }
.pack-card:hover { transform: translateY(-4px); box-shadow: 0 22px 45px rgba(17,19,24,.07); }
.pack-card-featured { border-color: #ffc79e; background: linear-gradient(145deg, #fff9f5, #fff); }
.pack-meta { display: flex; align-items: center; justify-content: space-between; }
.pack-meta > span { color: var(--orange); font-size: 11px; font-weight: 800; }
.pack-meta small { padding: 6px 8px; border-radius: 8px; background: #f4f4f5; color: #787d85; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.pack-card-featured .pack-meta small { color: #d75b02; background: var(--orange-soft); }
.pack-card h2 { margin-top: 62px; font-size: 25px; }
.pack-card p { margin-top: 12px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.pack-line { width: 46px; height: 3px; margin-top: 26px; border-radius: 3px; background: var(--orange); }
.lpg-section { color: #fff; background: #111318; }
.lpg-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.lpg-grid h2 { font-size: clamp(36px, 4vw, 56px); line-height: 1.08; }
.lpg-grid > div:first-child > p { margin-top: 22px; color: #b6bac1; font-size: 17px; line-height: 1.7; }
.asset-passport { padding: 24px; border-radius: 28px; color: var(--ink); background: #fff; box-shadow: 0 30px 65px rgba(0,0,0,.25); }
.asset-passport-top { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.asset-code small { display: block; color: #979ba2; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.asset-code strong { display: block; margin-top: 4px; font-family: 'Manrope', sans-serif; font-size: 20px; }
.asset-status { padding: 7px 9px; border-radius: 8px; color: #18744e; background: #eaf8f1; font-size: 8px; font-weight: 800; }
.asset-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 18px 0; }
.asset-facts div { padding: 12px; border-radius: 12px; background: #f7f7f8; }
.asset-facts small { display: block; color: #969aa1; font-size: 8px; }
.asset-facts strong { display: block; margin-top: 4px; font-size: 11px; }
.asset-flow { display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; padding-top: 13px; border-top: 1px solid var(--line); }
.asset-flow-step { min-width: 0; text-align: center; position: relative; }
.asset-flow-step::before { content: ''; position: absolute; left: 50%; right: -55%; top: 10px; height: 1px; background: #e1e1e4; }
.asset-flow-step:last-child::before { display: none; }
.asset-flow-step span { position: relative; z-index: 1; width: 20px; height: 20px; margin: 0 auto; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #ececef; color: #858a92; font-size: 7px; font-weight: 800; }
.asset-flow-step.is-done span { color: #fff; background: var(--orange); }
.asset-flow-step small { display: block; margin-top: 7px; color: #8e9299; font-size: 7px; line-height: 1.2; }

/* Capability page */
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.capability-card { min-height: 240px; padding: 26px; border-radius: 23px; border: 1px solid var(--line); background: #fff; }
.capability-top { display: flex; align-items: center; justify-content: space-between; }
.capability-top span { color: var(--orange); font-size: 10px; font-weight: 800; }
.capability-top i { width: 10px; height: 10px; border-radius: 50%; background: #f0f0f2; box-shadow: 0 0 0 6px #f7f7f8; }
.capability-card h2 { margin-top: 55px; font-size: 25px; }
.capability-card p { margin-top: 12px; max-width: 500px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.rule-banner { margin-top: 24px; padding: 34px; border-radius: 26px; color: #fff; background: #111318; display: grid; grid-template-columns: 160px 1fr; gap: 35px; align-items: start; }
.rule-banner > span { color: #ff9a56; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.rule-banner h2 { font-size: 25px; }
.rule-banner p { margin-top: 8px; color: #b2b6bd; line-height: 1.65; }

/* Intelligence page */
.intelligence-page-hero { background: radial-gradient(circle at 80% 35%, rgba(255,107,0,.17), transparent 25%), linear-gradient(180deg, #fff, #fff8f2); }
.ai-orbit { position: relative; width: min(450px, 100%); aspect-ratio: 1; margin: 0 auto; }
.ai-orbit::before, .ai-orbit::after, .ai-orbit i { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(17,19,24,.12); }
.ai-orbit::before { inset: 12%; }.ai-orbit::after { inset: 25%; border-style: dashed; }.ai-orbit .orbit-one { inset: 2%; border-color: rgba(255,107,0,.17); }.ai-orbit .orbit-two { inset: 38%; border-color: rgba(17,19,24,.07); }
.ai-orbit-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3; width: 112px; height: 112px; border-radius: 34px; background: #111318; color: #fff; display: flex; align-items: center; justify-content: center; gap: 7px; box-shadow: 0 25px 55px rgba(17,19,24,.18); }
.ai-orbit-core span { width: 34px; height: 34px; border-radius: 11px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Manrope', sans-serif; font-weight: 800; }
.ai-orbit-core strong { font-size: 20px; }
.orbit-label { position: absolute; z-index: 4; padding: 8px 11px; border-radius: 10px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 25px rgba(17,19,24,.07); color: #545961; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.label-ask { left: 8%; top: 22%; }.label-detect { right: 1%; top: 48%; }.label-explain { left: 21%; bottom: 6%; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pillar-card { min-height: 280px; padding: 25px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.pillar-card > span { color: var(--orange); font-size: 10px; font-weight: 800; }
.pillar-card h2 { margin-top: 74px; font-size: 27px; }
.pillar-card p { margin-top: 11px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.ai-example-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 40px; }
.ai-example { min-height: 220px; padding: 25px; border-radius: 22px; border: 1px solid #eadfd6; background: #fff; }
.ai-example > small { color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ai-example > p { margin-top: 35px; font-family: 'Manrope', sans-serif; font-size: 20px; line-height: 1.45; font-weight: 700; }
.ai-example > div { display: flex; align-items: center; gap: 5px; margin-top: 27px; }
.ai-example > div span { width: 24px; height: 24px; border-radius: 8px; background: #111318; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; }
.ai-example > div i { width: 5px; height: 5px; border-radius: 50%; background: #ff9c5b; animation: pulse-dot 1.25s infinite alternate; }.ai-example > div i:nth-child(3){animation-delay:.2s}.ai-example > div i:nth-child(4){animation-delay:.4s}
@keyframes pulse-dot { to { opacity: .25; transform: translateY(-2px); } }

/* Contact */
.contact-hero { min-height: 860px; padding: 190px 0 100px; color: #fff; background: radial-gradient(circle at 15% 30%, rgba(255,107,0,.22), transparent 28%), #111318; }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.contact-copy h1 { max-width: 700px; font-size: clamp(44px, 5vw, 68px); line-height: 1.04; }
.contact-copy p { max-width: 650px; margin-top: 24px; color: #b2b6bd; font-size: 18px; line-height: 1.72; }
.contact-card { padding: 34px; border-radius: 28px; color: var(--ink); background: #fff; box-shadow: 0 35px 80px rgba(0,0,0,.25); }
.contact-card-label { color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.contact-card h2 { margin-top: 12px; font-size: 30px; }
.contact-card > p { margin-top: 11px; color: var(--muted); line-height: 1.65; }
.contact-email { margin: 26px 0 14px; padding: 15px; border-radius: 14px; background: #f7f7f8; }
.contact-email small { display: block; color: #90949b; font-size: 9px; }
.contact-email a { display: inline-block; margin-top: 4px; color: var(--orange); font-weight: 800; word-break: break-all; }
.contact-divider { padding: 22px 0; }
.contact-divider span { display: block; height: 1px; background: var(--line); }
.contact-card h3 { font-size: 19px; }
.small-copy { margin: 7px 0 14px; color: var(--muted); font-size: 14px; }

/* Footer */
.site-footer { padding: 54px 0 24px; color: #fff; background: #0d0f13; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: flex-start; }
.footer-logo-wrap { width: 190px; padding: 8px 12px; border-radius: 12px; background: #fff; }
.footer-logo { width: 165px; }
.footer-brand p { margin-top: 14px; color: #7f848d; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; color: #aeb2ba; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); color: #6f747d; font-size: 11px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; } .button, .premium-card, .industry-card, .pack-card { transition: none; } }

/* Responsive */
@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .desktop-actions .nav-login { display: none; }
    .nav-shell { gap: 12px; }
    .nav-actions { margin-left: auto; }
    .hero-grid, .page-hero-grid { gap: 36px; }
    .hero-title { font-size: clamp(44px, 5.8vw, 66px); }
    .architecture-grid, .module-showcase-grid, .intelligence-grid, .lpg-grid { gap: 48px; }
    .industry-grid, .pack-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .site-container { width: min(100% - 32px, 680px); }
    .section { padding: 82px 0; }
    .site-header { padding-top: 10px; }
    .nav-shell { height: 64px; padding-left: 14px; }
    .brand-logo { width: 132px; }
    .desktop-actions { display: none; }
    .mobile-menu-toggle { display: flex; margin-left: auto; }
    .hero-section { min-height: auto; padding: 132px 0 75px; }
    .hero-grid, .page-hero-grid, .architecture-grid, .module-showcase-grid, .intelligence-grid, .lpg-grid, .contact-grid, .two-column-story, .guardrail-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: none; text-align: center; }
    .hero-copy .eyebrow { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions, .proof-row { justify-content: center; }
    .hero-visual { min-height: 520px; }
    .command-card { max-width: 590px; transform: none; }
    .chip-one { left: -8px; }.chip-two { right: -7px; }
    .trust-strip .site-container { flex-direction: column; text-align: center; }
    .industry-ticker { justify-content: center; }
    .three-card-grid, .entity-grid { grid-template-columns: 1fr; }
    .premium-card { min-height: 220px; }
    .premium-card h3 { margin-top: 30px; }
    .architecture-grid { gap: 48px; }
    .split-heading { grid-template-columns: 1fr; gap: 18px; align-items: start; }
    .module-showcase-grid, .intelligence-grid { gap: 45px; }
    .intelligence-panel { order: 2; }
    .cta-card { padding: 48px 34px; }
    .page-hero { min-height: auto; padding: 145px 0 72px; }
    .page-hero-grid { gap: 48px; }
    .core-map { max-width: 470px; }
    .principle-card { grid-template-columns: 58px 1fr; }
    .pack-grid { grid-template-columns: 1fr; }
    .lpg-grid { gap: 45px; }
    .capability-grid { grid-template-columns: 1fr; }
    .rule-banner { grid-template-columns: 1fr; gap: 12px; }
    .ai-example-grid { grid-template-columns: 1fr; }
    .contact-hero { min-height: auto; padding: 145px 0 80px; }
    .contact-grid { gap: 50px; }
}

@media (max-width: 560px) {
    .site-container { width: calc(100% - 24px); }
    .section { padding: 68px 0; }
    .nav-shell { border-radius: 16px; }
    .brand-logo { width: 120px; }
    .mobile-menu-toggle { width: 42px; height: 42px; }
    .hero-section { padding-top: 116px; }
    .hero-title { font-size: clamp(39px, 13vw, 54px); }
    .hero-subtitle { font-size: 16px; line-height: 1.65; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .proof-row { gap: 11px 16px; }
    .hero-visual { min-height: 415px; margin-top: 10px; }
    .command-card { padding: 13px; border-radius: 22px; }
    .command-metrics { grid-template-columns: repeat(2, 1fr); }
    .command-main-grid { grid-template-columns: 1fr; }
    .activity-panel { display: none; }
    .chart-panel { min-height: 145px; }
    .chart-bars { height: 78px; }
    .chart-line { top: 77px; }
    .floating-chip { display: none; }
    .industry-ticker { gap: 8px; font-size: 10px; }
    .industry-grid { grid-template-columns: 1fr; }
    .industry-card { min-height: 215px; }
    .industry-card h3 { margin-top: 38px; }
    .module-cloud { min-height: 290px; padding: 21px; }
    .module-pill { padding: 10px 12px; font-size: 11px; }
    .section-heading h2, .split-heading h2, .architecture-copy h2, .module-showcase-copy h2, .intelligence-copy h2, .two-column-story h2, .guardrail-grid h2, .lpg-grid h2 { font-size: 36px; }
    .cta-card { padding: 40px 23px; border-radius: 26px; }
    .cta-actions { flex-direction: column; }
    .cta-actions .button { width: 100%; }
    .page-hero h1, .page-hero-centered h1, .contact-copy h1 { font-size: 40px; }
    .page-hero p, .page-hero-centered p, .contact-copy p { font-size: 16px; }
    .core-map { transform: scale(.95); }
    .core-node { padding: 6px 8px; font-size: 7px; }
    .core-center { width: 96px; height: 96px; border-radius: 28px; }
    .core-center strong { font-size: 9px; }
    .principle-card { grid-template-columns: 1fr; padding: 25px; }
    .asset-facts { grid-template-columns: repeat(2, 1fr); }
    .asset-flow { grid-template-columns: repeat(4, 1fr); row-gap: 18px; }
    .asset-flow-step::before { display: none; }
    .pillar-grid { grid-template-columns: 1fr; }
    .pillar-card { min-height: 220px; }
    .pillar-card h2 { margin-top: 45px; }
    .ai-orbit { transform: scale(.9); }
    .contact-card { padding: 24px; }
    .footer-grid, .footer-bottom { flex-direction: column; }
    .footer-links { justify-content: flex-start; }
}
