:root {
    --go-blue: #337ab7;
    --go-blue-dark: #245580;
    --go-ink: #18212c;
    --go-muted: #65707c;
    --go-surface: #f8f8f8;
    --go-white: #ffffff;
    --go-line: #e7e7e7;
    --go-shadow: 0 24px 70px rgba(24, 33, 44, 0.13);
    --go-radius: 28px;
    --nav-height: 72px;
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100%;
    padding-top: var(--nav-height);
    color: var(--go-ink);
    background:
        radial-gradient(circle at 8% 22%, rgba(51, 122, 183, 0.06), transparent 22rem),
        radial-gradient(circle at 92% 62%, rgba(51, 122, 183, 0.05), transparent 28rem),
        var(--go-white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    color: var(--go-white);
    background: var(--go-blue);
}

a {
    color: var(--go-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 180ms ease, opacity 180ms ease;
}

a:hover,
a:focus {
    color: var(--go-blue-dark);
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 15px;
    color: var(--go-white);
    background: var(--go-ink);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    color: var(--go-white);
    transform: translateY(0);
}

.scroll-progress {
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.scroll-progress__bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--go-blue-dark), var(--go-blue), var(--go-white));
    box-shadow: 0 0 16px rgba(51, 122, 183, 0.75);
}

.pointer-glow {
    position: fixed;
    z-index: 0;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -250px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.24;
    background: radial-gradient(circle, rgba(51, 122, 183, 0.18), rgba(51, 122, 183, 0) 68%);
    transform: translate3d(var(--pointer-x, -1000px), var(--pointer-y, -1000px), 0);
    transition: opacity 240ms ease;
}

.navbar-default {
    min-height: var(--nav-height);
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(231, 231, 231, 0.9);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 28px rgba(24, 33, 44, 0.06);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    transition: min-height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.navbar-default.is-scrolled {
    min-height: 62px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(24, 33, 44, 0.11);
}

.navbar-default .container {
    min-height: inherit;
}

.navbar-header,
.navbar-collapse {
    min-height: inherit;
}

.navbar-default .navbar-brand {
    display: inline-flex;
    align-items: center;
    min-height: inherit;
    height: auto;
    padding: 0 15px;
    color: var(--go-ink);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.navbar-default .navbar-brand::before {
    content: "GO";
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-right: 11px;
    color: var(--go-white);
    background: linear-gradient(135deg, var(--go-ink), var(--go-blue));
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(51, 122, 183, 0.25);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: var(--go-blue);
}

.navbar-default .navbar-nav > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--nav-height);
    padding: 0 16px;
    color: #4a535e;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 17px;
    left: 16px;
    height: 2px;
    background: var(--go-blue);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.navbar-default .navbar-nav > li > a:hover::after,
.navbar-default .navbar-nav > li > a:focus::after,
.navbar-default .navbar-nav > li > a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a[aria-current="page"] {
    color: var(--go-blue);
}

.navbar-toggle {
    margin-top: 18px;
    margin-bottom: 18px;
    border: 1px solid var(--go-line) !important;
    border-radius: 11px;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: var(--go-surface);
}

.intro-header {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: calc(100vh - var(--nav-height));
    padding: 0;
    overflow: hidden;
    color: var(--go-white);
    background-position: center;
    background-attachment: fixed;
}

.intro-header::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        radial-gradient(circle at 50% 44%, rgba(51, 122, 183, 0.38), transparent 31rem),
        linear-gradient(120deg, rgba(24, 33, 44, 0.84), rgba(24, 33, 44, 0.28) 50%, rgba(24, 33, 44, 0.74));
}

.intro-header::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 24%, black 72%, transparent);
    animation: grid-drift 18s linear infinite;
}

.intro-header > .container {
    display: grid;
    align-items: center;
}

.intro-message {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-message img {
    width: clamp(170px, 22vw, 250px);
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.38));
    animation: logo-float 6s ease-in-out infinite;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    padding: 8px 13px;
    border: 1px solid rgba(51, 122, 183, 0.32);
    border-radius: 999px;
    color: var(--go-blue-dark);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 22px rgba(24, 33, 44, 0.08);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-top: 26px;
    color: var(--go-white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-eyebrow::before,
.section-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 14px currentColor;
    animation: node-pulse 2.4s ease-in-out infinite;
}

.intro-message > h3 {
    max-width: 720px;
    margin: 18px auto 0;
    color: var(--go-white);
    font-size: clamp(25px, 4vw, 50px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.035em;
    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.55);
}

