/* =========================================================
   FOUNDATION
   ========================================================= */

:root {
    --ink-950: #05090d;
    --ink-925: #071018;
    --ink-900: #09131c;
    --ink-850: #0d1923;
    --ink-800: #12212d;
    --ink-750: #182a38;

    --paper-50: #f8f7f2;
    --paper-100: #f0efe9;
    --paper-200: #dfded7;

    --white: #ffffff;
    --text-dark: #121920;
    --text-mid: #52606a;
    --text-light: #aab6bf;

    --gold-300: #e0c879;
    --gold-400: #cdb15e;
    --gold-500: #b9963c;
    --gold-600: #987626;

    --green: #74c69d;

    --border-dark: rgba(255, 255, 255, 0.11);
    --border-light: rgba(13, 25, 35, 0.13);

    --shadow-small:
        0 12px 34px rgba(0, 0, 0, 0.16);

    --shadow-large:
        0 35px 90px rgba(0, 0, 0, 0.35);

    --container: 1220px;
    --radius-small: 6px;
    --radius-medium: 12px;
    --radius-large: 20px;

    --transition:
        180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink-950);
    color: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font: inherit;
}

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

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

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

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

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--gold-400);
    color: var(--ink-950);
}

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


/* =========================================================
   EXISTING BASE TEMPLATE HEADER / NAVIGATION
   These rules style a simple header and nav in index.html.
   ========================================================= */

body > header {
    position: relative;
    z-index: 100;
    min-height: 82px;
    padding-inline: max(24px, calc((100vw - var(--container)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    background:
        rgba(5, 9, 13, 0.92);
    border-bottom:
        1px solid var(--border-dark);
    backdrop-filter:
        blur(18px);
}

body > header nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 42px);
}

body > header nav a {
    position: relative;
    padding-block: 28px;
    color: #c6d0d6;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color var(--transition);
}

body > header nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: center;
    transition:
        transform var(--transition);
}

body > header nav a:hover {
    color: var(--white);
}

body > header nav a:hover::after {
    transform: scaleX(1);
}

body > footer {
    padding:
        28px max(24px, calc((100vw - var(--container)) / 2));
    background: #030609;
    color: #7f8b94;
    border-top:
        1px solid var(--border-dark);
    font-size: 0.82rem;
}

body > footer p {
    margin: 0;
}


