﻿/* ==============================================
   RESET & BASE
   ============================================== */

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

html {
    overflow-y: scroll;
}

body {
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1A2530;
    background-color: #E5E4E2;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    color: #1A2530;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.375rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 3vw, 1.75rem); }
p  { font-size: clamp(1rem, 2vw, 1.125rem); }

a {
    color: #2D6FA3;
    text-decoration: none;
}

a:hover {
    color: #1E5280;
}

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

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

.container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

main {
    min-height: 60vh;
}

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

.footer {
    background-color: #0F3350;
    color: #ACB6BD;
}

.footer-inner {
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.footer-brand {
    margin-bottom: 2.5rem;
    max-width: 40rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.125rem, 3vw, 1.375rem);
    font-weight: 700;
    color: #E5E4E2;
    text-decoration: none;
}

.footer-logo:hover {
    color: #ACB6BD;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #ACB6BD;
    line-height: 1.4;
    margin-top: 0.5rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 2rem;
    max-width: 40rem;
    width: 100%;
    margin: 0;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-link {
    font-size: 0.9375rem;
    color: #ACB6BD;
    text-decoration: none;
    width: fit-content;
}

.footer-link:hover {
    color: #E5E4E2;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    border-top: 0.0625rem solid #FFFFFF1A;
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: #ACB6BD;
}

.footer-legal-link {
    font-size: 0.8125rem;
    color: #ACB6BD;
    text-decoration: none;
    width: fit-content;
}

.footer-legal-link:hover {
    color: #E5E4E2;
}

@media (min-width: 20rem) {
    .footer-brand {
        padding-left: 5vw;
        margin-left: 0;
    }
    .footer-cols {
        padding-left: 5vw;
        column-gap: 4rem;
    }
}

@media (min-width: 23.4375rem) {
    .footer-brand {
        padding-left: 10vw;
        margin-left: 0;
    }
    .footer-cols {
        padding-left: 10vw;
        column-gap: calc(4rem + 5vw);
    }
}

@media (min-width: 26.5625rem) {
    .footer-brand {
        padding-left: 10vw;
        margin-left: 0;
    }
    .footer-cols {
        padding-left: 10vw;
        column-gap: calc(4rem + 10vw);
    }
}

@media (min-width: 48rem) {
    .footer-inner {
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-brand {
        padding-left: 1vw;
        margin-left: auto;
    }

    .footer-cols {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }

    .footer-cols { margin: 0 auto; padding-left: 0; }
    .footer-col:nth-child(1) { padding-left: 1vw; }
    .footer-col:nth-child(2) { padding-left: 2vw; }
    .footer-col:nth-child(3) { padding-left: 3vw; }
    .footer-col:nth-child(4) { padding-left: 4vw; }

    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-copyright    { order: 1; }
    .footer-legal-link   { order: 2; }
}

@media (min-width: 64rem) {
    .footer-inner {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .footer-brand { max-width: 48rem; }
    .footer-cols  { max-width: 48rem; gap: 3rem; }

    .footer-legal {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

@media (min-width: 75rem) {
    .footer-brand { max-width: 54rem; }
    .footer-cols  { max-width: 54rem; gap: 3.5rem; }
}

@media (min-width: 90rem) {
    .footer-brand { max-width: 60rem; }
    .footer-cols  { max-width: 60rem; gap: 4rem; }
}

/* ==============================================
   SPACING UTILITIES
   ============================================== */

.mt-q  { margin-top: 0.25rem; }
.mt-h  { margin-top: 0.5rem; }
.mt-1  { margin-top: 1rem; }
.mt-1h { margin-top: 1.5rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mt-4  { margin-top: 4rem; }
.mt-5  { margin-top: 5rem; }
.mt-6  { margin-top: 6rem; }

.text-left   { text-align: left; }
.text-center { text-align: center; }

/* ==============================================
   HOME PAGE — Hero Section
   ============================================== */

.hero-section {
    background-color: #0F3350;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    padding: 5rem 2rem 0;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 6rem;
    column-gap: 4rem;
    flex: 1;
    max-width: 90rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-text {
    order: 1;
    text-align: left;
}

.hero-text h1 {
    color: #E5E4E2;
}

.hero-subheadline {
    color: #ACB6BD;
    margin-top: 1.5rem;
}

.tagline-phrase {
    white-space: nowrap;
    display: inline-block;
}

.hero-tagline {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(0.875rem, 2vw, 0.9375rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ACB6BD;
    margin-top: 1rem;
    text-align: center;
}

.hero-image-wrap {
    order: 2;
    width: 100%;
    max-width: 34rem;
}

.hero-buttons {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-bottom: 3rem;
}

.hero-btn-pane {
    display: contents;
}

@media (min-width: 48rem) {
    .hero-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        align-content: flex-start;
        justify-content: space-between;
    }

    .hero-text {
        flex: 1;
        text-align: left;
        padding-left: 1rem;
        padding-right: 0;
        order: 0;
    }

    .hero-image-wrap {
        flex: 1;
        max-width: 36rem;
        order: 0;
    }

    .hero-buttons {
        flex-basis: 100%;
        order: 0;
        justify-content: stretch;
        gap: 0;
    }

    .hero-btn-pane {
        display: flex;
        flex: 1;
        justify-content: center;
        padding: 1rem;
    }

    .hero-btn-pane .btn {
        min-width: 14rem;
    }

    .hero-image-wrap .code-panel {
        width: fit-content;
        max-width: 100%;
    }
}

/* ==============================================
   HOME PAGE — Split Sections
   ============================================== */

.split-section-title {
    width: 100%;
    text-align: center;
    padding: 0 0 2rem;
}

.split-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 75rem) {
    .split-section {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}

.split-section--light {
    background-color: #D3D3D3;
}

.split-section--light h2 {
    color: #1A2530;
}

.split-section--light p {
    color: #1A2530;
}

.split-section--dark {
    background-color: #496580;
}

.split-section--dark h2 {
    color: #E5E4E2;
}

.split-section--dark p {
    color: #E5E4E2;
}

.split-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.split-text {
    width: 100%;
}

.split-image-wrap {
    width: 100%;
    max-width: 28rem;
}

.split-footer {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
}

.split-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.btn-center {
    display: flex;
    justify-content: center;
}

@media (min-width: 48rem) {
    .split-inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 4rem;
    }

    .split-inner--reversed {
        flex-direction: row-reverse;
    }

    .split-text {
        flex: 1;
    }

    .split-text--padded {
        padding-left: 4rem;
        padding-right: 0;
    }

    .split-image-wrap {
        flex: 1;
        max-width: 30rem;
    }
}

/* ==============================================
   HOME PAGE — Code Panel
   ============================================== */

.code-panel {
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 100%;
}

.code-panel-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background-color: #D3D3D3;
}

.code-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.code-dot--grey      { background-color: #6B7378; }
.code-dot--blue      { background-color: #0E79AA; }
.code-dot--lightblue { background-color: #549CCB; }
.code-dot--lighterblue { background-color: #74B3DB; }
.code-dot--dark      { background-color: #0F3350; }
.code-dot--green      { background-color: #499999; }
.code-dot--darkgreen      { background-color: #006666; }

.code-panel-label {
    font-size: 0.95rem;
    color: #496580;
    margin-left: 0.5rem;
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.code-panel-body {
    padding: 1.25rem;
    margin: 0;
    overflow-x: auto;
    max-width: 100%;
}

.code-panel-body code {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.6875rem, 2.2vw, 0.8125rem);
    font-weight: 700;
    line-height: 1.7;
    color: #1A2530;
    display: block;
}

.code-comment {
    color: #496580;
}

/* ==============================================
   HOME PAGE — Feature Panel
   ============================================== */

.feature-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 100%;
}

.feature-panel--light {
    background-color: #E5E4E2;
}

.feature-col-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1A2530;
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    font-size: 0.875rem;
    color: #496580;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.feature-item::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #2D6FA3;
}

@media (min-width: 30rem) {
    .feature-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

/* ==============================================
   HOME PAGE — Check Panel
   ============================================== */

.check-panel {
    background-color: #0000002E;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 100%;
}

.check-panel-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #E5E4E2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.check-group-label {
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ACB6BD;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.625rem;
}

.check-group-label--mt {
    margin-top: 1.25rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.check-item {
    font-size: 0.875rem;
    color: #E5E4E2;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.check-item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #D4A017;
    font-weight: 700;
}

/* ==============================================
   HOME PAGE — Compare Panel
   ============================================== */

.compare-panel {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 100%;
    min-width: 20rem;
}

.compare-col {
    padding: 1.25rem;
}

.compare-col--bad {
    background-color: #f8eded;
    border-bottom: 0.0625rem solid #D3D3D3;
}

.compare-col--good {
    background-color: #edf5ed;
}

.compare-col-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1A2530;
    margin-bottom: 0.75rem;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.compare-item {
    font-size: 0.875rem;
    color: #1A2530;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.compare-item--bad::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #a52a2a;
    font-weight: 700;
}

.compare-item--good::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #1a5228;
    font-weight: 700;
}

.compare-item--extra {
    color: #737F87;
    font-style: italic;
    font-size: 0.8125rem;
    padding-left: 0;
    margin-top: 0.25rem;
}

@media (min-width: 34rem) {
    .compare-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .compare-col--bad {
        border-bottom: none;
        border-right: 0.0625rem solid #D3D3D3;
    }
}

/* ==============================================
   HOME PAGE — Float Layout
   ============================================== */

.float-body {
    display: flow-root;
    text-align: left;
}

.float-image--right,
.float-image--left {
    width: 100%;
    margin-bottom: 1.5rem;
}

@media (min-width: 48rem) {
    .float-image--right {
        float: right;
        width: 46%;
        max-width: 30rem;
        margin-left: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .float-image--left {
        float: left;
        width: 46%;
        max-width: 30rem;
        margin-right: 2.5rem;
        margin-bottom: 0.5rem;
    }
}

/* ==============================================
   HOME PAGE — Industry Panel
   ============================================== */

.industry-panel {
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    width: 100%;
}

.industry-panel-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #1A2530;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-tag {
    flex: 1 1 auto;
    padding: 0.375rem 0.75rem;
    background-color: #496580;
    color: #E5E4E2;
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
    text-align: center;
}

/* ==============================================
   HOME PAGE — Chat Panel
   ============================================== */

.chat-panel {
    background-color: #C7C6C4;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 100%;
}

.chat-panel-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background-color: #B4B4B4;
}

.chat-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #496580;
    display: inline-block;
    flex-shrink: 0;
}

.chat-panel-label {
    font-size: 1.15rem;
    color: #000000;
    margin-left: 0.5rem;
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.chat-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
	background-color: #D6E0EF;
}

.chat-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.chat-bubble {
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 85%;
    min-width: 0;
    overflow-wrap: break-word;
}

.chat-bubble--bot {
    background-color: #008080;
    color: #E5E4E2;
    align-self: flex-end;
}

.chat-bubble--bot .chat-label {
    color: #E5E4E2B3;
}

.chat-bubble--user {
    background-color: #99C7E8;
    color: #000000;
    align-self: flex-start;
}

.chat-bubble--user .chat-label {
    color: #395066;
}

/* ==============================================
   HOME PAGE — Portfolio Tease
   ============================================== */

.portfolio-tease {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.portfolio-tease-card {
    display: flex;
    flex-direction: column;
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    padding: 1.25rem;
    border-left: 0.25rem solid #2D6FA3;
}

@media (min-width: 48rem) {
    .portfolio-tease      { flex-direction: row; }
    .portfolio-tease-card { flex: 1; }
}

.portfolio-tease-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2D6FA3;
}

.portfolio-tease-name {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A2530;
    margin-top: 0.25rem;
}

.portfolio-tease-desc {
    font-size: 0.875rem;
    color: #496580;
    margin-top: 0.375rem;
    line-height: 1.5;
}

/* ==============================================
   HOME PAGE — Intake Strip
   ============================================== */

.intake-strip {
    background-color: #0F3350;
    padding: 5rem 2rem;
    text-align: center;
}

.intake-strip-inner {
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
}

.intake-strip h2 {
    color: #E5E4E2;
}

.intake-strip p {
    color: #ACB6BD;
}

.intake-alt-link {
    color: #7393B3;
    font-size: 0.9375rem;
}

.intake-alt-link:hover {
    color: #ACB6BD;
}

/* ==============================================
   SECURITY PAGE
   ============================================== */

.security-intro {
    background-color: #0F3350;
    padding: 5rem 2rem;
    text-align: center;
}

.security-intro-inner {
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
}

.security-intro h1 {
    color: #E5E4E2;
}

.security-intro p {
    color: #ACB6BD;
}

.threat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
}

.threat-card {
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    padding: 1.5rem;
    border-left: 0.25rem solid #2D6FA3;
}

.threat-card .threat-card-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1A2530;
    margin-bottom: 0.75rem;
}

.threat-card .threat-card-body {
    font-size: 0.875rem;
    color: #496580;
    line-height: 1.5;
}

.threat-label {
    display: block;
    font-weight: 700;
    color: #1A2530;
    margin-bottom: 0.125rem;
}

.security-statement .split-footer { padding-top: 1.5rem; }

.security-checklist-wrap {
    max-width: 44rem;
    width: 100%;
    margin: 0 auto;
}

.security-text-block {
    max-width: 48rem;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 34rem) {
    .threat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 64rem) {
    .threat-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 78.125rem) {
    .threat-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.wp-stat-split {
    gap: 3rem;
}

.wp-stat-split .split-text {
    flex: 0 0 35%;
    min-width: 0;
}

.wp-chart-wrap {
    flex: 1 1 0;
    min-width: 0;
}

.wp-chart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wp-chart-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wp-chart-platform {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1A2530;
}

.wp-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wp-bar-track {
    flex: 1 1 0;
    min-width: 0;
    height: 2rem;
    background-color: #ACB6BD;
    border-radius: 0.25rem;
    overflow: hidden;
}

.wp-bar {
    height: 100%;
}

.wp-bar--wp {
    width: 96.2%;
    background-color: #a52a2a;
}

.wp-bar--other {
    width: 3.8%;
    background-color: #2D6FA3;
}

.wp-chart-pct {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A2530;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 3.5rem;
    flex-shrink: 0;
    text-align: right;
}

.wp-years {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (min-width: 26.5625rem) {
    .wp-years {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.wp-year-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0.5rem;
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    border-top: 0.1875rem solid #a52a2a;
}

.wp-year-label {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #737F87;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wp-year-pct {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2530;
}

.code-trio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 48rem) {
    .code-trio {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
    }

    .code-trio > * {
        flex: 1;
        min-width: 0;
    }

    .code-trio-panel--left  { order: 1; }
    .code-trio-text         { order: 2; }
    .code-trio-panel--right { order: 3; }
}

.wp-stat-split .wp-source {
    font-size: 0.8125rem;
    color: #737F87;
    font-style: italic;
}

/* ==============================================
   WEBSITES PAGE
   ============================================== */

.websites-intro {
    background-color: #0F3350;
    padding: 5rem 2rem;
    text-align: center;
}

.websites-intro-inner {
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
}

.websites-intro h1 {
    color: #E5E4E2;
}

.websites-intro p {
    color: #ACB6BD;
}

.websites-intro-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 32rem) {
    .websites-intro-cta {
        grid-template-columns: 1fr 1fr;
        max-width: 28rem;
    }
}

.websites-intro-cta > .btn {
    display: flex;
    width: 100%;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 36rem) {
    .package-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 64rem) {
    .package-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.package-card {
    background-color: #00000033;
    border-radius: 0.5rem;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.package-card-name {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #E5E4E2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.package-card-price {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.125rem, 3vw, 1.625rem);
    color: #D4A017;
    margin-top: 0.25rem;
}

.package-card-tagline {
    font-size: 0.9375rem;
    color: #ACB6BD;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.package-card-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 auto;
}

.package-card-item {
    font-size: 0.875rem;
    color: #E5E4E2;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.4;
}

.package-card-item::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #D4A017;
    font-weight: 700;
}

.package-card > .btn {
    margin-top: 1.5rem;
}

@media (min-width: 36rem) {
    .package-card {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 5;
    }
}

.pricing-table-hint {
    display: block;
    font-size: 0.8rem;
    color: #ACB6BD;
}

@media (min-width: 50rem) {
    .pricing-table-hint { display: none; }
}

.pricing-table-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 0.375rem;
}

.pricing-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 100%;
    background: linear-gradient(to right, transparent, #496580);
    pointer-events: none;
}

@media (min-width: 50rem) {
    .pricing-table-wrap::after { display: none; }
}

.pricing-table-wrap.is-scrolled::after { display: none; }

.pricing-table {
    width: 100%;
    min-width: 40rem;
    border-collapse: collapse;
    table-layout: fixed;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    position: sticky;
    left: 0;
    width: 40vw;
    background-color: #496580;
    z-index: 1;
}

.pricing-table th,
.pricing-table td {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border-bottom: 0.0625rem solid #FFFFFF1A;
    color: #E5E4E2;
}

.pricing-table th {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    background-color: #00000040;
    text-align: center;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    min-width: 14rem;
}

.pricing-table-check {
    text-align: center;
    color: #D4A017;
    font-weight: 700;
}

.pricing-table-dash {
    text-align: center;
    color: #ACB6BD;
}

.pricing-table-addon {
    text-align: center;
    color: #7393B3;
    font-weight: 700;
}

.pricing-table-row--price td {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    color: #D4A017;
    text-align: center;
}

.pricing-table-row--price td:first-child {
    color: #E5E4E2;
    text-align: left;
}

.pricing-table-row--addon {
    border-top: 0.0625rem solid #FFFFFF40;
}

.pricing-table-note {
    font-size: 0.875rem;
    text-align: left;
}

.pricing-table-note--center {
    text-align: center;
}

.split-section--dark .pricing-table-note {
    color: #E5E4E2;
}

.pricing-table-link {
    color: #99E4FF;
}

.pricing-table-link:hover {
    color: #ACB6BD;
}

.apps-panel {
    background-color: #D6E0EF;
    border-radius: 0.5rem;
    overflow: hidden;
}

.apps-panel-title,
.split-section--light .apps-panel-title,
.split-section--dark .apps-panel-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #0F3350;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.5rem 0.875rem;
    background-color: #74B3DB;
    border-bottom: 0.0625rem solid #00000014;
}

.apps-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apps-panel-item {
    font-size: 0.9375rem;
    color: #1A2530;
    padding: 0.875rem 1.5rem 0.875rem 3rem;
    border-bottom: 0.0625rem solid #00000012;
    position: relative;
    line-height: 1.4;
}

.apps-panel-item:last-child {
    border-bottom: none;
}

.apps-panel-item::before {
    content: '\2192';
    position: absolute;
    left: 1.5rem;
    color: #0F3350;
    font-weight: 700;
}

.dash-panel {
    background-color: #E5E4E2;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 0.0625rem solid #00000026;
    max-width: 23rem;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    background-color: #ACB6BD;
}

.dash-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.dash-dot--gray      { background-color: #939391; }
.dash-dot--blue      { background-color: #549CCB; }
.dash-dot--lightblue { background-color: #74B3DB; }
.dash-dot--darkgreen { background-color: #006666; }
.dash-dot--darkgrey { background-color: #6c6c6a; }
.dash-dot--darkblue { background-color: #4A8AB5; }

.dash-title {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #000000;
    margin-left: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-tabs {
    display: flex;
    background-color: #395066;
    padding: 0 0.5rem;
    overflow-x: auto;
}

.dash-tab {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #ACB6BD;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

.dash-tab--active {
    color: #E5E4E2;
    border-bottom: 0.125rem solid #D4A017;
}

.dash-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 0.0625rem solid #ACB6BD;
    background-color: #F5F4F2;
}

.dash-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 0.25rem;
    border-right: 0.0625rem solid #ACB6BD;
}

.dash-stat:last-child {
    border-right: none;
}

.dash-stat-num {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2530;
}

.dash-stat-label {
    font-size: 0.6875rem;
    color: #737F87;
    text-align: center;
    line-height: 1.3;
}

.dash-list {
    display: grid;
    grid-template-columns: auto 1fr auto;
    column-gap: 0.75rem;
    row-gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #F5F4F2;
    align-items: center;
}

.dash-row {
    display: contents;
}

.dash-row-name {
    font-size: 0.875rem;
    color: #1A2530;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-row-job {
    font-size: 0.875rem;
    color: #496580;
    min-width: 0;
    overflow-wrap: break-word;
}

.dash-badge {
    font-family: 'Barlow', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.dash-badge--active  { background-color: #dbeafe; color: #1e3a8a; }
.dash-badge--pending { background-color: #fef3c7; color: #92400e; }
.dash-badge--done    { background-color: #d1fae5; color: #065f46; }

.websites-closing .split-footer {
    padding-top: 1.5rem;
}

.dash-types-list,
.apps-examples-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.dash-types-list li,
.apps-examples-list li {
    font-family: 'Source Sans 3', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-top: 0.75rem;
    line-height: 1.5;
}

.dash-types-list li {
    color: #1A2530;
}

.apps-examples-list li {
    color: #E5E4E2;
}

