:root {
    --ink: #071b2b;
    --ink-soft: #17364a;
    --paper: #f5f2ea;
    --paper-deep: #ebe7dc;
    --white: #fffefa;
    --lagoon: #48c9bb;
    --lagoon-deep: #129d98;
    --sky: #9cdef1;
    --coral: #ff8d6b;
    --line: rgba(7, 27, 43, 0.15);
    --line-light: rgba(255, 255, 255, 0.16);
    --muted: #5d6e76;
    --shadow: 0 24px 70px rgba(7, 27, 43, 0.12);
    --shell: min(1180px, calc(100vw - 48px));
    --radius: 24px;
    --font: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ink);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
    letter-spacing: -0.04em;
    line-height: 1.06;
}

h1 {
    font-size: clamp(3.6rem, 7.4vw, 7rem);
}

h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.25rem);
}

h3 {
    font-size: 1.45rem;
}

p {
    color: var(--muted);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding: clamp(88px, 11vw, 150px) 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    transform: translateY(-160%);
}

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

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.eyebrow,
.section-number {
    color: var(--lagoon-deep);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 56px;
    padding: 0 25px;
    border: 0;
    border-radius: 100px;
    font-weight: 750;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--ink);
}

.button-primary:hover {
    background: var(--lagoon-deep);
}

.button-light {
    color: var(--ink);
    background: var(--white);
}

.button-light:hover {
    background: var(--sky);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.48;
    transform: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-weight: 750;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
    transition: background 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(245, 242, 234, 0.94);
    box-shadow: 0 1px 0 var(--line);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-logo {
    display: grid;
    width: 46px;
    height: 46px;
    overflow: hidden;
    flex: 0 0 auto;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid currentColor;
    border-radius: 50%;
}

.brand-logo img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.brand-mark span {
    position: absolute;
    width: 16px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
}

.brand-mark span:first-child {
    transform: rotate(0deg) translateY(-5px);
}

.brand-mark span:nth-child(2) {
    transform: rotate(60deg);
}

.brand-mark span:nth-child(3) {
    transform: rotate(-60deg) translateY(5px);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    letter-spacing: -0.03em;
}

.brand-copy small {
    margin-top: 5px;
    font-size: 0.63rem;
    letter-spacing: 0.1em;
    opacity: 0.72;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.9rem;
    font-weight: 700;
}

.primary-nav > a {
    position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--lagoon);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 11px 17px;
    color: var(--ink);
    background: var(--lagoon);
    border-radius: 100px;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 175px 0 42px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 16%, rgba(72, 201, 187, 0.16), transparent 26%),
        linear-gradient(145deg, #061826 0%, #092b40 55%, #0d384a 100%);
}

.hero::after {
    position: absolute;
    right: -15vw;
    bottom: -52vw;
    width: 85vw;
    height: 85vw;
    border: 1px solid rgba(156, 222, 241, 0.12);
    border-radius: 50%;
    content: "";
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
}

.hero-glow-one {
    top: 16%;
    right: 4%;
    width: 480px;
    height: 480px;
    background: rgba(72, 201, 187, 0.1);
}

.hero-glow-two {
    right: 28%;
    bottom: 4%;
    width: 180px;
    height: 180px;
    background: rgba(255, 141, 107, 0.08);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100vh - 250px);
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: clamp(60px, 8vw, 120px);
}

.hero-copy {
    max-width: 730px;
}

.hero .eyebrow {
    color: var(--lagoon);
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 650;
}