/* =========================================================
   COMMON COMPONENTS
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--gold-300);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow__line {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--gold-600);
}

.button {
    min-height: 54px;
    padding:
        0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border:
        1px solid transparent;
    border-radius: var(--radius-small);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

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

.button--primary {
    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );
    color: #17130a;
    box-shadow:
        0 13px 35px rgba(185, 150, 60, 0.2);
}

.button--primary:hover {
    box-shadow:
        0 17px 45px rgba(185, 150, 60, 0.31);
}

.button--secondary {
    background:
        rgba(255, 255, 255, 0.03);
    color: var(--white);
    border-color:
        rgba(255, 255, 255, 0.28);
}

.button--secondary:hover {
    background:
        rgba(255, 255, 255, 0.08);
    border-color:
        rgba(255, 255, 255, 0.5);
}

.button--large {
    min-height: 62px;
    padding-inline: 31px;
}

.button__icon {
    width: 19px;
    height: 19px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.text-link svg {
    width: 18px;
    transition:
        transform var(--transition);
}

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

.section {
    position: relative;
    overflow: hidden;
    padding:
        125px 0;
}

.section--light {
    background:
        var(--paper-50);
    color: var(--text-dark);
}

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

.section--value {
    background:
        var(--paper-100);
    color: var(--text-dark);
}

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

.section-heading {
    margin-bottom: 64px;
}

.section-heading h2,
.value-content h2,
.final-cta h2 {
    margin:
        18px 0 0;
    max-width: 850px;
    font-size:
        clamp(2.45rem, 5vw, 4.7rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.section-heading h2 span,
.value-content h2 span,
.final-cta h2 span {
    display: block;
    color: var(--gold-500);
}

.section-heading--split {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(280px, 0.65fr);
    align-items: end;
    gap: 80px;
}

.section-heading--split > p {
    margin:
        0 0 10px;
    color: var(--text-mid);
    font-size: 1.05rem;
}

.section--process .section-heading--split > p {
    color: var(--text-light);
}

.section-heading--center {
    max-width: 900px;
    margin:
        0 auto 70px;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 830px;
    overflow: hidden;
    background:
        linear-gradient(
            110deg,
            #05090d 0%,
            #08121a 44%,
            #071018 100%
        );
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size:
        64px 64px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero__glow--one {
    width: 440px;
    height: 440px;
    top: -190px;
    left: 11%;
    background:
        rgba(205, 177, 94, 0.12);
}

.hero__glow--two {
    width: 560px;
    height: 560px;
    right: -250px;
    bottom: -250px;
    background:
        rgba(35, 91, 122, 0.2);
}

.hero__layout {
    position: relative;
    z-index: 2;
    min-height: 730px;
    padding:
        82px 0 74px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(520px, 1.08fr);
    align-items: center;
    gap: clamp(55px, 7vw, 100px);
}

.hero__content {
    position: relative;
    z-index: 4;
}

.hero__title {
    margin:
        25px 0 26px;
    max-width: 720px;
    font-size:
        clamp(3.5rem, 6.25vw, 6.2rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.hero__title span {
    display: block;
    color: var(--gold-300);
}

.hero__description {
    max-width: 650px;
    color: var(--text-light);
    font-size:
        clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.75;
}

.hero__actions {
    margin-top: 38px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__proof {
    margin-top: 42px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 27px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c5cfd5;
    font-size: 0.78rem;
    font-weight: 700;
}

.proof-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-300);
}

.hero-visual {
    position: relative;
    min-height: 590px;
    transform:
        perspective(1100px)
        rotateY(-3deg);
}

.hero-visual__grid {
    position: absolute;
    right: -50px;
    bottom: 15px;
    width: 620px;
    height: 370px;
    opacity: 0.35;
    background-image:
        linear-gradient(
            rgba(224, 200, 121, 0.19) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(224, 200, 121, 0.19) 1px,
            transparent 1px
        );
    background-size:
        34px 34px;
    transform:
        perspective(500px)
        rotateX(60deg);
    transform-origin:
        bottom;
    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 68%
        );
}

.visual-label {
    position: absolute;
    z-index: 8;
    padding:
        9px 12px;
    display: flex;
    flex-direction: column;
    background:
        rgba(5, 9, 13, 0.86);
    border:
        1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.24);
    color: var(--white);
    font-size: 0.71rem;
    font-weight: 700;
    line-height: 1.35;
    backdrop-filter:
        blur(12px);
}

.visual-label span {
    color: var(--gold-300);
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.visual-label--source {
    top: 35px;
    left: 4px;
}

.visual-label--output {
    top: 7px;
    right: 48px;
}

.drawing-panel {
    position: absolute;
    z-index: 3;
    top: 70px;
    left: 0;
    width: 43%;
    min-width: 245px;
    transform:
        rotate(-4deg);
    filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, 0.42));
}

.drawing-panel__paper {
    position: relative;
    overflow: hidden;
    padding:
        17px;
    background:
        linear-gradient(
            120deg,
            #ded0a7,
            #f0e6c6 48%,
            #cbbb8f
        );
    color: #4a422e;
    border:
        1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        inset 0 0 40px rgba(72, 54, 22, 0.23);
}

.drawing-panel__paper::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(83, 65, 28, 0.16) 4px
        );
    pointer-events: none;
}

.drawing-panel__heading {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-family: monospace;
    font-size: 0.55rem;
    font-weight: 700;
}

.drawing-svg {
    position: relative;
    z-index: 2;
    width: 100%;
    opacity: 0.82;
}

.drawing-panel__stamp {
    position: absolute;
    right: 21px;
    bottom: 92px;
    z-index: 4;
    padding:
        4px 7px;
    color: rgba(135, 38, 29, 0.58);
    border:
        2px solid rgba(135, 38, 29, 0.42);
    font-family: monospace;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    transform:
        rotate(-8deg);
}

.conversion-beam {
    position: absolute;
    z-index: 6;
    top: 46%;
    left: 36%;
    width: 26%;
    display: flex;
    align-items: center;
}

.conversion-beam__line {
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-300),
            transparent
        );
    box-shadow:
        0 0 20px var(--gold-400);
}

.conversion-beam__badge {
    position: absolute;
    left: 50%;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--ink-900);
    border:
        1px solid var(--gold-400);
    border-radius: 50%;
    color: var(--gold-300);
    box-shadow:
        0 0 35px rgba(205, 177, 94, 0.28);
    transform:
        translateX(-50%);
}

.conversion-beam__badge svg {
    width: 22px;
}

.model-panel {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: -22px;
    width: 67%;
    min-width: 390px;
}

.model-panel__light {
    position: absolute;
    inset: 5% 5% 4% 9%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(214, 226, 233, 0.12),
            transparent 67%
        );
    filter: blur(20px);
}

.model-svg {
    position: relative;
    z-index: 2;
    width: 100%;
}

.model-panel__status {
    position: absolute;
    z-index: 5;
    right: 18px;
    bottom: 51px;
    padding:
        9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    background:
        rgba(6, 12, 17, 0.86);
    border:
        1px solid rgba(116, 198, 157, 0.26);
    border-radius: 5px;
    color: #d9e6df;
    font-size: 0.68rem;
    font-weight: 700;
    backdrop-filter:
        blur(10px);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow:
        0 0 12px var(--green);
}

.trust-bar {
    position: relative;
    z-index: 4;
    min-height: 100px;
    padding:
        26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top:
        1px solid var(--border-dark);
}

.trust-bar p {
    margin: 0;
    color: #b7c1c8;
    font-size: 0.82rem;
    font-weight: 700;
}

.trust-bar__items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 34px;
}

.trust-bar__items span {
    position: relative;
    color: #7f8d97;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.trust-bar__items span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -19px;
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    transform: translateY(-50%);
}


/* =========================================================
   CONVERSION FLOW
   ========================================================= */

