:root {
    --navy: #092b45;
    --blue: #0d5e88;
    --sky: #e9f4f8;
    --yellow: #f4c744;
    --ink: #17242d;
    --muted: #62717a;
    --line: #dce3e7;
    --cream: #f8f5ee;
    --white: #fff;
    --radius: 18px;
    --shadow: 0 24px 70px rgba(13, 43, 62, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    background: #fff;
    line-height: 1.6
}

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

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

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

.utility {
    background: var(--navy);
    color: #d8e6ed;
    font-size: 12px
}

.utility-inner {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.utility a {
    margin-left: 25px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220, 227, 231, .8)
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 36px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto
}

.brand img {
    width: 48px;
    height: 48px;
    object-fit: contain
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand strong {
    font: 800 14px/1.1 Inter, sans-serif;
    letter-spacing: .08em;
    color: var(--navy)
}

.brand small {
    font: 700 10px/1.2 Inter, sans-serif;
    letter-spacing: .32em;
    color: var(--blue);
    margin-top: 4px
}

.site-header nav {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 600
}

.site-header nav a:hover {
    color: var(--blue)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    padding: 15px 22px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .2s
}

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

.button-small {
    padding: 11px 17px
}

.menu {
    display: none;
    border: 0;
    background: transparent;
    padding: 8px
}

.menu span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    margin: 5px
}

.hero {
    background: linear-gradient(110deg, #f5fbfd 0, #fff 58%, #eef7fa 100%);
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    min-height: 690px;
    gap: 56px;
    padding: 72px 0
}

.eyebrow {
    display: inline-block;
    font: 800 11px/1 Inter, sans-serif;
    letter-spacing: .18em;
    color: var(--blue);
    margin-bottom: 20px
}

.hero h1,
.section h2,
.cta h2 {
    font: 800 clamp(42px, 5vw, 69px)/1.04 Inter, sans-serif;
    letter-spacing: -.045em;
    margin: 0
}

.hero h1 em {
    font-style: normal;
    color: var(--blue)
}

.hero-copy>p {
    font-size: 19px;
    color: var(--muted);
    max-width: 620px;
    margin: 28px 0
}

.actions {
    display: flex;
    align-items: center;
    gap: 27px
}

.text-link {
    font-weight: 700;
    color: var(--navy)
}

.text-link span {
    margin-left: 7px
}

.hero-meta {
    display: flex;
    gap: 42px;
    margin-top: 52px;
    padding-top: 25px;
    border-top: 1px solid var(--line)
}

.hero-meta div {
    display: flex;
    flex-direction: column
}

.hero-meta strong {
    font-size: 14px
}

.hero-meta span {
    font-size: 12px;
    color: var(--muted)
}

.hero-art {
    position: relative
}

.map-panel {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: rotate(1deg);
    border: 1px solid #d9e8ee
}

.map-top {
    height: 45px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 7px;
    border-bottom: 1px solid var(--line)
}

.map-top span {
    margin-right: auto;
    font: 700 10px Inter;
    letter-spacing: .13em;
    color: var(--muted)
}

.map-top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccd6db
}

.map-canvas {
    position: relative;
    background: #dcebf0;
    aspect-ratio: 1.3;
    overflow: hidden
}

.map-canvas svg {
    width: 100%;
    height: 100%
}

.plots path {
    fill: #f7fbfc;
    stroke: #0f5d7d;
    stroke-width: 2
}

.plots .active {
    fill: var(--yellow);
    stroke: var(--navy);
    stroke-width: 4
}

.road {
    fill: none;
    stroke: #fff;
    stroke-width: 38;
    opacity: .85
}

.pins circle {
    fill: #ef6c52;
    stroke: #fff;
    stroke-width: 4
}

.parcel-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: #fff;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(4, 40, 60, .18);
    width: 190px
}

.parcel-card span {
    font-size: 9px;
    letter-spacing: .12em;
    color: var(--muted);
    font-weight: 800
}

.parcel-card strong {
    display: block;
    font: 800 17px Inter;
    margin: 4px 0 10px
}

.parcel-card dl {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 11px
}

.parcel-card dt {
    color: var(--muted)
}

.parcel-card dd {
    margin: 0;
    text-align: right;
    font-weight: 700
}

.map-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: white;
    border-radius: 30px;
    padding: 9px 13px;
    font-size: 11px;
    font-weight: 700
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.trust-strip .wrap {
    display: grid;
    grid-template-columns: .55fr repeat(4, 1fr);
    align-items: center;
    min-height: 100px
}

.trust-strip span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    font-weight: 700
}

.trust-strip div div {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #56646d
}

.section {
    padding: 110px 0
}

.narrow {
    max-width: 850px
}

.center {
    text-align: center
}

.section h2 {
    font-size: clamp(34px, 4vw, 53px)
}

.intro .narrow p {
    font-size: 18px;
    color: var(--muted)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 60px;
    border: 1px solid var(--line)
}

.service-grid article {
    background: #fff;
    padding: 38px;
    min-height: 290px
}

.service-grid article:hover {
    background: #f8fbfc
}

.service-no {
    font: 800 12px Inter;
    color: var(--blue)
}

.service-grid h3 {
    font: 800 22px/1.2 Inter;
    margin: 45px 0 15px
}

.service-grid p {
    font-size: 14px;
    color: var(--muted)
}

.service-grid a {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue)
}

.process {
    background: var(--navy);
    color: #fff
}

.light {
    color: #72c1dc
}

.section-head {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 80px;
    align-items: end
}

.section-head h2 {
    max-width: 760px
}

.section-head>p {
    color: #b9ccd6;
    font-size: 16px
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, .18)
}

.steps article {
    padding: 34px 28px 10px 0;
    border-right: 1px solid rgba(255, 255, 255, .18)
}

.steps article+article {
    padding-left: 28px
}

.steps b {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy)
}

.steps h3 {
    font: 800 20px Inter;
    margin: 35px 0 9px
}

.steps p {
    font-size: 14px;
    color: #b9ccd6
}

.challenges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.challenges-grid article {
    min-height: 220px;
}

.challenges-grid article b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
}

.challenges-grid h3 {
    margin-bottom: 12px;
}

@media (max-width: 960px) {
    .challenges-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .challenges-grid article {
        min-height: auto;
    }
}