.intro-divider {
    width: min(400px, 70%);
    margin: 28px auto;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
}

.btn {
    border-radius: 14px;
    font-weight: 750;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn-default,
.intro-social-buttons .btn-default,
.banner-social-buttons .btn-default {
    position: relative;
    overflow: hidden;
    color: var(--go-ink);
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn-default::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.85) 50%, transparent 75%);
    transform: translateX(-140%);
    transition: transform 600ms ease;
}

.btn-default:hover::before,
.btn-default:focus::before {
    transform: translateX(140%);
}

.btn-default:hover,
.btn-default:focus {
    color: var(--go-white);
    border-color: var(--go-blue);
    background: var(--go-blue);
    box-shadow: 0 17px 40px rgba(51, 122, 183, 0.34);
    transform: translateY(-3px);
}

.network-name {
    position: relative;
    z-index: 1;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.content-section-a,
.content-section-b {
    position: relative;
    padding: clamp(64px, 8vw, 108px) 0;
    border: 0;
    overflow: clip;
}

.content-section-a {
    background:
        radial-gradient(circle at 10% 10%, rgba(51, 122, 183, 0.055), transparent 23rem),
        var(--go-surface);
}

.content-section-b {
    background:
        radial-gradient(circle at 90% 90%, rgba(51, 122, 183, 0.05), transparent 24rem),
        var(--go-white);
}

.content-section-a .row,
.content-section-b .row {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 390px;
    margin: 0;
    padding: clamp(24px, 4vw, 48px);
    border: 1px solid rgba(231, 231, 231, 0.96);
    border-radius: var(--go-radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--go-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.content-section-a .row::before,
.content-section-b .row::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -180px;
    top: -180px;
    border: 1px solid rgba(51, 122, 183, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgba(51, 122, 183, 0.035),
        0 0 0 72px rgba(51, 122, 183, 0.025);
    pointer-events: none;
}

.content-section-a .row > [class*="col-"],
.content-section-b .row > [class*="col-"] {
    float: none;
    position: relative;
    z-index: 2;
}

.section-heading-spacer {
    float: none;
    width: 86px;
    margin: 0 0 22px;
    border: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--go-blue), rgba(51, 122, 183, 0.12));
}

.section-heading {
    margin: 0 0 22px;
    color: var(--go-ink);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.045em;
}

.lead {
    margin-bottom: 24px;
    color: #46515d;
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 430;
    line-height: 1.75;
}

.content-section-a .img-responsive,
.content-section-b .img-responsive {
    position: relative;
    width: 100%;
    max-height: 520px;
    margin: 0 auto;
    padding: 7px;
    border: 1px solid rgba(231, 231, 231, 0.95);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 24px 55px rgba(24, 33, 44, 0.18);
    object-fit: contain;
    transition: transform 140ms ease-out, box-shadow 220ms ease, filter 220ms ease;
    transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
    will-change: transform;
}

.content-section-a a:hover .img-responsive,
.content-section-b a:hover .img-responsive,
.content-section-a .img-responsive:hover,
.content-section-b .img-responsive:hover {
    box-shadow: 0 32px 70px rgba(24, 33, 44, 0.24), 0 0 0 1px rgba(51, 122, 183, 0.12);
    filter: saturate(1.04) contrast(1.02);
}

.page-home .content-section-a .img-responsive,
.page-home .content-section-b .img-responsive {
    min-height: 310px;
}

.page-profile .content-section-a .row,
.page-profile .content-section-b .row,
.page-legal .content-section-a .row,
.page-legal .content-section-b .row,
.page-contact .content-section-a .row,
.page-contact .content-section-b .row,
.page-webcams .content-section-a .row,
.page-webcams .content-section-b .row {
    align-items: flex-start;
}

.page-profile .content-section-a .row > div:first-child,
.page-profile .content-section-b .row > div:first-child {
    width: 62%;
}

.page-profile .content-section-a .row > div:last-child,
.page-profile .content-section-b .row > div:last-child {
    width: 38%;
    margin-left: 0;
}

.page-profile .content-section-a ul,
.page-profile .content-section-b ul {
    display: grid;
    gap: 9px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.page-profile .content-section-a li,
.page-profile .content-section-b li {
    position: relative;
    padding-left: 23px;
    color: #48535f;
}

.page-profile .content-section-a li::before,
.page-profile .content-section-b li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border: 1px solid var(--go-blue);
    border-radius: 50%;
    background: rgba(51, 122, 183, 0.12);
    box-shadow: 0 0 10px rgba(51, 122, 183, 0.35);
}

.profile-label {
    margin: 28px 0 12px;
    color: var(--go-ink);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.page-legal .content-section-a .row > div:first-child,
.page-legal .content-section-b .row > div:first-child {
    width: 72%;
}

.page-legal .content-section-a .row > div:last-child,
.page-legal .content-section-b .row > div:last-child {
    width: 28%;
    margin-left: 0;
}

.page-legal pre {
    margin: 0 0 22px;
    padding: 18px;
    color: #46515d;
    border: 1px solid var(--go-line);
    border-radius: 16px;
    background: rgba(248, 248, 248, 0.75);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: normal;
    overflow-wrap: anywhere;
}

.page-legal font,
.page-legal strong {
    color: var(--go-ink);
    font-family: inherit !important;
    font-size: 15px !important;
}

.page-contact iframe {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--go-line) !important;
    border-radius: 20px;
    background: var(--go-white);
    box-shadow: 0 18px 40px rgba(24, 33, 44, 0.1);
}

.page-contact .sites-embed,
.page-contact [style*="width:700px"] {
    width: 100% !important;
    max-width: 100%;
}

.banner {
    position: relative;
    isolation: isolate;
    padding: clamp(74px, 9vw, 120px) 0;
    overflow: hidden;
    background-position: center;
    background-attachment: fixed;
}

.banner::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(105deg, rgba(24, 33, 44, 0.92), rgba(24, 33, 44, 0.48) 62%, rgba(51, 122, 183, 0.46));
}

.banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.16;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1.4px);
    background-size: 28px 28px;
}

.banner .row {
    display: flex;
    align-items: center;
}

.banner h2 {
    color: var(--go-white);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.banner-social-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    float: none;
}

footer {
    position: relative;
    padding: 44px 0;
    border-top: 1px solid var(--go-line);
    background: rgba(255, 255, 255, 0.94);
}

footer .container {
    position: relative;
}

footer .list-inline {
    margin-bottom: 16px;
}

footer .list-inline > li > a {
    color: var(--go-ink);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

footer .list-inline > li > a:hover {
    color: var(--go-blue);
}

p.copyright {
    margin-top: 0;
    color: var(--go-muted);
}

.back-to-top {
    position: fixed;
    z-index: 9998;
    right: 22px;
    bottom: 22px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--go-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 15px;
    background: linear-gradient(135deg, var(--go-ink), var(--go-blue));
    box-shadow: 0 16px 34px rgba(24, 33, 44, 0.22);
    font-size: 19px;
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus {
    color: var(--go-white);
    box-shadow: 0 18px 42px rgba(51, 122, 183, 0.35);
    transform: translateY(-3px);
}

.ai-node {
    position: absolute;
    z-index: 1;
    left: var(--node-x);
    top: var(--node-y);
    width: var(--node-size);
    height: var(--node-size);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 50%;
    background: rgba(51, 122, 183, 0.28);
    box-shadow: 0 0 22px rgba(51, 122, 183, 0.62);
    pointer-events: none;
    opacity: var(--node-opacity);
    animation: node-drift var(--node-speed) ease-in-out infinite alternate;
    animation-delay: var(--node-delay);
}

.reveal-ready {
    opacity: 0;
    transform: translateY(28px) scale(0.99);
    transition: opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready.is-revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0) rotate(0.001deg); }
    50% { transform: translateY(-12px) rotate(0.001deg); }
}

@keyframes grid-drift {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(44px, 44px, 0); }
}