.conversion-flow {
    display: grid;
    grid-template-columns:
        1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 20px;
}

.flow-card {
    position: relative;
    min-height: 410px;
    padding:
        32px;
    background:
        #ffffff;
    border:
        1px solid var(--border-light);
    border-radius:
        var(--radius-medium);
    box-shadow:
        var(--shadow-small);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.flow-card:hover {
    transform:
        translateY(-6px);
    box-shadow:
        0 22px 55px rgba(17, 25, 32, 0.14);
}

.flow-card--featured {
    color: var(--white);
    background:
        linear-gradient(
            150deg,
            var(--ink-800),
            var(--ink-950)
        );
    border-color:
        rgba(185, 150, 60, 0.45);
}

.flow-card__number {
    position: absolute;
    top: 25px;
    right: 27px;
    color:
        rgba(13, 25, 35, 0.23);
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 800;
}

.flow-card--featured .flow-card__number {
    color:
        rgba(255, 255, 255, 0.32);
}

.flow-card__icon {
    width: 62px;
    height: 62px;
    margin-bottom: 58px;
    display: grid;
    place-items: center;
    color: var(--gold-600);
}

.flow-card--featured .flow-card__icon {
    color: var(--gold-300);
}

.flow-card__icon svg {
    width: 58px;
    height: 58px;
}

.flow-card__label {
    margin-bottom: 8px;
    color: var(--gold-600);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flow-card--featured .flow-card__label {
    color: var(--gold-300);
}

.flow-card h3 {
    margin-bottom: 15px;
    font-size: 1.42rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.flow-card > p:last-child {
    margin-bottom: 0;
    color: var(--text-mid);
    font-size: 0.94rem;
}

.flow-card--featured > p:last-child {
    color: var(--text-light);
}

.flow-arrow {
    width: 46px;
    display: grid;
    place-items: center;
    color: var(--gold-500);
}

.flow-arrow svg {
    width: 34px;
}


/* =========================================================
   CAPABILITIES
   ========================================================= */

.capabilities-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.capability-card {
    position: relative;
    min-height: 385px;
    padding:
        37px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018)
        );
    border:
        1px solid var(--border-dark);
    border-radius:
        var(--radius-medium);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.capability-card::before {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 250px;
    height: 250px;
    border:
        1px solid rgba(224, 200, 121, 0.12);
    border-radius: 50%;
}

.capability-card:hover {
    transform:
        translateY(-5px);
    border-color:
        rgba(224, 200, 121, 0.38);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.capability-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.capability-card__number {
    color: var(--gold-300);
    font-family: monospace;
    font-size: 0.72rem;
}

.capability-card__top svg {
    width: 55px;
    height: 55px;
    color: var(--gold-300);
}

.capability-card h3 {
    margin:
        57px 0 13px;
    font-size: 1.45rem;
    letter-spacing: -0.025em;
}

.capability-card > p {
    max-width: 520px;
    color: var(--text-light);
}

.capability-card ul {
    margin:
        25px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    list-style: none;
}

.capability-card li {
    position: relative;
    padding-left: 19px;
    color: #c3cdd3;
    font-size: 0.84rem;
}

.capability-card li::before {
    content: "";
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold-400);
    border-radius: 50%;
}


/* =========================================================
   VALUE SECTION
   ========================================================= */

.value-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(500px, 1.15fr);
    gap: 95px;
    align-items: center;
}

.value-content > p {
    max-width: 590px;
    margin:
        28px 0 30px;
    color: var(--text-mid);
    font-size: 1rem;
}

.value-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    border-top:
        1px solid var(--border-light);
    border-left:
        1px solid var(--border-light);
}