.split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: center
}

.lis-copy h2 {
    font-size: 46px
}

.lis-copy>p {
    color: var(--muted);
    font-size: 17px
}

.lis-copy ul {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.lis-copy li {
    padding: 11px 0 11px 27px;
    border-bottom: 1px solid var(--line);
    position: relative;
    font-size: 14px
}

.lis-copy li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800
}

.product-window {
    border-radius: 17px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--line);
    background: white
}

.window-bar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line)
}

.window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cad5da
}

.window-bar small {
    margin-left: 10px;
    color: var(--muted)
}

.product-window img {
    width: 100%
}

/* =========================================================
   ANIMATED LIS PRODUCT PREVIEW
   ========================================================= */

.lis-preview {
    position: relative;
    overflow: hidden;
    background: #071421;
    border-color: rgba(45, 109, 168, 0.32);
    /* box-shadow: 0 28px 80px rgba(5, 25, 40, 0.2); */
}

/* Window header */

.lis-preview .window-bar {
    height: 48px;
    padding: 0 16px;

    display: flex;
    align-items: center;

    background: linear-gradient(
        180deg,
        #122433,
        #0d1c29
    );

    border-bottom: 1px solid rgba(130, 170, 198, 0.16);
    color: #d8e6ef;
}

.window-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.lis-preview .window-controls span {
    width: 9px;
    height: 9px;
    margin: 0;
    border-radius: 50%;
    background: #6d8190;
}

.lis-preview .window-controls span:nth-child(1) {
    background: #ff735f;
}

.lis-preview .window-controls span:nth-child(2) {
    background: #f5c451;
}

.lis-preview .window-controls span:nth-child(3) {
    background: #52c778;
}

.preview-title {
    margin-left: 12px !important;
    color: #c6d7e2 !important;

    font-weight: 650;
    letter-spacing: 0.01em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-indicator {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #8fb0c5;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.live-indicator i {
    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: #55d78b;

    box-shadow: 0 0 0 0 rgba(85, 215, 139, 0.55);
    animation: lisLivePulse 1.8s infinite;
}

/* Preview stage */

.preview-stage {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    aspect-ratio: 16 / 10;
    background: #071421;
}

.preview-screen {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: translateX(5%) scale(1.025);

    transition:
        opacity 0.65s ease,
        transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1),
        visibility 0.65s;
}

.preview-screen img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
    object-position: top center;

    filter: saturate(0.96) contrast(1.01);
}

.preview-screen.active {
    z-index: 2;

    opacity: 1;
    visibility: visible;

    transform: translateX(0) scale(1);
}

.preview-screen.leaving {
    z-index: 1;

    opacity: 0;
    visibility: visible;

    transform: translateX(-4%) scale(0.99);
}

.preview-stage::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 3;

    pointer-events: none;

    /* background: linear-gradient(
        180deg,
        rgba(2, 12, 20, 0.02) 58%,
        rgba(2, 12, 20, 0.3) 100%
    ); */
}

/* Animated cursor */

.preview-cursor {
    position: absolute;
    z-index: 8;

    left: 18%;
    top: 20%;

    width: 25px;
    height: 25px;

    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, -50%);
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.35));
}

.preview-cursor svg {
    width: 100%;
    height: 100%;

    fill: #ffffff;
    stroke: #092b45;
    stroke-width: 1.2;
}

.preview-cursor span {
    position: absolute;

    left: 3px;
    top: 3px;

    width: 14px;
    height: 14px;

    border: 2px solid rgba(255, 155, 93, 0.95);
    border-radius: 50%;

    opacity: 0;
    transform: scale(0.4);
}

.lis-preview.animating .preview-cursor {
    animation: lisCursorMove 1.25s
        cubic-bezier(0.25, 0.8, 0.25, 1)
        forwards;
}

.lis-preview.animating .preview-cursor span {
    animation: lisCursorClick 0.55s 0.72s ease-out forwards;
}

/* Opening module notification */

