/* ============================================================
   OURTECH INFORMATION TECHNOLOGY SOLUTIONS
   MAIN STYLESHEET
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */

:root {

    --navy-1000: #03080d;
    --navy-950: #050b10;
    --navy-900: #071119;
    --navy-850: #09151e;
    --navy-800: #0d1a25;
    --navy-750: #12212d;

    --gold-deep: #8f6421;
    --gold-dark: #a87526;
    --gold: #cda84f;
    --gold-light: #edca6d;
    --gold-bright: #ffe699;

    --white: #f5f6f7;

    --text: #eef1f3;
    --muted: #98a6b1;
    --muted-light: #c6ccd1;

    --border: rgba(255,255,255,0.10);
    --border-gold: rgba(205,168,79,0.36);

    --max-width: 1240px;

}


/* ============================================================
   RESET
============================================================ */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--navy-1000);

    color:
        var(--text);

    line-height:
        1.65;

    overflow-x:
        hidden;

}


a {

    color:
        inherit;

    text-decoration:
        none;

}


button {

    font:
        inherit;

}


img {

    display:
        block;

    max-width:
        100%;

}


/* ============================================================
   GLOBAL
============================================================ */

.container {

    width:
        min(
            90%,
            var(--max-width)
        );

    margin-inline:
        auto;

}


.section {

    padding:
        120px 0;

}


.section-dark {

    background:
        var(--navy-900);

}


.section-label {

    color:
        var(--gold);

    font-size:
        0.72rem;

    font-weight:
        700;

    letter-spacing:
        0.22em;

    margin-bottom:
        18px;

    text-transform:
        uppercase;

}


h1,
h2,
h3 {

    line-height:
        1.08;

    font-weight:
        650;

}


h2 {

    font-size:
        clamp(
            2.3rem,
            4.4vw,
            4.25rem
        );

    letter-spacing:
        -0.04em;

}


p {

    color:
        var(--muted);

}


.large-copy {

    font-size:
        1.08rem;

    color:
        var(--muted-light);

}


/* ============================================================
   BUTTONS
============================================================ */

.btn {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    min-height:
        50px;

    padding:
        13px 22px;

    font-size:
        0.88rem;

    font-weight:
        650;

    border:
        1px solid transparent;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;

}


.btn:hover {

    transform:
        translateY(-2px);

}


.btn-primary {

    background:
        var(--gold);

    color:
        #081017;

    border-color:
        var(--gold);

}


.btn-primary:hover {

    background:
        var(--gold-light);

    border-color:
        var(--gold-light);

}


.btn-secondary {

    color:
        white;

    border-color:
        var(--border);

}


.btn-secondary:hover {

    color:
        var(--gold-light);

    border-color:
        var(--gold);

}


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

.site-header {

    position:
        fixed;

    top: 0;

    left: 0;

    width:
        100%;

    z-index:
        1000;

    background:
        rgba(
            5,
            11,
            16,
            0.78
        );

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    backdrop-filter:
        blur(18px);

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.site-header.scrolled {

    background:
        rgba(
            5,
            11,
            16,
            0.97
        );

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

}


.nav-wrapper {

    min-height:
        82px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


/* ============================================================
   BRAND
============================================================ */

.brand {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

}


.brand-mark {

    width:
        45px;

    height:
        45px;

    display:
        grid;

    place-items:
        center;

    position:
        relative;

    border:
        1px solid
        var(--gold);

    color:
        var(--gold);

    font-size:
        0.82rem;

    font-weight:
        800;

    letter-spacing:
        0.12em;

}


.brand-mark::after {

    content:
        "";

    position:
        absolute;

    inset:
        4px;

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.25
        );

}


.brand-copy {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1.2;

}


.brand-copy strong {

    color:
        white;

    letter-spacing:
        0.16em;

    font-size:
        0.98rem;

}


.brand-copy span {

    color:
        var(--muted);

    font-size:
        0.67rem;

    margin-top:
        4px;

}


/* ============================================================
   NAVIGATION
============================================================ */

.main-nav {

    display:
        flex;

    align-items:
        center;

    gap:
        26px;

    font-size:
        0.82rem;

}


.main-nav > a {

    color:
        var(--muted-light);

    transition:
        color 0.2s ease;

}


.main-nav > a:hover {

    color:
        var(--gold-light);

}


.nav-contact {

    padding:
        10px 17px;

    border:
        1px solid
        var(--border-gold);

    color:
        var(--gold) !important;

}


.menu-toggle {

    display:
        none;

    color:
        white;

    background:
        transparent;

    border:
        0;

    font-size:
        1.55rem;

    cursor:
        pointer;

}


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

.hero {

    min-height:
        100vh;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    padding:
        145px 0 100px;

    background:

        radial-gradient(
            circle at 79% 36%,
            rgba(
                205,
                168,
                79,
                0.13
            ),
            transparent 28%
        ),

        radial-gradient(
            circle at 53% 85%,
            rgba(
                34,
                78,
                103,
                0.11
            ),
            transparent 34%
        ),

        linear-gradient(
            135deg,
            #03090e 0%,
            #06111a 52%,
            #0a1721 100%
        );

    overflow:
        hidden;

}


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

.hero-grid {

    position:
        absolute;

    inset:
        0;

    opacity:
        0.40;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.03
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.03
            ) 1px,
            transparent 1px
        );

    background-size:
        64px 64px;

}


/* ============================================================
   HERO AMBIENT LIGHT
============================================================ */

.hero-ambient {

    position:
        absolute;

    border-radius:
        50%;

    filter:
        blur(100px);

    pointer-events:
        none;

}


.hero-ambient-one {

    width:
        430px;

    height:
        430px;

    right:
        7%;

    top:
        15%;

    background:
        rgba(
            213,
            174,
            78,
            0.10
        );

}