.value-card {
    min-height: 220px;
    padding:
        30px;
    border-right:
        1px solid var(--border-light);
    border-bottom:
        1px solid var(--border-light);
    transition:
        background-color var(--transition);
}

.value-card:hover {
    background:
        rgba(255, 255, 255, 0.55);
}

.value-card__index {
    color: var(--gold-600);
    font-family: monospace;
    font-size: 0.68rem;
}

.value-card h3 {
    margin:
        48px 0 11px;
    font-size: 1.2rem;
}

.value-card p {
    margin-bottom: 0;
    color: var(--text-mid);
    font-size: 0.86rem;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-list {
    border-top:
        1px solid var(--border-dark);
}

.process-step {
    min-height: 160px;
    display: grid;
    grid-template-columns:
        80px
        minmax(0, 1fr)
        110px;
    align-items: center;
    gap: 35px;
    border-bottom:
        1px solid var(--border-dark);
    transition:
        background-color var(--transition),
        padding var(--transition);
}

.process-step:hover {
    padding-inline:
        18px;
    background:
        rgba(255, 255, 255, 0.025);
}

.process-step__number {
    color: var(--gold-300);
    font-family: monospace;
    font-size: 0.78rem;
}

.process-step__content {
    display: grid;
    grid-template-columns:
        minmax(230px, 0.72fr)
        minmax(320px, 1.28fr);
    align-items: center;
    gap: 70px;
}

.process-step h3 {
    margin: 0;
    font-size:
        clamp(1.25rem, 2vw, 1.65rem);
    letter-spacing: -0.025em;
}

.process-step p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.91rem;
}

