/* ==========================================================================
   BEGIN: Theme Variables
   ========================================================================== */

:root {
    --ink:#13212c;
    --navy:#071923;
    --navy-soft:#0d2b38;
    --teal:#12a7a3;
    --teal-dark:#067c7b;
    --teal-bright:#32d2ca;
    --gold:#d7b56d;
    --paper:#fff;
    --mist:#f2f6f7;
    --line:#d8e1e3;
    --muted:#5f7079;
    --shell:1440px;
}

/* ==========================================================================
   END: Theme Variables
   ========================================================================== */

/* ==========================================================================
   BEGIN: Global Reset and Shared Layout
   ========================================================================== */

* {
    box-sizing:border-box;
}

html {
    scroll-behavior:smooth;
}

body {
    margin:0;
    color:var(--ink);
    background:var(--paper);
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.65;
}

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

a {
    color:inherit;
}

button {
    font:inherit;
}

.shell {
    width:min(var(--shell),calc(100% - 64px));
    margin:0 auto;
}

.section {
    padding:76px 0;
}

.page-view {
    display:block;
}

.page-view[hidden] {
    display:none!important;
}

/* ==========================================================================
   END: Global Reset and Shared Layout
   ========================================================================== */

/* ==========================================================================
   BEGIN: Typography and Shared Elements
   ========================================================================== */

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

h1,h2,h3 {
    line-height:1.1;
}

h1 {
    margin-bottom:24px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(3rem,5.6vw,5.6rem);
    font-weight:500;
    letter-spacing:-.045em;
}

h2 {
    margin-bottom:22px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(2.1rem,3.5vw,3.6rem);
    font-weight:500;
    letter-spacing:-.035em;
}

h3 {
    margin-bottom:14px;
    font-size:1.3rem;
}

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

.eyebrow {
    margin-bottom:16px;
    color:var(--teal-bright);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;
}

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

.button {
    display:inline-block;
    padding:14px 23px;
    border-radius:4px;
    text-decoration:none;
    font-weight:700;
    transition:transform .2s ease;
}

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

.button-primary {
    color:#042127;
    background:var(--teal-bright);
}

.button-secondary {
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    background:rgba(255,255,255,.05);
}

.section-heading {
    max-width:760px;
    margin-bottom:42px;
}

/* ==========================================================================
   END: Typography and Shared Elements
   ========================================================================== */

/* ==========================================================================
   BEGIN: Header and Navigation
   ========================================================================== */

.site-header {
    position:absolute;
    z-index:50;
    top:0;
    left:0;
    width:100%;
    border-bottom:1px solid rgba(255,255,255,.16);
}

body.view-industries .site-header,body.view-approach .site-header {
    background:var(--navy);
    box-shadow:0 8px 24px rgba(3,14,20,.12);
}

.header-inner {
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.brand img {
    width:333px;
}

.site-nav {
    display:flex;
    align-items:center;
    gap:32px;
}

.site-nav a {
    position:relative;
    color:#fff;
    text-decoration:none;
    font-size:.94rem;
    font-weight:700;
}

.site-nav a:hover,.site-nav a.active {
    color:var(--teal-bright);
}

.site-nav a:not(.nav-cta)::after {
    content:'';
    height:2px;
    position:absolute;
    right:0;
    bottom:-12px;
    left:0;
    background:var(--teal-bright);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;
}

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

.nav-cta {
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:4px;
}

.menu-button {
    display:none;
}

/* ==========================================================================
   END: Header and Navigation
   ========================================================================== */

/* ==========================================================================
   BEGIN: Home Hero
   ========================================================================== */

.hero {
    min-height:680px;
    position:relative;
    display:flex;
    align-items:center;
    color:#fff;
    background:var(--navy) url('img/full-stack.png') center/cover no-repeat;
}

.hero-shade {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(3,17,24,.97) 0%,rgba(3,17,24,.88) 48%,rgba(3,17,24,.38) 100%);
}

.hero-content {
    position:relative;
    z-index:2;
    padding-top:88px;
}

.hero h1 {
    max-width:950px;
}

.hero h1 span {
    color:var(--teal-bright);
}

.hero-copy {
    max-width:720px;
    margin-bottom:32px;
    color:#d9e4e8;
    font-size:1.2rem;
}

.hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

/* ==========================================================================
   END: Home Hero
   ========================================================================== */

/* ==========================================================================
   BEGIN: Home Reasons
   ========================================================================== */

.home-reasons {
    background:#fff;
}

