:root {
    --navy-950: #041022;
    --navy-900: #07182f;
    --navy-850: #0b2140;
    --navy-800: #0e2b50;
    --navy-700: #173f70;
    --blue: #1479e8;
    --blue-light: #55a6ff;
    --red: #ee2b24;
    --red-dark: #be1515;
    --yellow: #ffbf00;
    --green: #39a845;
    --cyan: #18a4b8;
    --purple: #7457d9;
    --ink: #101828;
    --slate: #48566a;
    --muted: #6c788b;
    --line: #dfe5ec;
    --line-dark: rgba(255, 255, 255, .1);
    --paper: #f7f8fa;
    --warm-white: #fcfcfb;
    --white: #fff;
    --shadow-sm: 0 12px 35px rgba(7, 24, 47, .08);
    --shadow-lg: 0 30px 80px rgba(1, 12, 28, .24);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    margin: 0;
    background: var(--warm-white);
    color: var(--ink);
    font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
section[id] { scroll-margin-top: 96px; }

.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 16px; background: #fff; color: var(--navy-900); transform: translateY(-150%); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    margin-bottom: 16px;
    color: var(--red);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}
.eyebrow-light { color: #7bb5ff; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 750;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, #f43a30, #d91b19); color: #fff; box-shadow: 0 14px 28px rgba(238, 43, 36, .22); }
.button-primary:hover { box-shadow: 0 18px 34px rgba(238, 43, 36, .32); }
.button-ghost { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.04); color: #fff; }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.button-dark-outline { border-color: rgba(7, 24, 47, .25); color: var(--navy-900); }
.button-dark-outline:hover { border-color: var(--navy-900); }
.play-icon { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .52rem; padding-left: 2px; }

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.scrolled { background: rgba(5, 19, 38, .96); box-shadow: 0 10px 35px rgba(0, 0, 0, .18); backdrop-filter: blur(18px); }
.topline { border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(2, 12, 27, .55); font-size: .72rem; color: rgba(255,255,255,.68); }
.topline-inner { display: flex; min-height: 31px; align-items: center; justify-content: space-between; }
.topline-links { display: flex; align-items: center; gap: 10px; }
.topline a:hover { color: #fff; }
.navbar { display: flex; min-height: 90px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; width: 62px; height: 62px; overflow: hidden; place-items: center; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; gap: 1px; }
.brand-copy strong { color: #fff; font-size: 1.42rem; font-weight: 900; letter-spacing: .055em; line-height: 1; }
.brand-copy small { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 29px; }
.nav-links > a { position: relative; color: rgba(255,255,255,.74); font-size: .83rem; font-weight: 650; transition: color .2s ease; }
.nav-links > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.nav-links > a:hover, .nav-links > a.active { color: #fff; }
.nav-links > a:hover::after, .nav-links > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links .nav-cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; color: #fff; }
.nav-links .nav-cta:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.07); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 168px 0 0; background: var(--navy-950); color: #fff; }
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px); background-size: 54px 54px; content: ""; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero::after { position: absolute; top: -20%; left: 52%; width: 1px; height: 145%; background: rgba(255,255,255,.06); content: ""; transform: rotate(24deg); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { top: -230px; left: -230px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(22, 96, 190, .2), transparent 68%); }
.hero-glow-two { top: 70px; right: -220px; width: 680px; height: 680px; background: radial-gradient(circle, rgba(238, 43, 36, .11), transparent 67%); }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: 670px; grid-template-columns: .94fr 1.06fr; align-items: center; gap: 52px; padding-bottom: 78px; }
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 27px; color: #a9bad0; font-size: .69rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(238,43,36,.12); }
.hero h1 { max-width: 730px; margin-bottom: 23px; font-size: clamp(3.15rem, 5.25vw, 5.25rem); font-weight: 800; letter-spacing: -.058em; line-height: .98; }
.hero h1 span { background: linear-gradient(94deg, #fff 25%, #7ab7ff 95%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 620px; margin-bottom: 30px; color: #9fb0c5; font-size: 1.07rem; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 0; margin-top: 45px; }
.hero-proof > div { display: flex; align-items: center; gap: 10px; min-width: 142px; padding-right: 23px; margin-right: 23px; border-right: 1px solid rgba(255,255,255,.12); }
.hero-proof > div:last-child { border-right: 0; }
.hero-proof strong { font-size: 1.55rem; font-weight: 800; letter-spacing: -.05em; }
.hero-proof span { color: #8295ad; font-size: .68rem; font-weight: 600; line-height: 1.4; }

.hero-visual { position: relative; min-height: 555px; }
.dashboard-card { position: absolute; z-index: 2; top: 50px; right: 0; width: min(100%, 585px); padding: 21px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: linear-gradient(145deg, rgba(18,43,76,.96), rgba(8,24,47,.95)); box-shadow: 0 40px 100px rgba(0,0,0,.42); transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); }
.dashboard-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.09); }
.dashboard-title { display: flex; align-items: center; gap: 10px; }
.mini-logo { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 8px; background: linear-gradient(135deg, var(--red), #c51212); font-size: .9rem; font-weight: 900; }
.dashboard-title div { display: flex; flex-direction: column; }
.dashboard-title small { color: #7790ad; font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dashboard-title strong { color: #eaf2fc; font-size: .8rem; }
.live-status { display: inline-flex; align-items: center; gap: 7px; padding: 5px 9px; border-radius: 20px; background: rgba(57,168,69,.12); color: #75d982; font-size: .59rem; font-weight: 750; }
.live-status i { width: 6px; height: 6px; border-radius: 50%; background: #62ce70; box-shadow: 0 0 0 4px rgba(98,206,112,.12); }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 17px 0; }
.dashboard-metrics article { display: grid; padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; background: rgba(255,255,255,.035); grid-template-columns: auto 1fr; column-gap: 8px; }
.metric-icon { display: grid; width: 25px; height: 25px; grid-row: 1 / 4; place-items: center; border-radius: 7px; font-size: .72rem; }
.metric-icon.red { background: rgba(238,43,36,.13); color: #ff6d67; }
.metric-icon.blue { background: rgba(20,121,232,.15); color: #65acff; }
.metric-icon.green { background: rgba(57,168,69,.15); color: #71d47b; }
.dashboard-metrics small { color: #788ca5; font-size: .55rem; line-height: 1.2; }
.dashboard-metrics strong { color: #edf5ff; font-size: .93rem; line-height: 1.45; }
.dashboard-metrics em { color: #6dcc7a; font-size: .52rem; font-style: normal; }
.dashboard-chart { padding: 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(4,16,34,.32); }
.chart-heading { display: flex; align-items: flex-start; justify-content: space-between; }
.chart-heading > div { display: flex; flex-direction: column; }
.chart-heading small { color: #6f849f; font-size: .52rem; }
.chart-heading strong { font-size: .74rem; }
.chart-heading > span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; color: #7f93ac; font-size: .49rem; }
.chart-area { position: relative; height: 190px; margin-top: 10px; padding: 5px 5px 23px 30px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 40px, rgba(255,255,255,.045) 41px); }
.chart-area svg { width: 100%; height: 100%; overflow: visible; }
.chart-fill { fill: url(#areaFill); }
.chart-line { fill: none; stroke: #4799f4; stroke-linecap: round; stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-area circle { fill: #8ec3ff; stroke: var(--navy-850); stroke-width: 4; }
.chart-y { position: absolute; inset: 3px auto 23px 0; display: flex; flex-direction: column; justify-content: space-between; color: #53677f; font-size: .43rem; }
.chart-x { position: absolute; right: 4px; bottom: 0; left: 31px; display: flex; justify-content: space-between; color: #53677f; font-size: .43rem; }
.visual-orbit { position: absolute; border: 1px solid rgba(86,151,231,.12); border-radius: 50%; }
.orbit-one { top: 0; right: -110px; width: 570px; height: 570px; }
.orbit-two { top: 86px; right: -15px; width: 390px; height: 390px; }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(13,38,70,.88); box-shadow: 0 20px 50px rgba(0,0,0,.3); backdrop-filter: blur(14px); }
.float-card > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 9px; font-size: .7rem; font-weight: 850; }
.float-card div { display: flex; flex-direction: column; }
.float-card strong { font-size: .66rem; }
.float-card small { color: #758aa3; font-size: .5rem; }
.float-card-left { bottom: 15px; left: -22px; }
.float-card-left > span { background: rgba(20,121,232,.17); color: #78b6ff; }
.float-card-right { top: 18px; right: 22px; }
.float-card-right > span { background: rgba(57,168,69,.16); color: #77dc82; }
.hero-ribbon { position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.ribbon-inner { display: flex; min-height: 69px; align-items: center; justify-content: space-between; color: #8799b0; font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.ribbon-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--red); }

/* Shared sections */
.section { padding: 120px 0; }
.section-light { background: var(--warm-white); }
.section-intro h2, .section-heading h2, .center-heading h2, .technology-copy h2, .vision-copy h2, .contact-copy h2, .government-copy h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 4rem); font-weight: 760; letter-spacing: -.045em; line-height: 1.08; }
.section-heading { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 90px; margin-bottom: 57px; }
.section-heading > p { margin-bottom: 4px; color: #9dafc5; }
.section-heading-dark > p { color: var(--muted); }
.center-heading { max-width: 740px; margin: 0 auto 70px; text-align: center; }
.center-heading > p:last-child { max-width: 640px; margin: 18px auto 0; color: var(--muted); }

/* About */
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.section-intro h2 { max-width: 500px; }
.about-copy { max-width: 650px; }
.lead-copy { margin-bottom: 22px; color: #24354a; font-size: 1.26rem; font-weight: 620; line-height: 1.55; }
.about-copy > p:not(.lead-copy) { color: var(--muted); }
.founder-note { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 12px; padding-top: 29px; margin-top: 29px; border-top: 1px solid var(--line); }
.founder-monogram { display: grid; width: 49px; height: 49px; place-items: center; border-radius: 50%; background: var(--navy-900); color: #fff; font-size: .76rem; font-weight: 800; }
.founder-note > div:nth-child(2) { display: flex; flex-direction: column; min-width: 150px; }
.founder-note strong { font-size: .78rem; }
.founder-note span { color: var(--muted); font-size: .65rem; }
.founder-note blockquote { padding-left: 20px; margin-bottom: 0; border-left: 2px solid var(--red); color: #536176; font-size: .73rem; font-style: italic; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 75px; }
.value-card { position: relative; min-height: 250px; padding: 30px 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card::after { position: absolute; right: -25px; bottom: -55px; width: 130px; height: 130px; border: 1px solid #edf0f4; border-radius: 50%; content: ""; }
.value-card:hover { border-color: #cbd5e1; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.value-card > span { color: var(--red); font-size: .65rem; font-weight: 850; letter-spacing: .13em; }
.value-card h3 { margin: 51px 0 12px; font-size: 1.1rem; line-height: 1.3; }
.value-card p { margin-bottom: 0; color: var(--muted); font-size: .81rem; line-height: 1.6; }

/* Services */
.services-section { background: var(--navy-900); color: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.service-card { display: flex; min-height: 425px; flex-direction: column; grid-column: span 2; padding: 27px; border: 1px solid rgba(255,255,255,.085); border-radius: var(--radius); background: rgba(255,255,255,.035); transition: transform .25s ease, background .25s ease, border-color .25s ease; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.065); transform: translateY(-5px); }
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-number { color: #637b98; font-size: .66rem; font-weight: 750; letter-spacing: .1em; }
.service-arrow { display: grid; width: 33px; height: 33px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; color: #8ca0b8; transition: color .2s, border-color .2s; }
.service-card:hover .service-arrow { border-color: rgba(255,255,255,.35); color: #fff; }
.service-icon { display: grid; width: 53px; height: 53px; margin: 45px 0 23px; place-items: center; border-radius: 14px; font-size: 1.4rem; }
.icon-red { background: rgba(238,43,36,.14); color: #ff645e; }
.icon-blue { background: rgba(20,121,232,.15); color: #67adff; }
.icon-yellow { background: rgba(255,191,0,.14); color: #ffd254; }
.icon-green { background: rgba(57,168,69,.14); color: #72d37b; }
.icon-purple { background: rgba(116,87,217,.16); color: #a692ef; }
.service-card h3 { margin-bottom: 12px; font-size: 1.28rem; }
.service-card > p { color: #93a5bb; font-size: .82rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag-list span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.09); border-radius: 6px; color: #9aadc3; font-size: .56rem; font-weight: 650; }
.clean-list { padding: 17px 0 0; margin: auto 0 0; border-top: 1px solid rgba(255,255,255,.08); list-style: none; }
.clean-list li { position: relative; padding: 4px 0 4px 16px; color: #99aac0; font-size: .69rem; }
.clean-list li::before { position: absolute; top: 12px; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-light); content: ""; }

/* TBS */
.tbs-section { overflow: hidden; background: #f1f4f8; }
.tbs-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; }
.tbs-brand-panel { padding: 43px; border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; box-shadow: var(--shadow-lg); }
.tbs-logo-wrap { display: grid; height: 190px; padding: 12px; margin-bottom: 28px; overflow: hidden; place-items: center; border-radius: 16px; background: #fff; }
.tbs-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.product-label { display: block; margin-bottom: 15px; color: #6faeff; font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.tbs-brand-panel h2 { margin-bottom: 19px; font-size: 2.35rem; letter-spacing: -.04em; line-height: 1.13; }
.tbs-brand-panel p { color: #96a8bd; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; color: #fff; font-size: .79rem; font-weight: 750; }
.text-link span { color: #69aeff; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.module-panel { align-self: center; }
.module-heading { max-width: 570px; margin-bottom: 31px; }
.module-heading h3 { margin-bottom: 0; font-size: 1.75rem; letter-spacing: -.025em; line-height: 1.25; }
.module-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.module-grid article { display: flex; min-height: 81px; align-items: center; gap: 13px; padding: 15px; border: 1px solid #dce3eb; border-radius: var(--radius-sm); background: rgba(255,255,255,.75); transition: background .2s, border-color .2s, transform .2s; }
.module-grid article:hover { border-color: #c2cedb; background: #fff; transform: translateX(4px); }
.module-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 10px; font-weight: 800; }
.module-icon.red { background: #ffebe9; color: var(--red); }
.module-icon.blue { background: #e8f2ff; color: var(--blue); }
.module-icon.green { background: #e9f7ea; color: var(--green); }
.module-icon.yellow { background: #fff5d7; color: #b58300; }
.module-icon.purple { background: #eeeafb; color: var(--purple); }
.module-icon.cyan { background: #e5f7f9; color: var(--cyan); }
.module-grid article div { display: flex; min-width: 0; flex-direction: column; }
.module-grid strong { color: #17283d; font-size: .78rem; }
.module-grid small { color: #7a8798; font-size: .62rem; white-space: nowrap; }

/* Industries */
.industries-section { background: var(--warm-white); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-card { position: relative; min-height: 275px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .25s, box-shadow .25s, transform .25s; }
.industry-card::after { position: absolute; right: -80px; bottom: -90px; width: 190px; height: 190px; border: 26px solid #f6f7f9; border-radius: 50%; content: ""; transition: transform .35s; }
.industry-card:hover { border-color: #cad4df; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.industry-card:hover::after { transform: scale(1.12); }
.industry-index { color: #a4aebb; font-size: .61rem; font-weight: 800; letter-spacing: .12em; }
.industry-symbol { display: grid; width: 50px; height: 50px; margin: 43px 0 22px; place-items: center; border-radius: 13px; font-size: 1.25rem; }
.retail .industry-symbol, .finance .industry-symbol { background: #ffebe9; color: var(--red); }
.dining .industry-symbol, .public .industry-symbol { background: #e8f2ff; color: var(--blue); }
.making .industry-symbol, .maritime .industry-symbol { background: #e9f7ea; color: var(--green); }
.logistics .industry-symbol, .build .industry-symbol { background: #fff5d7; color: #b58300; }
.industry-card h3 { position: relative; z-index: 1; margin-bottom: 8px; font-size: 1rem; }
.industry-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: .74rem; line-height: 1.55; }
.industry-footer { display: flex; align-items: center; gap: 30px; padding: 23px 28px; margin-top: 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.industry-footer > span { color: var(--red); font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.industry-footer p { display: flex; align-items: center; gap: 17px; margin: 0; color: #556277; font-size: .72rem; font-weight: 650; }
.industry-footer i { width: 3px; height: 3px; border-radius: 50%; background: #a5afbc; }

/* Government */
.government-section { position: relative; overflow: hidden; background: linear-gradient(130deg, #081a33, #0e315a); color: #fff; }
.government-section::before { position: absolute; inset: 0; background: radial-gradient(circle at 75% 45%, rgba(20,121,232,.17), transparent 36%); content: ""; }
.government-grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 75px; }
.government-copy h2 { margin-bottom: 24px; }
.government-copy > p:nth-of-type(2) { margin-bottom: 32px; color: #9bacc0; }
.government-feature { display: grid; grid-template-columns: auto 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.1); }
.government-feature > span { display: grid; width: 23px; height: 23px; margin-top: 2px; place-items: center; border-radius: 50%; background: rgba(63,152,255,.16); color: #7bb7ff; font-size: .66rem; }
.government-feature strong { font-size: .8rem; }
.government-feature p { margin: 3px 0 0; color: #8498af; font-size: .68rem; }
.government-solutions { position: relative; padding: 35px 0 34px 34px; }
.gov-window { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: #f5f8fc; box-shadow: 0 35px 90px rgba(0,0,0,.34); color: var(--ink); }
.gov-window-top { display: flex; height: 44px; align-items: center; gap: 6px; padding: 0 15px; background: #fff; border-bottom: 1px solid #e2e7ed; }
.gov-window-top > span { width: 7px; height: 7px; border-radius: 50%; background: #d1d7de; }
.gov-window-top > span:first-child { background: #f25f58; }
.gov-window-top > span:nth-child(2) { background: #f5c24c; }
.gov-window-top > span:nth-child(3) { background: #5cc66b; }
.gov-window-top small { margin-left: 10px; color: #768499; font-size: .56rem; font-weight: 700; }
.gov-window-body { display: grid; min-height: 440px; grid-template-columns: 56px 1fr; }
.gov-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 25px; background: var(--navy-900); }
.gov-sidebar i { width: 20px; height: 4px; border-radius: 3px; background: rgba(255,255,255,.2); }
.gov-sidebar i:first-child { width: 27px; height: 27px; border-radius: 8px; background: var(--red); }
.gov-content { padding: 30px; }
.gov-content-title { display: flex; flex-direction: column; margin-bottom: 24px; }
.gov-content-title small { color: #8a98a9; font-size: .55rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.gov-content-title strong { color: #192a40; font-size: 1.2rem; }
.gov-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.gov-card-grid article { display: flex; min-height: 76px; align-items: center; gap: 11px; padding: 13px; border: 1px solid #e0e6ed; border-radius: 10px; background: #fff; }
.gov-card-grid span { display: grid; width: 31px; height: 31px; flex: 0 0 auto; place-items: center; border-radius: 8px; background: #eaf3ff; color: var(--blue); font-size: .77rem; }
.gov-card-grid strong { color: #26384e; font-size: .66rem; line-height: 1.3; }
.ai-ready-badge { position: absolute; right: -20px; bottom: 0; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; background: rgba(10,35,65,.93); box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.ai-ready-badge > span { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 9px; background: rgba(116,87,217,.18); color: #ac9cf2; }
.ai-ready-badge > div { display: flex; flex-direction: column; }
.ai-ready-badge strong { font-size: .7rem; }
.ai-ready-badge small { color: #8297ae; font-size: .54rem; }

/* Process */
.methodology-section { background: #f3f5f7; }
.process-line { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 13px; }
.process-line::before { position: absolute; top: 47px; right: 6%; left: 6%; height: 1px; background: #cdd6df; content: ""; }
.process-step { position: relative; text-align: center; }
.process-step > span { display: block; margin-bottom: 15px; color: #8995a5; font-size: .58rem; font-weight: 800; letter-spacing: .1em; }
.process-dot { position: relative; z-index: 1; width: 17px; height: 17px; margin: 0 auto 25px; border: 5px solid #f3f5f7; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px #9fb4ca; }
.process-step:first-child .process-dot, .process-step:last-child .process-dot { background: var(--red); }
.process-step h3 { margin-bottom: 8px; font-size: .85rem; }
.process-step p { margin-bottom: 0; color: var(--muted); font-size: .63rem; line-height: 1.55; }

/* Technology */
.technology-section { overflow: hidden; background: #fff; }
.technology-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.technology-copy h2 { margin-bottom: 22px; }
.technology-copy > p:nth-of-type(2) { color: var(--muted); }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tech-tags span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 7px; background: #f9fafb; color: #3c4d62; font-size: .65rem; font-weight: 700; }
.architecture-visual { position: relative; min-height: 500px; }
.arch-ring { position: absolute; top: 50%; left: 50%; border: 1px solid #dbe4ed; border-radius: 50%; transform: translate(-50%, -50%); }
.ring-outer { width: 470px; height: 470px; border-style: dashed; animation: rotate 55s linear infinite; }
.ring-middle { display: grid; width: 300px; height: 300px; place-items: center; background: radial-gradient(circle, rgba(20,121,232,.07), transparent 70%); }
.arch-core { position: absolute; top: 50%; left: 50%; z-index: 2; display: flex; width: 150px; height: 150px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #b9cee3; border-radius: 50%; background: var(--navy-900); box-shadow: 0 25px 50px rgba(7,24,47,.2); color: #fff; transform: translate(-50%, -50%); }
.arch-core > span { display: grid; width: 40px; height: 40px; margin-bottom: 6px; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--red), var(--yellow)); font-weight: 900; }
.arch-core strong { font-size: .63rem; letter-spacing: .09em; }
.arch-core small { color: #7691ad; font-size: .48rem; }
.api-label { padding: 7px 10px; border: 1px solid #c7d7e6; border-radius: 20px; background: #fff; color: var(--blue); font-size: .52rem; font-weight: 800; letter-spacing: .09em; transform: translateY(-145px); }
.arch-node { position: absolute; display: grid; width: 63px; height: 63px; place-items: center; border: 8px solid #fff; border-radius: 50%; box-shadow: 0 8px 25px rgba(7,24,47,.14); color: #fff; font-size: .56rem; font-weight: 850; animation: counter-rotate 55s linear infinite; }
.node-web { top: 23px; left: 54px; background: var(--blue); }
.node-mobile { top: 180px; right: -30px; background: var(--green); }
.node-office { bottom: 20px; left: 45px; background: var(--red); }
.arch-caption { position: absolute; padding: 10px 15px; border: 1px solid var(--line); border-radius: 9px; background: #fff; box-shadow: var(--shadow-sm); color: #34465c; font-size: .66rem; font-weight: 750; }
.arch-cloud { top: 40px; right: 5px; }
.arch-ai { right: 30px; bottom: 53px; color: var(--purple); }
@keyframes rotate { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes counter-rotate { to { transform: rotate(-360deg); } }

/* Team */
.team-section { background: #f3f5f7; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.team-card { position: relative; display: flex; min-height: 172px; flex-direction: column; justify-content: flex-end; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s, box-shadow .25s; }
.team-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.person-avatar { display: grid; width: 52px; height: 52px; margin-bottom: 18px; place-items: center; border-radius: 15px; font-size: .74rem; font-weight: 850; }
.avatar-red { background: #ffebe9; color: var(--red); }
.avatar-blue { background: #e8f2ff; color: var(--blue); }
.avatar-green { background: #e9f7ea; color: var(--green); }
.avatar-yellow { background: #fff5d7; color: #a87800; }
.avatar-purple { background: #eeeafb; color: var(--purple); }
.avatar-cyan { background: #e5f7f9; color: var(--cyan); }
.team-card h3 { margin-bottom: 2px; font-size: .86rem; }
.team-card p { margin-bottom: 0; color: var(--muted); font-size: .65rem; }
.team-card > span { position: absolute; top: 22px; right: 20px; color: #9ba6b4; font-size: .51rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }

/* Vision */
.vision-section { position: relative; overflow: hidden; padding: 105px 0; background: var(--navy-950); color: #fff; }
.vision-section::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 48px 48px; content: ""; }
.vision-glow { position: absolute; right: -200px; bottom: -300px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(20,121,232,.24), transparent 66%); }
.vision-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.vision-copy h2 { margin-bottom: 22px; }
.vision-copy > p:last-child { color: #8fa1b6; }
.vision-pillars { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.vision-pillars span { padding: 13px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 40px; background: rgba(255,255,255,.045); color: #b0bfd0; font-size: .69rem; font-weight: 650; }
.vision-pillars span:first-child { border-color: rgba(238,43,36,.35); background: rgba(238,43,36,.11); color: #ff8984; }
.vision-pillars span:nth-child(2) { border-color: rgba(20,121,232,.35); background: rgba(20,121,232,.1); color: #79b5fb; }
.vision-pillars span:nth-child(3) { border-color: rgba(57,168,69,.35); background: rgba(57,168,69,.1); color: #81d88a; }

/* Contact and footer */
.contact-section { padding: 100px 0; background: var(--warm-white); }
.contact-shell { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; padding: 65px; border: 1px solid #dce3eb; border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff, #f4f7fa); box-shadow: 0 30px 80px rgba(7,24,47,.09); }
.contact-copy h2 { max-width: 700px; margin-bottom: 20px; }
.contact-copy > p:nth-of-type(2) { max-width: 620px; color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-details { padding-left: 45px; border-left: 1px solid var(--line); }
.contact-details article { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-details article:last-child { border-bottom: 0; }
.contact-details article > span { color: var(--red); font-size: .58rem; font-weight: 800; }
.contact-details div { display: flex; flex-direction: column; }
.contact-details small { color: #8996a6; font-size: .58rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.contact-details p, .contact-details a { margin: 4px 0 0; color: #25374c; font-size: .76rem; font-weight: 650; line-height: 1.5; overflow-wrap: anywhere; }
.contact-details a:hover { color: var(--red); }
.site-footer { padding: 70px 0 20px; background: var(--navy-950); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding-bottom: 50px; }
.brand-footer .brand-mark { width: 56px; height: 56px; }
.footer-brand > p { max-width: 260px; margin: 20px 0 0; color: #71849c; font-size: .72rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links strong { margin-bottom: 10px; color: #fff; font-size: .65rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a { color: #71849c; font-size: .67rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; min-height: 55px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); color: #53677f; font-size: .58rem; }
.back-to-top { position: fixed; z-index: 50; right: 23px; bottom: 23px; display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: var(--navy-900); box-shadow: 0 10px 30px rgba(0,0,0,.2); color: #fff; opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .2s, transform .2s; }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.error-page { display: flex; min-height: 100vh; flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px; background: var(--navy-900); color: #fff; }
.error-page .brand { margin-bottom: 60px; }
.error-page h1 { max-width: 700px; font-size: 3.4rem; letter-spacing: -.04em; line-height: 1; }
.error-page > p:not(.eyebrow) { color: #95a7bb; }
.error-page .button { margin-top: 20px; }

/* Motion */
.js-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; transition-delay: var(--reveal-delay, 0ms); }
.js-ready .reveal.in-view { 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; }
    .js-ready .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 45px; }
    .hero-copy { max-width: 780px; }
    .hero-visual { width: min(100%, 680px); min-height: 565px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card, .service-card:nth-child(4) { grid-column: auto; }
    .service-card:last-child { grid-column: 1 / -1; min-height: 350px; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .process-line { grid-template-columns: repeat(4, 1fr); row-gap: 45px; }
    .process-line::before { display: none; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .section { padding: 90px 0; }
    .topline { display: none; }
    .navbar { min-height: 82px; }
    .nav-toggle { display: block; }
    .nav-toggle.active span:first-child { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .nav-links { position: absolute; top: 81px; right: 20px; left: 20px; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(5,19,38,.98); box-shadow: 0 25px 60px rgba(0,0,0,.32); }
    .nav-links.open { display: flex; flex-direction: column; }
    .nav-links > a { padding: 12px 14px; }
    .nav-links > a::after { display: none; }
    .nav-links .nav-cta { margin-top: 5px; }
    .hero { padding-top: 105px; }
    .hero-grid { gap: 25px; }
    .hero h1 { font-size: clamp(3rem, 9.5vw, 5rem); }
    .ribbon-inner { flex-wrap: wrap; justify-content: center; gap: 15px; padding: 20px 0; }
    .about-grid, .tbs-grid, .government-grid, .technology-grid, .vision-grid, .contact-shell { grid-template-columns: 1fr; gap: 50px; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .section-heading > p { max-width: 660px; }
    .about-copy { max-width: none; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .government-solutions { padding-left: 0; }
    .architecture-visual { width: min(100%, 560px); margin: 0 auto; }
    .vision-pillars { justify-content: flex-start; }
    .contact-details { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
    .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
    .footer-links:last-child { grid-column: 2; }
}

@media (max-width: 650px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding: 75px 0; }
    .brand-copy strong { font-size: 1.14rem; }
    .brand-copy small { font-size: .61rem; }
    .brand-mark { width: 50px; height: 50px; }
    .hero { padding-top: 98px; }
    .hero-grid { padding-bottom: 55px; }
    .hero h1 { font-size: 2.85rem; }
    .hero-lead { font-size: .93rem; }
    .hero-actions .button { width: 100%; }
    .hero-proof { justify-content: space-between; }
    .hero-proof > div { min-width: 0; flex-direction: column; align-items: flex-start; gap: 1px; padding-right: 12px; margin-right: 12px; }
    .hero-proof strong { font-size: 1.25rem; }
    .hero-proof span { font-size: .55rem; }
    .hero-visual { min-height: 425px; }
    .dashboard-card { top: 35px; padding: 12px; transform: none; }
    .dashboard-metrics { gap: 5px; }
    .dashboard-metrics article { padding: 8px 6px; grid-template-columns: 1fr; }
    .metric-icon { display: none; }
    .dashboard-metrics strong { font-size: .75rem; }
    .dashboard-chart { padding: 10px; }
    .chart-area { height: 145px; }
    .float-card { transform: scale(.82); }
    .float-card-left { bottom: -8px; left: -14px; transform-origin: left; }
    .float-card-right { top: 5px; right: -9px; transform-origin: right; }
    .section-intro h2, .section-heading h2, .center-heading h2, .technology-copy h2, .vision-copy h2, .contact-copy h2, .government-copy h2 { font-size: 2.15rem; }
    .founder-note { grid-template-columns: auto 1fr; }
    .founder-note blockquote { grid-column: 1 / -1; padding-top: 10px; padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .value-grid, .services-grid, .industry-grid, .module-grid, .gov-card-grid, .team-grid { grid-template-columns: 1fr; }
    .value-card { min-height: 210px; }
    .value-card h3 { margin-top: 38px; }
    .service-card, .service-card:last-child { min-height: 380px; grid-column: auto; }
    .tbs-brand-panel { padding: 28px; }
    .tbs-logo-wrap { height: 155px; padding: 9px; }
    .tbs-brand-panel h2 { font-size: 1.9rem; }
    .module-grid small { white-space: normal; }
    .industry-footer { align-items: flex-start; flex-direction: column; gap: 10px; }
    .industry-footer p { flex-wrap: wrap; gap: 10px; }
    .gov-window-body { grid-template-columns: 40px 1fr; }
    .gov-content { padding: 18px; }
    .ai-ready-badge { right: -6px; }
    .process-line { grid-template-columns: 1fr 1fr; }
    .architecture-visual { min-height: 390px; transform: scale(.78); transform-origin: center; }
    .team-card { min-height: 155px; }
    .contact-shell { width: min(calc(100% - 22px), var(--container)); padding: 36px 25px; border-radius: 22px; }
    .contact-actions .button { width: 100%; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-links:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-proof span { display: none; }
    .process-line { grid-template-columns: 1fr; }
    .architecture-visual { margin: -45px -60px; transform: scale(.62); }
    .footer-main { grid-template-columns: 1fr; }
    .footer-brand, .footer-links:last-child { grid-column: auto; }
}