.process-step__status {
    justify-self: end;
    padding:
        7px 10px;
    color: var(--gold-300);
    border:
        1px solid rgba(224, 200, 121, 0.28);
    border-radius: 999px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    padding:
        100px 0;
    background:
        linear-gradient(
            115deg,
            #101e29,
            #071018
        );
    border-top:
        1px solid var(--border-dark);
}

.final-cta::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -150px;
    width: 560px;
    height: 560px;
    border:
        1px solid rgba(224, 200, 121, 0.2);
    border-radius: 50%;
}

.final-cta::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -40px;
    width: 350px;
    height: 350px;
    border:
        1px solid rgba(224, 200, 121, 0.13);
    border-radius: 50%;
}

.final-cta__grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px
        );
    background-size:
        48px 48px;
    mask-image:
        linear-gradient(
            90deg,
            black,
            transparent 75%
        );
}

.final-cta__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(330px, 0.65fr);
    align-items: center;
    gap: 90px;
}

.final-cta__action > p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.final-cta__note {
    margin-top: 14px;
    display: block;
    color: #788792;
    font-size: 0.72rem;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1120px) {
    .hero__layout {
        grid-template-columns:
            1fr;
        padding-top: 95px;
    }

    .hero__content {
        max-width: 790px;
    }

    .hero-visual {
        width: min(100%, 760px);
        margin:
            0 auto;
    }

    .trust-bar {
        margin-top: 20px;
    }

    .section-heading--split,
    .value-layout,
    .final-cta__layout {
        grid-template-columns:
            1fr;
        gap: 42px;
    }

    .conversion-flow {
        grid-template-columns:
            1fr;
    }

    .flow-arrow {
        width: 100%;
        height: 38px;
        transform:
            rotate(90deg);
    }

    .flow-card {
        min-height: auto;
    }

    .value-content {
        max-width: 760px;
    }
}