.hero-ambient-two {

    width:
        350px;

    height:
        350px;

    right:
        23%;

    bottom:
        -10%;

    background:
        rgba(
            44,
            96,
            123,
            0.08
        );

}


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

.hero-layout {

    display:
        grid;

    grid-template-columns:
        minmax(
            0,
            1.08fr
        )
        minmax(
            430px,
            0.92fr
        );

    align-items:
        center;

    gap:
        50px;

    position:
        relative;

    z-index:
        5;

}


.hero-copy {

    max-width:
        760px;

}


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

.hero-kicker {

    color:
        var(--gold);

    font-size:
        0.73rem;

    font-weight:
        600;

    letter-spacing:
        0.15em;

    text-transform:
        uppercase;

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    margin-bottom:
        30px;

}


.kicker-line {

    width:
        42px;

    height:
        1px;

    background:
        var(--gold);

}


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

.hero h1 {

    font-size:
        clamp(
            4rem,
            7vw,
            7.5rem
        );

    letter-spacing:
        -0.055em;

    margin-bottom:
        24px;

}


.hero h1 span {

    color:
        var(--gold);

    display:
        block;

}


.hero-lead {

    color:
        white;

    font-size:
        clamp(
            1.15rem,
            2vw,
            1.55rem
        );

    margin-bottom:
        15px;

}


.hero-description {

    max-width:
        690px;

    font-size:
        1.04rem;

    margin-bottom:
        36px;

}


.hero-actions {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        15px;

    margin-bottom:
        55px;

}


.hero-trust {

    display:
        flex;

    align-items:
        flex-start;

    max-width:
        760px;

    border-top:
        1px solid
        var(--border);

    padding-top:
        22px;

}


.trust-item {

    flex:
        1;

    min-height:
        65px;

    padding-right:
        24px;

}


.trust-item:not(:first-child) {

    padding-left:
        24px;

    border-left:
        1px solid
        var(--border);

}


.trust-item strong {

    display:
        block;

    color:
        white;

    font-size:
        0.88rem;

    margin-bottom:
        2px;

}


.trust-item span {

    display:
        block;

    color:
        var(--muted);

    font-size:
        0.70rem;

}


/* ============================================================
   OURTECH ORBIT
============================================================ */

.hero-visual {

    min-height:
        570px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.tech-system {

    width:
        min(
            44vw,
            545px
        );

    aspect-ratio:
        1;

    position:
        relative;

    display:
        grid;

    place-items:
        center;

    isolation:
        isolate;

}


.system-glow {

    position:
        absolute;

    width:
        68%;

    height:
        68%;

    border-radius:
        50%;

    background:

        radial-gradient(
            circle,
            rgba(
                255,
                216,
                111,
                0.26
            ) 0%,
            rgba(
                205,
                168,
                79,
                0.15
            ) 32%,
            rgba(
                205,
                168,
                79,
                0.04
            ) 55%,
            transparent 73%
        );

    filter:
        blur(30px);

    animation:
        ambientPulse
        5s
        ease-in-out
        infinite;

}


.orbit-ring {

    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;

}


.orbit-ring-outer {

    width:
        100%;

    height:
        100%;

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.28
        );

    animation:
        orbitClockwise
        28s
        linear
        infinite;

}


.orbit-ring-middle {

    width:
        79%;

    height:
        79%;

    border:
        1px solid
        rgba(
            191,
            201,
            204,
            0.22
        );

    animation:
        orbitCounterClockwise
        22s
        linear
        infinite;

}


.orbit-ring-inner {

    width:
        58%;

    height:
        58%;

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.33
        );

    animation:
        orbitClockwise
        16s
        linear
        infinite;

}


.orbit-node {

    position:
        absolute;

    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    background:
        var(--gold-light);

    box-shadow:

        0 0 6px
        var(--gold-light),

        0 0 18px
        rgba(
            237,
            202,
            109,
            0.75
        );

}


.node-a {

    top:
        47%;

    left:
        -5px;

}


.node-b {

    top:
        -5px;

    left:
        57%;

}


.node-c {

    right:
        -5px;

    top:
        61%;

}


.free-node {

    position:
        absolute;

    border-radius:
        50%;

    background:
        var(--gold-light);

    box-shadow:
        0 0 18px
        rgba(
            237,
            202,
            109,
            0.8
        );

    animation:
        nodePulse
        2.8s
        ease-in-out
        infinite;

}


.free-node-one {

    width:
        10px;

    height:
        10px;

    right:
        10%;

    top:
        18%;

}


.free-node-two {

    width:
        7px;

    height:
        7px;

    right:
        3%;

    bottom:
        37%;

    animation-delay:
        0.7s;

}


.free-node-three {

    width:
        9px;

    height:
        9px;

    left:
        14%;

    bottom:
        17%;

    animation-delay:
        1.3s;

}


.core-halo {

    position:
        absolute;

    width:
        59%;

    height:
        59%;

    border-radius:
        50%;

    border:
        1px solid
        rgba(
            255,
            215,
            105,
            0.48
        );

    box-shadow:

        0 0 12px
        rgba(
            255,
            210,
            90,
            0.24
        ),

        0 0 35px
        rgba(
            205,
            168,
            79,
            0.18
        ),

        0 0 80px
        rgba(
            205,
            168,
            79,
            0.10
        );

    animation:
        haloPulse
        4s
        ease-in-out
        infinite;

}


.tech-core {

    width:
        55%;

    aspect-ratio:
        1;

    position:
        relative;

    z-index:
        5;

    border-radius:
        50%;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    text-align:
        center;

    overflow:
        hidden;

    border:
        1px solid
        rgba(
            255,
            222,
            126,
            0.75
        );

    background:

        radial-gradient(
            circle at 50% 19%,
            rgba(
                255,
                210,
                93,
                0.24
            ) 0%,
            rgba(
                205,
                168,
                79,
                0.12
            ) 28%,
            rgba(
                16,
                20,
                20,
                0.94
            ) 58%,
            rgba(
                5,
                11,
                16,
                0.99
            ) 100%
        );

}