@keyframes node-pulse {
    0%, 100% { opacity: 0.55; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes node-drift {
    from { transform: translate3d(-8px, -8px, 0) scale(0.9); }
    to { transform: translate3d(18px, 22px, 0) scale(1.15); }
}

@media (max-width: 991px) {
    :root {
        --nav-height: 64px;
    }

    .navbar-default .navbar-nav > li > a {
        min-height: 50px;
        padding: 0 15px;
    }

    .navbar-default .navbar-nav > li > a::after {
        bottom: 7px;
    }

    .navbar-collapse {
        border-top: 1px solid var(--go-line) !important;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: none !important;
    }

    .intro-header,
    .banner {
        background-attachment: scroll;
    }

    .content-section-a .row,
    .content-section-b .row {
        flex-wrap: wrap;
        gap: 34px;
    }

    .content-section-a .row > [class*="col-"],
    .content-section-b .row > [class*="col-"],
    .page-profile .content-section-a .row > div:first-child,
    .page-profile .content-section-b .row > div:first-child,
    .page-profile .content-section-a .row > div:last-child,
    .page-profile .content-section-b .row > div:last-child,
    .page-legal .content-section-a .row > div:first-child,
    .page-legal .content-section-b .row > div:first-child,
    .page-legal .content-section-a .row > div:last-child,
    .page-legal .content-section-b .row > div:last-child {
        width: 100%;
        margin: 0;
    }

    .page-home .content-section-a .row > [class*="col-"],
    .page-home .content-section-b .row > [class*="col-"] {
        width: calc(50% - 17px);
    }

    .banner .row {
        flex-wrap: wrap;
        gap: 28px;
    }

    .banner .row > div {
        width: 100%;
    }

    .banner-social-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 64px;
    }

    .navbar-default .navbar-brand {
        min-height: 63px;
    }

    .intro-message {
        padding: 60px 8px;
    }

    .intro-message > h3 {
        font-size: clamp(28px, 9vw, 42px);
    }

    .content-section-a,
    .content-section-b {
        padding: 45px 0;
    }

    .content-section-a .row,
    .content-section-b .row {
        min-height: 0;
        padding: 24px 18px;
        border-radius: 22px;
    }

    .page-home .content-section-a .row > [class*="col-"],
    .page-home .content-section-b .row > [class*="col-"] {
        width: 100%;
    }

    .page-home .content-section-a .row > div:first-child,
    .page-home .content-section-b .row > div:first-child {
        order: 1;
    }

    .page-home .content-section-a .row > div:last-child,
    .page-home .content-section-b .row > div:last-child {
        order: 2;
    }

    .page-home .content-section-a .img-responsive,
    .page-home .content-section-b .img-responsive {
        min-height: 0;
        max-height: 420px;
    }

    .section-heading {
        font-size: 34px;
    }

    .banner-social-buttons,
    .intro-social-buttons {
        display: grid;
        width: 100%;
    }

    .banner-social-buttons > li,
    .intro-social-buttons > li {
        display: block;
        margin: 0 0 10px;
        padding: 0;
    }

    .banner-social-buttons .btn,
    .intro-social-buttons .btn {
        width: 100%;
    }

    .pointer-glow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}

/* Bootstrap grid normalization for the modern flex cards. */
.content-section-a .row > [class*="col-"],
.content-section-b .row > [class*="col-"] {
    left: auto !important;
    right: auto !important;
}

.page-home .content-section-a .row > [class*="col-"],
.page-home .content-section-b .row > [class*="col-"] {
    width: 50%;
    margin-left: 0 !important;
}

.page-home .content-section-b .row > .col-sm-push-6 {
    order: 2;
}

.page-home .content-section-b .row > .col-sm-pull-6 {
    order: 1;
}

.banner .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .page-home .content-section-a .row > [class*="col-"],
    .page-home .content-section-b .row > [class*="col-"] {
        width: 100%;
    }

    .page-home .content-section-b .row > .col-sm-push-6,
    .page-home .content-section-b .row > .col-sm-pull-6 {
        order: initial;
    }
}

.intro-message > img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.page-contact .content-section-a .row > div:first-child,
.page-contact .content-section-b .row > div:first-child {
    width: 100%;
}

.page-contact .content-section-a table,
.page-contact .content-section-b table,
.page-contact .sites-layout-hbox,
.page-contact .sites-layout-tile,
.page-contact .sites-embed-align-left-wrapping-off,
.page-contact .sites-embed-content {
    display: block;
    width: 100% !important;
    max-width: 100%;
}

.page-contact .content-section-a table,
.page-contact .content-section-a tbody,
.page-contact .content-section-a tr,
.page-contact .content-section-a td,
.page-contact .content-section-b table,
.page-contact .content-section-b tbody,
.page-contact .content-section-b tr,
.page-contact .content-section-b td {
    display: block;
    width: 100% !important;
}

.page-contact iframe {
    display: block;
    width: 100% !important;
}