.module-toast {
    position: absolute;
    z-index: 7;

    left: 18px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px 13px;

    border: 1px solid rgba(132, 178, 208, 0.22);
    border-radius: 9px;

    background: rgba(5, 18, 29, 0.78);
    backdrop-filter: blur(10px);

    color: #dceaf2;

    opacity: 0;
    transform: translateY(8px);

    transition: 0.35s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.module-toast span {
    color: #7f9db1;

    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.module-toast strong {
    font-size: 11px;
}

.lis-preview.animating .module-toast {
    opacity: 1;
    transform: translateY(0);
}

/* Footer and navigation */

.preview-footer {
    position: relative;

    min-height: 52px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 18px;

    background: #0b1a27;
    border-top: 1px solid rgba(130, 170, 198, 0.13);
}

.preview-progress {
    position: absolute;

    left: 0;
    right: 0;
    top: 0;

    height: 2px;

    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
}

.preview-progress span {
    display: block;

    width: 0;
    height: 100%;

    background: linear-gradient(
        90deg,
        #2d6da8,
        #ff9b5d
    );
}

.lis-preview.running .preview-progress span {
    animation: lisProgress 5.2s linear forwards;
}

.preview-dots {
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.preview-dots button {
    appearance: none;

    width: 7px;
    height: 7px;
    padding: 0;

    border: 0;
    border-radius: 999px;

    background: #526675;
    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.2s ease;
}

.preview-dots button:hover {
    background: #8da4b4;
    transform: scale(1.25);
}

.preview-dots button.active {
    width: 27px;
    background: #ff9b5d;
}

.preview-count {
    position: absolute;
    right: 16px;

    color: #6f899b;
    font-size: 10px;
    letter-spacing: 0.08em;
}

.preview-count b {
    color: #cadde8;
}

.lis-preview:hover .preview-progress span {
    animation-play-state: paused;
}

/* Animations */

@keyframes lisLivePulse {
    70% {
        box-shadow: 0 0 0 7px rgba(85, 215, 139, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(85, 215, 139, 0);
    }
}

@keyframes lisProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes lisCursorMove {
    0% {
        left: 15%;
        top: 24%;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    62% {
        left: 32%;
        top: 47%;
        opacity: 1;
    }

    82% {
        left: 32%;
        top: 47%;
        opacity: 1;
    }

    100% {
        left: 32%;
        top: 47%;
        opacity: 0;
    }
}

@keyframes lisCursorClick {
    0% {
        opacity: 0;
        transform: scale(0.35);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(2.2);
    }
}

/* Responsive */

@media (max-width: 700px) {
    .live-indicator span {
        display: none;
    }

    .preview-footer {
        min-height: 46px;
    }

    .preview-dots {
        gap: 5px;
    }

    .preview-dots button.active {
        width: 20px;
    }

    .module-toast {
        left: 10px;
        bottom: 10px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .preview-screen,
    .module-toast {
        transition: none;
    }

    .lis-preview.animating .preview-cursor,
    .lis-preview.animating .preview-cursor span,
    .live-indicator i,
    .lis-preview.running .preview-progress span {
        animation: none;
    }

    .preview-progress span {
        width: 100%;
    }
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
    margin-top: 110px
}

.feature-image img {
    border-radius: 16px;
    box-shadow: var(--shadow)
}

.feature-copy>span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--blue)
}

.feature-copy h3 {
    font: 800 37px/1.15 Inter;
    margin: 18px 0
}

.feature-copy>p {
    color: var(--muted)
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 2rem 0;
}

.solution-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: .98rem;
    line-height: 1.45;
}

.solution-grid span {
    width: 24px;
    height: 24px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(232,93,4,.15);
    color: #ff9b5d;
    font-weight: 700;
    font-size: .8rem;
}

@media (max-width:900px){

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

}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px
}

.mini-grid div {
    padding-top: 16px;
    border-top: 2px solid var(--line);
    display: flex;
    flex-direction: column
}

.mini-grid strong {
    font-size: 14px
}

.mini-grid small {
    color: var(--muted)
}

.outputs {
    background: var(--cream)
}

.dark-text>p {
    color: var(--muted)
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 60px
}

.output-grid figure {
    margin: 0;
    background: #fff;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(41, 49, 53, .07)
}

.output-grid img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top;
    border: 1px solid var(--line)
}

.output-grid figcaption {
    padding: 15px 5px 5px;
    font-weight: 700
}

.about {
    background: var(--blue);
    color: white
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px
}

.about h2 {
    font-size: 54px
}

.about-grid p {
    font-size: 18px;
    color: #d7eaf1
}

.light-link {
    color: white
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 100px
}

.faq-grid>div:first-child p {
    color: var(--muted)
}

details {
    border-top: 1px solid var(--line);
    padding: 22px 0
}

details:last-child {
    border-bottom: 1px solid var(--line)
}

summary {
    font: 700 17px Inter;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between
}

summary:after {
    content: '+';
    color: var(--blue);
    font-size: 22px
}

details[open] summary:after {
    content: '–'
}

details p {
    color: var(--muted);
    font-size: 14px;
    max-width: 650px
}

.cta {
    background: var(--navy);
    color: #fff;
    padding: 100px 0
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px
}

.cta h2 {
    font-size: 48px
}

.cta form {
    background: #fff;
    color: var(--ink);
    padding: 32px;
    border-radius: 15px
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

label {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px
}

input,
textarea {
    font: inherit;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 13px;
    margin-top: 7px;
    width: 100%;
    outline: none
}

input:focus,
textarea:focus {
    border-color: var(--blue)
}

.button-yellow {
    background: var(--yellow);
    color: var(--navy);
    width: 100%
}

.button-yellow:hover {
    background: #ffd968;
    color: var(--navy)
}

footer {
    background: #061f31;
    color: #b7cad4;
    padding: 75px 0 25px
}

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

.inverse strong,
.inverse small {
    color: white
}

.footer-brand p {
    max-width: 390px
}

.footer-grid h4 {
    color: white;
    margin: 0 0 18px
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 55px;
    padding-top: 22px;
    font-size: 12px
}

@media(max-width:900px) {
    .utility {
        display: none
    }

    .site-header nav,
    .site-header>.button-small {
        display: none
    }

    .menu {
        display: block
    }

    .site-header nav.open {
        display: flex;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 25px 30px;
        border-bottom: 1px solid var(--line)
    }

    .hero-grid,
    .split,
    .feature-row,
    .section-head,
    .about-grid,
    .faq-grid,
    .cta-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding: 60px 0
    }

    .hero-art {
        margin-top: 15px
    }

    .trust-strip .wrap {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 25px 0
    }

    .trust-strip span {
        grid-column: 1/-1
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .section-head {
        gap: 20px
    }

    .feature-row {
        gap: 40px
    }

    .cta-grid {
        gap: 45px
    }

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

    .footer-brand {
        grid-column: 1/-1
    }
}

@media(max-width:600px) {
    .wrap {
        width: min(100% - 26px, 1180px)
    }

    .nav-wrap {
        height: 72px
    }

    .brand img {
        width: 40px;
        height: 40px
    }

    .hero-grid {
        min-height: auto
    }

    .hero h1 {
        font-size: 42px
    }

    .hero-copy>p {
        font-size: 17px
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px
    }

    .map-panel {
        transform: none
    }

    .parcel-card {
        width: 160px;
        padding: 12px
    }

    .section {
        padding: 80px 0
    }

    .service-grid,
    .steps,
    .output-grid,
    .field-row,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .service-grid article {
        min-height: auto
    }

    .steps article,
    .steps article+article {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18)
    }

    .lis-copy h2,
    .about h2,
    .cta h2 {
        font-size: 37px
    }

    .feature-row {
        margin-top: 75px
    }

    .faq-grid {
        gap: 40px
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-bottom {
        gap: 20px;
        flex-direction: column
    }
}

/* Complete animated parcel layout */
.map-canvas svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: visible
}

.layout-boundary path {
    fill: rgba(255, 255, 255, .025);
    stroke: rgba(255, 255, 255, .32);
    stroke-width: 2.2;
    stroke-dasharray: 10 8
}

.layout-roads path {
    fill: none;
    stroke: rgba(255, 255, 255, .22);
    stroke-width: 25;
    stroke-linecap: round
}

.layout-roads path:nth-child(n+2) {
    stroke-width: 17
}

.full-layout path {
    animation: parcelReveal .72s cubic-bezier(.2, .8, .2, 1) both;
    animation-delay: calc(var(--i)*.055s);
    transform-origin: center;
    transform-box: fill-box
}

.full-layout .active {
    animation: parcelReveal .72s cubic-bezier(.2, .8, .2, 1) both, activeParcel 3s ease-in-out 2.3s infinite;
    filter: url(#parcelGlow)
}

.plot-labels text {
    font: 700 10px Inter, sans-serif;
    fill: rgba(255, 255, 255, .55);
    text-anchor: middle;
    opacity: 0;
    animation: labelReveal .35s ease forwards;
    animation-delay: 2s
}

@keyframes parcelReveal {
    0% {
        opacity: 0;
        transform: scale(.7)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes labelReveal {
    to {
        opacity: 1
    }
}

@keyframes activeParcel {

    0%,
    100% {
        fill: rgba(255, 207, 73, .85)
    }

    50% {
        fill: rgba(255, 224, 127, 1)
    }
}

@media(max-width:600px) {
    .plot-labels {
        display: none
    }

    .parcel-card {
        right: 8px;
        bottom: 8px
    }
}

/* =========================================================
   Interactive NSG parcel intelligence map + orbit ring
   ========================================================= */
.hero-grid {
    grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
    gap: 48px
}

.hero-visual,
.hero-abstract,
.hero-map-product {
    position: relative;
    min-width: 0
}

.hero-map-intro {
    display: none
}

.map-orbit-shell {
    position: relative;
    isolation: isolate;
    padding: 54px
}

.map-orbit-shell:before {
    content: "";
    position: absolute;
    inset: 3%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 94, 136, .09), transparent 66%);
    filter: blur(12px);
    z-index: -3
}

.map-orbit-ring {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(13, 94, 136, .22);
    border-radius: 50%;
    z-index: -1;
    animation: orbitSpin 100s linear infinite;
    pointer-events: none
}

.map-orbit-ring:before,
.map-orbit-ring:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 9%;
    border: 1px dashed rgba(9, 43, 69, .13)
}

.map-orbit-ring:after {
    inset: 22%;
    border-style: solid;
    border-color: rgba(244, 199, 68, .23)
}

.orbit-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 78px;
    height: 78px;
    margin: -39px;
    transform: rotate(calc(var(--a) * 1deg)) translateX(clamp(265px, 27vw, 350px)) rotate(calc(var(--a) * -1deg))
}