.core-shine {

    position:
        absolute;

    top:
        -15%;

    left:
        20%;

    width:
        60%;

    height:
        48%;

    background:

        radial-gradient(
            ellipse,
            rgba(
                255,
                221,
                123,
                0.24
            ),
            transparent 68%
        );

    filter:
        blur(15px);

}


.ourtech-wordmark {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    line-height:
        0.82;

}


.word-our {

    color:
        #030303;

    font-size:
        clamp(
            2.15rem,
            4.2vw,
            3.55rem
        );

    font-weight:
        800;

    letter-spacing:
        0.07em;

    margin-bottom:
        6px;

}


.word-tech {

    font-size:
        clamp(
            3rem,
            5.8vw,
            5.1rem
        );

    font-weight:
        800;

    letter-spacing:
        0.04em;

    line-height:
        0.95;

    background:

        linear-gradient(
            180deg,
            #fff1ad 0%,
            #e7c35e 18%,
            #bc8730 42%,
            #f2cf68 63%,
            #9e6a20 82%,
            #e8bf52 100%
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    -webkit-text-fill-color:
        transparent;

    color:
        transparent;

}


.core-tagline {

    position:
        relative;

    z-index:
        2;

    max-width:
        82%;

    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        4px 7px;

    color:
        #cbd5dd;

    font-size:
        clamp(
            0.46rem,
            0.85vw,
            0.68rem
        );

    line-height:
        1.55;

    letter-spacing:
        0.15em;

    margin-top:
        25px;

    text-transform:
        uppercase;

}


.tag-dot {

    color:
        var(--gold-light);

}


.scroll-indicator {

    position:
        absolute;

    bottom:
        27px;

    left:
        50%;

    z-index:
        5;

    transform:
        translateX(-50%);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--muted);

    font-size:
        0.55rem;

    letter-spacing:
        0.25em;

}


.scroll-line {

    width:
        1px;

    height:
        35px;

    background:

        linear-gradient(
            to bottom,
            var(--gold),
            transparent
        );

}


/* ============================================================
   PROFILE
============================================================ */

.profile-section {

    background:
        #090b0d;

}


.profile-layout {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

    align-items:
        stretch;

}


.profile-copy h2 {

    max-width:
        700px;

    margin-bottom:
        28px;

}


.profile-copy > p {

    margin-bottom:
        20px;

    max-width:
        740px;

}


.profile-facts {

    margin-top:
        34px;

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        14px;

    max-width:
        600px;

}


.fact-card {

    border:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    padding:
        18px;

}


.fact-card span {

    display:
        block;

    color:
        var(--muted);

    font-size:
        0.72rem;

    letter-spacing:
        0.08em;

    margin-bottom:
        5px;

}


.fact-card strong {

    color:
        white;

    font-size:
        0.9rem;

}


/* ============================================================
   PHILIPPINE MAP PANEL
============================================================ */

.philippine-map-panel {

    min-height:
        720px;

    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    background:

        radial-gradient(
            circle at 52% 50%,
            rgba(
                205,
                168,
                79,
                0.08
            ),
            transparent 32%
        ),

        linear-gradient(
            150deg,
            #11202a 0%,
            #08131b 55%,
            #050b10 100%
        );

}


.philippine-map-panel .reach-grid {

    position:
        absolute;

    inset:
        0;

    opacity:
        0.38;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.035
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.035
            ) 1px,
            transparent 1px
        );

    background-size:
        64px 64px;

}


.philippine-map-panel .reach-copy {

    position:
        absolute;

    z-index:
        10;

    top:
        30px;

    left:
        30px;

    max-width:
        310px;

}


.philippine-map-panel .reach-kicker {

    display:
        block;

    color:
        var(--gold);

    font-size:
        0.67rem;

    letter-spacing:
        0.19em;

    margin-bottom:
        13px;

}


.philippine-map-panel .reach-copy strong {

    display:
        block;

    color:
        var(--white);

    font-size:
        1.6rem;

    line-height:
        1.2;

    margin-bottom:
        12px;

}


.philippine-map-panel .reach-copy p {

    font-size:
        0.91rem;

    line-height:
        1.75;

    color:
        var(--muted);

}


/* ============================================================
   MAP WRAPPER
============================================================ */