.hero h1 em {
    color: var(--lagoon);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero-lead {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.73);
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.button-row {
    display: flex;
    margin-top: 38px;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
}

.hero .button-primary {
    color: var(--ink);
    background: var(--lagoon);
}

.hero .button-primary:hover {
    background: var(--white);
}

.trust-line {
    display: flex;
    margin-top: 44px;
    flex-wrap: wrap;
    gap: 12px 26px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-line span:not(:last-child)::after {
    margin-left: 26px;
    color: var(--lagoon);
    content: "•";
}

.system-visual {
    position: relative;
    min-height: 540px;
}

.visual-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(156, 222, 241, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 380px;
    height: 380px;
}

.orbit-two {
    width: 520px;
    height: 520px;
    border-style: dashed;
}

.visual-node {
    position: absolute;
    display: flex;
    padding: 17px 20px;
    flex-direction: column;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.visual-node small {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.visual-node strong {
    margin-top: 4px;
    font-size: 1rem;
}

.node-core {
    top: 50%;
    left: 50%;
    width: 210px;
    padding: 30px;
    align-items: center;
    text-align: center;
    background: rgba(72, 201, 187, 0.16);
    border-color: rgba(72, 201, 187, 0.4);
    transform: translate(-50%, -50%);
}

.node-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--ink);
    background: var(--lagoon);
    border-radius: 50%;
    font-weight: 900;
}

.node-icon img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}

.node-finance {
    top: 6%;
    left: 9%;
}

.node-operations {
    top: 20%;
    right: -4%;
}

.node-ai {
    right: 1%;
    bottom: 10%;
}

.node-insight {
    bottom: 4%;
    left: 5%;
}

.pulse-dot {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 6px;
    height: 6px;
    background: var(--lagoon);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(72, 201, 187, 0.1);
}

.hero-foot {
    position: relative;
    z-index: 2;
    display: flex;
    padding-top: 30px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
    font-size: 0.8rem;
}

.hero-foot p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
}

.hero-foot a {
    color: rgba(255, 255, 255, 0.7);
}

.split-heading {
    display: grid;
    grid-template-columns: 0.42fr 1fr;
    gap: 60px;
}

.split-heading h2 {
    max-width: 900px;
    margin-bottom: 28px;
}

.split-heading > div > p {
    max-width: 720px;
    font-size: 1.15rem;
}