@media (max-width: 800px) {
    .container {
        width:
            min(calc(100% - 32px), var(--container));
    }

    body > header {
        min-height: auto;
        padding:
            18px 16px;
    }

    body > header nav {
        width: 100%;
        justify-content: center;
        gap: 22px;
    }

    body > header nav a {
        padding:
            8px 0;
        font-size: 0.69rem;
    }

    body > header nav a::after {
        bottom: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero__layout {
        min-height: 0;
        padding:
            75px 0 45px;
    }

    .hero__title {
        font-size:
            clamp(3rem, 12vw, 5rem);
    }

    .hero-visual {
        min-height: 510px;
        transform: none;
    }

    .drawing-panel {
        width: 47%;
    }

    .model-panel {
        right: -10px;
        width: 68%;
    }

    .trust-bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .section {
        padding:
            90px 0;
    }

    .section-heading h2,
    .value-content h2,
    .final-cta h2 {
        font-size:
            clamp(2.35rem, 9vw, 4rem);
    }

    .capabilities-grid,
    .value-grid {
        grid-template-columns:
            1fr;
    }

    .process-step {
        padding:
            28px 0;
        grid-template-columns:
            46px
            minmax(0, 1fr);
        gap: 20px;
    }

    .process-step__content {
        grid-template-columns:
            1fr;
        gap: 12px;
    }

    .process-step__status {
        display: none;
    }
}

@media (max-width: 560px) {
    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero__proof {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-visual {
        min-height: 420px;
        margin-top: 10px;
    }

    .visual-label {
        display: none;
    }

    .drawing-panel {
        top: 60px;
        width: 51%;
        min-width: 185px;
    }

    .model-panel {
        top: 34px;
        width: 72%;
        min-width: 270px;
    }

    .conversion-beam {
        left: 34%;
        width: 27%;
    }

    .conversion-beam__badge {
        width: 38px;
        height: 38px;
    }

    .model-panel__status {
        right: 0;
        bottom: 30px;
    }

    .trust-bar__items {
        gap: 10px 20px;
    }

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

    .flow-card,
    .capability-card {
        padding:
            28px;
    }

    .capability-card h3 {
        margin-top: 42px;
    }

    .value-card {
        min-height: 190px;
    }

    .final-cta {
        padding:
            80px 0;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@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;
    }
}






/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 78px;
    background: rgba(4, 8, 12, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.site-header__inner {
    width: min(calc(100% - 48px), var(--container));
    min-height: 78px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 42px;
}

.site-brand {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-brand__mark {
    width: 37px;
    height: 37px;
    display: block;
    color: var(--gold-300);
}

.site-brand__mark svg {
    width: 100%;
    height: 100%;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-brand__text strong {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.17em;
}

.site-brand__text small {
    margin-top: 6px;
    color: var(--gold-300);
    font-size: 0.51rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.main-nav a {
    position: relative;
    padding: 29px 0 27px;
    color: #aeb9c1;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 2px;
    background: var(--gold-400);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a.is-active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    min-height: 42px;
    padding: 0 17px;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-950);
    background: var(--gold-300);
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition:
        transform var(--transition),
        background-color var(--transition);
}

.header-cta:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
}

.header-cta svg {
    width: 16px;
    height: 16px;
}


/* Disable the earlier generic header rules */

body > header.site-header {
    min-height: 78px;
    padding: 0;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 0;
    background: #030609;
    border-top: 1px solid var(--border-dark);
}

.site-footer__top {
    padding-top: 64px;
    padding-bottom: 58px;
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, 1fr);
    gap: 70px;
}

.site-brand--footer {
    margin-bottom: 22px;
}

.site-footer__brand p {
    max-width: 360px;
    margin: 0;
    color: #7f8b94;
    font-size: 0.86rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__column h3 {
    margin-bottom: 11px;
    color: var(--white);
    font-size: 0.67rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column span {
    color: #7f8b94;
    font-size: 0.78rem;
}

.site-footer__column a:hover {
    color: var(--gold-300);
}

.site-footer__bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    color: #59656e;
    border-top: 1px solid var(--border-dark);
    font-size: 0.7rem;
}


/* =========================================================
   INTERIOR PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 105px;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(38, 82, 108, 0.2),
            transparent 36%
        ),
        linear-gradient(
            115deg,
            var(--ink-950),
            var(--ink-850)
        );
}

.page-hero__grid,
.contact-page__grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        );
    background-size: 54px 54px;
    mask-image:
        linear-gradient(
            90deg,
            transparent,
            black 30%,
            transparent
        );
}

.page-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 95px;
}

.page-hero h1,
.contact-intro h1 {
    margin: 22px 0 0;
    max-width: 880px;
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.page-hero h1 span,
.contact-intro h1 span {
    display: block;
    color: var(--gold-300);
}

.page-hero__intro p {
    margin-bottom: 28px;
    color: var(--text-light);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-overview {
    padding: 30px 0 120px;
    background: var(--paper-50);
    color: var(--text-dark);
}

.service-detail {
    padding: 90px 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 60px;
    border-bottom: 1px solid var(--border-light);
}

.service-detail__aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-detail__number {
    color: var(--gold-600);
    font-family: monospace;
    font-size: 0.74rem;
}

.service-detail__icon {
    width: 68px;
    height: 68px;
    color: var(--gold-600);
}

.service-detail__main {
    max-width: 930px;
}

.service-detail__label {
    margin-bottom: 13px;
    color: var(--gold-600);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.service-detail h2 {
    margin-bottom: 20px;
    max-width: 800px;
    font-size: clamp(2rem, 4vw, 3.65rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.service-detail__main > p {
    max-width: 740px;
    color: var(--text-mid);
    font-size: 1rem;
}

.service-detail__columns {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 65px;
}

.service-detail__columns h3 {
    margin-bottom: 17px;
    font-size: 0.77rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.service-detail__columns ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.service-detail__columns li {
    position: relative;
    padding-left: 20px;
    color: var(--text-mid);
    font-size: 0.87rem;
}

.service-detail__columns li::before {
    content: "";
    position: absolute;
    top: 0.67em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

.service-cta {
    padding: 90px 0;
    background: var(--ink-850);
}

.service-cta__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
    align-items: center;
    gap: 90px;
}

.service-cta h2 {
    margin: 20px 0 0;
    max-width: 760px;
    font-size: clamp(2.3rem, 4.5vw, 4.4rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
}

.service-cta__layout > div:last-child p {
    color: var(--text-light);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-page {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    padding: 100px 0 115px;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(185, 150, 60, 0.1),
            transparent 30%
        ),
        var(--ink-925);
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
    align-items: start;
    gap: 95px;
}

.contact-intro__lead {
    max-width: 600px;
    margin: 30px 0 48px;
    color: var(--text-light);
    font-size: 1.04rem;
}

.contact-assurance {
    border-top: 1px solid var(--border-dark);
}

.contact-assurance article {
    padding: 23px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    border-bottom: 1px solid var(--border-dark);
}

.contact-assurance article > span {
    color: var(--gold-300);
    font-family: monospace;
    font-size: 0.68rem;
}

.contact-assurance h2 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.contact-assurance p {
    margin: 0;
    color: #7f8d97;
    font-size: 0.82rem;
}

.quote-panel {
    padding: 45px;
    background: var(--paper-50);
    color: var(--text-dark);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-large);
}

.quote-panel__heading {
    margin-bottom: 34px;
}

.quote-panel__heading > p {
    margin-bottom: 7px;
    color: var(--gold-600);
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quote-panel__heading h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.quote-form {
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    color: #28323a;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.form-field label span {
    color: #89939a;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #cfd2d1;
    border-radius: 4px;
    background: #ffffff;
    color: var(--text-dark);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-field input,
.form-field select {
    min-height: 49px;
    padding: 0 13px;
}

.form-field textarea {
    min-height: 155px;
    padding: 13px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(185, 150, 60, 0.13);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-mid);
    font-size: 0.78rem;
}

.form-checkbox input {
    margin-top: 3px;
    accent-color: var(--gold-500);
}

.form-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-note {
    margin: -7px 0 0;
    color: #828c92;
    font-size: 0.7rem;
    text-align: center;
}

.form-success {
    min-height: 530px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-success__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 25px;
    color: var(--gold-600);
}

.form-success h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.form-success p {
    max-width: 430px;
    color: var(--text-mid);
}

.button--secondary-dark {
    margin-top: 15px;
    color: var(--text-dark);
    border-color: #aeb4b6;
}


/* =========================================================
   RESPONSIVE HEADER AND INTERIOR PAGES
   ========================================================= */

@media (max-width: 980px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        border-top: 1px solid var(--border-dark);
    }

    .site-header {
        position: relative;
    }

    .site-header__inner {
        padding-top: 12px;
    }

    .main-nav a {
        padding: 14px 0 16px;
    }

    .main-nav a::after {
        bottom: 8px;
    }

    .page-hero__layout,
    .service-cta__layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

@media (max-width: 700px) {
    .site-header__inner {
        width: min(calc(100% - 28px), var(--container));
    }

    .header-cta {
        padding: 0 12px;
        font-size: 0.59rem;
    }

    .site-brand__text strong {
        font-size: 0.84rem;
    }

    .main-nav {
        gap: 27px;
    }

    .page-hero,
    .contact-page {
        padding: 75px 0;
    }

    .service-detail {
        padding: 65px 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-detail__aside {
        flex-direction: row;
        align-items: center;
    }

    .service-detail__icon {
        width: 52px;
        height: 52px;
    }

    .service-detail__columns,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .quote-panel {
        padding: 27px 20px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer__bottom {
        padding-block: 20px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}