.philippines-map-wrapper {

    position:
        absolute;

    inset:
        150px 5px 15px 5px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.philippines-map {

    width:
        100%;

    height:
        100%;

    overflow:
        visible;

}


/* ============================================================
   ISLANDS
============================================================ */

.philippines-map .island,
.philippines-map .island-group > * {

    fill:
        rgba(
            205,
            168,
            79,
            0.035
        );

    stroke:
        url(#mapGold);

    stroke-width:
        1.5;

    vector-effect:
        non-scaling-stroke;

    filter:
        url(#islandGlow);

    transition:
        fill 0.4s ease,
        stroke 0.4s ease;

}


.philippines-map .island:hover {

    fill:
        rgba(
            205,
            168,
            79,
            0.09
        );

    stroke:
        var(--gold-light);

}


.map-ambient-glow {

    fill:
        rgba(
            205,
            168,
            79,
            0.025
        );

    filter:
        url(#islandGlow);

    animation:
        mapAmbientBreathing
        6s
        ease-in-out
        infinite;

}


/* ============================================================
   REGION CONNECTION LINES
============================================================ */

.region-lines path {

    fill:
        none;

    stroke:
        rgba(
            205,
            168,
            79,
            0.62
        );

    stroke-width:
        1;

    vector-effect:
        non-scaling-stroke;

    stroke-dasharray:
        220;

    stroke-dashoffset:
        220;

    animation:
        drawRegionLine
        1.4s
        ease
        forwards;

}


.region-lines path:nth-child(2) {

    animation-delay:
        0.12s;

}


.region-lines path:nth-child(3) {

    animation-delay:
        0.24s;

}


.region-lines path:nth-child(4) {

    animation-delay:
        0.36s;

}


.region-lines path:nth-child(5) {

    animation-delay:
        0.48s;

}


.region-lines path:nth-child(6) {

    animation-delay:
        0.60s;

}


.region-lines path:nth-child(7) {

    animation-delay:
        0.72s;

}


/* ============================================================
   REGION DOTS
============================================================ */

.region-core {

    fill:
        var(--gold-light);

    filter:
        url(#mapGlow);

}


.region-pulse {

    fill:
        rgba(
            205,
            168,
            79,
            0.12
        );

    stroke:
        rgba(
            237,
            202,
            109,
            0.36
        );

    stroke-width:
        1;

    transform-box:
        fill-box;

    transform-origin:
        center;

    animation:
        regionPulse
        2.8s
        ease-in-out
        infinite;

}


.marker-r1 .region-pulse {

    animation-delay:
        0.25s;

}


.marker-r3 .region-pulse {

    animation-delay:
        0.50s;

}


.marker-r4b .region-pulse {

    animation-delay:
        0.75s;

}


.marker-r7 .region-pulse {

    animation-delay:
        1s;

}


.marker-nir .region-pulse {

    animation-delay:
        1.25s;

}


.marker-r9 .region-pulse {

    animation-delay:
        1.50s;

}


/* ============================================================
   MAP LABELS
============================================================ */

.map-region-code {

    fill:
        var(--gold-light);

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:
        15px;

    font-weight:
        700;

    letter-spacing:
        1px;

}


.map-region-name {

    fill:
        #9ba8b2;

    font-family:
        "Segoe UI",
        Arial,
        sans-serif;

    font-size:
        8.8px;

}


/* ============================================================
   VALUE PROPOSITION
============================================================ */

.value-strip {

    margin-top:
        70px;

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    border:
        1px solid
        var(--border);

    background:
        rgba(
            255,
            255,
            255,
            0.02
        );

}


.value-strip article {

    padding:
        38px;

    min-height:
        220px;

}


.value-strip article + article {

    border-left:
        1px solid
        var(--border);

}


.value-icon {

    color:
        var(--gold);

    font-size:
        1.6rem;

    display:
        block;

    margin-bottom:
        26px;

}


.value-strip h3 {

    margin-bottom:
        12px;

}


.proposition {

    margin-top:
        28px;

    padding:
        26px 30px;

    border-left:
        2px solid
        var(--gold);

    background:
        rgba(
            205,
            168,
            79,
            0.05
        );

    display:
        flex;

    flex-direction:
        column;

    gap:
        6px;

}


.proposition span {

    color:
        var(--gold);

    font-size:
        0.67rem;

    letter-spacing:
        0.18em;

}


.proposition strong {

    font-size:
        clamp(
            1.25rem,
            2.3vw,
            2rem
        );

}


/* ============================================================
   OPERATIONS
============================================================ */

.operations-section {

    border-top:
        1px solid
        rgba(
            205,
            168,
            79,
            0.18
        );

}


.operations-layout {

    display:
        grid;

    grid-template-columns:
        0.72fr 1.28fr;

    gap:
        60px;

    align-items:
        center;

}


.operations-copy h2 {

    margin-bottom:
        24px;

}


.operations-copy p {

    max-width:
        480px;

}


.region-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    border:
        1px solid
        var(--border);

}


.region-card {

    min-height:
        145px;

    padding:
        24px;

    border-right:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(
            0,
            0,
            0,
            0.2
        );

}


.region-card:nth-child(3n) {

    border-right:
        0;

}


.region-card span,
.region-card strong {

    color:
        var(--gold);

}


.region-card strong {

    display:
        block;

    margin:
        8px 0 4px;

}


.region-card p {

    font-size:
        0.85rem;

}


/* ============================================================
   SOLUTIONS
============================================================ */

.solutions-section {

    background:
        #07090b;

}


.solution-console {

    margin-top:
        55px;

    display:
        grid;

    grid-template-columns:
        340px 1fr;

    border:
        1px solid
        var(--border);

    min-height:
        590px;

}


.solution-tabs {

    border-right:
        1px solid
        var(--border);

    background:
        #050709;

    padding:
        14px 0;

}


.solution-tab {

    width:
        100%;

    color:
        var(--muted);

    background:
        transparent;

    border:
        0;

    border-left:
        2px solid transparent;

    display:
        grid;

    grid-template-columns:
        38px 1fr;

    gap:
        12px;

    text-align:
        left;

    padding:
        17px 22px;

    cursor:
        pointer;

    transition:
        0.2s ease;

}


.solution-tab:hover {

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    color:
        white;

}


.solution-tab span {

    color:
        #58616a;

    font-size:
        0.76rem;

}


.solution-tab strong {

    font-size:
        0.84rem;

    font-weight:
        600;

}


.solution-tab.active {

    color:
        white;

    background:
        rgba(
            205,
            168,
            79,
            0.06
        );

    border-left-color:
        var(--gold);

}


.solution-tab.active span {

    color:
        var(--gold);

}


.solution-display {

    display:
        grid;

    grid-template-columns:
        36% 64%;

    min-width:
        0;

}


.solution-visual {

    position:
        relative;

    min-height:
        100%;

    overflow:
        hidden;

    display:
        grid;

    place-items:
        center;

    background:

        radial-gradient(
            circle at 60% 40%,
            rgba(
                205,
                168,
                79,
                0.13
            ),
            transparent 30%
        ),

        linear-gradient(
            150deg,
            #15191c,
            #0b0e11
        );

}


.solution-visual::before {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.025
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.025
            ) 1px,
            transparent 1px
        );

    background-size:
        38px 38px;

}


.solution-index {

    position:
        absolute;

    left:
        30px;

    top:
        30px;

    font-size:
        clamp(
            3rem,
            5vw,
            5.4rem
        );

    color:
        rgba(
            205,
            168,
            79,
            0.35
        );

    font-weight:
        800;

}


.solution-symbol {

    position:
        relative;

    z-index:
        2;

    width:
        180px;

    height:
        180px;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        var(--border-gold);

    color:
        var(--gold-light);

    font-size:
        4.5rem;

}


.solution-content {

    padding:
        48px 42px;

}


.solution-content h3 {

    font-size:
        clamp(
            1.8rem,
            3vw,
            3rem
        );

    margin-bottom:
        20px;

}


.solution-content > p {

    max-width:
        760px;

}


.capability-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        12px;

    margin-top:
        32px;

}


.capability-item {

    padding:
        13px 15px;

    background:
        #050709;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.06
        );

    color:
        var(--muted-light);

    font-size:
        0.82rem;

}