.capability-grid {
    display: grid;
    margin-top: 78px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.capability-card {
    position: relative;
    min-height: 420px;
    padding: 30px;
    background: var(--paper);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.capability-card:hover,
.capability-card.featured {
    z-index: 2;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.capability-card.featured {
    background: #0d3445;
}

.capability-card:hover p,
.capability-card.featured p {
    color: rgba(255, 255, 255, 0.68);
}

.card-index {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin: 65px 0 28px;
    place-items: center;
    color: var(--ink);
    background: var(--lagoon);
    border-radius: 50%;
    font-size: 1.25rem;
}

.capability-card h3 {
    margin-bottom: 18px;
}

.capability-card p {
    min-height: 125px;
    font-size: 0.94rem;
}

.capability-card a {
    color: var(--lagoon-deep);
    font-size: 0.88rem;
    font-weight: 800;
}

.capability-card:hover a,
.capability-card.featured a {
    color: var(--lagoon);
}

.approach-section {
    color: var(--white);
    background: var(--ink);
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(60px, 10vw, 140px);
}

.approach-sticky {
    position: sticky;
    top: 150px;
    align-self: start;
}

.approach-sticky h2 {
    margin: 26px 0;
}

.approach-sticky > p:not(.section-number) {
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.1rem;
}

.approach-sticky .text-link {
    margin-top: 24px;
    color: var(--lagoon);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    min-height: 230px;
    padding: 42px 0;
    grid-template-columns: 72px 1fr;
    gap: 30px;
    border-top: 1px solid var(--line-light);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.process-list > li > span {
    color: var(--lagoon);
    font-size: 0.74rem;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 20px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.process-list p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.58);
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading-row h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.project-grid {
    display: grid;
    margin-top: 64px;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.project-card {
    position: relative;
    display: flex;
    min-height: 560px;
    padding: 28px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 27, 43, 0.06), rgba(7, 27, 43, 0.38));
    content: "";
    pointer-events: none;
}

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

.project-market {
    grid-column: span 7;
    color: var(--white);
    background: #0f3d4d;
}

.project-erp {
    grid-column: span 5;
    background: #bfe9e3;
}

.project-finance {
    grid-column: 4 / span 6;
    color: var(--white);
    background: #734c8f;
}

.project-tag {
    position: relative;
    z-index: 2;
    align-self: start;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-erp .project-tag {
    background: rgba(7, 27, 43, 0.07);
    border-color: rgba(7, 27, 43, 0.12);
}

.project-image {
    position: absolute;
    inset: 86px 28px 145px;
    display: grid;
    overflow: hidden;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 18px;
}

.project-image img {
    width: 100%;
    height: 100%;
}

.project-image-cover img {
    object-fit: cover;
}

.project-image-contain {
    padding: 38px;
}

.project-image-contain img {
    object-fit: contain;
}

.project-erp,
.project-erp p {
    color: var(--ink);
}

.project-art {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72%;
    height: 54%;
    transform: translate(-50%, -56%);
}

.mini-window {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    transform: rotate(-5deg);
}

.mini-window::before {
    position: absolute;
    top: 18px;
    right: 22px;
    left: 22px;
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    content: "";
}

.mini-card {
    position: absolute;
    width: 27%;
    height: 45%;
    background: var(--lagoon);
    border-radius: 13px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.card-a {
    bottom: 14%;
    left: 10%;
}

.card-b {
    bottom: 20%;
    left: 37%;
    background: var(--sky);
}

.card-c {
    right: 8%;
    bottom: 9%;
    background: var(--coral);
}

.art-erp {
    border-bottom: 1px solid rgba(7, 27, 43, 0.25);
    border-left: 1px solid rgba(7, 27, 43, 0.25);
}

.chart {
    position: absolute;
    bottom: 0;
    width: 26%;
    border-radius: 12px 12px 0 0;
}

.chart-one {
    left: 14%;
    height: 47%;
    background: var(--lagoon-deep);
}

.chart-two {
    right: 15%;
    height: 76%;
    background: var(--ink);
}

.chart-line {
    position: absolute;
    top: 22%;
    left: 8%;
    width: 84%;
    height: 38%;
    border-top: 3px solid var(--coral);
    border-radius: 50%;
    transform: rotate(-13deg);
}

.coin {
    position: absolute;
    display: block;
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
}

.coin::after {
    position: absolute;
    inset: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    content: "";
}

.coin-one {
    top: 8%;
    left: 12%;
}

.coin-two {
    right: 8%;
    bottom: 0;
    background: rgba(255, 141, 107, 0.25);
}

.finance-line {
    position: absolute;
    top: 12%;
    left: 50%;
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.24);
    transform: rotate(35deg);
}

.project-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.project-copy h3 {
    margin-bottom: 9px;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.project-copy p {
    max-width: 480px;
    margin-bottom: 0;
    color: currentColor;
    opacity: 0.66;
}

.project-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 1.2rem;
}

.perspective-section {
    background: var(--paper-deep);
}

.perspective-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(60px, 10vw, 150px);
}

.perspective-grid h2 {
    font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.large-copy {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    line-height: 1.35;
}

.perspective-copy > p:not(.large-copy) {
    max-width: 650px;
}

.perspective-copy .text-link {
    margin-top: 24px;
}

.cta-section {
    padding-top: 70px;
    background: var(--paper-deep);
}

.cta-panel {
    display: flex;
    min-height: 390px;
    padding: clamp(44px, 7vw, 85px);
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 10%, rgba(72, 201, 187, 0.25), transparent 30%),
        #0a2c3e;
    border-radius: var(--radius);
}

.cta-panel > div {
    max-width: 760px;
}

.cta-panel h2 {
    margin-bottom: 20px;
}

.cta-panel p:not(.eyebrow) {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.64);
}

.site-footer {
    padding: 85px 0 25px;
    color: var(--white);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.7fr 0.7fr;
    gap: 70px;
}

.brand-footer {
    margin-bottom: 24px;
}

.footer-grid > div:first-child > p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid a:hover {
    color: var(--lagoon);
}

.footer-bottom {
    display: flex;
    margin-top: 70px;
    padding-top: 25px;
    justify-content: space-between;
    border-top: 1px solid var(--line-light);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.page-hero {
    padding: 190px 0 105px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(72, 201, 187, 0.16), transparent 26%),
        var(--ink);
}

.page-hero-grid {
    display: grid;
    align-items: end;
    grid-template-columns: 1.1fr 0.55fr;
    gap: 70px;
}

.page-hero h1 {
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(3.4rem, 6.4vw, 6.3rem);
}

.page-hero .eyebrow {
    color: var(--lagoon);
}

.page-intro {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.12rem;
}

.solution-list {
    border-top: 1px solid var(--line);
}

.solution-row {
    display: grid;
    padding: 70px 0;
    grid-template-columns: 75px 0.85fr 1fr;
    gap: 50px;
    border-bottom: 1px solid var(--line);
}

.solution-number {
    color: var(--lagoon-deep);
    font-size: 0.72rem;
    font-weight: 800;
}

.solution-row h2 {
    font-size: clamp(2rem, 3.8vw, 3.65rem);
}

.solution-row > div:last-child > p {
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.tick-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.tick-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-top: 1px solid var(--line);
}

.tick-list li::before {
    position: absolute;
    top: 13px;
    left: 2px;
    color: var(--lagoon-deep);
    content: "↳";
    font-weight: 900;
}

.delivery-section {
    padding-top: 0;
}

.delivery-panel {
    display: grid;
    padding: clamp(45px, 7vw, 80px);
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    color: var(--white);
    background: var(--ink-soft);
    border-radius: var(--radius);
}

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

.delivery-panel > p {
    align-self: end;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.automation-boundary-section {
    padding-top: 0;
}

.boundary-panel {
    display: grid;
    padding: clamp(45px, 7vw, 80px);
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(45px, 8vw, 90px);
    color: var(--white);
    background:
        radial-gradient(circle at 90% 15%, rgba(72, 201, 187, 0.18), transparent 30%),
        var(--ink);
    border-radius: var(--radius);
}

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

.boundary-panel ol {
    margin: 0;
    padding: 0;
    counter-reset: boundary;
    list-style: none;
}

.boundary-panel li {
    position: relative;
    padding: 17px 0 17px 56px;
    color: rgba(255, 255, 255, 0.72);
    border-top: 1px solid var(--line-light);
}

.boundary-panel li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.boundary-panel li::before {
    position: absolute;
    top: 17px;
    left: 0;
    color: var(--lagoon);
    content: counter(boundary, decimal-leading-zero);
    counter-increment: boundary;
    font-size: 0.72rem;
    font-weight: 900;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.portfolio-card {
    display: flex;
    min-height: 580px;
    padding: 30px;
    overflow: hidden;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.portfolio-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 800;
}

.portfolio-art {
    position: relative;
    height: 270px;
    margin: 25px 0 35px;
    overflow: hidden;
    background: var(--paper-deep);
    border-radius: 18px;
}

.portfolio-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-art-contain {
    display: grid;
    padding: 42px;
    place-items: center;
}

.portfolio-art-contain img {
    object-fit: contain;
}

.portfolio-ai .portfolio-art,
.portfolio-project .portfolio-art {
    background: #ccefeb;
}

.portfolio-finance .portfolio-art,
.portfolio-bank .portfolio-art {
    background: #d8c5e5;
}

.portfolio-erp .portfolio-art,
.portfolio-assets .portfolio-art {
    background: #b9dfe8;
}

.portfolio-lea .portfolio-art {
    background: #ffd6c9;
}

.art-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 210px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.art-ring::after {
    position: absolute;
    inset: 34px;
    border: 1px dashed var(--ink);
    border-radius: 50%;
    content: "";
    opacity: 0.5;
}

.art-block {
    position: absolute;
    width: 100px;
    height: 75px;
    background: var(--ink);
    border-radius: 13px;
}

.art-block-one {
    top: 32px;
    left: 45px;
    transform: rotate(-8deg);
}

.art-block-two {
    right: 38px;
    bottom: 25px;
    background: var(--lagoon-deep);
    transform: rotate(7deg);
}

.portfolio-card h2 {
    margin: 10px 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.portfolio-card > p:last-child {
    max-width: 520px;
}

.privacy-note {
    display: grid;
    margin-top: 60px;
    padding: 28px 0;
    grid-template-columns: 0.4fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.privacy-note p {
    margin: 0;
}

.portfolio-intro {
    margin-bottom: 55px;
}

.portfolio-intro > p,
.game-tools-section .section-heading-row > p {
    max-width: 520px;
    margin-bottom: 0;
}

.game-tools-section {
    padding-top: 0;
    background: var(--paper-deep);
}

.game-grid {
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-card {
    position: relative;
    display: grid;
    min-height: 210px;
    padding: 20px 62px 20px 20px;
    align-items: center;
    grid-template-columns: 170px 1fr;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.game-image {
    display: grid;
    width: 170px;
    height: 140px;
    overflow: hidden;
    place-items: center;
    background: var(--paper-deep);
    border-radius: 14px;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card h3 {
    margin-bottom: 8px;
}

.game-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.game-card > span {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-weight: 900;
}

.portfolio-privacy-section {
    padding-top: 0;
    background: var(--paper-deep);
}

.about-story-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 0.65fr 1fr;
    gap: clamp(60px, 9vw, 130px);
}

.portrait-placeholder {
    position: sticky;
    top: 130px;
    display: grid;
    min-height: 650px;
    padding: 35px;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(160deg, rgba(72, 201, 187, 0.2), transparent 55%),
        var(--ink-soft);
    border-radius: var(--radius);
}

.portrait-placeholder::after {
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    content: "";
}

.logo-portrait {
    background:
        radial-gradient(circle at 22% 18%, rgba(72, 201, 187, 0.28), transparent 35%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 55%),
        var(--ink-soft);
}

.logo-portrait img {
    position: relative;
    z-index: 2;
    width: min(74%, 360px);
    height: auto;
    filter: drop-shadow(0 22px 55px rgba(0, 0, 0, 0.22));
}

.portrait-initials {
    position: relative;
    z-index: 2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(6rem, 14vw, 11rem);
}

.portrait-caption {
    position: absolute;
    right: 35px;
    bottom: 25px;
    left: 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.about-story h2 {
    margin: 20px 0 35px;
}

.about-story p {
    color: var(--ink-soft);
    font-size: 1.1rem;
}

.principles-section {
    color: var(--white);
    background: var(--ink);
}

.principles-grid {
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
}

.principles-grid article {
    min-height: 330px;
    padding: 30px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.principles-grid article > span {
    color: var(--lagoon);
    font-size: 0.72rem;
    font-weight: 800;
}

.principles-grid h3 {
    margin: 80px 0 20px;
}

.principles-grid p {
    color: rgba(255, 255, 255, 0.55);
}

.company-panel {
    display: grid;
    padding: clamp(45px, 7vw, 80px);
    grid-template-columns: 1fr 0.8fr;
    gap: 90px;
    background: var(--white);
    border-radius: var(--radius);
}

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

.company-panel > p {
    align-self: end;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.company-panel-logo {
    align-items: center;
}

.company-copy {
    display: grid;
    gap: 24px;
}

.company-copy img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}

.company-copy p {
    margin-bottom: 0;
    font-size: 1.08rem;
}

.guardrails-section {
    padding-top: 0;
}

.guardrails-grid {
    display: grid;
    padding: clamp(38px, 6vw, 64px) 0;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(45px, 8vw, 95px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.guardrails-grid h2 {
    margin-bottom: 0;
}

.guardrails-grid p {
    color: var(--ink-soft);
    font-size: 1.04rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(60px, 10vw, 140px);
}

.contact-aside {
    position: sticky;
    top: 130px;
    align-self: start;
}

.contact-points {
    margin: 30px 0 50px;
    padding: 0;
    list-style: none;
}

.contact-points li {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 42px 1fr;
    border-top: 1px solid var(--line);
}

.contact-points li:last-child {
    border-bottom: 1px solid var(--line);
}

.contact-points span {
    color: var(--lagoon-deep);
    font-size: 0.7rem;
    font-weight: 800;
}

.contact-privacy {
    padding: 24px;
    background: var(--paper-deep);
    border-left: 3px solid var(--coral);
}

.contact-privacy p {
    margin: 8px 0 0;
    font-size: 0.9rem;
}

.contact-form-panel {
    padding: clamp(30px, 5vw, 60px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.form-message {
    margin-bottom: 30px;
    padding: 20px 22px;
    border-radius: 12px;
}

.form-message p {
    margin: 6px 0 0;
}

.form-message.success {
    background: #d9f4eb;
}

.form-message.error {
    color: #7d251b;
    background: #ffe1dc;
}

.form-message.notice {
    background: #e4f2f7;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.contact-form-panel form > label,
.field-grid label {
    display: block;
    margin-bottom: 25px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 750;
}

.contact-form-panel label > span {
    display: block;
    margin-bottom: 8px;
}

.contact-form-panel label small {
    color: var(--muted);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid transparent;
    border-radius: 10px;
    outline: 0;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    background: var(--white);
    border-color: var(--lagoon-deep);
    box-shadow: 0 0 0 3px rgba(72, 201, 187, 0.15);
}

input:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.field-error {
    display: block;
    margin-top: 7px;
    color: #a83224 !important;
}

.consent-error {
    margin: -14px 0 24px;
}

.consent-field {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    font-weight: 500 !important;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.legal-grid {
    display: grid;
    grid-template-columns: 0.36fr 1fr;
    gap: clamp(60px, 10vw, 140px);
}

.legal-nav {
    position: sticky;
    top: 130px;
    display: flex;
    align-self: start;
    flex-direction: column;
    gap: 12px;
}

.legal-nav a {
    color: var(--muted);
}

.legal-nav a:hover {
    color: var(--lagoon-deep);
}

.legal-copy section {
    padding: 0 0 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-copy p {
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.legal-updated {
    font-size: 0.82rem !important;
}

.not-found {
    display: grid;
    min-height: 80vh;
    padding: 170px 0 100px;
    place-items: center;
    text-align: center;
}

.not-found h1 {
    max-width: 850px;
    margin-inline: auto;
}

.not-found p:not(.eyebrow) {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

@media (max-width: 1020px) {
    .primary-nav {
        gap: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .system-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .capability-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-market,
    .project-erp,
    .project-finance {
        grid-column: span 6;
    }

    .project-finance {
        grid-column-start: 4;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 34px, 1180px);
    }

    .section {
        padding: 82px 0;
    }

    .nav-shell {
        min-height: 78px;
    }

    .nav-toggle {
        position: relative;
        z-index: 110;
        display: grid;
        width: 46px;
        height: 46px;
        padding: 0;
        place-items: center;
        color: currentColor;
        background: transparent;
        border: 1px solid currentColor;
        border-radius: 50%;
    }

    .nav-toggle span:not(.sr-only) {
        position: absolute;
        width: 18px;
        height: 1px;
        background: currentColor;
        transition: transform 180ms ease;
    }

    .nav-toggle span:nth-child(2) {
        transform: translateY(-4px);
    }

    .nav-toggle span:nth-child(3) {
        transform: translateY(4px);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        display: flex;
        padding: 120px 30px 40px;
        align-items: flex-start;
        flex-direction: column;
        color: var(--white);
        background: var(--ink);
        font-size: 1.55rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .primary-nav .nav-cta {
        margin-top: 15px;
        color: var(--ink);
        font-size: 1rem;
    }

    .site-header.is-scrolled .nav-toggle[aria-expanded="true"] {
        color: var(--white);
    }

    .hero {
        padding-top: 145px;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 14vw, 5.5rem);
    }

    .hero-foot {
        margin-top: 50px;
    }

    .split-heading,
    .approach-grid,
    .perspective-grid,
    .page-hero-grid,
    .delivery-panel,
    .boundary-panel,
    .about-story-grid,
    .company-panel,
    .contact-grid,
    .legal-grid,
    .guardrails-grid {
        grid-template-columns: 1fr;
    }

    .approach-sticky,
    .portrait-placeholder,
    .contact-aside,
    .legal-nav {
        position: static;
    }

    .page-hero-grid {
        gap: 35px;
    }

    .page-intro {
        max-width: 650px;
    }

    .solution-row {
        grid-template-columns: 55px 1fr;
    }

    .solution-row > div:last-child {
        grid-column: 2;
    }

    .portfolio-card {
        min-height: 520px;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .privacy-note {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .portrait-placeholder {
        min-height: 480px;
    }

    .footer-grid {
        grid-template-columns: 1.6fr 0.7fr 0.7fr;
        gap: 35px;
    }
}

@media (max-width: 620px) {
    .brand-copy small {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .system-visual {
        min-height: 430px;
        transform: scale(0.82);
        transform-origin: center;
    }

    .hero-foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .trust-line {
        flex-direction: column;
    }

    .trust-line span::after {
        display: none;
    }

    .capability-grid,
    .portfolio-grid,
    .principles-grid {
        grid-template-columns: 1fr;
    }

    .capability-card {
        min-height: 370px;
    }

    .project-grid {
        display: flex;
        flex-direction: column;
    }

    .project-card {
        min-height: 500px;
    }

    .project-image {
        inset: 76px 22px 145px;
    }

    .section-heading-row,
    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-panel {
        min-height: 520px;
        justify-content: space-between;
    }

    .solution-row {
        padding: 50px 0;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .solution-row > div:last-child {
        grid-column: 1;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .game-card {
        min-height: auto;
        padding: 18px 54px 18px 18px;
        grid-template-columns: 120px 1fr;
        gap: 16px;
    }

    .game-image {
        width: 120px;
        height: 110px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 460px) {
    .project-image {
        inset: 76px 18px 170px;
    }

    .portfolio-art {
        height: 230px;
    }

    .game-card {
        padding-right: 18px;
        grid-template-columns: 1fr;
    }

    .game-image {
        width: 100%;
        height: 180px;
    }

    .game-card > span {
        top: 16px;
        right: 16px;
        background: rgba(255, 255, 255, 0.82);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