.home-heading {
    margin-bottom:34px;
}

.reason-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.reason-card {
    min-height:285px;
    padding:34px 38px;
    display:grid;
    grid-template-columns:22px minmax(0,1fr);
    column-gap:11px;
    align-content:start;
    border-right:1px solid var(--line);
}

.reason-card:last-child {
    border-right:0;
}

.reason-marker {
    width:22px;
    height:22px;
    margin-top:1px;
    display:block;
    background:url('img/markers/home-waveform.png') center/contain no-repeat;
}

.reason-card h3,
.reason-card p {
    grid-column:2;
}

/* ==========================================================================
   END: Home Reasons
   ========================================================================== */

/* ==========================================================================
   BEGIN: Testimonials
   ========================================================================== */

.testimonial-section {
    padding:72px 0;
    color:#fff;
    background:var(--navy-soft);
}

.testimonial-layout {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:80px;
    align-items:center;
}

.testimonial-introduction p {
    color:#c9d7dc;
}

.testimonial-card {
    width:100%;
    min-width:0;
    height:500px;
    position:relative;
    display:flex;
    flex-direction:column;
    padding:38px 42px 30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.04);
    transition:opacity .22s ease,transform .22s ease;
}

.testimonial-card.is-changing {
    opacity:.2;
    transform:translateY(4px);
}

.quote-mark {
    height:56px;
    color:var(--teal-bright);
    font-family:Georgia,'Times New Roman',serif;
    font-size:5rem;
    line-height:1;
}

.testimonial-card blockquote {
    height:250px;
    flex:0 0 250px;
    margin:0 0 28px;
    display:flex;
    align-items:center;
    overflow:hidden;
    overflow-wrap:anywhere;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(1.4rem,2.2vw,2rem);
    line-height:1.35;
}

.testimonial-person {
    min-width:0;
    flex:0 0 auto;
}

.testimonial-person strong,.testimonial-person span {
    display:block;
    overflow-wrap:anywhere;
}

.testimonial-person span {
    color:#9eb1b8;
    font-size:.9rem;
}

.testimonial-controls {
    flex:0 0 auto;
    margin-top:auto;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:16px;
}

.testimonial-controls button {
    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,.24);
    color:#fff;
    background:transparent;
    cursor:pointer;
}

#testimonial-position {
    color:#9eb1b8;
    font-size:.8rem;
    font-weight:700;
    letter-spacing:.1em;
}

/* ==========================================================================
   END: Testimonials
   ========================================================================== */

/* ==========================================================================
   BEGIN: Solutions Opening
   ========================================================================== */

.solutions-opening {
    padding:160px 0 76px;
    color:#fff;
    background:var(--navy);
}

.solutions-opening-grid {
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:90px;
    align-items:center;
}

.opening-copy p,
.approach-intro p {
    color:#c9d7dc;
    font-size:1.08rem;
}

.view-opening h1 span {
    color:var(--teal-bright);
}

.opening-lead {
    color:#fff!important;
    font-family:Georgia,'Times New Roman',serif;
    font-size:1.35rem!important;
    line-height:1.45;
}

/* ==========================================================================
   END: Solutions Opening
   ========================================================================== */

/* ==========================================================================
   BEGIN: Solutions Grid
   ========================================================================== */

.solution-grid-section {
    background:var(--mist);
}

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

.solution-card {
    min-height:270px;
    padding:32px;
    background:#fff;
}

.solution-card:not(.solution-card-managed) {
    display:grid;
    grid-template-columns:22px minmax(0,1fr);
    column-gap:11px;
    align-content:start;
}

.solution-card-managed {
    grid-column:span 2;
    min-height:350px;
    color:#fff;
    background:var(--navy-soft);
}

.solution-card-managed p {
    color:#c9d7dc;
}

.solution-card-managed ul {
    columns:2;
    margin:28px 0 0;
    padding-left:20px;
    color:#d7e2e5;
}