.capability-item::before {

    content:
        "→";

    color:
        var(--gold);

    margin-right:
        10px;

}


/* ============================================================
   SPECIALIZED ASSURANCE
============================================================ */

.specialized-section {

    background:
        #121416;

}


.specialized-heading {

    max-width:
        850px;

    margin:
        0 auto 52px;

    text-align:
        center;

}


.specialized-heading p:last-child {

    max-width:
        720px;

    margin:
        18px auto 0;

}


.dtap-card {

    border:
        1px solid
        var(--border-gold);

    background:

        radial-gradient(
            circle at 82% 30%,
            rgba(
                205,
                168,
                79,
                0.08
            ),
            transparent 25%
        ),

        #07090b;

    padding:
        34px;

    display:
        grid;

    grid-template-columns:
        150px 1fr;

    gap:
        32px;

    align-items:
        center;

    margin-bottom:
        24px;

}


.dtap-mark {

    width:
        120px;

    height:
        140px;

    margin:
        auto;

    clip-path:

        polygon(
            50% 0,
            92% 18%,
            82% 74%,
            50% 100%,
            18% 74%,
            8% 18%
        );

    display:
        grid;

    place-items:
        center;

    background:

        linear-gradient(
            180deg,
            #183a59,
            #07192a
        );

    box-shadow:

        inset
        0 0 0 6px
        rgba(
            205,
            168,
            79,
            0.12
        );

}


.dtap-mark span {

    color:
        white;

    font-weight:
        800;

    letter-spacing:
        0.08em;

}


.dtap-card h3 {

    font-size:
        1.8rem;

    margin-bottom:
        12px;

}


.tag-list {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        20px;

}


.tag-list span {

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.26
        );

    color:
        #b7ad91;

    padding:
        7px 10px;

    font-size:
        0.72rem;

}


.specialized-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        22px;

}


.specialized-card {

    border:
        1px solid
        var(--border-gold);

    background:
        #090b0d;

    padding:
        32px;

    min-height:
        430px;

}


.card-icon {

    display:
        grid;

    place-items:
        center;

    width:
        48px;

    height:
        48px;

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.35
        );

    color:
        var(--gold-light);

    margin-bottom:
        26px;

}


.specialized-card h3 {

    margin-bottom:
        14px;

}


.specialized-card ul {

    margin-top:
        22px;

    list-style:
        none;

    display:
        grid;

    gap:
        8px;

}


.specialized-card li {

    color:
        var(--muted-light);

    font-size:
        0.88rem;

}


.specialized-card li::before {

    content:
        "◉";

    color:
        var(--gold);

    margin-right:
        8px;

    font-size:
        0.68rem;

}


.ip-strip {

    margin-top:
        24px;

    display:
        grid;

    grid-template-columns:
        1fr 1.25fr auto;

    gap:
        28px;

    align-items:
        center;

    background:
        #07090b;

    border:
        1px solid
        var(--border);

    padding:
        28px 32px;

}


/* ============================================================
   SECTORS
============================================================ */

.sectors-section {

    background:
        #07090b;

}


.center-heading {

    max-width:
        760px;

    text-align:
        center;

    margin:
        0 auto 55px;

}


.center-heading p:last-child {

    margin-top:
        14px;

}


.sector-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    border:
        1px solid
        var(--border);

}


.sector-grid article {

    min-height:
        190px;

    padding:
        30px;

    background:
        rgba(
            255,
            255,
            255,
            0.015
        );

    border-right:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

}


.sector-grid article:nth-child(3n) {

    border-right:
        0;

}


.sector-grid article:nth-last-child(-n+3) {

    border-bottom:
        0;

}


.sector-grid span {

    color:
        var(--gold);

    font-size:
        1.35rem;

}


.sector-grid h3 {

    margin:
        18px 0 8px;

    font-size:
        1rem;

}


.sector-grid p {

    font-size:
        0.83rem;

}


/* ============================================================
   WHY OURTECH
============================================================ */

.why-section {

    background:
        #151719;

}


.why-layout {

    display:
        grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap:
        70px;

    align-items:
        start;

}


.why-copy h2 {

    margin-bottom:
        24px;

}


.why-copy p {

    max-width:
        580px;

}


.why-copy blockquote {

    margin-top:
        34px;

    border-left:
        2px solid
        var(--gold);

    background:
        rgba(
            0,
            0,
            0,
            0.18
        );

    padding:
        22px 24px;

    color:
        var(--gold-light);

    font-weight:
        700;

    font-style:
        italic;

}


.why-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        16px;

}


.why-grid article {

    min-height:
        180px;

    padding:
        24px;

    background:
        #080a0c;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.05
        );

}


.why-grid span {

    color:
        var(--gold);

    font-size:
        1.25rem;

}