.orbit-1 {
    --a: 0
}

.orbit-2 {
    --a: 60
}

.orbit-3 {
    --a: 120
}

.orbit-4 {
    --a: 180
}

.orbit-5 {
    --a: 240
}

.orbit-6 {
    --a: 300
}

.orbit-item-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d9e8ee;
    box-shadow: 0 12px 28px rgba(9, 43, 69, .13);

    animation: orbitCounterSpin 100s linear infinite;

    color: var(--navy);
}

.orbit-item b {
    font: 800 18px/1 Inter, sans-serif;
    color: var(--blue)
}

.orbit-item small {
    display: block;
    margin-top: 3px;
    font: 700 8px/1.15 Inter, sans-serif;
    text-align: center;
    max-width: 60px;
    color: var(--muted)
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes orbitCounterSpin {
    to {
        transform: rotate(-360deg)
    }
}

.live-map-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid #d7e4ea;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(9, 43, 69, .17);
    font-family: Inter, sans-serif
}

.live-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line)
}

.live-map-kicker,
.hero-map-intro-kicker,
.tour-kicker,
.summary-label {
    display: block;
    font: 800 8px/1.1 Inter, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--blue)
}

.live-map-header h2 {
    font: 800 15px/1.15 Inter, sans-serif;
    margin: 4px 0 0;
    color: var(--navy)
}

.live-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #edf8f2;
    color: #27734b;
    font: 800 9px Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .1em
}

.live-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #36a269;
    box-shadow: 0 0 0 5px rgba(54, 162, 105, .12);
    animation: livePulse 1.7s ease-out infinite
}

@keyframes livePulse {
    50% {
        box-shadow: 0 0 0 8px rgba(54, 162, 105, 0)
    }
}

.map-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fbfc;
    border-bottom: 1px solid var(--line)
}

.parcel-search {
    margin: 0;
    position: relative;
    flex: 1
}

.parcel-search svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--muted);
    stroke-width: 2
}

.parcel-search input {
    margin: 0;
    height: 34px;
    padding: 7px 10px 7px 32px;
    border-radius: 7px;
    background: #fff;
    font-size: 11px
}

.map-mode-switch {
    display: flex;
    padding: 3px;
    border-radius: 8px;
    background: #e8eff3
}

.map-mode {
    border: 0;
    background: transparent;
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--muted);
    font: 700 9px Inter;
    cursor: pointer
}

.map-mode.active {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 2px 7px rgba(9, 43, 69, .1)
}

.live-map-stage {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #0e1924
}

.actual-layout-svg {
    display: block;
    width: 100%;
    height: 100%;
    transition: opacity .25s
}