/* 2026 visual refinement: stronger motion, legal cards and unified footer */
:root {
    --go-blue: #197fbd;
    --go-blue-bright: #31b5e8;
    --go-blue-dark: #0b3a5b;
    --go-accent: #68d3f2;
    --go-ink: #102535;
    --go-muted: #627381;
    --go-surface: #f3f8fb;
    --go-line: rgba(16, 37, 53, 0.11);
    --go-shadow: 0 28px 80px rgba(9, 50, 77, 0.14);
}

body::before {
    content: "";
    position: fixed;
    z-index: -2;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 16%, rgba(49, 181, 232, 0.12), transparent 26rem),
        radial-gradient(circle at 88% 78%, rgba(25, 127, 189, 0.10), transparent 30rem);
}

.navbar-default {
    border-bottom-color: rgba(16, 37, 53, 0.08);
    background: rgba(255, 255, 255, 0.82);
}

.navbar-default .navbar-brand::before {
    background: linear-gradient(145deg, var(--go-blue-dark), var(--go-blue-bright));
    box-shadow: 0 9px 25px rgba(25, 127, 189, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    animation: brand-breathe 4.8s ease-in-out infinite;
}

.brand-wordmark {
    position: relative;
}

.brand-wordmark::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--go-blue-bright), transparent);
    transform: scaleX(0.25);
    opacity: 0.55;
    transition: transform 240ms ease, opacity 240ms ease;
}

.navbar-brand:hover .brand-wordmark::after,
.navbar-brand:focus .brand-wordmark::after {
    transform: scaleX(1);
    opacity: 1;
}

.intro-header {
    background-size: cover;
    background-position: center calc(50% + var(--hero-scroll, 0px));
}

.intro-header::before {
    background:
        radial-gradient(circle at calc(50% + var(--hero-shift-x, 0px)) calc(42% + var(--hero-shift-y, 0px)), rgba(49, 181, 232, 0.48), transparent 27rem),
        linear-gradient(120deg, rgba(7, 31, 48, 0.93), rgba(10, 63, 94, 0.38) 48%, rgba(7, 31, 48, 0.88));
    transform: scale(1.06);
    animation: hero-color-drift 11s ease-in-out infinite alternate;
}

.intro-header::after {
    opacity: 0.26;
    background-size: 42px 42px;
    animation: grid-drift 13s linear infinite;
}

.intro-message::before,
.intro-message::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 46%;
    width: clamp(300px, 44vw, 570px);
    aspect-ratio: 1;
    border: 1px solid rgba(104, 211, 242, 0.24);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    animation: orbit-spin 22s linear infinite;
}

.intro-message::after {
    width: clamp(230px, 34vw, 430px);
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.22);
    animation-duration: 15s;
    animation-direction: reverse;
}

.intro-message img {
    filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 30px rgba(49, 181, 232, 0.34));
    animation: logo-float-strong 5.2s ease-in-out infinite;
}

.hero-eyebrow {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 0 35px rgba(49, 181, 232, 0.12);
}

.hero-subline {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.8);
    font-size: clamp(15px, 1.8vw, 19px);
    line-height: 1.7;
    text-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.intro-social-buttons .btn-default,
.banner-social-buttons .btn-default {
    box-shadow: 0 16px 38px rgba(0,0,0,0.22), 0 0 0 1px rgba(255,255,255,0.16);
}

.content-section-a .row,
.content-section-b .row {
    isolation: isolate;
    border-color: rgba(25, 127, 189, 0.12);
    background: linear-gradient(145deg, rgba(255,255,255,0.93), rgba(247,251,253,0.78));
    box-shadow: 0 26px 72px rgba(9, 50, 77, 0.13), inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 360ms cubic-bezier(.2,.8,.2,1), box-shadow 360ms ease, border-color 360ms ease;
}

.content-section-a .row::before,
.content-section-b .row::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(480px circle at var(--card-x, 50%) var(--card-y, 50%), rgba(49, 181, 232, 0.18), transparent 46%),
        linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.72) 48%, transparent 76%);
    transition: opacity 320ms ease;
}

.content-section-a .row:hover,
.content-section-b .row:hover {
    transform: translateY(-8px);
    border-color: rgba(49, 181, 232, 0.30);
    box-shadow: 0 38px 95px rgba(9, 50, 77, 0.19), 0 0 0 1px rgba(49,181,232,0.08);
}

.content-section-a .row:hover::before,
.content-section-b .row:hover::before {
    opacity: 1;
}