.why-grid h3 {

    margin:
        16px 0 8px;

    font-size:
        0.98rem;

}


.why-grid p {

    font-size:
        0.82rem;

}


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

.contact-section {

    position:
        relative;

    padding:
        110px 0;

    background:

        radial-gradient(
            circle at 50% 30%,
            rgba(
                205,
                168,
                79,
                0.08
            ),
            transparent 24%
        ),

        #050709;

    overflow:
        hidden;

}


.contact-grid {

    position:
        absolute;

    inset:
        0;

    opacity:
        0.26;

    background-image:

        linear-gradient(
            rgba(
                255,
                255,
                255,
                0.03
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                255,
                255,
                255,
                0.03
            ) 1px,
            transparent 1px
        );

    background-size:
        55px 55px;

}


.contact-inner {

    position:
        relative;

    z-index:
        2;

    text-align:
        center;

    max-width:
        850px;

}


.contact-symbol {

    width:
        62px;

    height:
        62px;

    border-radius:
        50%;

    border:
        1px solid
        rgba(
            205,
            168,
            79,
            0.4
        );

    color:
        var(--gold);

    display:
        grid;

    place-items:
        center;

    margin:
        0 auto 24px;

    font-size:
        1.7rem;

}


.contact-inner h2 {

    font-size:
        clamp(
            2.8rem,
            5.4vw,
            5rem
        );

}


.contact-inner h2 span {

    color:
        var(--gold);

}


.contact-inner > p {

    max-width:
        760px;

    margin:
        22px auto 0;

    font-size:
        1.02rem;

}


.contact-actions {

    margin-top:
        34px;

    display:
        flex;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        14px;

}


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

.site-footer {

    background:
        #151719;

    padding:
        28px 0 0;

}


.download-banner {

    border:
        1px solid
        var(--border);

    background:
        #080a0c;

    padding:
        28px 34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

}


.download-banner h3 {

    font-size:
        1.5rem;

    margin-bottom:
        6px;

}


.footer-grid {

    padding:
        60px 0;

    display:
        grid;

    grid-template-columns:
        1.1fr 1fr 1fr 0.9fr;

    gap:
        44px;

}


.footer-brand strong {

    display:
        block;

    font-size:
        1.3rem;

    margin-bottom:
        16px;

}


.footer-brand strong span {

    color:
        var(--gold);

}


.footer-brand p {

    max-width:
        260px;

    margin-bottom:
        18px;

    font-size:
        0.82rem;

}


.footer-grid h4 {

    color:
        #68727b;

    letter-spacing:
        0.16em;

    font-size:
        0.69rem;

    margin-bottom:
        18px;

}


.footer-grid a,
.footer-grid > div > span {

    display:
        block;

    color:
        var(--muted);

    font-size:
        0.82rem;

    margin-bottom:
        8px;

}


.footer-grid a:hover {

    color:
        var(--gold-light);

}


.footer-button {

    border:
        1px solid
        var(--border-gold);

    padding:
        11px 14px;

    color:
        white !important;

}


.muted-button {

    border-color:
        var(--border);

    color:
        var(--muted) !important;

}


.footer-bottom {

    border-top:
        1px solid
        var(--border);

    padding:
        22px 0;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        #5e6870;

    font-size:
        0.72rem;

}


/* ============================================================
   ANIMATIONS
============================================================ */