.actual-map-background {
    fill: url(#actualMapSurface)
}

.actual-layout-stage[data-map-mode="satellite"] {
    background: linear-gradient(rgba(7, 19, 28, .2), rgba(7, 19, 28, .34)), radial-gradient(circle at 30% 20%, #718563, #405542 30%, #283c34 66%, #1e302c)
}

.actual-layout-stage[data-map-mode="satellite"] .actual-map-background {
    opacity: .2
}

.actual-layout-stage[data-map-mode="satellite"] .actual-parcel {
    fill: rgba(244, 199, 68, .1);
    stroke: #f7e5a6
}

.actual-parcel {
    fill: rgba(116, 178, 202, .15);
    stroke: #a7cddd;
    stroke-width: .75;
    vector-effect: non-scaling-stroke;
    cursor: pointer;
    transition: fill .2s, opacity .25s, stroke .2s
}

.actual-parcel:hover,
.actual-parcel.selected {
    fill: rgba(244, 199, 68, .78);
    stroke: #fff;
    stroke-width: 1.7;
    filter: url(#selectedParcelGlow)
}

.actual-parcel.status-allocated {
    fill: rgba(45, 139, 180, .3)
}

.actual-parcel.status-registered {
    fill: rgba(52, 166, 108, .3)
}

.actual-parcel.status-verified {
    fill: rgba(244, 199, 68, .32)
}

.actual-parcel.status-reserved {
    fill: rgba(180, 109, 195, .28)
}

.actual-parcel.status-under-review {
    fill: rgba(238, 126, 80, .3)
}

.actual-parcel.outside-active-zone {
    opacity: .13
}

.actual-parcel.in-active-zone {
    opacity: 1
}

.actual-parcel.search-dim {
    opacity: .06
}

.actual-parcel.search-match {
    fill: rgba(244, 199, 68, .8);
    stroke: #fff;
    stroke-width: 1.5
}

.actual-parcel-label {
    fill: #d9edf4;
    font: 700 5px Inter;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    opacity: 0
}

.actual-parcel-label.visible,
.actual-parcel-label.selected-label {
    opacity: 1;
    fill: #fff;
    font-size: 7px
}

.actual-north-arrow {
    fill: #fff;
    opacity: .8
}

.actual-north-arrow text {
    font: 800 16px Inter;
    text-anchor: middle
}

.actual-north-arrow path {
    fill: #f4c744
}

.layout-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0e1924;
    color: #d8e8ef;
    font-size: 11px;
    z-index: 8;
    transition: .25s
}

.layout-loading.hidden {
    opacity: 0;
    visibility: hidden
}

.loading-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .2);
    border-top-color: var(--yellow);
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.map-floating-control {
    position: absolute;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(8, 24, 35, .78);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    color: #fff;
    z-index: 4
}

.map-floating-control svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.map-layers {
    top: 12px
}

.map-reset {
    top: 52px;
    cursor: pointer
}

.actual-map-callout {
    position: absolute;
    transform: translate(-50%, -118%);
    padding: 6px 9px;
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font: 800 8px Inter;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .23);
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    white-space: nowrap
}

.actual-map-callout.visible {
    opacity: 1;
    visibility: visible
}

.callout-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    margin-right: 4px
}

.actual-map-legend {
    position: absolute;
    left: 12px;
    top: 12px;
    display: flex;
    flex-wrap: wrap;
    max-width: 230px;
    gap: 5px 8px;
    padding: 7px 9px;
    border-radius: 8px;
    background: rgba(7, 22, 32, .74);
    backdrop-filter: blur(8px);
    color: #dcebf0;
    font: 600 7px Inter;
    z-index: 3
}

.actual-map-legend span {
    display: flex;
    align-items: center;
    gap: 4px
}

.legend-dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #74b2ca
}

.legend-dot.allocated {
    background: #2d8bb4
}

.legend-dot.registered {
    background: #34a66c
}

.legend-dot.verified {
    background: #f4c744
}

.legend-dot.reserved {
    background: #b46dc3
}

.legend-dot.review {
    background: #ee7e50
}

.map-tour-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 9px 11px 12px;
    border-radius: 10px;
    background: rgba(7, 22, 32, .84);
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 4
}

.tour-copy strong {
    display: block;
    font: 800 10px Inter;
    margin-top: 3px
}

.tour-controls {
    display: flex;
    align-items: center;
    gap: 5px
}

.tour-button {
    width: 27px;
    height: 27px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .17);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer
}

.tour-button svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.tour-position {
    font: 700 8px Inter;
    padding: 0 3px
}

.tour-toggle .play-icon {
    display: none
}

.tour-toggle.is-paused .pause-icon {
    display: none
}

.tour-toggle.is-paused .play-icon {
    display: block
}

.tour-progress {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .13);
    overflow: hidden
}

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

.layout-stat-badge {
    position: absolute;
    right: 12px;
    top: 94px;
    background: #fff;
    color: var(--navy);
    border-radius: 8px;
    padding: 7px 9px;
    text-align: right;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
    z-index: 3
}

.layout-stat-badge span {
    display: block;
    font: 800 11px Inter
}

.layout-stat-badge small {
    display: block;
    font: 600 7px Inter;
    color: var(--muted)
}

.workflow-toast {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
    background: #fff;
    color: var(--navy);
    padding: 8px 11px;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
    font: 700 9px Inter;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 7
}

.workflow-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%)
}

.workflow-icon {
    color: #34a66c;
    margin-right: 5px
}

.live-map-footer {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr 1fr;
    border-top: 1px solid var(--line)
}

.parcel-summary {
    padding: 11px 13px;
    border-right: 1px solid var(--line);
    min-width: 0
}

.parcel-summary:last-child {
    border: 0
}

.parcel-summary strong {
    display: block;
    margin-top: 4px;
    color: var(--navy);
    font: 800 10px Inter;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.parcel-status-summary strong {
    color: #27805a
}

@media (prefers-reduced-motion:reduce) {

    .map-orbit-ring,
    .orbit-item-inner,
    .live-status-dot {
        animation: none
    }
}

@media(max-width:1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
        max-width: 820px
    }

    .hero-copy {
        text-align: center
    }

    .hero-copy>p {
        margin-left: auto;
        margin-right: auto
    }

    .actions,
    .hero-meta {
        justify-content: center
    }

    .map-orbit-shell {
        padding: 66px
    }

    .orbit-item {
        transform: rotate(calc(var(--a)*1deg)) translateX(350px) rotate(calc(var(--a)*-1deg))
    }
}

@media(max-width:760px) {
    .map-orbit-shell {
        padding: 24px 0
    }

    .map-orbit-ring {
        display: none
    }

    .live-map-stage {
        height: 390px
    }

    .live-map-footer {
        grid-template-columns: 1fr 1fr
    }

    .parcel-summary:nth-child(2) {
        border-right: 0
    }

    .parcel-summary:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .actual-map-legend {
        max-width: 190px
    }

    .map-tour-panel {
        grid-template-columns: 1fr
    }

    .tour-controls {
        position: absolute;
        right: 9px;
        top: 8px
    }

    .parcel-owner-summary {
        display: block
    }
}

@media(max-width:480px) {
    .live-map-stage {
        height: 350px
    }

    .map-toolbar {
        align-items: stretch;
        flex-direction: column
    }

    .map-mode-switch {
        align-self: flex-start
    }

    .actual-map-legend {
        display: none
    }

    .layout-stat-badge {
        top: 12px;
        right: 52px
    }

    .map-tour-panel {
        left: 7px;
        right: 7px;
        bottom: 7px
    }

    .live-map-header h2 {
        font-size: 13px
    }

    .live-status {
        padding: 6px 8px
    }

    .parcel-summary {
        padding: 9px
    }

    .parcel-summary strong {
        font-size: 9px
    }
}