.solution-label {
    margin-bottom:50px;
    display:block;
    color:var(--teal);
    font-size:.75rem;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.solution-marker {
    width:22px;
    height:22px;
    margin-top:1px;
    display:block;
    background:url('img/markers/solutions-circuit.png') center/contain no-repeat;
}

.solution-card:not(.solution-card-managed) h3,
.solution-card:not(.solution-card-managed) p {
    grid-column:2;
}

.solution-label {
    color:var(--teal-bright);
}

/* ==========================================================================
   END: Solutions Grid
   ========================================================================== */

/* ==========================================================================
   BEGIN: Industries Opening
   ========================================================================== */

.industries-opening {
    padding:160px 0 76px;
    color:#fff;
    background:var(--navy);
}

.industries-opening-grid {
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:90px;
    align-items:center;
}

/* ==========================================================================
   END: Industries Opening
   ========================================================================== */

/* ==========================================================================
   BEGIN: Industries Explorer
   ========================================================================== */

.industries-explorer-section {
    padding:70px 0 76px;
    overflow:hidden;
    background:linear-gradient(110deg,#fff 0%,#fff 58%,#f4f9f9 100%);
}

.industry-explorer {
    display:grid;
    grid-template-columns:minmax(590px,680px) minmax(280px,1fr);
    gap:46px;
    align-items:center;
}

.industry-map {
    width:680px;
    height:650px;
    position:relative;
}

.industry-ring {
    position:absolute;
    left:50%;
    border:1px solid rgba(18,167,163,.25);
    border-radius:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.industry-ring-outer {
    width:510px;
    height:510px;
    top:36px;
}

.industry-ring-inner {
    width:365px;
    height:365px;
    top:108px;
    border-style:dashed;
    border-color:rgba(19,33,44,.15);
}

.industry-center {
    width:205px;
    height:205px;
    position:absolute;
    top:188px;
    left:238px;
    display:grid;
    place-items:center;
    border:1px solid rgba(18,167,163,.24);
    border-radius:50%;
    background:rgba(255,255,255,.94);
    box-shadow:0 18px 44px rgba(7,25,35,.08);
}

.industry-center img {
    width:172px;
}

.industry-tile {
    width:176px;
    height:62px;
    position:absolute;
    z-index:2;
    border:1px solid #cbdadb;
    border-radius:18px 7px;
    color:var(--ink);
    background:#fff;
    box-shadow:0 10px 22px rgba(7,25,35,.1);
    cursor:pointer;
    transform:rotate(var(--rotation,0deg));
    transition:border-color .18s ease,box-shadow .18s ease;
}

.industry-tile::before {
    content:'';
    width:9px;
    height:9px;
    position:absolute;
    top:50%;
    left:18px;
    border-radius:50%;
    background:var(--teal);
    transform:translateY(-50%);
}

.industry-tile span {
    display:block;
    padding-left:25px;
    font-size:.86rem;
    font-weight:700;
}

.industry-tile:hover,.industry-tile.active {
    border-color:var(--teal);
    box-shadow:0 13px 28px rgba(7,25,35,.15);
}

.tile-healthcare {
    top:14px;
    left:254px;
    --rotation:-2deg;
}

.tile-manufacturing {
    top:100px;
    right:2px;
    --rotation:2deg;
}

.tile-education {
    top:245px;
    right:-8px;
    --rotation:-1deg;
}

.tile-finance {
    top:405px;
    right:42px;
    --rotation:2deg;
}

.tile-retail {
    top:474px;
    left:250px;
    --rotation:-2deg;
}

.tile-construction {
    top:405px;
    left:28px;
    --rotation:1deg;
}

.tile-logistics {
    top:245px;
    left:-12px;
    --rotation:-2deg;
}

.tile-nonprofit {
    top:100px;
    left:18px;
    --rotation:2deg;
}

.unknown-pile {
    width:290px;
    height:95px;
    position:absolute;
    right:4px;
    bottom:0;
}

.unknown-tile {
    width:190px;
    height:54px;
    position:absolute;
    border:1px solid #cbdadb;
    border-radius:16px 6px;
    background:#f8fbfb;
    box-shadow:0 8px 18px rgba(7,25,35,.1);
}

.unknown-tile span {
    display:block;
    padding:15px 20px;
    color:var(--muted);
    font-size:.72rem;
    font-weight:700;
    filter:blur(4px);
    white-space:nowrap;
}

.unknown-one {
    top:28px;
    left:0;
    transform:rotate(-7deg);
}

.unknown-two {
    top:18px;
    left:48px;
    transform:rotate(2deg);
}

.unknown-three {
    top:2px;
    left:88px;
    transform:rotate(9deg);
}

.industry-detail {
    padding:28px;
    border-top:4px solid var(--teal);
    background:#fff;
    box-shadow:0 18px 44px rgba(7,25,35,.1);
}

.industry-detail h2 {
    font-size:2.4rem;
}

.industry-detail h3 {
    margin-top:28px;
    font-size:.86rem;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.industry-detail ul {
    margin:0;
    padding:0;
    list-style:none;
}

.industry-detail li {
    position:relative;
    padding:9px 0 9px 24px;
    border-bottom:1px solid var(--line);
    color:var(--muted);
    font-size:.92rem;
}

.industry-detail li::before {
    content:'✓';
    position:absolute;
    left:0;
    color:var(--teal);
    font-weight:700;
}

.industry-detail-note {
    margin:24px 0 0;
    color:var(--ink);
    font-family:Georgia,'Times New Roman',serif;
    font-style:italic;
}

/* ==========================================================================
   END: Industries Explorer
   ========================================================================== */

/* ==========================================================================
   BEGIN: Approach Opening
   ========================================================================== */

.approach-opening {
    padding:160px 0 76px;
    color:#fff;
    background:var(--navy);
}

.approach-editorial {
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:90px;
    align-items:center;
}

.approach-lead h1 {
    margin-bottom:0;
    font-size:clamp(3.2rem,5.5vw,6rem);
}


/* ==========================================================================
   END: Approach Opening
   ========================================================================== */

/* ==========================================================================
   BEGIN: Approach Principles
   ========================================================================== */

.principles-section {
    padding:76px 0;
    background:#fff;
}

.principles-heading {
    max-width:1440px;
    margin-bottom:58px;
}

.principles-heading h2 {
    margin-bottom:0;
    font-size:clamp(2.35rem,4vw,4.25rem);
}

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

.principles article {
    display:grid;
    grid-template-columns:90px 1fr;
    gap:36px;
    padding:42px 0;
    border-bottom:1px solid var(--line);
}

.principles article>span {
    color:var(--teal);
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.16em;
}

.principles article>div {
    max-width:900px;
}

.principles h2 {
    margin-bottom:12px;
    font-size:clamp(2rem,3vw,3.1rem);
}

.principles p {
    margin-bottom:0;
    font-size:1.04rem;
}

/* ==========================================================================
   END: Approach Principles
   ========================================================================== */

/* ==========================================================================
   BEGIN: Contact
   ========================================================================== */

.contact-section {
    min-height:650px;
    padding:165px 0 90px;
    color:#fff;
    background:var(--navy-soft);
}

.contact-layout {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:90px;
}

.contact-copy p {
    max-width:620px;
    color:#c9d7dc;
    font-size:1.1rem;
}

.contact-copy .button {
    margin-top:14px;
}

.contact-card {
    border-top:1px solid rgba(255,255,255,.2);
}

.contact-card>* {
    display:flex;
    justify-content:space-between;
    gap:30px;
    padding:24px 0;
    border-bottom:1px solid rgba(255,255,255,.2);
    text-decoration:none;
}

.contact-card span {
    color:#90a7b0;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.contact-card strong {
    text-align:right;
}

/* ==========================================================================
   END: Contact
   ========================================================================== */

/* ==========================================================================
   BEGIN: Footer
   ========================================================================== */

.site-footer {
    padding:30px 0;
    color:#fff;
    background:#030e14;
}

.footer-inner {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.footer-inner img {
    width:185px;
}

.footer-inner a {
    text-decoration:none;
}

.footer-inner p {
    margin:0;
    color:#8298a1;
    text-align:right;
    font-size:.8rem;
}

/* ==========================================================================
   END: Footer
   ========================================================================== */

/* ==========================================================================
   BEGIN: Desktop View Behavior
   ========================================================================== */

@media (min-width:901px) {

    .js-enabled .page-view {
        display:none;
    }

    .js-enabled .page-view.active {
        display:block;
    }
}

/* ==========================================================================
   END: Desktop View Behavior
   ========================================================================== */

/* ==========================================================================
   BEGIN: Responsive Layout — 1180px
   ========================================================================== */

@media (max-width:1180px) {

    .testimonial-card {
        height:590px;
    }

    .testimonial-card blockquote {
        height:350px;
        flex-basis:350px;
        font-size:clamp(1.35rem,2.2vw,1.9rem);
    }

    .industry-explorer {
        grid-template-columns:1fr;
    }

    .industry-detail {
        width:680px;
        max-width:100%;
        margin:0 auto;
    }
}

/* ==========================================================================
   END: Responsive Layout — 1180px
   ========================================================================== */

/* ==========================================================================
   BEGIN: Responsive Layout — 1050px
   ========================================================================== */

@media (max-width:1050px) {

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

    .solution-card-managed {
        grid-column:span 2;
    }
}

/* ==========================================================================
   END: Responsive Layout — 1050px
   ========================================================================== */

/* ==========================================================================
   BEGIN: Responsive Layout — 900px
   ========================================================================== */

@media (max-width:900px) {

    .shell {
        width:min(100% - 40px,var(--shell));
    }

    .site-header {
        background:rgba(3,14,20,.94);
    }

    .header-inner {
        min-height:76px;
    }

    .brand img {
        width:233px;
    }

    .menu-button {
        display:block;
        padding:9px 13px;
        border:1px solid rgba(255,255,255,.38);
        border-radius:4px;
        color:#fff;
        background:transparent;
    }

    .site-nav {
        display:none;
        position:absolute;
        top:76px;
        right:0;
        left:0;
        padding:18px 20px 24px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:var(--navy);
    }

    .site-nav.open {
        display:flex;
    }

    .site-nav a {
        padding:13px 0;
    }

    .site-nav a::after {
        display:none;
    }

    .nav-cta {
        margin-top:8px;
        text-align:center;
    }

    .page-view[hidden] {
        display:block!important;
    }

    .hero {
        min-height:640px;
    }

    .hero-content {
        padding-top:80px;
    }

    .reason-grid,.testimonial-layout,.solutions-opening-grid,.industries-opening-grid,.approach-editorial,.contact-layout {
        grid-template-columns:1fr;
    }

    .testimonial-card {
        height:auto;
        min-height:0;
    }

    .testimonial-card blockquote {
        height:auto;
        min-height:0;
        flex:0 0 auto;
        display:block;
        overflow:visible;
        font-size:clamp(1.4rem,3.5vw,2rem);
    }

    .testimonial-controls {
        margin-top:28px;
    }

    .reason-card {
        min-height:0;
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .reason-card:last-child {
        border-bottom:0;
    }

    .testimonial-layout,.solutions-opening-grid,.industries-opening-grid,.approach-editorial,.contact-layout {
        gap:42px;
    }

    .solutions-opening,.industries-opening,.approach-opening,.contact-section {
        padding-top:125px;
    }

    .solution-card-managed ul {
        columns:1;
    }

    .industry-explorer {
        display:block;
    }

    .industry-map {
        width:100%;
        height:auto;
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .industry-ring,.industry-center {
        display:none;
    }

    .industry-tile {
        width:100%;
        height:62px;
        position:relative;
        inset:auto;
        transform:none;
    }

    .industry-tile:hover,.industry-tile.active {
        transform:none;
    }

    .unknown-pile {
        grid-column:1/-1;
        width:100%;
        height:90px;
        position:relative;
        right:auto;
        bottom:auto;
    }

    .unknown-one {
        left:calc(50% - 150px);
    }

    .unknown-two {
        left:calc(50% - 95px);
    }

    .unknown-three {
        left:calc(50% - 35px);
    }

    .industry-detail {
        width:100%;
        margin-top:24px;
    }

    .principles article {
        grid-template-columns:50px 1fr;
        gap:20px;
    }

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

    .footer-inner p {
        text-align:left;
    }
}

/* ==========================================================================
   END: Responsive Layout — 900px
   ========================================================================== */

/* ==========================================================================
   BEGIN: Responsive Layout — 620px
   ========================================================================== */

@media (max-width:620px) {

    .testimonial-card {
        padding:30px 22px 24px;
    }

    .quote-mark {
        height:50px;
        font-size:4.5rem;
    }

    .testimonial-card blockquote {
        font-size:1.25rem;
        line-height:1.5;
    }

    .section {
        padding:60px 0;
    }

    h1 {
        font-size:clamp(2.7rem,13vw,4.3rem);
    }

    h2 {
        font-size:clamp(2rem,9vw,3rem);
    }

    .hero {
        min-height:610px;
    }

    .hero-copy {
        font-size:1.04rem;
    }

    .hero-actions {
        align-items:stretch;
        flex-direction:column;
    }

    .hero-actions .button {
        text-align:center;
    }

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

    .solution-card-managed {
        grid-column:auto;
    }

    .solution-card {
        min-height:0;
    }

    .industry-map {
        grid-template-columns:1fr;
    }

    .unknown-pile {
        grid-column:auto;
    }

    .contact-card>* {
        align-items:flex-start;
        flex-direction:column;
        gap:6px;
    }

    .contact-card strong {
        text-align:left;
    }
}

/* ==========================================================================
   END: Responsive Layout — 620px
   ========================================================================== */