@keyframes orbitClockwise {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


@keyframes orbitCounterClockwise {

    from {

        transform:
            rotate(360deg);

    }

    to {

        transform:
            rotate(0deg);

    }

}


@keyframes haloPulse {

    0%,
    100% {

        box-shadow:

            0 0 12px
            rgba(
                255,
                210,
                90,
                0.22
            ),

            0 0 35px
            rgba(
                205,
                168,
                79,
                0.16
            );

    }


    50% {

        box-shadow:

            0 0 18px
            rgba(
                255,
                220,
                120,
                0.35
            ),

            0 0 50px
            rgba(
                205,
                168,
                79,
                0.27
            );

    }

}


@keyframes ambientPulse {

    0%,
    100% {

        opacity:
            0.65;

        transform:
            scale(0.96);

    }

    50% {

        opacity:
            1;

        transform:
            scale(1.04);

    }

}


@keyframes nodePulse {

    0%,
    100% {

        opacity:
            0.65;

        transform:
            scale(0.85);

    }

    50% {

        opacity:
            1;

        transform:
            scale(1.18);

    }

}


@keyframes regionPulse {

    0%,
    100% {

        opacity:
            0.40;

        transform:
            scale(0.75);

    }


    50% {

        opacity:
            1;

        transform:
            scale(1.35);

    }

}


@keyframes drawRegionLine {

    to {

        stroke-dashoffset:
            0;

    }

}


@keyframes mapAmbientBreathing {

    0%,
    100% {

        opacity:
            0.35;

    }


    50% {

        opacity:
            0.80;

    }

}


/* ============================================================
   LARGE TABLET
============================================================ */

@media (max-width: 1080px) {


    .hero-layout,
    .profile-layout,
    .operations-layout,
    .why-layout {

        grid-template-columns:
            1fr;

    }


    .hero-copy {

        max-width:
            820px;

    }


    .hero-visual {

        min-height:
            500px;

    }


    .tech-system {

        width:
            min(
                80vw,
                520px
            );

    }


    .profile-layout {

        gap:
            50px;

    }


    .philippine-map-panel {

        min-height:
            780px;

    }


    .solution-console {

        grid-template-columns:
            290px 1fr;

    }


    .solution-display {

        grid-template-columns:
            1fr;

    }


    .solution-visual {

        min-height:
            280px;

    }


    .ip-strip {

        grid-template-columns:
            1fr;

    }


    .footer-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 940px) {


    .menu-toggle {

        display:
            block;

    }


    .main-nav {

        display:
            none;

        position:
            absolute;

        top:
            82px;

        left:
            0;

        width:
            100%;

        background:
            rgba(
                5,
                11,
                16,
                0.98
            );

        border-bottom:
            1px solid
            var(--border);

        padding:
            28px 5%;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;

    }


    .main-nav.active {

        display:
            flex;

    }


    .philippines-map-wrapper {

        inset:
            165px 20px 20px 20px;

    }


    .value-strip,
    .specialized-grid,
    .sector-grid {

        grid-template-columns:
            1fr;

    }


    .value-strip article + article {

        border-left:
            0;

        border-top:
            1px solid
            var(--border);

    }


    .sector-grid article {

        border-right:
            0;

        border-bottom:
            1px solid
            var(--border);

    }


    .sector-grid article:last-child {

        border-bottom:
            0;

    }


    .region-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }


    .region-card {

        border-right:
            1px solid
            var(--border);

    }


    .region-card:nth-child(2n) {

        border-right:
            0;

    }


    .solution-console {

        grid-template-columns:
            1fr;

    }


    .solution-tabs {

        border-right:
            0;

        border-bottom:
            1px solid
            var(--border);

        display:
            grid;

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }


    .solution-tab {

        border-left:
            0;

    }


    .solution-tab.active {

        border-left:
            0;

        box-shadow:
            inset
            0 -2px 0
            var(--gold);

    }


    .dtap-card {

        grid-template-columns:
            1fr;

    }


    .why-grid {

        grid-template-columns:
            1fr;

    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 680px) {


    .section {

        padding:
            88px 0;

    }


    .brand-copy span {

        display:
            none;

    }


    .hero {

        padding:
            125px 0 85px;

    }


    .hero h1 {

        font-size:
            clamp(
                3.4rem,
                17vw,
                5rem
            );

    }


    .hero-kicker {

        font-size:
            0.61rem;

        letter-spacing:
            0.09em;

    }


    .hero-trust {

        flex-direction:
            column;

        gap:
            16px;

    }


    .trust-item,
    .trust-item:not(:first-child) {

        padding:
            0 0 13px;

        border-left:
            0;

    }


    .hero-visual {

        min-height:
            390px;

    }


    .tech-system {

        width:
            min(
                94vw,
                420px
            );

    }


    .tech-core {

        width:
            58%;

    }


    .core-halo {

        width:
            62%;

        height:
            62%;

    }


    .word-our {

        font-size:
            clamp(
                1.75rem,
                9vw,
                2.65rem
            );

    }


    .word-tech {

        font-size:
            clamp(
                2.4rem,
                13vw,
                3.9rem
            );

    }


    .core-tagline {

        max-width:
            86%;

        font-size:
            0.42rem;

        letter-spacing:
            0.11em;

        margin-top:
            17px;

    }


    .profile-facts,
    .region-grid,
    .solution-tabs,
    .capability-grid,
    .footer-grid {

        grid-template-columns:
            1fr;

    }


    /* ========================================================
       MOBILE MAP
    ======================================================== */

    .philippine-map-panel {

        min-height:
            720px;

    }


    .philippine-map-panel .reach-copy {

        top:
            24px;

        left:
            24px;

        right:
            24px;

        max-width:
            none;

    }


    .philippines-map-wrapper {

        inset:
            185px -20px 10px -20px;

    }


    .map-region-name {

        display:
            none;

    }


    .map-region-code {

        font-size:
            12px;

    }


    .region-lines path {

        stroke-width:
            0.8;

    }


    .region-card {

        border-right:
            0 !important;

    }


    .solution-content {

        padding:
            34px 24px;

    }


    .download-banner,
    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

    }

}


/* ============================================================
   VERY SMALL PHONES
============================================================ */

@media (max-width: 430px) {


    .philippine-map-panel {

        min-height:
            680px;

    }


    .philippines-map-wrapper {

        inset:
            200px -35px 8px -35px;

    }


    .map-region-code {

        font-size:
            10px;

    }


    .map-region-name {

        display:
            none;

    }

}


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

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


    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}

/* ============================================================
   OFFICIAL OURTECH LOGO
============================================================ */

.brand-logo {
    width: 54px;
    height: 54px;

    flex: 0 0 54px;

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

    overflow: hidden;
}

.brand-logo .ourtech-logo {
    display: block;

    width: 100%;
    height: 100%;

    max-width: 90px;
    max-height: 90px;

}

@media (max-width: 680px) {

    .brand-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .brand-logo .ourtech-logo {
        max-width: 46px;
        max-height: 46px;
    }

}

/* ============================================================
   OURTECH INQUIRY MODAL
============================================================ */

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

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

    padding: 30px 20px;
}

.inquiry-modal.active {
    display: flex;
}


/* BACKDROP */

.inquiry-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(2, 7, 11, 0.88);

    backdrop-filter: blur(8px);
}


/* DIALOG */

.inquiry-dialog {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 760px;
    max-height: calc(100vh - 60px);

    overflow-y: auto;

    padding: 42px;

    background:
        linear-gradient(
            145deg,
            rgba(14, 23, 30, 0.99),
            rgba(6, 13, 18, 0.99)
        );

    border: 1px solid rgba(205, 168, 79, 0.32);

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(205, 168, 79, 0.04);
}


/* GOLD TOP ACCENT */

.inquiry-dialog::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );
}


/* CLOSE */

.inquiry-close {
    position: absolute;

    top: 17px;
    right: 20px;

    width: 36px;
    height: 36px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.025);

    color: rgba(255, 255, 255, 0.65);

    font-size: 1.5rem;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.inquiry-close:hover {
    color: var(--gold-light);

    border-color: rgba(205, 168, 79, 0.45);

    background: rgba(205, 168, 79, 0.06);
}


/* HEADER */

.inquiry-header {
    margin-bottom: 30px;
    padding-right: 45px;
}