/* Integrated transparent hero map — lets the orbital system remain visible */
.hero-orbit-shell {
    isolation: isolate;
}

.live-map-card {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.live-map-header,
.map-toolbar,
.map-summary,
.map-tour-panel {
    background: rgba(255, 255, 255, 0.52);
    border-color: rgba(20, 75, 105, 0.10);
}

.live-map-stage,
.actual-layout-stage,
.actual-layout-stage[data-map-mode="satellite"] {
    background: transparent;
}

.actual-map-background {
    fill: rgba(244, 249, 250, 0.16);
}

.actual-layout-stage[data-map-mode="satellite"] .actual-map-background {
    opacity: 0.28;
}

.actual-layout-svg {
    background: transparent;
}

.actual-layout-stage::before,
.actual-layout-stage::after {
    pointer-events: none;
}

.layout-loading {
    background: rgba(255, 255, 255, 0.64);
    color: #173f58;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

@media (max-width: 760px) {
    .live-map-card {
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

/* =========================================================
   Final hero composition: live parcel layout inside orbit
   ========================================================= */
.hero-visual,
.hero-abstract,
.hero-map-product {
    overflow: visible;
}

.map-orbit-shell {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 690px;
    padding: 78px;
    isolation: isolate;
}

/* Keep the existing orbit system visible behind the map. */
.map-orbit-ring {
    z-index: 0;
}

.hero-map-product {
    position: relative;
    z-index: 1;
    width: min(100%, 570px);
}

/* The reference composition contains only the layout itself. */
.hero-map-intro,
.live-map-header,
.map-toolbar,
.live-map-footer,
.actual-map-legend,
.map-tour-panel,
.layout-stat-badge,
.map-floating-control,
.actual-north-arrow {
    display: none !important;
}

.live-map-card {
    position: relative;
    width: 100%;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.live-map-stage,
.actual-layout-stage,
.actual-layout-stage[data-map-mode="satellite"] {
    position: relative;
    height: 585px;
    overflow: visible;
    background: transparent !important;
}

.actual-layout-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    background: transparent;
    filter: none;
}

/* Remove the old dark surface and grid completely. */
.actual-map-background,
.actual-layout-svg>rect {
    fill: transparent !important;
    opacity: 0 !important;
}

/* Light, editorial cadastral styling inspired by the supplied reference. */
.actual-parcel {
    fill: #f8df72;
    fill-opacity: .82;
    stroke: rgba(38, 83, 113, .52);
    stroke-width: .78;
    vector-effect: non-scaling-stroke;
    cursor: pointer;
    transition:
        fill .28s ease,
        fill-opacity .28s ease,
        stroke .28s ease,
        stroke-width .28s ease,
        opacity .42s ease;
}

.actual-parcel.status-allocated {
    fill: #7477d8;
    fill-opacity: .78;
}

.actual-parcel.status-registered {
    fill: #5867c9;
    fill-opacity: .82;
}

.actual-parcel.status-verified {
    fill: #f5d95e;
    fill-opacity: .9;
}

.actual-parcel.status-reserved {
    fill: #9b91dc;
    fill-opacity: .76;
}

.actual-parcel.status-under-review {
    fill: #87d89a;
    fill-opacity: .9;
}

.actual-parcel:hover,
.actual-parcel.selected,
.actual-parcel.search-match {
    fill: #ffb82e;
    fill-opacity: 1;
    stroke: #174f70;
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(255, 184, 46, .62));
}

.actual-parcel.outside-active-zone {
    opacity: .18;
}

.actual-parcel.in-active-zone {
    opacity: 1;
}

.actual-parcel.search-dim {
    opacity: .08;
}

.actual-parcel-label {
    fill: #214e68;
    font-weight: 800;
}

.actual-parcel-label.visible,
.actual-parcel-label.selected-label {
    fill: #173f58;
}

/* A small, unobtrusive parcel callout is retained for interaction. */
.actual-map-callout {
    padding: 7px 10px;
    border: 1px solid rgba(20, 75, 105, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: #173f58;
    box-shadow: 0 8px 20px rgba(20, 75, 105, .10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.workflow-toast {
    border: 1px solid rgba(20, 75, 105, .12);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(20, 75, 105, .12);
}

.layout-loading {
    inset: 18%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .72);
    color: #173f58;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* A very soft central wash gives separation without becoming a card. */
.map-orbit-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 66%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 245, 249, .64) 0%, rgba(255, 255, 255, .20) 54%, transparent 74%);
    pointer-events: none;
}

@media (max-width: 1050px) {
    .map-orbit-shell {
        min-height: 740px;
        padding: 82px;
    }

    .hero-map-product {
        width: min(100%, 590px);
    }

    .live-map-stage,
    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: 610px;
    }
}

@media (max-width: 760px) {
    .map-orbit-shell {
        min-height: auto;
        padding: 22px 0;
    }

    .hero-map-product {
        width: min(92vw, 540px);
    }

    .live-map-stage,
    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: min(620px, 112vw);
    }

    .layout-loading {
        inset: 23%;
    }
}

/* =========================================================
   Loading repair + fuller central parcel layout
   ========================================================= */
.map-orbit-shell {
    min-height: 690px;
    padding: 46px;
}

.hero-map-product {
    width: min(100%, 650px);
}

.live-map-stage,
.actual-layout-stage,
.actual-layout-stage[data-map-mode="satellite"] {
    height: 650px;
}

/* Let the cadastral layout use more of the ring's inner space. */
.actual-layout-svg {
    transform: scale(1.075);
    transform-origin: center;
}

/* The loader must never remain as a visible veil after rendering. */
.layout-loading.hidden {
    display: none !important;
}

@media (max-width: 1050px) {
    .map-orbit-shell {
        min-height: 720px;
        padding: 52px;
    }

    .hero-map-product {
        width: min(100%, 660px);
    }

    .live-map-stage,
    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: 660px;
    }
}

@media (max-width: 760px) {
    .map-orbit-shell {
        min-height: auto;
        padding: 12px 0;
    }

    .hero-map-product {
        width: min(98vw, 620px);
    }

    .live-map-stage,
    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: min(680px, 122vw);
    }

    .actual-layout-svg {
        transform: scale(1.04);
    }
}