.section-heading {
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--go-blue), var(--go-accent));
    box-shadow: 0 0 18px rgba(49, 181, 232, 0.32);
    transform-origin: left;
    animation: underline-pulse 3.2s ease-in-out infinite;
}

.content-section-a .img-responsive,
.content-section-b .img-responsive {
    border: 1px solid rgba(25,127,189,0.12);
    box-shadow: 0 24px 58px rgba(9, 50, 77, 0.18);
}

.content-section-a a:hover .img-responsive,
.content-section-b a:hover .img-responsive,
.content-section-a .img-responsive:hover,
.content-section-b .img-responsive:hover {
    box-shadow: 0 38px 85px rgba(9, 50, 77, 0.26), 0 0 0 1px rgba(49, 181, 232, 0.24);
    filter: saturate(1.08) contrast(1.03);
}

.banner::before {
    background:
        radial-gradient(circle at 78% 45%, rgba(49,181,232,0.24), transparent 26rem),
        linear-gradient(105deg, rgba(7, 31, 48, 0.96), rgba(10, 69, 102, 0.62) 62%, rgba(25, 127, 189, 0.62));
    animation: banner-breathe 8s ease-in-out infinite alternate;
}

.ai-node {
    border-color: rgba(255,255,255,0.72);
    background: rgba(49, 181, 232, 0.68);
    box-shadow: 0 0 14px rgba(104, 211, 242, 0.9), 0 0 30px rgba(25,127,189,0.55);
}

.reveal-ready {
    opacity: 0;
    transform: translateY(50px) scale(0.975);
    filter: blur(7px);
    transition: opacity 850ms cubic-bezier(.2,.8,.2,1), transform 850ms cubic-bezier(.2,.8,.2,1), filter 850ms ease;
}

.reveal-ready.reveal-from-left {
    transform: translateX(-58px) translateY(18px) scale(0.98);
}

.reveal-ready.reveal-from-right {
    transform: translateX(58px) translateY(18px) scale(0.98);
}

.reveal-ready.is-revealed {
    opacity: 1;
    transform: translate3d(0,0,0) scale(1);
    filter: blur(0);
}

.reveal-child {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease var(--reveal-delay, 80ms), transform 620ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 80ms);
}

.is-revealed .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

/* Legal pages */
.page-legal .content-section-a {
    padding-top: clamp(56px, 7vw, 92px);
}

.page-legal .content-section-a .row {
    align-items: stretch;
}

.legal-content {
    width: 100%;
}

.legal-intro {
    position: relative;
    margin-bottom: 30px;
    padding: 26px 28px;
    overflow: hidden;
    border: 1px solid rgba(49,181,232,0.20);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(11,58,91,0.97), rgba(25,127,189,0.90));
    box-shadow: 0 22px 50px rgba(9,50,77,0.2);
}

.legal-intro::after {
    content: "";
    position: absolute;
    right: -55px;
    top: -75px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255,255,255,0.035), 0 0 0 62px rgba(255,255,255,0.025);
}