.inquiry-eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.inquiry-header h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 650;

    line-height: 1.15;
}

.inquiry-header p {
    max-width: 620px;

    margin: 0;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.7;
}


/* FORM GRID */

.inquiry-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.inquiry-field {
    display: flex;
    flex-direction: column;
}

.inquiry-field-full {
    grid-column: 1 / -1;
}


/* LABEL */

.inquiry-field label {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.04em;
}

.inquiry-field label span {
    color: var(--gold);
}


/* INPUTS */

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;

    padding: 13px 14px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.11);

    border-radius: 0;

    outline: none;

    font: inherit;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.inquiry-field textarea {
    resize: vertical;

    min-height: 130px;
}

.inquiry-field input::placeholder,
.inquiry-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}


/* SELECT */

.inquiry-field select {
    cursor: pointer;
}

.inquiry-field select option {
    background: #0b141b;
    color: #ffffff;
}


/* FOCUS */

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-color: rgba(205, 168, 79, 0.75);

    background: rgba(205, 168, 79, 0.025);

    box-shadow:
        0 0 0 3px rgba(205, 168, 79, 0.06);
}


/* INVALID FIELD */

.inquiry-field.has-error input,
.inquiry-field.has-error select,
.inquiry-field.has-error textarea {
    border-color: rgba(220, 95, 95, 0.85);
}


/* ERROR MESSAGE */

.field-error {
    min-height: 16px;

    margin-top: 6px;

    color: #df8a8a;

    font-size: 0.68rem;
}


/* MESSAGE COUNTER */

.message-meta {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 15px;
}

#messageCounter {
    flex-shrink: 0;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 0.67rem;
}


/* VERIFICATION NOTICE */

.verification-notice {
    display: flex;

    gap: 14px;

    margin-top: 24px;
    padding: 16px;

    border: 1px solid rgba(205, 168, 79, 0.18);

    background: rgba(205, 168, 79, 0.035);
}

.verification-icon {
    width: 28px;
    height: 28px;

    flex: 0 0 28px;

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

    border: 1px solid rgba(205, 168, 79, 0.55);

    color: var(--gold);

    font-size: 0.75rem;
}

.verification-notice strong {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.78rem;
}

.verification-notice p {
    margin: 0;

    color: var(--muted);

    font-size: 0.75rem;
    line-height: 1.55;
}


/* STATUS */

.inquiry-status {
    display: none;

    margin-top: 20px;
    padding: 13px 15px;

    font-size: 0.77rem;
    line-height: 1.5;
}

.inquiry-status.show {
    display: block;
}

.inquiry-status.success {
    color: #c6d9b5;

    border: 1px solid rgba(130, 180, 110, 0.3);

    background: rgba(130, 180, 110, 0.06);
}

.inquiry-submit:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    transform: none;
}

.inquiry-status.error {
    color: #f0b0b0;

    border: 1px solid rgba(220, 95, 95, 0.34);

    background: rgba(220, 95, 95, 0.07);
}


/* ACTION BUTTONS */

.inquiry-actions {
    display: flex;

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

    gap: 12px;

    margin-top: 24px;
}

.inquiry-cancel,
.inquiry-submit {
    min-height: 48px;

    padding: 12px 20px;

    border-radius: 0;

    font: inherit;

    font-size: 0.78rem;
    font-weight: 650;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.inquiry-cancel {
    color: rgba(255, 255, 255, 0.65);

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.12);
}

.inquiry-cancel:hover {
    color: #ffffff;

    border-color: rgba(255, 255, 255, 0.28);
}

.inquiry-submit {
    color: #071015;

    background: var(--gold);

    border: 1px solid var(--gold);
}

.inquiry-submit:hover {
    transform: translateY(-2px);

    background: var(--gold-light);

    border-color: var(--gold-light);
}


/* PREVENT PAGE SCROLL WHEN MODAL IS OPEN */

body.inquiry-open {
    overflow: hidden;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 680px) {

    .inquiry-modal {
        padding: 0;
        align-items: stretch;
    }

    .inquiry-dialog {
        max-width: none;
        max-height: 100vh;

        min-height: 100vh;

        padding:
            68px
            20px
            30px;
    }

    .inquiry-header {
        padding-right: 0;
    }

    .inquiry-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .inquiry-field-full {
        grid-column: auto;
    }

    .inquiry-actions {
        flex-direction: column-reverse;

        align-items: stretch;
    }

    .inquiry-cancel,
    .inquiry-submit {
        width: 100%;
    }

}

/* ============================================================
   VERIFICATION RESULT
============================================================ */

.verification-code-status {
    min-height: 20px;
    margin-top: 10px;

    color: var(--muted);

    font-size: 0.75rem;
}

.verification-code-status.success {
    color: #bdd9ae;
}

.verification-code-status.error {
    color: #efaaaa;
}

.verify-code-button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ============================================================
   FEATURED DTAP POSITION
   Between Hero and Corporate Profile
============================================================ */

.dtap-feature-section {

    position: relative;

    padding: 42px 0;

    background: #090b0d;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.06);
}


.dtap-feature-section .dtap-card {

    margin: 0;

}


/* Give the credential slightly stronger presence */

.dtap-feature-section .dtap-logo {

    width: 145px;

    height: auto;
}


.dtap-feature-section .dtap-content h3 {

    margin-bottom: 12px;

    font-size:
        clamp(
            1.65rem,
            2.7vw,
            2.25rem
        );
}


.dtap-feature-section .dtap-content > p {

    max-width: 1000px;

}


/* ============================================================
   DTAP MOBILE
============================================================ */

@media (max-width: 680px) {

    .dtap-feature-section {

        padding: 30px 0;

    }


    .dtap-feature-section .dtap-card {

        padding: 28px 22px;

    }


    .dtap-feature-section .dtap-logo {

        width: 115px;

    }

}