/* =========================================================
   Final live-map viewport clipping and parcel status styling
   ========================================================= */

/*
   The orbit is a sibling of the map product, so clipping only the stage keeps
   every rotating badge visible while preventing off-camera parcels from
   travelling across the hero during viewBox animation.
*/
.live-map-stage,
.actual-layout-stage,
.actual-layout-stage[data-map-mode="satellite"] {
    overflow: hidden !important;
    contain: paint;
    isolation: isolate;
    border-radius: 0;
}

.actual-layout-svg {
    overflow: hidden !important;
    clip-path: inset(0);
}

.map-mode.active {
    background: rgba(232, 93, 4, .16);
    color: #e85d04;
}

/* Base parcel geometry */
.actual-parcel {
    fill: rgba(45, 109, 168, .14);
    stroke: rgba(94, 162, 209, .52);
    stroke-width: .9;
    vector-effect: non-scaling-stroke;
    filter: none;
}

/* Status fills */
.actual-parcel.status-available {
    fill: rgba(45, 109, 168, .14);
    stroke: rgba(94, 162, 209, .52);
}

.actual-parcel.status-allocated {
    fill: rgba(208, 145, 37, .13);
    stroke: rgba(226, 172, 77, .54);
}

.actual-parcel.status-registered {
    fill: rgba(43, 148, 88, .13);
    stroke: rgba(85, 185, 124, .54);
}

.actual-parcel.status-verified {
    fill: rgba(232, 93, 4, .12);
    stroke: rgba(242, 129, 55, .56);
}

.actual-parcel.status-reserved {
    fill: rgba(112, 85, 170, .12);
    stroke: rgba(139, 113, 195, .52);
}

.actual-parcel.status-under-review {
    fill: rgba(91, 106, 118, .11);
    stroke: rgba(122, 140, 153, .48);
}

/* Active, searched and hovered parcels */
.actual-parcel:hover,
.actual-parcel.selected,
.actual-parcel.search-match {
    fill: url(#activeParcelFill);
    fill-opacity: 1;
    stroke: #ff9a58;
    stroke-width: 1.8;
    filter: drop-shadow(0 0 3px rgba(232, 93, 4, .28));
}

/* Hide parcels and labels that have left the current tour viewport. */
.actual-parcel.outside-active-zone,
.actual-parcel-label.outside-active-zone {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}

.actual-parcel.in-active-zone {
    opacity: 1;
    visibility: visible;
}

.actual-parcel.search-dim {
    opacity: .055;
}

.actual-parcel-label {
    fill: rgba(25, 73, 101, .78);
}


/* =========================================================
   Framed parcel viewport and permanent plot-number labels
   ========================================================= */
.hero-map-product {
    width: min(100%, 590px);
}

.live-map-card {
    padding: 0;
}

.actual-layout-stage,
.actual-layout-stage[data-map-mode="satellite"] {
    width: 100%;
    height: 610px;
    overflow: hidden !important;
    border: 1px dashed rgba(56, 137, 188, .48);
    border-radius: 650px;
    /* background:
        radial-gradient(circle at 50% 43%, rgba(28, 72, 101, .22), transparent 62%),
        linear-gradient(145deg, rgba(7, 28, 43, .94), rgba(10, 39, 59, .88)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(172, 220, 244, .035),
        inset 0 0 42px rgba(1, 13, 22, .18); */
}

.actual-layout-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(rgba(111, 184, 224, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 184, 224, .025) 1px, transparent 1px);
    background-size: 28px 28px;
}

.actual-layout-svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

/* Plot numbers remain visible in the overview and become clearer in detail. */
.actual-parcel-label,
.actual-parcel-label.visible {
    opacity: .72;
    visibility: visible;
    fill: rgba(226, 242, 250, .88);
    font: 700 4.2px/1 Inter, sans-serif;
    text-anchor: middle;
    dominant-baseline: central;
    paint-order: stroke;
    stroke: rgba(4, 25, 39, .82);
    stroke-width: 1.15px;
    stroke-linejoin: round;
    pointer-events: none;
    transition: opacity .25s ease, font-size .25s ease, fill .25s ease;
}

.actual-layout-stage.tour-overview .actual-parcel-label {
    font-size: 3.55px;
    opacity: .6;
}

.actual-layout-stage.tour-detail .actual-parcel-label {
    font-size: 6.2px;
    opacity: .94;
    stroke-width: 1.55px;
}

.actual-parcel-label.selected-label {
    opacity: 1;
    fill: #fff4e9;
    font-size: 8px !important;
    font-weight: 800;
    stroke: rgba(116, 42, 4, .94);
    stroke-width: 2.2px;
}

.actual-parcel-label.outside-active-zone {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Keep the rectangular frame comfortably inside the orbit. */
.map-orbit-shell {
    padding: 66px 82px;
}

@media (max-width: 1050px) {
    .hero-map-product {
        width: min(100%, 610px);
    }

    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: 625px;
    }
}

@media (max-width: 760px) {
    .map-orbit-shell {
        padding: 20px 0;
    }

    .hero-map-product {
        width: min(100%, 560px);
    }

    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: min(620px, 112vw);
        border-radius: 14px;
    }

    .actual-layout-stage.tour-overview .actual-parcel-label {
        font-size: 3.2px;
    }
}
/* =========================================================
   MOBILE REFINEMENT — preserves the desktop composition
   ========================================================= */