.legal-kicker {
    margin: 0 0 8px;
    color: var(--go-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.legal-intro__text {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.legal-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.legal-meta span {
    padding: 6px 10px;
    color: white;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .04em;
}

.legal-sections {
    display: grid;
    gap: 16px;
}

.legal-block {
    position: relative;
    padding: 24px 25px;
    border: 1px solid var(--go-line);
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 14px 36px rgba(9,50,77,0.08);
    transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.legal-block:hover {
    transform: translateY(-3px);
    border-color: rgba(49,181,232,0.34);
    box-shadow: 0 20px 46px rgba(9,50,77,0.13);
}

.legal-block h3 {
    margin: 0 0 13px;
    color: var(--go-blue-dark);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.legal-block__body {
    color: #4d5d69;
    font-size: 15px;
    line-height: 1.8;
    white-space: pre-line;
}

.legal-block__body ul {
    margin: 12px 0 12px 20px;
    padding: 0;
    white-space: normal;
}

.legal-block__body li {
    margin: 5px 0;
}

.legal-tabs {
    display: inline-flex;
    gap: 8px;
    margin: 0 0 22px;
    padding: 5px;
    border: 1px solid var(--go-line);
    border-radius: 14px;
    background: rgba(243,248,251,0.9);
}

.legal-tabs > li > a {
    margin: 0;
    padding: 10px 14px;
    border: 0 !important;
    border-radius: 10px;
    color: var(--go-muted);
    font-size: 12px;
    font-weight: 800;
}

.legal-tabs > li.active > a,
.legal-tabs > li > a:hover,
.legal-tabs > li > a:focus {
    color: white !important;
    background: linear-gradient(135deg, var(--go-blue-dark), var(--go-blue)) !important;
    box-shadow: 0 9px 22px rgba(25,127,189,0.24);
}

.legal-tab-content .tab-pane {
    padding: 24px 25px;
    border: 1px solid var(--go-line);
    border-radius: 20px;
    background: rgba(255,255,255,0.82);
    box-shadow: 0 14px 36px rgba(9,50,77,0.08);
}

.legal-tab-content p {
    color: #4d5d69;
    font-size: 15px;
    line-height: 1.82;
}

.legal-tab-content b,
.legal-tab-content strong {
    color: var(--go-blue-dark);
    font-size: 18px !important;
}

/* Unified modern footer */
.site-footer {
    padding: 54px 0 28px;
    color: rgba(255,255,255,0.74);
    border-top: 0;
    background:
        radial-gradient(circle at 86% 10%, rgba(49,181,232,0.13), transparent 25rem),
        linear-gradient(145deg, #071f30, #0b3a5b 70%, #0d4c70);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(300px, 1fr);
    align-items: end;
    gap: 42px;
    padding-bottom: 34px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: white;
    font-size: 20px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.site-footer__logo::before {
    content: "GO";
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: white;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--go-blue), var(--go-blue-bright));
    box-shadow: 0 9px 25px rgba(49,181,232,0.2);
    font-size: 11px;
    letter-spacing: .06em;
}

.site-footer__logo:hover,
.site-footer__logo:focus {
    color: var(--go-accent);
}

.site-footer__brand p {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,0.66);
    font-size: 14px;
}

.site-footer__nav .list-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 24px;
    margin: 0;
}

.site-footer .site-footer__nav a {
    position: relative;
    padding: 4px 0;
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer .site-footer__nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--go-accent);
    transform: scaleX(0);
    transition: transform 220ms ease;
}

.site-footer .site-footer__nav a:hover,
.site-footer .site-footer__nav a:focus,
.site-footer .site-footer__nav a[aria-current="page"] {
    color: white;
}

.site-footer .site-footer__nav a:hover::after,
.site-footer .site-footer__nav a:focus::after,
.site-footer .site-footer__nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.site-footer p.copyright,
.site-footer__note {
    margin: 0;
    color: rgba(255,255,255,0.54);
    font-size: 12px;
}

.site-footer__note {
    letter-spacing: .08em;
    text-transform: uppercase;
}

@keyframes logo-float-strong {
    0%, 100% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-16px) scale(1.025); }
    55% { transform: translateY(-16px) scale(1.025); }
}

@keyframes orbit-spin {
    from { transform: translate(-50%, -50%) rotate(0deg) scale(0.98); }
    50% { border-color: rgba(104,211,242,0.44); }
    to { transform: translate(-50%, -50%) rotate(360deg) scale(1.04); }
}

@keyframes hero-color-drift {
    0% { filter: hue-rotate(0deg) saturate(1); }
    100% { filter: hue-rotate(8deg) saturate(1.16); }
}

@keyframes banner-breathe {
    from { filter: brightness(.96) saturate(1); }
    to { filter: brightness(1.08) saturate(1.12); }
}

@keyframes brand-breathe {
    0%,100% { transform: translateY(0); box-shadow: 0 9px 25px rgba(25,127,189,.30); }
    50% { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(49,181,232,.42); }
}

@keyframes underline-pulse {
    0%,100% { transform: scaleX(.72); opacity: .72; }
    50% { transform: scaleX(1.1); opacity: 1; }
}

@media (max-width: 991px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .site-footer__nav .list-inline {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .intro-message::before { width: 320px; }
    .intro-message::after { width: 250px; }
    .content-section-a .row:hover,
    .content-section-b .row:hover { transform: none; }
    .legal-intro,
    .legal-block,
    .legal-tab-content .tab-pane { padding: 21px 19px; }
    .site-footer { padding-top: 44px; }
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-header::before,
    .intro-header::after,
    .intro-message::before,
    .intro-message::after,
    .intro-message img,
    .navbar-default .navbar-brand::before,
    .section-heading::after,
    .banner::before,
    .ai-node {
        animation: none !important;
    }
    .reveal-ready,
    .reveal-child {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}