@media (max-width: 760px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        font-size: 15px;
        line-height: 1.62;
    }

    .wrap {
        width: min(100% - 32px, 1180px);
    }

    .site-header .nav-wrap {
        height: 70px;
        gap: 12px;
    }

    .site-header .button-small {
        display: none;
    }

    .brand {
        gap: 9px;
        min-width: 0;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand strong {
        font-size: 11px;
        letter-spacing: .055em;
    }

    .brand small {
        font-size: 8px;
        letter-spacing: .24em;
    }

    .menu {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .site-header nav.open {
        top: 70px;
        padding: 18px 20px 22px;
        gap: 4px;
        box-shadow: 0 18px 35px rgba(9, 43, 69, .10);
    }

    .site-header nav.open a {
        padding: 11px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        overflow: hidden;
    }

    .hero-grid {
        width: min(100% - 28px, 1180px);
        min-height: auto;
        gap: 34px;
        padding: 42px 0 36px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1 {
        max-width: 14ch;
        margin-inline: auto;
        font-size: clamp(34px, 10.4vw, 44px);
        line-height: 1.06;
        letter-spacing: -.04em;
    }

    .hero-copy > p {
        max-width: 35rem;
        margin: 20px auto 24px;
        font-size: 16px;
        line-height: 1.65;
    }

    .actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .actions .button {
        min-height: 47px;
        padding: 13px 20px;
    }

    .hero-meta {
        justify-content: center;
        margin-top: 32px;
        padding-top: 20px;
        text-align: center;
    }

    .hero-meta span {
        max-width: 29rem;
    }

    /* Keep the orbit visible, but scale it to the phone viewport. */
    .hero-visual,
    .hero-abstract {
        width: 100%;
        overflow: visible;
    }

    .map-orbit-shell {
        width: 100%;
        min-height: 460px;
        padding: 50px 32px;
        overflow: visible;
    }

    .map-orbit-ring {
        display: block;
        inset: 22px 6px;
        z-index: 0;
        opacity: .92;
        animation-duration: 100s;
    }

    .orbit-item {
        width: 52px;
        height: 52px;
        margin: -26px;
        transform: rotate(calc(var(--a) * 1deg)) translateX(min(43vw, 166px)) rotate(calc(var(--a) * -1deg));
    }

    .orbit-item-inner {
        animation-duration: 38s;
        box-shadow: 0 8px 20px rgba(9, 43, 69, .13);
    }

    .orbit-item b {
        font-size: 14px;
    }

    .orbit-item small {
        max-width: 45px;
        margin-top: 2px;
        font-size: 6px;
        line-height: 1.05;
    }

    .hero-map-product {
        width: min(78vw, 316px);
    }

    .live-map-card {
        border-radius: 18px;
        box-shadow: 0 18px 50px rgba(9, 43, 69, .16);
    }

    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: min(96vw, 385px);
        border-radius: 18px;
    }

    .actual-layout-svg {
        transform: scale(1.02);
    }

    /* Mobile performance: retain the live SVG but remove costly continuous effects. */
    .actual-parcel,
    .actual-parcel-label {
        transition: none !important;
    }

    .actual-parcel-label,
    .actual-parcel-label.visible {
        opacity: 0;
    }

    .actual-parcel-label.selected-label {
        opacity: 1;
        font-size: 8px !important;
    }

    .actual-parcel:hover,
    .actual-parcel.selected,
    .actual-parcel.search-match {
        filter: none;
    }

    .section {
        padding: 64px 0;
    }

    .section-head,
    .split,
    .feature-row,
    .about-grid,
    .faq-grid,
    .cta-grid {
        gap: 30px;
    }

    .section h2,
    .lis-copy h2,
    .about h2,
    .cta h2,
    .section-head h2 {
        font-size: clamp(31px, 8.6vw, 39px);
        line-height: 1.1;
        letter-spacing: -.035em;
    }

    .section-head > p,
    .lis-copy > p,
    .about-grid p,
    .feature-copy > p,
    .cta p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .service-grid,
    .challenges-grid,
    .steps,
    .output-grid,
    .footer-grid {
        gap: 16px;
    }

    .service-grid article,
    .challenges-grid article {
        padding: 22px;
        border-radius: 14px;
    }

    .challenges-grid article {
        min-height: 0;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 11px;
        margin: 24px 0;
    }

    .solution-grid div {
        align-items: flex-start;
        font-size: 14px;
    }

    .solution-grid span {
        margin-top: 1px;
    }

    .mini-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .feature-row {
        margin-top: 64px;
    }

    .feature-copy h3 {
        margin: 13px 0;
        font-size: 29px;
    }

    .lis-preview .window-bar {
        height: 43px;
        padding: 0 12px;
    }

    .preview-title {
        max-width: 53%;
        font-size: 10px;
    }

    .preview-stage {
        aspect-ratio: 4 / 3;
    }

    .preview-screen img {
        object-fit: contain;
        background: #071421;
    }

    .preview-footer {
        min-height: 46px;
        padding: 0 12px;
    }

    .preview-dots {
        gap: 5px;
    }

    .preview-dots button {
        width: 6px;
        height: 6px;
    }

    .preview-dots button.active {
        width: 18px;
    }

    .preview-count {
        right: 12px;
    }

    .module-toast,
    .preview-cursor {
        display: none;
    }

    .output-grid figure {
        padding: 11px;
    }

    .output-grid img {
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .output-grid figcaption {
        padding: 12px 4px 3px;
    }

    details {
        padding: 18px 0;
    }

    summary {
        gap: 16px;
        font-size: 15px;
        line-height: 1.45;
    }

    .cta form {
        padding: 22px;
        border-radius: 15px;
    }

    .field-row {
        gap: 14px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
    }

    footer {
        padding: 58px 0 24px;
    }

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

    .footer-grid > div:not(:first-child) {
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 38px;
    }
}

@media (max-width: 420px) {
    .wrap {
        width: min(100% - 26px, 1180px);
    }

    .brand span {
        max-width: 145px;
    }

    .hero-grid {
        width: min(100% - 24px, 1180px);
        padding-top: 36px;
    }

    .hero h1 {
        font-size: clamp(33px, 10.5vw, 40px);
    }

    .actions {
        flex-direction: column;
    }

    .actions .button,
    .actions .text-link {
        width: 100%;
        justify-content: center;
    }

    .map-orbit-shell {
        min-height: 430px;
        padding: 46px 27px;
    }

    .map-orbit-ring {
        inset: 18px 0;
    }

    .orbit-item {
        width: 48px;
        height: 48px;
        margin: -24px;
        transform: rotate(calc(var(--a) * 1deg)) translateX(min(42vw, 153px)) rotate(calc(var(--a) * -1deg));
    }

    .hero-map-product {
        width: min(76vw, 292px);
    }

    .actual-layout-stage,
    .actual-layout-stage[data-map-mode="satellite"] {
        height: min(94vw, 360px);
    }

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

    .preview-title {
        max-width: 48%;
    }
}
