/*
Theme Name: Inflection Point Studio
Theme URI: https://clearinflectionpoint.com/
Author: Inflection Point
Author URI: https://clearinflectionpoint.com/
Description: A modern, image-led agency theme for Inflection Point.
Version: 2.3.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saltwater-interactive
*/

@font-face {
    font-family: "Saltwater Instrument Sans";
    src: url("assets/fonts/instrument-sans-latin.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IP Manrope";
    src: url("assets/fonts/manrope-latin.woff2") format("woff2");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IP Archivo";
    src: url("assets/fonts/archivo-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IP Archivo";
    src: url("assets/fonts/archivo-900.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saltwater Instrument Serif";
    src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Saltwater Instrument Serif";
    src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --sw-ink: #171e26;
    --sw-blue: #242d36;
    --sw-teal: #ad6542;
    --sw-aqua: #f0ded2;
    --sw-mist: #f8f5f1;
    --sw-paper: #ffffff;
    --sw-line: #e3d8d0;
    --sw-muted: #66707a;
    --sw-sand: #eee7e1;
    --sw-gold: #ad6542;
    --sw-max: 1180px;
    --sw-font-display: "IP Archivo", "Arial Narrow", Arial, sans-serif;
    --sw-font-body: "IP Manrope", "Helvetica Neue", Arial, sans-serif;
    --sw-font-system: "IP Manrope", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--sw-paper);
    color: var(--sw-ink);
    font-family: var(--sw-font-body);
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.sw-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(8, 32, 43, .08);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
}

.sw-header-inner,
.sw-container {
    width: min(calc(100% - 40px), var(--sw-max));
    margin: 0 auto;
}

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

.sw-brand {
    display: flex;
    align-items: center;
    color: var(--sw-ink);
    font-family: var(--sw-font-system);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sw-brand .custom-logo-link {
    display: flex;
    align-items: center;
}

.sw-brand .custom-logo {
    width: auto;
    max-width: min(340px, 34vw);
    max-height: 86px;
    object-fit: contain;
}

.sw-nav {
    display: block;
}

.sw-nav a {
    color: var(--sw-ink);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sw-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-menu li {
    position: relative;
    margin: 0;
}

.sw-menu .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -22px;
    z-index: 30;
    display: grid;
    min-width: 270px;
    margin: 0;
    padding: 10px 0;
    border: 1px solid var(--sw-line);
    background: #fff;
    box-shadow: 0 18px 44px rgba(8, 32, 43, .14);
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
}

.sw-menu .sub-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 20px;
    content: "";
}

.sw-menu .sub-menu a {
    display: block;
    padding: 11px 22px;
    font-size: 12px;
    line-height: 1.35;
    text-transform: none;
}

.sw-menu .sub-menu a:hover,
.sw-menu .sub-menu a:focus-visible {
    background: var(--sw-mist);
    color: var(--sw-teal);
}

.sw-menu li:hover > .sub-menu,
.sw-menu li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sw-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--sw-line);
    background: #fff;
    cursor: pointer;
}

.sw-menu-toggle-icon,
.sw-menu-toggle-icon::before,
.sw-menu-toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--sw-ink);
    content: "";
}

.sw-menu-toggle-icon::before {
    transform: translateY(-6px);
}

.sw-menu-toggle-icon::after {
    transform: translateY(4px);
}

.sw-button,
.sw-nav .sw-nav-cta,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid var(--sw-ink);
    border-radius: 0;
    background: var(--sw-ink);
    color: #fff !important;
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.sw-button.is-light {
    border-color: #fff;
    background: #fff;
    color: var(--sw-ink) !important;
}

.sw-button.is-outline {
    background: transparent;
    color: var(--sw-ink) !important;
}

.sw-hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: end;
    background: #06151d;
    color: #fff;
}

.sw-hero-media {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 82% 20%, rgba(11, 154, 154, .34), transparent 35%),
        radial-gradient(circle at 18% 80%, rgba(216, 242, 239, .12), transparent 38%),
        linear-gradient(112deg, rgba(6, 21, 29, .96), rgba(8, 32, 43, .76) 52%, rgba(8, 32, 43, .32)),
        var(--sw-hero-image);
    background-size: cover;
    background-position: center;
}

.sw-hero-media::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 76px 76px;
    content: "";
    opacity: .16;
    transform: translateY(calc(var(--sw-scroll, 0) * -1px));
}

.sw-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(0deg, rgba(6, 21, 29, .72), transparent 44%),
        linear-gradient(90deg, rgba(6, 21, 29, .34), transparent 58%);
    pointer-events: none;
}

.sw-hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 40px), var(--sw-max));
    margin: 0 auto;
    padding: clamp(64px, 10vw, 120px) 0;
}

.sw-hero-content::before {
    display: block;
    width: 78px;
    height: 2px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #fff, var(--sw-teal));
    content: "";
    opacity: .9;
}

.sw-kicker {
    margin: 0 0 14px;
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.sw-hero h1,
.sw-page-hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(54px, 7.4vw, 94px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.sw-hero-copy {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(19px, 2vw, 25px);
    line-height: 1.45;
    text-wrap: pretty;
}

.sw-hero .sw-button.is-light + .sw-button.is-light {
    border-color: rgba(255, 255, 255, .6);
    background: transparent;
    color: #fff !important;
}

.sw-hero .sw-button.is-light:hover,
.sw-hero .sw-button.is-light:focus-visible {
    border-color: var(--sw-aqua);
    background: var(--sw-aqua);
    color: var(--sw-ink) !important;
}

.sw-hero-studio .sw-hero-media {
    align-items: center;
    background-image:
        radial-gradient(circle at 78% 18%, rgba(11, 154, 154, .38), transparent 34%),
        linear-gradient(120deg, rgba(8, 32, 43, .92), rgba(8, 32, 43, .68) 48%, rgba(11, 154, 154, .26)),
        var(--sw-hero-image);
}

.sw-hero-studio .sw-hero-media::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    opacity: .28;
    transform: translateY(calc(var(--sw-scroll, 0) * -1px));
}

.sw-hero-studio .sw-hero-content {
    padding-top: clamp(84px, 12vw, 150px);
    padding-bottom: clamp(84px, 12vw, 150px);
}

.sw-hero-line {
    max-width: 900px;
    margin: 22px 0 0;
    color: var(--sw-aqua);
    font-family: var(--sw-font-display);
    font-size: clamp(18px, 2.4vw, 30px);
    font-weight: 800;
    line-height: 1.18;
}

.sw-hero-subcopy {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(17px, 1.6vw, 21px);
}

.sw-button.is-ghost-light {
    background: transparent;
    color: #fff !important;
}

.sw-hero-actions,
.sw-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sw-studio-strip {
    overflow: hidden;
    padding: clamp(38px, 6vw, 76px) 0;
    background: #06151d;
    color: #fff;
}

.sw-studio-lines {
    display: grid;
    gap: clamp(12px, 1.8vw, 18px);
}

.sw-studio-lines span,
.sw-studio-lines strong {
    display: block;
    max-width: 1100px;
    font-size: clamp(30px, 5.6vw, 82px);
    font-weight: 900;
    font-family: var(--sw-font-display);
    letter-spacing: 0;
    line-height: .92;
}

.sw-studio-lines span {
    color: rgba(255, 255, 255, .32);
}

.sw-studio-lines strong {
    color: var(--sw-aqua);
}

.sw-section {
    padding: clamp(64px, 10vw, 120px) 0;
}

.sw-credibility {
    padding: clamp(42px, 6vw, 72px) 0;
    border-bottom: 1px solid var(--sw-line);
    background: #fff;
}

.sw-credibility-home {
    border-top: 1px solid var(--sw-line);
}

.sw-credibility-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: end;
    margin-bottom: 34px;
}

.sw-credibility-intro h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    font-family: var(--sw-font-display);
    line-height: 1.05;
}

.sw-credibility-intro > p {
    margin: 0;
    color: var(--sw-muted);
    font-size: 16px;
}

.sw-credibility-logos {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-credibility-logo {
    display: grid;
    place-items: center;
    min-height: 148px;
    padding: clamp(22px, 3vw, 34px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
}

.sw-credibility-logo img {
    display: block;
    width: auto;
    max-width: min(230px, 84%);
    max-height: 76px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .82;
}

.sw-credibility-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.sw-credibility-logo span {
    color: var(--sw-blue);
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
}

.sw-section.is-mist {
    background: var(--sw-mist);
}

.sw-section.is-blue {
    background: var(--sw-blue);
    color: #fff;
}

.sw-manifesto {
    background: #fff;
}

.sw-manifesto-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: start;
}

.sw-manifesto h2 {
    position: sticky;
    top: 118px;
    margin: 0;
    font-size: clamp(42px, 6vw, 82px);
    font-family: var(--sw-font-display);
    line-height: .95;
}

.sw-manifesto-lines {
    display: grid;
    gap: 0;
}

.sw-manifesto-lines p {
    margin: 0;
    padding: clamp(22px, 4vw, 40px) 0;
    border-bottom: 1px solid var(--sw-line);
    color: var(--sw-blue);
    font-size: clamp(24px, 3.8vw, 54px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.sw-wide-statement {
    margin-top: clamp(42px, 8vw, 92px);
    padding: clamp(34px, 6vw, 72px);
    background: var(--sw-mist);
}

.sw-wide-statement p {
    max-width: 1040px;
    margin: 0;
    color: var(--sw-ink);
    font-size: clamp(25px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: 0;
}

.sw-section-heading {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: end;
    margin-bottom: 42px;
}

.sw-section-heading h2 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
}

.sw-section-heading p {
    max-width: 680px;
    margin: 0;
    color: var(--sw-muted);
    font-size: 19px;
}

.sw-pillar-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    overflow-x: auto;
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
    scrollbar-width: thin;
}

.sw-pillar-card {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    padding: clamp(24px, 3vw, 34px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    background:
        linear-gradient(180deg, rgba(216, 242, 239, .16), rgba(255, 255, 255, 0) 48%),
        #fff;
    color: var(--sw-ink);
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sw-pillar-card:hover,
.sw-pillar-card:focus-visible {
    z-index: 2;
    background-color: var(--sw-aqua);
    box-shadow: 0 18px 42px rgba(8, 32, 43, .14);
    transform: translateY(-6px);
}

.sw-pillar-card > span,
.sw-industry-card > span {
    display: block;
    color: var(--sw-teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.sw-pillar-card h3 {
    margin: 72px 0 18px;
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1;
}

.sw-pillar-card p {
    margin: 0;
    color: var(--sw-muted);
    font-size: 15px;
    line-height: 1.5;
}

.sw-pillar-card ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 28px 0 0;
    list-style: none;
}

.sw-pillar-card li {
    padding-top: 8px;
    border-top: 1px solid rgba(8, 32, 43, .11);
    color: var(--sw-blue);
    font-size: 13px;
    font-weight: 800;
}

.is-blue .sw-section-heading p {
    color: rgba(255, 255, 255, .76);
}

.sw-system-section {
    overflow: hidden;
}

.sw-system-statement h2 {
    max-width: 980px;
    margin: 0 0 clamp(38px, 7vw, 90px);
    font-size: clamp(44px, 7vw, 96px);
    line-height: .92;
}

.sw-system-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 1px solid rgba(255, 255, 255, .2);
}

.sw-system-grid div {
    min-height: 260px;
    padding: clamp(22px, 3vw, 34px);
    border-right: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .84);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.05;
}

.sw-system-close {
    width: min(820px, 100%);
    margin-top: clamp(42px, 8vw, 94px);
    margin-left: auto;
}

.sw-system-close h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(34px, 5vw, 68px);
    line-height: .98;
}

.sw-system-close p {
    color: rgba(255, 255, 255, .74);
    font-size: 20px;
}

.sw-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-service-card {
    display: block;
    min-height: 260px;
    padding: clamp(24px, 4vw, 38px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    background: #fff;
    color: var(--sw-ink);
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.sw-service-card:hover,
.sw-service-card:focus-visible {
    position: relative;
    z-index: 1;
    background: var(--sw-aqua);
    box-shadow: 0 14px 34px rgba(7, 57, 78, .12);
    transform: translateY(-3px);
}

.sw-service-card:focus-visible {
    outline: 3px solid var(--sw-teal);
    outline-offset: -3px;
}

.sw-service-card span {
    display: block;
    margin-bottom: 46px;
    color: var(--sw-teal);
    font-size: 13px;
    font-weight: 900;
}

.sw-service-card h3 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.08;
}

.sw-service-card p {
    margin: 0;
    color: var(--sw-muted);
}

.sw-work-section {
    padding-top: clamp(64px, 9vw, 110px);
    background:
        radial-gradient(circle at 15% 5%, rgba(11, 154, 154, .12), transparent 34%),
        #fff;
}

.sw-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.sw-work-item {
    position: relative;
    aspect-ratio: 1 / 1;
    margin: 0;
    overflow: hidden;
    background: var(--sw-mist);
}

.sw-work-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.sw-work-item:hover img {
    transform: scale(1.025);
}

.sw-work-item.is-placeholder {
    display: grid;
    place-items: center;
    border: 1px solid var(--sw-line);
    background:
        linear-gradient(135deg, rgba(8, 32, 43, .94), rgba(11, 58, 83, .72)),
        radial-gradient(circle at 78% 18%, rgba(11, 154, 154, .5), transparent 32%);
    color: #fff;
}

.sw-work-item.is-placeholder::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(216, 242, 239, .28);
    content: "";
}

.sw-work-item.is-placeholder::after {
    position: absolute;
    right: -18%;
    bottom: -18%;
    width: 64%;
    aspect-ratio: 1;
    border: 1px solid rgba(216, 242, 239, .24);
    border-radius: 50%;
    content: "";
}

.sw-work-item.is-placeholder span {
    position: relative;
    z-index: 1;
    width: min-content;
    min-width: 70%;
    color: #fff;
    font-size: clamp(18px, 2.2vw, 30px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    text-align: center;
}

.sw-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}

.sw-image-panel {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 560px;
    overflow: hidden;
    background: var(--sw-aqua);
    background-image: var(--sw-panel-image);
    background-size: cover;
    background-position: center;
}

.sw-image-panel.is-placeholder {
    background:
        radial-gradient(circle at 80% 20%, rgba(11, 154, 154, .3), transparent 34%),
        linear-gradient(135deg, #d8f2ef, #f4f0e8);
}

.sw-image-panel.is-placeholder::before {
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(8, 32, 43, .16);
    content: "";
}

.sw-image-panel.is-placeholder::after {
    position: absolute;
    top: 12%;
    right: -9%;
    width: 54%;
    aspect-ratio: 1;
    border: 1px solid rgba(8, 32, 43, .14);
    border-radius: 50%;
    content: "";
}

.sw-image-panel-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    width: min(78%, 420px);
    padding: clamp(28px, 5vw, 52px);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 22px 70px rgba(8, 32, 43, .14);
    backdrop-filter: blur(16px);
}

.sw-image-panel-card span {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(8, 32, 43, .12);
    color: var(--sw-ink);
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: .92;
}

.sw-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1;
}

.sw-copy p {
    color: var(--sw-muted);
    font-size: 19px;
}

.sw-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.sw-pill-list span {
    padding: 9px 12px;
    border: 1px solid var(--sw-line);
    color: var(--sw-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.sw-industry-strip {
    background: #fff;
}

.sw-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sw-industry-card {
    min-height: 330px;
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid var(--sw-line);
    background: var(--sw-mist);
    color: var(--sw-ink);
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.sw-industry-card:hover,
.sw-industry-card:focus-visible {
    background: var(--sw-aqua);
    transform: translateY(-4px);
}

.sw-industry-card h3 {
    margin: 70px 0 14px;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
}

.sw-industry-card p {
    margin: 0;
    color: var(--sw-muted);
}

.sw-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .22);
    border: 1px solid rgba(255, 255, 255, .22);
}

.sw-process-step {
    padding: clamp(24px, 4vw, 36px);
    background: rgba(255, 255, 255, .06);
}

.sw-process-step span {
    color: var(--sw-aqua);
    font-size: 13px;
    font-weight: 900;
}

.sw-process-step h3 {
    margin: 36px 0 12px;
    font-size: 24px;
}

.sw-process-step p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.sw-audit-feature {
    background:
        radial-gradient(circle at 12% 0%, rgba(11, 154, 154, .16), transparent 32%),
        #fff;
}

.sw-audit-panel {
    padding: clamp(38px, 7vw, 84px);
    border: 1px solid var(--sw-line);
    background: var(--sw-mist);
}

.sw-audit-panel h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(40px, 6vw, 84px);
    line-height: .96;
}

.sw-audit-panel > p:not(.sw-kicker) {
    max-width: 820px;
    color: var(--sw-muted);
    font-size: 20px;
}

.sw-audit-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-audit-list span {
    padding: 16px;
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    color: var(--sw-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.sw-audience-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--sw-line);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.05;
}

.sw-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sw-about-strip {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: start;
}

.sw-about-strip h2 {
    margin: 0;
    font-size: clamp(38px, 6vw, 78px);
    line-height: .96;
}

.sw-about-strip p {
    color: var(--sw-muted);
    font-size: 19px;
}

.sw-cta {
    padding: clamp(48px, 8vw, 82px);
    background: var(--sw-aqua);
}

.sw-cta h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1;
}

.sw-cta p {
    max-width: 640px;
    color: var(--sw-blue);
    font-size: 20px;
}

.sw-site-footer {
    padding: 52px 0;
    background: var(--sw-ink);
    color: #fff;
}

.sw-footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 34px;
}

.sw-footer-inner p,
.sw-footer-inner a {
    color: rgba(255, 255, 255, .72);
}

.sw-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 12vw, 156px) 0 clamp(64px, 9vw, 118px);
    border-bottom: 1px solid var(--sw-line);
    background:
        linear-gradient(128deg, rgba(216, 242, 239, .94) 0%, rgba(255, 255, 255, .98) 46%, rgba(244, 240, 232, .72) 100%);
}

.sw-page-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(42vw, 520px);
    height: 1px;
    background: var(--sw-teal);
    content: "";
}

.sw-page-hero .sw-container {
    position: relative;
    z-index: 1;
}

.sw-page-hero h1 {
    max-width: 1050px;
}

.sw-page-content {
    width: min(calc(100% - 40px), var(--sw-max));
    margin: 0 auto;
    padding: clamp(58px, 8vw, 98px) 0 clamp(70px, 10vw, 124px);
}

.sw-single-post-header {
    padding: clamp(70px, 10vw, 130px) 0 clamp(54px, 8vw, 90px);
    background: var(--sw-mist);
}

.sw-single-post-header h1 {
    max-width: 980px;
    margin: 12px 0 22px;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
}

.sw-single-post-meta {
    margin: 0;
    color: var(--sw-muted);
    font-size: 15px;
    text-transform: uppercase;
}

.sw-single-post-image {
    width: min(calc(100% - 40px), var(--sw-max));
    margin: 64px auto 0;
}

.sw-single-post-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 720px;
    object-fit: cover;
}

.sw-single-post-content {
    width: min(calc(100% - 40px), 820px);
    margin: 0 auto;
    padding: clamp(54px, 8vw, 90px) 0;
}

.sw-single-post-content > :first-child {
    margin-top: 0;
}

.sw-single-post-content p,
.sw-single-post-content li {
    font-size: clamp(18px, 2vw, 20px);
}

.sw-single-post-content h2 {
    margin-top: 2em;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
}

.sw-single-post-content h3 {
    margin-top: 1.8em;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.12;
}

.sw-single-post-content img {
    height: auto;
}

.sw-single-post-content blockquote {
    margin: 2.5em 0;
    padding: 8px 0 8px 28px;
    border-left: 4px solid var(--sw-teal);
    color: var(--sw-blue);
    font-size: 1.2em;
}

.sw-post-pages {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--sw-line);
}

.sw-services-overview,
.sw-service-page,
.sw-audits-overview,
.sw-audit-page,
.sw-audience-page,
.sw-about-page {
    display: grid;
    gap: clamp(62px, 9vw, 116px);
}

.sw-service-page > .wp-block-group__inner-container,
.sw-services-overview > .wp-block-group__inner-container,
.sw-audits-overview > .wp-block-group__inner-container,
.sw-audit-page > .wp-block-group__inner-container,
.sw-audience-page > .wp-block-group__inner-container,
.sw-about-page > .wp-block-group__inner-container {
    display: contents;
}

.sw-about-founder {
    gap: clamp(32px, 8vw, 100px);
    align-items: flex-start;
}

.sw-about-founder .sw-pattern-image {
    aspect-ratio: 5 / 8;
}

.sw-about-founder .sw-pattern-image img {
    object-position: center top !important;
}

.sw-about-founder h2 {
    margin: 0 0 20px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .96;
}

.sw-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 44px);
}

.sw-team-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-team-grid .sw-team-member {
    margin-block-start: 0;
}

.sw-team-member .sw-pattern-image {
    aspect-ratio: 4 / 5;
    margin-bottom: 24px;
}

.sw-team-member h3 {
    margin: 0 0 8px;
    font-size: clamp(25px, 3vw, 34px);
}

.sw-home-audits {
    background: var(--sw-mist);
}

.sw-home-audits-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: clamp(32px, 8vw, 110px);
    align-items: end;
}

.sw-home-audits h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
}

.sw-home-audits p {
    color: var(--sw-muted);
}

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

.sw-audit-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-audit-card {
    min-height: 310px;
    padding: clamp(26px, 4vw, 42px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
}

.sw-audit-card h3 {
    margin: 16px 0 14px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.sw-audit-card > p:not(.sw-audit-card-price, .sw-text-link) {
    color: var(--sw-muted);
}

.sw-audit-card-price,
.sw-audit-price {
    margin: 0;
    color: var(--sw-teal);
    font-weight: 900;
}

.sw-audit-card-price {
    font-size: 20px;
}

.sw-audit-hero {
    gap: clamp(32px, 8vw, 100px);
    align-items: end;
}

.sw-audit-hero h2 {
    margin: 0 0 22px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .96;
}

.sw-audit-purchase {
    padding: clamp(28px, 5vw, 52px);
    background: var(--sw-aqua);
}

.sw-audit-price {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
}

.sw-audit-timeline {
    max-width: 900px;
}

.sw-service-intro,
.sw-service-intro > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(280px, .42fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: end;
}

.sw-service-intro {
    max-width: none;
    padding-bottom: clamp(26px, 4vw, 46px);
    border-bottom: 1px solid var(--sw-line);
}

.sw-service-intro .sw-kicker,
.sw-service-intro h1,
.sw-service-intro h2,
.sw-service-intro > p:not(.sw-kicker),
.sw-service-intro > .wp-block-group__inner-container > .sw-kicker,
.sw-service-intro > .wp-block-group__inner-container > h1,
.sw-service-intro > .wp-block-group__inner-container > h2,
.sw-service-intro > .wp-block-group__inner-container > p:not(.sw-kicker) {
    grid-column: 1;
}

.sw-service-intro h1,
.sw-service-intro h2 {
    max-width: 940px;
    margin: 0 0 22px;
    font-size: clamp(44px, 7vw, 88px);
    line-height: .96;
}

.sw-service-intro > p:not(.sw-kicker) {
    max-width: 780px;
    color: var(--sw-muted);
}

.sw-service-intro .wp-block-buttons {
    grid-column: 2;
    grid-row: 2 / span 2;
    justify-self: end;
    margin: 0;
}

.sw-pattern-image {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: var(--sw-soft);
    box-shadow: 0 22px 70px rgba(8, 32, 43, .08);
}

.sw-pattern-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 32, 43, 0) 54%, rgba(8, 32, 43, .16) 100%);
    content: "";
    pointer-events: none;
}

.sw-pattern-image.wp-block-image img,
.wp-block-image.sw-pattern-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: scale(1.001);
    transition: transform .7s ease;
}

.sw-pattern-image:hover img {
    transform: scale(1.035);
}

.sw-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-services-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-service-overview-card {
    min-height: 300px;
    padding: clamp(26px, 4vw, 42px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
}

.sw-service-overview-card h3 {
    margin-top: 0;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.05;
}

.sw-service-overview-card p {
    color: var(--sw-muted);
}

.sw-text-link a {
    color: var(--sw-teal);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sw-service-columns,
.sw-service-feature {
    gap: clamp(24px, 5vw, 54px);
    align-items: center;
}

.sw-service-columns > .wp-block-column,
.sw-service-feature > .wp-block-column {
    min-width: 0;
}

.sw-service-columns > .wp-block-column {
    height: 100%;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(8, 32, 43, .05);
}

.sw-service-columns h2,
.sw-service-feature h2,
.sw-service-outcome h2,
.sw-service-faq h2,
.sw-service-cta h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
}

.sw-service-columns li {
    position: relative;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid var(--sw-line);
    color: var(--sw-blue);
    font-weight: 700;
}

.sw-service-columns li::before {
    position: absolute;
    top: 21px;
    left: 0;
    width: 10px;
    height: 10px;
    border: 2px solid var(--sw-teal);
    border-radius: 50%;
    content: "";
}

.sw-service-outcome {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 7vw, 78px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(216, 242, 239, .9), rgba(255, 255, 255, .96) 58%, rgba(244, 240, 232, .7));
}

.sw-service-outcome::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: var(--sw-teal);
    content: "";
}

.sw-service-problem {
    max-width: 980px;
    padding-left: clamp(18px, 3vw, 32px);
    border-left: 4px solid var(--sw-teal);
}

.sw-service-problem h2,
.sw-pattern-process > h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
}

.sw-service-problem > p:not(.sw-kicker) {
    color: var(--sw-muted);
}

.sw-pattern-process {
    display: grid;
    gap: 32px;
    padding-top: clamp(8px, 2vw, 18px);
}

.sw-pattern-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sw-pattern-process-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-audience-overview-grid,
.sw-partner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sw-audience-overview-grid > .wp-block-group__inner-container,
.sw-partner-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-audience-overview-card,
.sw-partner-card {
    position: relative;
    min-height: 320px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 48px rgba(8, 32, 43, .045);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.sw-audience-overview-card::before,
.sw-partner-card::before {
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 28px;
    background: var(--sw-teal);
    content: "";
}

.sw-audience-overview-card:hover,
.sw-partner-card:hover {
    border-color: rgba(11, 154, 154, .42);
    box-shadow: 0 24px 64px rgba(8, 32, 43, .08);
    transform: translateY(-3px);
}

.sw-audience-overview-card h3,
.sw-partner-card h3 {
    margin: 0 0 16px;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.05;
}

.sw-audience-overview-card > p:not(.sw-text-link),
.sw-partner-card > p:not(.sw-text-link) {
    color: var(--sw-muted);
}

.sw-pattern-process-step {
    position: relative;
    min-height: 250px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 46px rgba(8, 32, 43, .045);
}

.sw-pattern-process-step::after {
    position: absolute;
    top: clamp(24px, 4vw, 38px);
    right: clamp(24px, 4vw, 38px);
    color: rgba(11, 154, 154, .18);
    content: "→";
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.sw-pattern-process-step h3 {
    margin: 38px 0 12px;
    font-size: 25px;
}

.sw-pattern-process-step > p:last-child {
    color: var(--sw-muted);
}

.sw-service-feature .sw-pattern-image {
    aspect-ratio: 1 / 1;
}

.sw-design-portfolio {
    display: grid;
    gap: 32px;
}

.sw-design-portfolio > .wp-block-group__inner-container,
.sw-design-portfolio-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-design-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.sw-design-portfolio-grid .sw-pattern-image {
    aspect-ratio: 1 / 1;
}

.sw-case-studies-page {
    display: grid;
    gap: clamp(48px, 8vw, 96px);
}

.sw-case-studies-page > .wp-block-group__inner-container,
.sw-case-study-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-case-studies-intro {
    max-width: 900px;
}

.sw-case-studies-intro h2 {
    margin: 0 0 20px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: .96;
}

.sw-case-studies-intro > p:not(.sw-kicker) {
    color: var(--sw-muted);
}

.sw-case-study-featured {
    width: min(100%, 900px);
    margin-inline: auto;
}

.sw-case-study-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
}

.sw-case-study-grid > .sw-case-study-image:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - clamp(24px, 4vw, 52px)) / 2);
    justify-self: center;
}

.sw-case-study-image {
    margin: 0;
}

.sw-case-study-image a {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--sw-line);
    background: var(--sw-mist);
    cursor: zoom-in;
}

.sw-case-study-image a::after {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: rgba(5, 27, 38, .9);
    color: #fff;
    content: "+";
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transition: transform .2s ease, background .2s ease;
}

.sw-case-study-image a:hover::after,
.sw-case-study-image a:focus-visible::after {
    background: var(--sw-teal);
    transform: scale(1.08);
}

.sw-case-study-image img,
.sw-case-study-featured img {
    display: block;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
}

.sw-case-study-image figcaption {
    margin: 14px 0 0;
    color: var(--sw-ink);
    font-size: 16px;
    font-weight: 800;
    text-align: left;
}

.sw-case-study-lightbox {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: none;
    overflow: auto;
    padding: 72px clamp(18px, 4vw, 56px);
    border: 0;
    background: rgba(3, 14, 20, .94);
}

.sw-case-study-lightbox.is-open {
    display: block;
}

.sw-case-study-lightbox-inner {
    width: min(1200px, 94vw);
    margin: 0 auto;
}

.sw-case-study-lightbox img {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

.sw-case-study-lightbox-close {
    position: fixed;
    z-index: 1;
    top: 18px;
    right: 22px;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(3, 14, 20, .82);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 30px;
    line-height: 1;
}

.sw-case-study-lightbox-close:hover,
.sw-case-study-lightbox-close:focus-visible {
    background: var(--sw-teal);
}

body.sw-lightbox-open {
    overflow: hidden;
}

.sw-case-studies-expanded {
    gap: clamp(42px, 7vw, 84px);
}

.sw-case-studies-intro-expanded {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: end;
}

.sw-case-studies-intro-expanded > .wp-block-group__inner-container {
    display: contents;
}

.sw-case-studies-intro-expanded h1 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(54px, 9vw, 118px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .92;
}

.sw-case-studies-intro-copy {
    display: grid;
    gap: 20px;
}

.sw-case-studies-intro-copy > .wp-block-group__inner-container {
    display: contents;
}

.sw-case-studies-intro-copy > p:not(.sw-kicker) {
    margin: 0;
    color: var(--sw-muted);
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.35;
}

.sw-case-study-note {
    max-width: 760px;
    padding-left: 18px;
    border-left: 3px solid var(--sw-teal);
    color: var(--sw-muted);
}

.sw-case-study-list-wrap {
    display: grid;
    gap: clamp(32px, 5vw, 64px);
}

.sw-case-study-list-wrap > .wp-block-group__inner-container,
.sw-case-study-card > .wp-block-group__inner-container,
.sw-case-study-card-content > .wp-block-group__inner-container,
.sw-case-study-columns > .wp-block-group__inner-container,
.sw-case-study-point > .wp-block-group__inner-container {
    display: contents;
}

.sw-case-study-card {
    display: grid;
    overflow: hidden;
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(9, 34, 42, .06);
}

.sw-case-study-card:nth-child(even) .sw-case-study-card-media {
    order: 2;
}

.sw-case-study-card-media {
    min-height: 100%;
    margin: 0;
    background: var(--sw-mist);
}

.sw-case-study-card-media img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-height: 420px;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
}

#serena-williams-live-ultimate-run .sw-case-study-card-media img {
    object-position: 32% 48% !important;
}

.sw-case-study-card-content {
    display: grid;
    gap: 24px;
    align-content: start;
    padding: clamp(28px, 4vw, 56px);
}

.sw-case-study-card-content h2 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(32px, 4.6vw, 58px);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .98;
}

.sw-case-study-summary {
    margin: 0;
    color: var(--sw-muted);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
}

.sw-case-study-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.sw-case-study-meta span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(0, 147, 151, .24);
    border-radius: 999px;
    background: rgba(219, 246, 243, .52);
    color: var(--sw-teal);
    font-size: 11px;
    line-height: 1;
}

.sw-case-study-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.sw-case-study-point {
    display: grid;
    gap: 12px;
    align-content: start;
    padding-top: 18px;
    border-top: 1px solid var(--sw-line);
}

.sw-case-study-point h3 {
    margin: 0;
    color: var(--sw-ink);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sw-case-study-point ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: var(--sw-muted);
    font-size: 15px;
    line-height: 1.45;
}

.sw-case-study-point li::marker {
    color: var(--sw-teal);
}

.sw-case-study-card.is-placeholder .sw-case-study-card-content {
    align-content: center;
}

.sw-case-study-card.is-placeholder .sw-case-study-card-media img {
    filter: grayscale(1) contrast(.92);
    opacity: .78;
}

.sw-coming-soon {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(0, 147, 151, .34);
    border-radius: 999px;
    background: rgba(219, 246, 243, .7);
    color: var(--sw-teal);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
}

@media (max-width: 1180px) {
    .sw-case-study-columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .sw-case-studies-intro-expanded,
    .sw-case-study-card {
        grid-template-columns: 1fr;
    }

    .sw-case-study-card:nth-child(even) .sw-case-study-card-media {
        order: 0;
    }

    .sw-case-study-card-media img {
        min-height: 320px;
    }
}

@media (max-width: 620px) {
    .sw-case-studies-intro-expanded h1 {
        font-size: 54px;
    }

    .sw-case-studies-intro-copy > p:not(.sw-kicker) {
        font-size: 20px;
    }

    .sw-case-study-card-content {
        padding: 24px;
    }

    .sw-case-study-card-media img {
        min-height: 250px;
    }
}

/* Good Stuff Manufacturing client program */
.sw-gsm-page {
    --gsm-navy: #031d2c;
    --gsm-navy-soft: #07394b;
    --gsm-teal: #087879;
    --gsm-aqua: #25c2c4;
    overflow: hidden;
}

.sw-gsm-hero {
    position: relative;
    padding: clamp(48px, 7vw, 92px) 0 clamp(64px, 9vw, 116px);
    background:
        linear-gradient(115deg, rgba(3, 29, 44, .99), rgba(3, 49, 67, .95) 58%, rgba(5, 93, 99, .82)),
        radial-gradient(circle at 82% 20%, rgba(37, 194, 196, .22), transparent 34%);
    color: #fff;
}

.sw-gsm-cobrand {
    display: grid;
    grid-template-columns: minmax(190px, 310px) 1fr minmax(180px, 270px);
    align-items: center;
    gap: 28px;
}

.sw-gsm-cobrand span {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-align: center;
    text-transform: uppercase;
}

.sw-gsm-saltwater-logo,
.sw-gsm-logo {
    display: block;
    width: 100%;
    max-height: 92px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.sw-gsm-hero-copy {
    max-width: 980px;
    margin-top: clamp(72px, 10vw, 132px);
}

.sw-gsm-hero .sw-kicker,
.sw-gsm-contact .sw-kicker {
    color: #79e2df;
}

.sw-gsm-hero h1 {
    max-width: 1020px;
    margin: 14px 0 0;
    color: #fff;
    font-size: clamp(52px, 7.2vw, 102px);
    line-height: .94;
}

.sw-gsm-hero h1 strong {
    color: var(--gsm-aqua);
}

.sw-gsm-hero-copy > p:not(.sw-kicker) {
    max-width: 920px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.sw-gsm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.sw-gsm-hero .sw-button {
    background: var(--gsm-aqua);
    color: var(--gsm-navy);
}

.sw-gsm-hero .sw-button-outline {
    border-color: rgba(255, 255, 255, .52);
    background: transparent;
    color: #fff;
}

.sw-gsm-promises {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: clamp(58px, 8vw, 92px);
}

.sw-gsm-promises > div {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .055);
}

.sw-gsm-promises h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
}

.sw-gsm-promises p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
}

.sw-gsm-section {
    padding: clamp(70px, 9vw, 128px) 0;
}

.sw-gsm-section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: clamp(36px, 7vw, 100px);
    margin-bottom: clamp(42px, 6vw, 72px);
}

.sw-gsm-section-heading h2,
.sw-gsm-creative-heading h2,
.sw-gsm-contact h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
}

.sw-gsm-section-heading > p {
    margin: 0;
    color: var(--sw-muted);
    font-size: 18px;
}

.sw-gsm-team {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sw-gsm-person {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sw-line);
    background: #fff;
}

.sw-gsm-person img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.sw-gsm-person:nth-child(1) img {
    object-position: center 10%;
}

.sw-gsm-person:nth-child(2) img {
    object-position: center 12%;
}

.sw-gsm-person:nth-child(3) img {
    object-position: center 34%;
}

.sw-gsm-person > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.sw-gsm-person h3 {
    margin: 10px 0 0;
    font-size: 30px;
}

.sw-gsm-role {
    margin: 3px 0 18px;
    color: var(--gsm-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.sw-gsm-person p:last-child {
    margin-bottom: 0;
    color: var(--sw-muted);
    font-size: 15px;
}

.sw-gsm-services-section {
    background: var(--sw-mist);
}

.sw-gsm-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-gsm-service-grid > div {
    min-height: 190px;
    padding: 26px;
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    background: rgba(255, 255, 255, .7);
}

.sw-gsm-service-grid h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.16;
}

.sw-gsm-service-grid p {
    margin: 12px 0 0;
    color: var(--sw-muted);
    font-size: 14px;
}

.sw-gsm-proof-section {
    background: #fff;
}

.sw-gsm-disclaimer {
    font-size: 13px !important;
}

.sw-gsm-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sw-gsm-proof {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background: var(--gsm-navy);
    color: #fff;
}

.sw-gsm-proof::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 26%, rgba(3, 29, 44, .96) 78%);
    content: "";
}

.sw-gsm-proof img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-gsm-proof:nth-child(1) img {
    object-position: center 36%;
}

.sw-gsm-proof:nth-child(2) img {
    object-position: center 68%;
}

.sw-gsm-proof > div {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.sw-gsm-proof .sw-kicker {
    color: #7be0dd;
}

.sw-gsm-proof h3 {
    margin: 8px 0 0;
    color: #fff;
    font-size: 29px;
}

.sw-gsm-proof p:last-child {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
}

.sw-gsm-creative-heading {
    margin-top: clamp(72px, 9vw, 118px);
}

.sw-gsm-creative-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    gap: 18px;
    margin-top: 34px;
}

.sw-gsm-creative-grid figure {
    position: relative;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
    background: var(--sw-mist);
}

.sw-gsm-creative-grid figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(3, 29, 44, .88));
    content: "";
}

.sw-gsm-creative-grid img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.sw-gsm-creative-grid figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 26px;
    left: 28px;
    color: #fff;
    font-size: clamp(18px, 2.2vw, 28px);
    font-weight: 800;
}

.sw-gsm-contact {
    padding: clamp(64px, 8vw, 110px) 0;
    border-top: 6px solid var(--gsm-aqua);
    background: var(--gsm-navy);
    color: #fff;
}

.sw-gsm-contact-heading {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: clamp(42px, 8vw, 110px);
}

.sw-gsm-contact h2 {
    color: #fff;
}

.sw-gsm-contact p:last-child {
    max-width: 760px;
    color: rgba(255, 255, 255, .68);
}

.sw-gsm-contact-details {
    display: grid;
    gap: 8px;
    text-align: right;
}

.sw-gsm-contact-details strong {
    color: #78e1de;
    font-size: 19px;
}

.sw-gsm-contact-details a {
    color: #fff;
    text-decoration: none;
}

.sw-gsm-contact-details span {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
}

.sw-gsm-form {
    position: relative;
    margin-top: clamp(42px, 6vw, 72px);
    padding: clamp(26px, 4vw, 48px);
    background: #fff;
    color: var(--gsm-navy);
}

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

.sw-gsm-form label > span,
.sw-gsm-form legend {
    display: block;
    margin-bottom: 8px;
    color: var(--gsm-navy);
    font-size: 14px;
    font-weight: 800;
}

.sw-gsm-form input[type="text"],
.sw-gsm-form input[type="email"],
.sw-gsm-form input[type="tel"],
.sw-gsm-form input[type="url"],
.sw-gsm-form select,
.sw-gsm-form textarea {
    width: 100%;
    border: 1px solid #bed0d4;
    border-radius: 0;
    background: #f7fafb;
    color: var(--gsm-navy);
    font: inherit;
}

.sw-gsm-form input,
.sw-gsm-form select {
    min-height: 50px;
    padding: 10px 13px;
}

.sw-gsm-form textarea {
    min-height: 150px;
    padding: 13px;
    resize: vertical;
}

.sw-gsm-form input:focus,
.sw-gsm-form select:focus,
.sw-gsm-form textarea:focus {
    border-color: var(--gsm-aqua);
    outline: 3px solid rgba(34, 197, 201, .2);
}

.sw-gsm-form fieldset {
    margin: 30px 0;
    padding: 0;
    border: 0;
}

.sw-gsm-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 18px;
}

.sw-gsm-checkboxes label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--sw-muted);
    font-size: 14px;
}

.sw-gsm-checkboxes input {
    width: 17px;
    min-height: 17px;
    margin-top: 2px;
    accent-color: var(--gsm-aqua);
}

.sw-gsm-checkboxes label > span {
    margin: 0;
    color: inherit;
    font-weight: 500;
}

.sw-gsm-form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.sw-gsm-form-submit p {
    max-width: 580px;
    margin: 0;
    color: var(--sw-muted) !important;
    font-size: 13px;
}

.sw-gsm-form-submit .sw-button {
    border: 0;
    cursor: pointer;
}

.sw-gsm-form-notice {
    margin-top: 32px;
    padding: 16px 20px;
    border-left: 4px solid var(--gsm-aqua);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.sw-gsm-form-error {
    border-left-color: #ff9f89;
}

.sw-gsm-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.sw-service-faq {
    max-width: 900px;
}

.sw-service-faq details {
    margin: 0 0 12px;
    padding: 0;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 36px rgba(8, 32, 43, .035);
}

.sw-service-faq summary {
    padding: 20px 24px;
    color: var(--sw-ink);
    font-weight: 800;
    cursor: pointer;
}

.sw-service-faq details p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--sw-muted);
}

.sw-service-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 7vw, 76px);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(8, 32, 43, .98), rgba(11, 58, 83, .96));
    color: #fff;
}

.sw-service-cta::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(44vw, 560px);
    height: 1px;
    background: var(--sw-teal);
    content: "";
}

.sw-service-cta > * {
    position: relative;
    z-index: 1;
}

.sw-service-cta p {
    max-width: 700px;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(18px, 2vw, 22px);
}

.sw-service-cta .wp-block-button__link {
    border-color: #fff;
    background: #fff;
    color: var(--sw-ink) !important;
}

.sw-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--sw-delay, 0ms);
}

.sw-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* WooCommerce audit and product pages */
.woocommerce .site-main,
.woocommerce-page .site-main {
    width: min(calc(100% - 48px), var(--sw-max));
    margin-inline: auto;
}

.woocommerce div.product {
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(48px, 7vw, 92px) 0;
}

.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .summary {
    margin-bottom: 48px;
}

.woocommerce div.product .woocommerce-tabs {
    clear: both;
}

.woocommerce div.product .woocommerce-tabs .panel {
    max-width: 900px;
}

.woocommerce #secondary,
.woocommerce .widget-area,
.woocommerce-page #secondary,
.woocommerce-page .widget-area {
    display: none;
}

/* Homepage 0.4.9 */
.sw-hero-home .sw-hero-media {
    align-items: center;
    background-image:
        radial-gradient(circle at 80% 18%, rgba(11, 154, 154, .34), transparent 32%),
        radial-gradient(circle at 92% 82%, rgba(216, 242, 239, .16), transparent 34%),
        linear-gradient(110deg, rgba(6, 21, 29, .96), rgba(8, 32, 43, .82) 48%, rgba(8, 32, 43, .42)),
        var(--sw-hero-image);
}

.sw-hero-home .sw-hero-content {
    display: block;
    min-height: calc(100vh - 78px);
    padding-top: clamp(78px, 12vw, 150px);
    padding-bottom: clamp(78px, 12vw, 150px);
}

.sw-hero-copy-block {
    max-width: 980px;
}

.sw-hero-title span {
    display: block;
}

.sw-hero-home .sw-hero-line {
    max-width: 820px;
}

.sw-hero-home .sw-hero-subcopy {
    max-width: 760px;
}

.sw-hero-visual {
    display: none;
    position: relative;
    min-height: clamp(320px, 42vw, 560px);
    border: 1px solid rgba(216, 242, 239, .22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02)),
        radial-gradient(circle at 72% 22%, rgba(11, 154, 154, .48), transparent 34%);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
    overflow: hidden;
    transform: translateY(calc(var(--sw-scroll, 0) * -.45px));
}

.sw-hero-visual::before,
.sw-hero-visual::after {
    position: absolute;
    content: "";
}

.sw-hero-visual::before {
    inset: 34px;
    border: 1px solid rgba(216, 242, 239, .24);
}

.sw-hero-visual::after {
    right: -22%;
    bottom: -16%;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid rgba(216, 242, 239, .32);
    border-radius: 50%;
}

.sw-hero-visual span {
    position: absolute;
    display: block;
    border: 1px solid rgba(216, 242, 239, .34);
    background: rgba(216, 242, 239, .08);
    backdrop-filter: blur(10px);
}

.sw-hero-visual span:nth-child(1) {
    top: 18%;
    left: 15%;
    width: 52%;
    height: 26%;
}

.sw-hero-visual span:nth-child(2) {
    right: 12%;
    bottom: 28%;
    width: 54%;
    height: 20%;
}

.sw-hero-visual span:nth-child(3) {
    left: 28%;
    bottom: 12%;
    width: 30%;
    height: 18%;
    background: rgba(11, 154, 154, .26);
}

.sw-logo-band {
    border-bottom: 1px solid var(--sw-line);
    background: #fff;
}

.sw-logo-band-inner {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: clamp(18px, 4vw, 48px);
    align-items: center;
    min-height: 130px;
}

.sw-logo-band p {
    margin: 0;
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sw-logo-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.sw-logo-mark {
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(220, 232, 230, .82);
    background: rgba(245, 251, 250, .62);
}

.sw-logo-mark img {
    width: auto;
    max-width: min(260px, 92%);
    max-height: 72px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .78;
}

.sw-logo-mark span {
    color: var(--sw-blue);
    font-size: clamp(17px, 2vw, 28px);
    font-weight: 900;
    letter-spacing: -.04em;
    text-align: center;
}

.sw-ethos {
    background:
        radial-gradient(circle at 90% 8%, rgba(11, 154, 154, .1), transparent 30%),
        #fff;
}

.sw-ethos-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, .88fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: start;
}

.sw-ethos h2 {
    margin: 0;
    font-size: clamp(38px, 6vw, 82px);
    line-height: .94;
}

.sw-ethos-lede {
    max-width: 560px;
    color: var(--sw-blue);
    font-size: clamp(21px, 2.8vw, 34px);
    font-weight: 800;
    line-height: 1.08;
}

.sw-ethos-copy {
    padding-top: clamp(18px, 4vw, 56px);
}

.sw-ethos-copy p {
    margin: 0 0 20px;
    color: var(--sw-muted);
    font-size: 19px;
}

.sw-ethos-visual {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 230px;
    border: 1px solid var(--sw-line);
    background:
        linear-gradient(135deg, rgba(216, 242, 239, .42), rgba(244, 240, 232, .58)),
        var(--sw-panel-image);
    background-size: cover;
    background-position: center;
}

.sw-ethos-visual.has-image {
    min-height: 340px;
}

.sw-ethos-visual span {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(8, 32, 43, .12);
    color: var(--sw-blue);
    font-size: clamp(22px, 3.4vw, 48px);
    font-weight: 900;
    letter-spacing: -.05em;
}

.sw-service-grid-home .sw-service-card {
    position: relative;
    min-height: 310px;
}

.sw-service-card em {
    position: absolute;
    right: 28px;
    bottom: 24px;
    color: var(--sw-teal);
    font-style: normal;
    font-weight: 900;
    transition: transform .2s ease;
}

.sw-service-card:hover em,
.sw-service-card:focus-visible em {
    color: var(--sw-blue);
    transform: translateX(5px);
}

.sw-centered-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.sw-differentiator {
    background: #06151d;
    color: #fff;
}

.sw-statement-card {
    max-width: 1060px;
}

.sw-statement-card h2 {
    margin: 0 0 26px;
    font-size: clamp(42px, 6vw, 86px);
    line-height: .94;
    letter-spacing: -.05em;
}

.sw-statement-card h2::after {
    display: block;
    width: min(360px, 46vw);
    height: 3px;
    margin-top: 28px;
    background: linear-gradient(90deg, var(--sw-teal), transparent);
    content: "";
}

.sw-statement-card p:not(.sw-kicker) {
    max-width: 820px;
    color: rgba(255, 255, 255, .74);
    font-size: 20px;
}

.sw-work-card-grid {
    gap: 16px;
}

.sw-work-eyebrow {
    margin-bottom: clamp(24px, 4vw, 46px);
}

.sw-work-eyebrow .sw-kicker {
    color: var(--sw-muted);
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: .18em;
}

.sw-work-card {
    display: grid;
    min-height: 420px;
    grid-template-rows: minmax(220px, 1fr) auto;
    border: 1px solid var(--sw-line);
    background: #fff;
    color: var(--sw-ink);
    text-decoration: none;
    overflow: hidden;
}

.sw-work-card figure {
    position: relative;
    min-height: 250px;
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 32, 43, .94), rgba(11, 58, 83, .72)),
        radial-gradient(circle at 78% 18%, rgba(11, 154, 154, .5), transparent 32%);
}

.sw-work-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform .55s ease;
}

.sw-work-card:hover img,
.sw-work-card:focus-visible img {
    transform: scale(1.035);
}

.sw-work-card figure span {
    position: absolute;
    inset: 24px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(216, 242, 239, .24);
    color: #fff;
    font-size: clamp(20px, 2.4vw, 34px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: center;
}

.sw-work-card > div {
    padding: 22px;
}

.sw-work-card > div p {
    margin: 0 0 10px;
    color: var(--sw-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sw-work-card h3 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.05;
}

.sw-work-card > div span {
    display: block;
    color: var(--sw-muted);
    font-size: 15px;
    line-height: 1.45;
}

.sw-clients-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: start;
}

.sw-clients-grid h2 {
    margin: 0 0 18px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: .96;
}

.sw-clients-grid p {
    color: var(--sw-muted);
    font-size: 19px;
}

.sw-client-chips {
    display: grid;
    gap: 12px;
}

.sw-client-chips span {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--sw-line);
    background: #fff;
    color: var(--sw-blue);
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.15;
}

.sw-process-line {
    position: relative;
}

.sw-process-line::before {
    position: absolute;
    top: 58px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: rgba(216, 242, 239, .28);
    content: "";
}

.sw-process-line .sw-process-step {
    position: relative;
}

.sw-process-line .sw-process-step span {
    display: inline-grid;
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(216, 242, 239, .5);
    border-radius: 50%;
    background: var(--sw-blue);
}

.sw-final-cta {
    background:
        radial-gradient(circle at 92% 12%, rgba(11, 154, 154, .22), transparent 32%),
        var(--sw-aqua);
}

.sw-final-cta h2 {
    max-width: 780px;
}

@media (max-width: 900px) {
    .sw-gsm-cobrand {
        grid-template-columns: 1fr 1fr;
    }

    .sw-gsm-cobrand span {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
    }

    .sw-gsm-section-heading,
    .sw-gsm-contact-heading {
        grid-template-columns: 1fr;
    }

    .sw-gsm-team,
    .sw-gsm-proof-grid {
        grid-template-columns: 1fr;
    }

    .sw-gsm-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-gsm-proof {
        min-height: 560px;
    }

    .sw-gsm-contact-details {
        text-align: left;
    }

    .sw-gsm-checkboxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 78px);
        overflow-y: auto;
        border-bottom: 1px solid var(--sw-line);
        background: #fff;
        box-shadow: 0 18px 38px rgba(8, 32, 43, .12);
    }

    .sw-nav.is-open {
        display: block;
    }

    .sw-menu-toggle {
        display: block;
    }

    .sw-menu {
        display: block;
        width: min(calc(100% - 40px), var(--sw-max));
        margin: 0 auto;
        padding: 12px 0 24px;
    }

    .sw-menu > li {
        border-bottom: 1px solid var(--sw-line);
    }

    .sw-menu a {
        display: block;
        padding: 14px 4px;
    }

    .sw-menu .sub-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 0 0 10px 18px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .sw-menu .menu-item-has-children.is-open > .sub-menu {
        display: grid;
    }

    .sw-menu .sub-menu a {
        padding: 10px 4px;
    }

    .sw-section-heading,
    .sw-split,
    .sw-credibility-intro,
    .sw-home-audits-inner,
    .sw-footer-inner,
    .sw-manifesto-grid,
    .sw-about-strip {
        grid-template-columns: 1fr;
    }

    .sw-service-grid,
    .sw-process,
    .sw-audience-grid,
    .sw-system-grid,
    .sw-industry-grid,
    .sw-model-grid {
        grid-template-columns: 1fr;
    }

    .sw-pillar-grid {
        grid-template-columns: 1fr;
        overflow-x: visible;
    }

    .sw-pillar-card {
        min-height: 0;
    }

    .sw-pillar-card h3,
    .sw-industry-card h3 {
        margin-top: 34px;
    }

    .sw-manifesto h2 {
        position: static;
    }

    .sw-system-grid div {
        min-height: 0;
    }

    .sw-audit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-credibility-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-image-panel {
        min-height: 360px;
    }

    .sw-studio-lines span,
    .sw-studio-lines strong {
        max-width: 760px;
        font-size: clamp(34px, 9vw, 62px);
    }
}

@media (max-width: 620px) {
    .sw-gsm-cobrand {
        gap: 16px;
    }

    .sw-gsm-cobrand span {
        font-size: 9px;
    }

    .sw-gsm-hero h1 {
        font-size: 48px;
    }

    .sw-gsm-promises,
    .sw-gsm-service-grid,
    .sw-gsm-creative-grid,
    .sw-gsm-form-grid,
    .sw-gsm-checkboxes {
        grid-template-columns: 1fr;
    }

    .sw-gsm-form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .sw-gsm-form-submit .sw-button {
        width: 100%;
    }

    .sw-gsm-promises > div,
    .sw-gsm-person > div,
    .sw-gsm-service-grid > div {
        padding: 22px;
    }

    .sw-gsm-service-grid > div {
        min-height: 0;
    }

    .sw-gsm-proof {
        min-height: 470px;
    }

    .sw-gsm-creative-grid figure,
    .sw-gsm-creative-grid img {
        min-height: 340px;
    }

    .sw-header-inner,
    .sw-container,
    .sw-hero-content,
    .sw-page-content,
    .sw-single-post-image,
    .sw-single-post-content {
        width: min(calc(100% - 28px), var(--sw-max));
    }

    .sw-brand {
        font-size: 14px;
    }

    .sw-brand .custom-logo {
        max-width: 210px;
        max-height: 62px;
    }

    .sw-hero h1,
    .sw-page-hero h1 {
        font-size: clamp(44px, 14vw, 64px);
    }

    .sw-hero-line {
        font-size: 20px;
    }

    .sw-wide-statement,
    .sw-audit-panel,
    .sw-cta {
        padding: 28px;
    }

    .sw-audit-list {
        grid-template-columns: 1fr;
    }

    .sw-work-grid {
        gap: 6px;
        grid-template-columns: 1fr;
    }

    .sw-work-item.is-placeholder {
        aspect-ratio: 16 / 10;
    }

    .sw-image-panel-card {
        width: min(86%, 360px);
        padding: 26px;
    }
}

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

    .sw-reveal,
    .sw-pillar-card,
    .sw-industry-card,
    .sw-service-card,
    .sw-work-item img {
        transition: none;
    }

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

@media (max-width: 700px) {
    .sw-services-grid,
    .sw-team-grid,
    .sw-pattern-process-grid,
    .sw-audit-grid,
    .sw-audience-overview-grid,
    .sw-partner-grid,
    .sw-design-portfolio-grid,
    .sw-case-study-grid {
        grid-template-columns: 1fr;
    }

    .sw-case-study-grid > .sw-case-study-image:last-child:nth-child(odd) {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .sw-hero-home .sw-hero-content,
    .sw-ethos-grid,
    .sw-clients-grid,
    .sw-logo-band-inner {
        grid-template-columns: 1fr;
    }

    .sw-hero-visual {
        min-height: 300px;
        width: min(100%, 520px);
    }

    .sw-logo-band-inner {
        padding: 22px 0;
    }

    .sw-logo-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .sw-logo-mark {
        min-width: 190px;
        scroll-snap-align: start;
    }

    .sw-ethos-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-work-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-process-line::before {
        display: none;
    }

    .sw-service-intro,
    .sw-service-intro > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
    }

    .sw-service-intro .wp-block-buttons {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .sw-hero-home .sw-hero-media {
        min-height: auto;
    }

    .sw-hero-home .sw-hero-content {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .sw-hero-visual {
        min-height: 240px;
    }

    .sw-logo-mark {
        min-width: 170px;
    }

    .sw-ethos-visual,
    .sw-work-card-grid {
        grid-template-columns: 1fr;
    }

    .sw-work-card {
        min-height: 0;
    }

    .sw-client-chips span {
        padding: 15px 16px;
    }
}

/* Saltwater 0.4.11 typography refresh. */
.sw-hero-title,
.sw-page-hero h1,
.sw-section-heading h2,
.sw-ethos h2,
.sw-statement-card h2,
.sw-work-card h3,
.sw-clients-grid h2,
.sw-final-cta h2,
.sw-copy h2,
.sw-single-post-header h1,
.sw-single-post-content h2,
.sw-single-post-content h3,
.sw-about-founder h2,
.sw-team-member h3,
.sw-home-audits h2,
.sw-audit-card h3,
.sw-audit-hero h2,
.sw-service-intro h1,
.sw-service-intro h2,
.sw-service-overview-card h3,
.sw-service-columns h2,
.sw-service-feature h2,
.sw-service-outcome h2,
.sw-service-faq h2,
.sw-service-cta h2,
.sw-service-problem h2,
.sw-pattern-process > h2,
.sw-audience-overview-card h3,
.sw-partner-card h3,
.sw-pattern-process-step h3,
.sw-case-studies-intro h2,
.sw-gsm-hero h1,
.sw-gsm-promises h2,
.sw-gsm-section-heading h2,
.sw-gsm-creative-heading h2,
.sw-gsm-contact h2,
.sw-gsm-person h3,
.sw-gsm-service-grid h3,
.sw-gsm-proof h3 {
    font-family: var(--sw-font-display);
    font-weight: 800;
    letter-spacing: 0;
}

.sw-kicker,
.sw-brand,
.sw-nav a,
.sw-button,
.sw-nav .sw-nav-cta,
.wp-block-button__link,
.sw-service-card span,
.sw-pillar-card > span,
.sw-industry-card > span,
.sw-pill-list span,
.sw-process-step span,
.sw-work-eyebrow .sw-kicker,
.sw-work-card p,
.sw-logo-band p,
.sw-logo-mark span,
.sw-case-study-meta,
.sw-gsm-proof .sw-kicker {
    font-family: var(--sw-font-system);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-hero-title {
    font-size: clamp(54px, 7.4vw, 94px);
    line-height: 1.02;
}

/* Saltwater 0.4.12 homepage motion, press ticker, and leadership cards. */
.sw-hero-media {
    background-image:
        linear-gradient(112deg, rgba(6, 21, 29, .96), rgba(8, 32, 43, .72) 52%, rgba(8, 32, 43, .28)),
        var(--sw-hero-image);
}

.sw-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(.98) brightness(.62);
    transform: scale(1.02);
}

.sw-hero-content,
.sw-hero-media::before,
.sw-hero-media::after {
    position: relative;
}

.sw-hero-media::before,
.sw-hero-media::after {
    z-index: 1;
}

.sw-hero-content {
    z-index: 2;
}

.sw-logo-band {
    overflow: hidden;
}

.sw-logo-band-inner {
    grid-template-columns: 150px minmax(0, 1fr);
}

.sw-logo-ticker {
    overflow: hidden;
    border-left: 1px solid var(--sw-line);
}

.sw-logo-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: swLogoTicker 30s linear infinite;
}

.sw-logo-ticker:hover .sw-logo-track {
    animation-play-state: paused;
}

.sw-logo-mark {
    display: grid;
    width: clamp(190px, 18vw, 280px);
    min-height: 92px;
    place-items: center;
    border: 0;
    border-right: 1px solid var(--sw-line);
    background: #fff;
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: clamp(14px, 1.4vw, 21px);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.15;
    padding: 0 22px;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
}

@keyframes swLogoTicker {
    to {
        transform: translateX(-50%);
    }
}

.sw-home-team {
    background:
        radial-gradient(circle at 82% 8%, rgba(11, 154, 154, .1), transparent 32%),
        #fff;
}

.sw-home-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sw-home-team-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--sw-line);
    background: #fff;
    color: var(--sw-ink);
    padding: 18px;
    text-decoration: none;
    transition: border-color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.sw-home-team-card:hover,
.sw-home-team-card:focus-visible {
    border-color: rgba(11, 154, 154, .42);
    box-shadow: 0 18px 46px rgba(8, 32, 43, .12);
    transform: translateY(-4px);
}

.sw-home-team-card figure {
    aspect-ratio: 4 / 5;
    margin: 0 0 22px;
    overflow: hidden;
    background: var(--sw-mist);
}

.sw-home-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
    filter: saturate(.94) contrast(.98);
    transition: transform .5s ease;
}

.sw-home-team-card:hover img,
.sw-home-team-card:focus-visible img {
    transform: scale(1.035);
}

.sw-home-team-card h3 {
    margin: 0 0 12px;
    font-family: var(--sw-font-display);
    font-size: clamp(22px, 2vw, 27px);
    line-height: 1.08;
}

.sw-home-team-card > p:not(.sw-kicker) {
    margin: 0;
    color: var(--sw-muted);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .sw-home-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .sw-logo-band-inner {
        grid-template-columns: 1fr;
    }

    .sw-logo-ticker {
        border-left: 0;
    }

    .sw-home-team-grid {
        grid-template-columns: 1fr;
    }
}

/* Saltwater 0.4.13 leadership page. */
.sw-team-hero p:not(.sw-kicker) {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
}

.sw-page-hero .sw-leadership-headline,
.swi-demo-home .sw-leadership-headline {
    font-family: var(--sw-font-system);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.05;
}

.sw-leadership-headline span {
    display: block;
}

.sw-page-hero .sw-leadership-headline {
    max-width: 980px;
    font-size: clamp(46px, 6vw, 78px);
}

.sw-team-profile-grid {
    display: grid;
    gap: 24px;
}

.sw-team-profile-card {
    display: grid;
    grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: start;
    border: 1px solid var(--sw-line);
    background: #fff;
    padding: clamp(22px, 4vw, 42px);
    scroll-margin-top: 112px;
}

.sw-team-profile-card figure {
    position: sticky;
    top: 112px;
    aspect-ratio: 4 / 5;
    margin: 0;
    overflow: hidden;
    background: var(--sw-mist);
}

.sw-team-profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 24%;
}

.sw-team-profile-card .sw-kicker {
    color: var(--sw-blue);
}

.sw-team-profile-card h2,
.sw-fractional-section h2,
.sw-team-faq h2 {
    margin: 0 0 18px;
    font-family: var(--sw-font-display);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.sw-team-summary {
    color: var(--sw-blue);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 800;
    line-height: 1.2;
}

.sw-team-profile-card p:not(.sw-kicker),
.sw-fractional-grid p {
    color: var(--sw-muted);
    font-size: 18px;
}

.sw-team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.sw-team-tags li {
    border: 1px solid rgba(11, 154, 154, .32);
    padding: 8px 11px;
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sw-fractional-grid {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
    gap: clamp(30px, 7vw, 90px);
    align-items: start;
}

.sw-executive-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 30px);
    margin-top: clamp(42px, 6vw, 68px);
}

.sw-exec-card {
    border: 1px solid var(--sw-line);
    background: #fff;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 18px 44px rgba(8, 32, 43, .08);
}

.sw-exec-card.is-saltwater {
    border-color: rgba(11, 154, 154, .38);
    background: linear-gradient(180deg, #fff, rgba(216, 242, 239, .58));
}

.sw-exec-card-head {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
}

.sw-exec-card h3,
.sw-depth-intro h3 {
    margin: 4px 0 0;
    font-family: var(--sw-font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    line-height: 1;
}

.sw-exec-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-exec-card li {
    position: relative;
    padding: 0 0 0 24px;
    color: var(--sw-muted);
    font-size: 17px;
    line-height: 1.45;
}

.sw-exec-card li::before {
    position: absolute;
    top: .62em;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid var(--sw-teal);
    background: transparent;
    content: "";
    transform: rotate(45deg);
}

.sw-exec-card.is-saltwater li::before {
    background: var(--sw-teal);
}

.sw-exec-icon {
    position: relative;
    display: block;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(11, 154, 154, .32);
    background: var(--sw-mist);
}

.sw-exec-icon::before,
.sw-exec-icon::after {
    position: absolute;
    content: "";
}

.sw-exec-icon.is-single::before {
    top: 15px;
    left: 50%;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sw-blue);
    transform: translateX(-50%);
}

.sw-exec-icon.is-single::after {
    right: 19px;
    bottom: 16px;
    left: 19px;
    height: 26px;
    border-radius: 18px 18px 4px 4px;
    background: var(--sw-blue);
}

.sw-exec-icon.is-team {
    background:
        radial-gradient(circle at 32% 30%, #fff 0 7px, transparent 8px),
        radial-gradient(circle at 68% 30%, #fff 0 7px, transparent 8px),
        radial-gradient(circle at 32% 70%, #fff 0 7px, transparent 8px),
        radial-gradient(circle at 68% 70%, #fff 0 7px, transparent 8px),
        var(--sw-ink);
}

.sw-exec-icon.is-team::before,
.sw-exec-icon.is-team::after,
.sw-exec-icon.is-team span {
    display: none;
}

.sw-depth-compare {
    margin-top: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(11, 154, 154, .2);
    background: rgba(255, 255, 255, .78);
    padding: clamp(24px, 4vw, 42px);
}

.sw-depth-intro {
    max-width: 780px;
    margin-bottom: clamp(22px, 3vw, 34px);
}

.sw-depth-panels {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(18px, 3vw, 28px);
}

.sw-depth-panel {
    display: grid;
    align-content: start;
    gap: 13px;
    border: 1px solid var(--sw-line);
    background: #fff;
    padding: clamp(18px, 3vw, 28px);
}

.sw-depth-panel.is-saltwater {
    border-color: rgba(11, 154, 154, .42);
    background: var(--sw-mist);
}

.sw-depth-panel h4 {
    margin: 0 0 8px;
    font-family: var(--sw-font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    line-height: 1.05;
}

.sw-depth-row {
    display: grid;
    grid-template-columns: minmax(120px, .48fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.sw-depth-row span {
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .07em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sw-depth-row b {
    position: relative;
    display: block;
    height: 18px;
    overflow: hidden;
    border: 1px solid rgba(8, 32, 43, .1);
    background: #edf5f4;
}

.sw-depth-row b::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--sw-depth);
    background: repeating-linear-gradient(90deg, var(--sw-teal) 0 9px, rgba(11, 154, 154, .72) 9px 12px);
    content: "";
}

.sw-depth-panel:not(.is-saltwater) .sw-depth-row b::before {
    background: repeating-linear-gradient(90deg, var(--sw-blue) 0 9px, rgba(11, 58, 83, .74) 9px 12px);
}

.sw-depth-panel p {
    margin: 10px 0 0;
    color: var(--sw-muted);
    font-size: 16px;
    line-height: 1.45;
}

.sw-team-faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.sw-team-faq-list details {
    border: 1px solid var(--sw-line);
    background: #fff;
}

.sw-team-faq-list details[open] {
    border-color: rgba(11, 154, 154, .42);
    box-shadow: 0 18px 44px rgba(8, 32, 43, .08);
}

.sw-team-faq-list summary {
    position: relative;
    display: flex;
    min-height: 76px;
    align-items: center;
    padding: 22px 58px 22px 26px;
    color: var(--sw-ink);
    cursor: pointer;
    font-family: var(--sw-font-display);
    font-size: 20px;
    font-weight: 800;
    list-style: none;
}

.sw-team-faq-list summary::-webkit-details-marker {
    display: none;
}

.sw-team-faq-list summary::after {
    position: absolute;
    right: 26px;
    color: var(--sw-teal);
    content: "↓";
    font-family: var(--sw-font-system);
    transition: transform .22s ease;
}

.sw-team-faq-list details[open] summary::after {
    transform: rotate(180deg);
}

.sw-team-faq-list p {
    max-width: 820px;
    margin: 0;
    padding: 0 26px 20px;
    color: var(--sw-muted);
}

@media (max-width: 900px) {
    .sw-team-profile-card,
    .sw-fractional-grid,
    .sw-executive-compare,
    .sw-depth-panels {
        grid-template-columns: 1fr;
    }

    .sw-team-profile-card figure {
        position: static;
        max-width: 420px;
    }

    .sw-exec-card-head {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .sw-exec-icon {
        width: 58px;
        height: 58px;
    }

}

@media (max-width: 620px) {
    .sw-depth-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* Saltwater 0.4.14 clean homepage sections. */
.sw-home-team-close {
    max-width: 860px;
    margin: clamp(34px, 5vw, 52px) auto 0;
    color: var(--sw-blue);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.sw-why-clean {
    background: #fff;
}

.sw-why-clean-grid,
.sw-selected-work-grid {
    display: grid;
    gap: 16px;
}

.sw-why-clean-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sw-why-clean-card {
    min-height: 285px;
    border: 1px solid var(--sw-line);
    background: #fff;
    padding: clamp(24px, 3vw, 36px);
    transition: background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.sw-why-clean-card:hover,
.sw-why-clean-card:focus-within {
    border-color: rgba(11, 154, 154, .34);
    background: rgba(216, 242, 239, .68);
    box-shadow: 0 18px 42px rgba(8, 32, 43, .08);
    transform: translateY(-2px);
}

.sw-why-clean-card span,
.sw-selected-work-card span {
    display: block;
    margin: 0 0 56px;
    color: var(--sw-teal);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sw-why-clean-card h3,
.sw-selected-work-card h3 {
    margin: 0 0 14px;
    font-family: var(--sw-font-display);
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.04;
}

.sw-why-clean-card p,
.sw-selected-work-card p {
    margin: 0;
    color: var(--sw-muted);
    font-size: 17px;
    line-height: 1.55;
}

.sw-industries-clean {
    background: #fff;
}

.sw-industries-clean .sw-client-chips {
    margin-top: 10px;
}

.sw-selected-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sw-selected-work-card {
    min-height: 255px;
    border: 1px solid var(--sw-line);
    background: #fff;
    padding: clamp(24px, 4vw, 38px);
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

.sw-selected-work-card:hover,
.sw-selected-work-card:focus-within {
    border-color: rgba(11, 154, 154, .38);
    box-shadow: 0 18px 42px rgba(8, 32, 43, .08);
    transform: translateY(-2px);
}

.sw-selected-work-card span {
    margin-bottom: 42px;
}

.sw-selected-work-card h3 em {
    display: block;
    color: var(--sw-muted);
    font-size: .62em;
    font-style: normal;
    line-height: 1.1;
}

.sw-clean-cta {
    background: #fff;
}

@media (max-width: 900px) {
    .sw-selected-work-grid {
        grid-template-columns: 1fr;
    }

    .sw-why-clean-card,
    .sw-selected-work-card {
        min-height: 0;
    }

    .sw-why-clean-card span,
    .sw-selected-work-card span {
        margin-bottom: 30px;
    }
}

/* Saltwater 0.4.16 homepage type and heading system. */
.home .sw-hero-content::before {
    display: none;
}

.home .sw-kicker {
    margin-bottom: 16px;
    color: var(--sw-teal);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home .sw-hero .sw-kicker {
    color: var(--sw-aqua);
}

.home .sw-hero-title {
    max-width: 980px;
    color: #fff;
    font-family: var(--sw-font-display);
    font-size: clamp(48px, 6.7vw, 84px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.home .sw-hero-line {
    max-width: 920px;
    margin-top: 24px;
    color: #fff;
    font-family: var(--sw-font-system);
    font-size: clamp(21px, 2.7vw, 34px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.home .sw-hero-subcopy {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(17px, 1.55vw, 21px);
    line-height: 1.55;
}

.home .sw-section-heading {
    grid-template-columns: minmax(280px, .86fr) minmax(0, 1.14fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
    margin-bottom: clamp(36px, 5vw, 58px);
}

.home .sw-section-heading h2,
.home .sw-final-cta h2 {
    max-width: 760px;
    color: var(--sw-ink);
    font-family: var(--sw-font-display);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
}

.home .sw-section-heading > p,
.home .sw-section-heading div + p {
    max-width: 690px;
    color: var(--sw-muted);
    font-size: clamp(18px, 1.75vw, 25px);
    line-height: 1.45;
}

.home .sw-service-card h3,
.home .sw-home-team-card h3,
.home .sw-why-clean-card h3,
.home .sw-selected-work-card h3 {
    font-family: var(--sw-font-display);
    font-weight: 900;
    letter-spacing: 0;
}

.home .sw-home-team .sw-section-heading {
    display: block;
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.home .sw-home-team .sw-section-heading h2 {
    max-width: 920px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(44px, 5.8vw, 76px);
    line-height: 1.04;
}

.home .sw-home-team .sw-section-heading > p,
.home .sw-home-team .sw-section-heading div + p {
    max-width: 760px;
    margin: 26px auto 0;
    font-size: clamp(18px, 1.45vw, 22px);
}

.home .sw-service-card p,
.home .sw-home-team-card > p:not(.sw-kicker),
.home .sw-why-clean-card p,
.home .sw-selected-work-card p {
    font-family: var(--sw-font-body);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 900px) {
    .home .sw-section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home .sw-section-heading h2,
    .home .sw-final-cta h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .home .sw-hero-title {
        font-size: clamp(42px, 12vw, 58px);
    }
}

/* Saltwater 0.4.18 demo homepage rebuild. */
.swi-demo-home {
    --demo-navy: #171e26;
    --demo-navy-dark: #10151b;
    --demo-white: #fff;
    --demo-off: #f8f5f2;
    --demo-gold: #ad6542;
    --demo-slate: #626b73;
    --demo-body: #28313a;
    --demo-line: #e3d8d1;
    --demo-shadow: 0 22px 60px rgba(23, 30, 38, .14);
    background: var(--demo-white);
    color: var(--demo-body);
    font-family: var(--sw-font-body);
    font-size: 16px;
    line-height: 1.6;
}

.swi-demo-home *,
.swi-demo-home *::before,
.swi-demo-home *::after {
    box-sizing: border-box;
}

.swi-demo-home img,
.swi-demo-home video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swi-demo-home a {
    color: inherit;
    text-decoration: none;
}

.swi-demo-home h1,
.swi-demo-home h2,
.swi-demo-home h3,
.swi-demo-home p {
    margin-top: 0;
}

.swi-demo-home h1,
.swi-demo-home h2,
.swi-demo-home h3 {
    color: var(--demo-navy);
    font-family: var(--sw-font-display);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.swi-demo-home h1 {
    max-width: 920px;
    margin-bottom: 22px;
    color: var(--demo-white);
    font-size: clamp(54px, 7.4vw, 82px);
}

.swi-demo-home h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 5.2vw, 58px);
}

.swi-demo-home h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.swi-demo-home .eyebrow,
.swi-demo-home .section-marker,
.swi-demo-home .card-kicker {
    margin-bottom: 14px;
    color: var(--demo-gold);
    font-family: var(--sw-font-system);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.swi-demo-home .button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--demo-navy);
    border-radius: 4px;
    padding: 0 26px;
    color: var(--demo-navy);
    font-family: var(--sw-font-system);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .28s ease, color .28s ease, border-color .28s ease, transform .28s ease;
}

.swi-demo-home .button:hover,
.swi-demo-home .button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--demo-gold);
    background: var(--demo-gold);
    color: var(--demo-navy);
}

.swi-demo-home .hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: 148px clamp(24px, 7vw, 88px) 72px;
    background: var(--demo-navy-dark);
}

.swi-demo-home .hero-bg,
.swi-demo-home .hero-overlay {
    position: absolute;
    inset: 0;
}

.swi-demo-home .hero-bg video {
    filter: saturate(.96) contrast(1) brightness(.9);
    transform: scale(1.025);
}

.swi-demo-home .hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 20, 24, .56) 0%, rgba(8, 20, 24, .34) 48%, rgba(8, 20, 24, .08) 100%),
        linear-gradient(180deg, rgba(8, 20, 24, .08), rgba(8, 20, 24, .26));
}

.swi-demo-home .hero-inner {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
}

.swi-demo-home .hero-subhead,
.swi-demo-home .hero-copy {
    color: rgba(255, 255, 255, .88);
}

.swi-demo-home .hero-subhead {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(21px, 2.3vw, 26px);
    font-weight: 800;
    line-height: 1.45;
}

.swi-demo-home .hero-copy {
    max-width: 690px;
    margin-bottom: 34px;
    font-size: clamp(20px, 1.7vw, 24px);
    line-height: 1.52;
}

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

.swi-demo-home .button.light {
    border-color: var(--demo-white);
    background: var(--demo-white);
    color: var(--demo-navy);
}

.swi-demo-home .button.ghost {
    border-color: rgba(255, 255, 255, .78);
    color: var(--demo-white);
}

.swi-demo-home .button.gold {
    border-color: var(--demo-gold);
    background: var(--demo-gold);
    color: var(--demo-navy);
}

.swi-demo-home .button.centered {
    width: fit-content;
    margin: 42px auto 0;
}

.swi-demo-home .hero-motion {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    animation: demoHeroRise .9s cubic-bezier(.2, .72, .2, 1) forwards;
}

.swi-demo-home .motion-1 {
    animation-delay: .08s;
}

.swi-demo-home .motion-2 {
    animation-delay: .2s;
}

.swi-demo-home .motion-3 {
    animation-delay: .34s;
}

.swi-demo-home .motion-4 {
    animation-delay: .48s;
}

.swi-demo-home .motion-5 {
    animation-delay: .62s;
}

@keyframes demoHeroRise {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.swi-demo-home .press,
.swi-demo-home .section-band,
.swi-demo-home .why,
.swi-demo-home .industries,
.swi-demo-home .work,
.swi-demo-home .cta {
    padding: 84px clamp(24px, 6vw, 80px);
}

.swi-demo-home .press {
    display: grid;
    grid-template-columns: minmax(220px, .6fr) minmax(440px, 1.3fr);
    gap: clamp(34px, 7vw, 100px);
    align-items: start;
    overflow: hidden;
    background: var(--demo-white);
}

.swi-demo-home .press h2 {
    max-width: 840px;
}

.swi-demo-home .press-ticker {
    grid-column: 1 / -1;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--demo-line);
    border-bottom: 1px solid var(--demo-line);
}

.swi-demo-home .press-track {
    display: flex;
    width: max-content;
    animation: demoPressTicker 28s linear infinite;
}

.swi-demo-home .press-logo {
    display: grid;
    width: clamp(180px, 18vw, 280px);
    min-height: 92px;
    place-items: center;
    border-right: 1px solid var(--demo-line);
    padding: 0 22px;
    color: var(--demo-navy);
    font-family: var(--sw-font-system);
    font-size: clamp(17px, 1.8vw, 25px);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
}

.swi-demo-home .press-logo img {
    display: block;
    width: auto;
    max-width: min(76%, 190px);
    height: auto;
    max-height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(10%) sepia(25%) saturate(1396%) hue-rotate(155deg) brightness(87%) contrast(96%);
}

.swi-demo-home .press-logo-wordmark {
    display: block;
    color: var(--demo-navy);
    font-family: var(--sw-font-system);
    font-size: clamp(16px, 1.55vw, 23px);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
}

.swi-demo-home .press-logo--forbes img {
    max-height: 54px;
}

.swi-demo-home .press-logo--prweek img,
.swi-demo-home .press-logo--bulldog-reporter img,
.swi-demo-home .press-logo--search-engine-watch img {
    max-width: min(84%, 220px);
}

.swi-demo-home .press-logo--readwrite img {
    max-width: min(72%, 180px);
}

.swi-demo-home .press-logo--palm-beach-new-times .press-logo-wordmark,
.swi-demo-home .press-logo--broward-new-times .press-logo-wordmark,
.swi-demo-home .press-logo--balancing-act .press-logo-wordmark {
    font-size: clamp(14px, 1.35vw, 20px);
    line-height: 1.1;
}

@keyframes demoPressTicker {
    to {
        transform: translateX(-50%);
    }
}

.swi-demo-home .section-band,
.swi-demo-home .work {
    background: var(--demo-off);
}

.swi-demo-home .section-heading {
    max-width: 920px;
    margin: 0 auto 54px;
    text-align: center;
}

.swi-demo-home .section-heading p:not(.eyebrow):not(.section-marker) {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    color: var(--demo-slate);
    font-size: 18px;
}

.swi-demo-home .section-heading .sw-leadership-headline {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 4.4vw, 54px);
}

.swi-demo-home .team-grid,
.swi-demo-home .pillar-grid,
.swi-demo-home .industry-grid,
.swi-demo-home .case-grid,
.swi-demo-home .why-grid {
    display: grid;
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
}

.swi-demo-home .team-grid,
.swi-demo-home .pillar-grid,
.swi-demo-home .case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.swi-demo-home .why-grid,
.swi-demo-home .industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.swi-demo-home .team-card,
.swi-demo-home .why-card,
.swi-demo-home .pillar-card,
.swi-demo-home .industry-card,
.swi-demo-home .case-card {
    border: 1px solid var(--demo-line);
    border-radius: 8px;
    background: var(--demo-white);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.swi-demo-home .team-card:hover,
.swi-demo-home .team-card:focus-visible,
.swi-demo-home .why-card:hover,
.swi-demo-home .pillar-card:hover,
.swi-demo-home .pillar-card:focus-visible,
.swi-demo-home .industry-card:hover,
.swi-demo-home .case-card:hover,
.swi-demo-home .case-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(201, 165, 99, .55);
    box-shadow: var(--demo-shadow);
}

.swi-demo-home .team-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: inherit;
}

.swi-demo-home .team-card figure {
    aspect-ratio: 4 / 5;
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--demo-line);
}

.swi-demo-home .team-card figure img {
    object-position: 50% 28%;
    filter: saturate(.94) contrast(.98);
    transition: transform .5s ease;
}

.swi-demo-home .team-card:nth-child(1) figure img {
    object-position: 50% 12%;
}

.swi-demo-home .team-card:nth-child(3) figure img {
    object-position: 50% 24%;
}

.swi-demo-home .team-card:hover figure img,
.swi-demo-home .team-card:focus-visible figure img {
    transform: scale(1.035);
}

.swi-demo-home .team-card h3,
.swi-demo-home .why-card h3,
.swi-demo-home .pillar-card h3,
.swi-demo-home .industry-card h3,
.swi-demo-home .case-card h3 {
    font-size: 24px;
}

.swi-demo-home .team-card p,
.swi-demo-home .why-card p,
.swi-demo-home .pillar-card li,
.swi-demo-home .industry-card p,
.swi-demo-home .case-card p {
    color: var(--demo-slate);
}

.swi-demo-home .specialties {
    margin-top: auto;
    color: var(--demo-navy) !important;
    font-family: var(--sw-font-system);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.swi-demo-home blockquote {
    margin: 8px 0 0;
    padding-top: 16px;
    border-top: 1px solid var(--demo-line);
    color: var(--demo-slate);
    font-size: 17px;
    font-style: italic;
}

.swi-demo-home .team-close {
    max-width: 860px;
    margin: 48px auto 0;
    color: var(--demo-navy);
    font-size: 20px;
    text-align: center;
}

.swi-demo-home .why,
.swi-demo-home .industries {
    background: var(--demo-white);
}

.swi-demo-home .why-card,
.swi-demo-home .industry-card {
    padding: 28px;
}

.swi-demo-home .why-card span,
.swi-demo-home .pillar-card span {
    display: block;
    margin-bottom: 26px;
    color: var(--demo-gold);
    font-size: 22px;
    font-weight: 900;
}

.swi-demo-home .roi-callout {
    max-width: 1040px;
    margin: 36px auto 0;
    border-left: 4px solid var(--demo-gold);
    border-radius: 8px;
    padding: 34px 38px;
    background: var(--demo-line);
}

.swi-demo-home .roi-callout h3 {
    margin-bottom: 8px;
}

.swi-demo-home .roi-callout p {
    margin-bottom: 0;
    color: var(--demo-slate);
    font-size: 18px;
}

.swi-demo-home .pillar-card {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: 32px;
}

.swi-demo-home .pillar-card:hover h3,
.swi-demo-home .pillar-card:hover b {
    color: var(--demo-gold);
}

.swi-demo-home .pillar-card ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 26px;
    padding: 0;
    list-style: none;
}

.swi-demo-home .pillar-card li {
    position: relative;
    padding-left: 18px;
}

.swi-demo-home .pillar-card li::before {
    position: absolute;
    top: .7em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--demo-gold);
    content: "";
}

.swi-demo-home .pillar-card b {
    margin-top: auto;
    color: var(--demo-navy);
    font-size: 15px;
    transition: color .25s ease;
}

.swi-demo-home .pillar-card b::after {
    color: var(--demo-gold);
    content: " ->";
}

.swi-demo-home .industry-card {
    border-top: 5px solid var(--demo-navy);
}

.swi-demo-home .industry-card.gold {
    border-top-color: var(--demo-gold);
}

.swi-demo-home .industry-card span {
    display: block;
    margin-top: 22px;
    color: var(--demo-navy);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.swi-demo-home .case-card {
    overflow: hidden;
}

.swi-demo-home .case-card img {
    height: auto;
    aspect-ratio: 16 / 10;
}

.swi-demo-home .case-card span {
    display: inline-flex;
    margin: 24px 24px 10px;
    border-radius: 999px;
    padding: 5px 10px;
    background: var(--demo-navy);
    color: var(--demo-white);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.swi-demo-home .case-card h3,
.swi-demo-home .case-card p {
    margin-right: 24px;
    margin-left: 24px;
}

.swi-demo-home .case-card h3 {
    margin-bottom: 10px;
}

.swi-demo-home .case-card em {
    display: block;
    color: var(--demo-gold);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-style: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.swi-demo-home .case-card p {
    margin-bottom: 28px;
}

.swi-demo-home .cta {
    display: grid;
    min-height: 70vh;
    align-content: center;
    background: var(--demo-navy);
    color: var(--demo-white);
}

.swi-demo-home .cta h2 {
    max-width: 850px;
    color: var(--demo-white);
}

.swi-demo-home .cta p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .82);
    font-size: 20px;
}

.swi-demo-home .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .85s cubic-bezier(.2, .7, .2, 1), transform .85s cubic-bezier(.2, .7, .2, 1);
}

.swi-demo-home .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .swi-demo-home .team-grid,
    .swi-demo-home .pillar-grid,
    .swi-demo-home .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swi-demo-home .why-grid,
    .swi-demo-home .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swi-demo-home .press-logo {
        width: 220px;
    }
}

@media (max-width: 900px) {
    .swi-demo-home .press {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .swi-demo-home .hero {
        min-height: 92svh;
        padding: 116px 22px 58px;
    }

    .swi-demo-home .hero-actions,
    .swi-demo-home .button {
        width: 100%;
    }

    .swi-demo-home .press,
    .swi-demo-home .section-band,
    .swi-demo-home .why,
    .swi-demo-home .industries,
    .swi-demo-home .work,
    .swi-demo-home .cta {
        padding: 62px 22px;
    }

    .swi-demo-home .team-grid,
    .swi-demo-home .why-grid,
    .swi-demo-home .pillar-grid,
    .swi-demo-home .industry-grid,
    .swi-demo-home .case-grid {
        grid-template-columns: 1fr;
    }

    .swi-demo-home .section-heading {
        text-align: left;
    }

    .swi-demo-home .section-heading p:not(.eyebrow):not(.section-marker) {
        margin-left: 0;
    }

    .swi-demo-home .pillar-card {
        min-height: auto;
    }
}

/* 2.1.1 — native charcoal header lockup with no image canvas. */
.sw-site-header {
    background: #171e26;
}

.sw-header-inner {
    min-height: 138px;
}

.ip-brand-lockup {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ip-brand-symbol {
    position: relative;
    display: block;
    width: 104px;
    height: 100px;
    flex: 0 0 104px;
}

.ip-brand-symbol i {
    position: absolute;
    display: block;
}

.ip-brand-symbol__upper,
.ip-brand-symbol__lower {
    left: 2px;
    width: 86px;
    height: 8px;
    border-radius: 1px;
    transform-origin: left center;
}

.ip-brand-symbol__upper {
    top: 2px;
    background: linear-gradient(90deg, #f5f5f3, #fff);
    transform: rotate(32deg);
}

.ip-brand-symbol__lower {
    top: 93px;
    background: linear-gradient(90deg, #b95624, #d9783c);
    transform: rotate(-32deg);
}

.ip-brand-symbol__point {
    top: 39px;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #d46f34;
}

.ip-brand-words {
    display: grid;
    width: max-content;
    max-width: 390px;
    gap: 8px;
    color: #fff;
    line-height: 1;
}

.ip-brand-words strong {
    font-family: var(--sw-font-body);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.ip-brand-words > i {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c5662f, #df8b59);
}

.ip-brand-words small {
    color: rgba(255, 255, 255, .88);
    font-family: var(--sw-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
}

.swi-demo-home .hero {
    min-height: calc(100svh - 138px);
}

@media (max-width: 1120px) {
    .sw-header-inner { min-height: 118px; }
    .ip-brand-lockup { gap: 14px; }
    .ip-brand-symbol { width: 78px; height: 76px; flex-basis: 78px; transform: scale(.76); transform-origin: left center; margin-right: -18px; }
    .ip-brand-words { max-width: 280px; gap: 6px; }
    .ip-brand-words strong { font-size: 18px; letter-spacing: .18em; }
    .ip-brand-words small { font-size: 7px; letter-spacing: .18em; }
    .swi-demo-home .hero { min-height: calc(100svh - 118px); }
}

@media (max-width: 900px) {
    .sw-header-inner { min-height: 104px; }
    .ip-brand-words strong { font-size: 17px; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 104px); }
    .swi-demo-home .hero { min-height: calc(100svh - 104px); }
}

@media (max-width: 640px) {
    .sw-header-inner { min-height: 92px; gap: 10px; }
    .ip-brand-lockup { gap: 8px; }
    .ip-brand-symbol { transform: scale(.56); margin-right: -34px; }
    .ip-brand-words { max-width: 160px; gap: 5px; }
    .ip-brand-words strong { font-size: 12px; letter-spacing: .13em; }
    .ip-brand-words small { font-size: 5.5px; letter-spacing: .12em; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 92px); }
    .swi-demo-home .hero { min-height: calc(100svh - 92px); }
}

/* Saltwater 0.4.30 eyebrow contrast refresh. */
.sw-kicker,
.home .sw-kicker,
.sw-work-eyebrow .sw-kicker,
.sw-team-profile-card .sw-kicker,
.sw-service-card span,
.sw-pillar-card > span,
.sw-industry-card > span,
.sw-process-step span,
.sw-work-card > div p,
.sw-why-clean-card span,
.sw-selected-work-card span,
.swi-demo-home .eyebrow,
.swi-demo-home .card-kicker {
    color: var(--sw-blue) !important;
}

.sw-hero .sw-kicker,
.home .sw-hero .sw-kicker,
.sw-statement-card .sw-kicker,
.sw-final-cta .sw-kicker,
.sw-service-cta .sw-kicker,
.sw-gsm-hero .sw-kicker,
.sw-gsm-contact .sw-kicker,
.sw-gsm-proof .sw-kicker,
.swi-demo-home .hero .eyebrow,
.swi-demo-home .cta .eyebrow {
    color: var(--sw-gold) !important;
}

/* Saltwater 0.4.31 homepage press ticker hardening. */
.swi-demo-home .press-ticker {
    display: block !important;
    overflow: hidden !important;
}

.swi-demo-home .press-track {
    display: flex !important;
    width: max-content !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.swi-demo-home .press-logo {
    display: grid !important;
    flex: 0 0 clamp(190px, 18vw, 280px) !important;
    width: clamp(190px, 18vw, 280px) !important;
    min-width: clamp(190px, 18vw, 280px) !important;
    min-height: 96px !important;
    place-items: center !important;
    padding: 0 24px !important;
    border-right: 1px solid var(--demo-line) !important;
    color: var(--demo-navy) !important;
    text-align: center !important;
    white-space: normal !important;
}

.swi-demo-home .press-logo img {
    display: block !important;
    width: auto !important;
    max-width: min(78%, 190px) !important;
    height: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

.swi-demo-home .press-logo-wordmark {
    display: block !important;
    color: var(--demo-navy) !important;
    line-height: 1.08 !important;
    overflow-wrap: normal !important;
}

/* Saltwater 0.4.32 selected work restoration. */
.swi-demo-home .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
    .swi-demo-home .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .swi-demo-home .case-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Saltwater 0.4.36 impact-led selected work gallery. */
.swi-demo-home .impact-work {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff 0%, var(--demo-off) 42%, #fff 100%);
}

.swi-demo-home .impact-work::before {
    position: absolute;
    top: 120px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 1px;
    background: var(--demo-line);
    content: "";
}

.swi-demo-home .impact-work > * {
    position: relative;
    z-index: 1;
}

.swi-demo-home .work-heading {
    display: grid;
    max-width: 1280px;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .78fr);
    gap: clamp(28px, 5vw, 84px);
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 76px);
    text-align: left;
}

.swi-demo-home .work-heading .section-marker {
    grid-column: 1 / -1;
    margin-bottom: -10px;
}

.swi-demo-home .work-heading h2 {
    margin: 0;
    font-size: clamp(58px, 11vw, 158px);
    line-height: .82;
}

.swi-demo-home .section-heading.work-heading p:not(.eyebrow):not(.section-marker) {
    max-width: 620px;
    margin: 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
}

.swi-demo-home .impact-grid {
    display: grid;
    max-width: 1480px;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(16px, 2vw, 28px);
    align-items: stretch;
}

.swi-demo-home .impact-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --shift-x: 0px;
    --shift-y: 0px;
    position: relative;
    display: grid;
    min-height: clamp(430px, 48vw, 640px);
    grid-column: span 4;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--demo-navy);
    color: var(--demo-white);
    isolation: isolate;
    perspective: 900px;
    text-decoration: none;
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
    transform-style: preserve-3d;
    transition: transform .42s cubic-bezier(.2, .7, .2, 1), box-shadow .42s ease;
}

.swi-demo-home .impact-card.is-featured {
    min-height: clamp(560px, 58vw, 760px);
    grid-column: span 6;
}

.swi-demo-home .impact-card.is-wide {
    grid-column: span 8;
}

.swi-demo-home .impact-card:nth-child(3),
.swi-demo-home .impact-card:nth-child(6) {
    margin-top: clamp(0px, 4vw, 62px);
}

.swi-demo-home .impact-card::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(8, 32, 43, .06) 0%, rgba(8, 32, 43, .32) 42%, rgba(8, 32, 43, .9) 100%),
        linear-gradient(90deg, rgba(8, 32, 43, .48), transparent 58%);
    content: "";
    opacity: .88;
    transition: opacity .35s ease;
}

.swi-demo-home .impact-card figure {
    position: absolute;
    inset: -18px;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    background: var(--demo-line);
    transform: translate3d(calc(var(--shift-x) * -.55), calc(var(--shift-y) * -.55), 0);
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.swi-demo-home .impact-card figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    filter: saturate(.9) contrast(1.02);
    object-fit: cover;
    transform: scale(1.035);
    transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .45s ease;
}

.swi-demo-home .impact-card:nth-child(1) figure img,
.swi-demo-home .impact-card:nth-child(3) figure img {
    object-position: 50% 50%;
}

.swi-demo-home .impact-card:nth-child(5) figure img {
    object-position: 52% 26%;
}

.swi-demo-home .impact-card-copy {
    position: relative;
    z-index: 3;
    align-self: end;
    padding: clamp(24px, 4vw, 44px);
    transform: translate3d(calc(var(--shift-x) * .35), calc(var(--shift-y) * .2), 38px);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.swi-demo-home .impact-card span {
    display: inline-flex;
    margin: 0 0 clamp(14px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 0;
    background: rgba(255, 255, 255, .1);
    color: var(--demo-white);
    backdrop-filter: blur(12px);
}

.swi-demo-home .impact-card h3,
.swi-demo-home .impact-card p {
    margin-right: 0;
    margin-left: 0;
}

.swi-demo-home .impact-card h3 {
    max-width: 620px;
    margin-bottom: 14px;
    color: var(--demo-white);
    font-size: clamp(34px, 5vw, 74px);
    line-height: .92;
}

.swi-demo-home .impact-card:not(.is-featured) h3 {
    font-size: clamp(28px, 3vw, 44px);
}

.swi-demo-home .impact-card em {
    color: var(--demo-gold);
}

.swi-demo-home .impact-card p {
    max-width: 560px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.45;
}

.swi-demo-home .impact-card b {
    display: inline-flex;
    align-items: center;
    color: var(--demo-gold);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.swi-demo-home .impact-card b::after {
    display: inline-block;
    margin-left: 12px;
    content: "->";
    transition: transform .24s ease;
}

.swi-demo-home .impact-card:hover,
.swi-demo-home .impact-card:focus-visible {
    border-color: transparent;
    box-shadow: 0 34px 80px rgba(8, 32, 43, .22);
}

.swi-demo-home .impact-card:hover::after,
.swi-demo-home .impact-card:focus-visible::after {
    opacity: .78;
}

.swi-demo-home .impact-card:hover figure img,
.swi-demo-home .impact-card:focus-visible figure img {
    filter: saturate(1.06) contrast(1.05);
    transform: scale(1.105);
}

.swi-demo-home .impact-card:hover b::after,
.swi-demo-home .impact-card:focus-visible b::after {
    transform: translateX(6px);
}

.swi-demo-home .impact-card.reveal {
    transform: translateY(42px) scale(.985);
}

.swi-demo-home .impact-card.reveal.is-visible {
    transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0) scale(1);
    transition-delay: var(--sw-delay, 0ms);
}

@media (max-width: 1040px) {
    .swi-demo-home .work-heading {
        grid-template-columns: 1fr;
    }

    .swi-demo-home .work-heading .section-marker {
        margin-bottom: 0;
    }

    .swi-demo-home .impact-card,
    .swi-demo-home .impact-card.is-featured,
    .swi-demo-home .impact-card.is-wide {
        min-height: clamp(430px, 74vw, 620px);
        grid-column: span 6;
    }

    .swi-demo-home .impact-card:nth-child(3),
    .swi-demo-home .impact-card:nth-child(6) {
        margin-top: 0;
    }
}

@media (max-width: 680px) {
    .swi-demo-home .impact-grid {
        grid-template-columns: 1fr !important;
    }

    .swi-demo-home .impact-card,
    .swi-demo-home .impact-card.is-featured,
    .swi-demo-home .impact-card.is-wide {
        min-height: 460px;
        grid-column: 1 / -1;
    }

    .swi-demo-home .impact-card-copy {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swi-demo-home .impact-card,
    .swi-demo-home .impact-card figure,
    .swi-demo-home .impact-card figure img,
    .swi-demo-home .impact-card-copy {
        transform: none !important;
        transition-duration: .01ms !important;
    }
}

/* Saltwater 0.4.33 process page visuals. */
.sw-process-page {
    display: grid;
    gap: clamp(58px, 8vw, 108px);
}

.sw-process-page > .wp-block-group__inner-container,
.sw-process-model > .wp-block-group__inner-container,
.sw-process-flow > .wp-block-group__inner-container,
.sw-process-flow-grid > .wp-block-group__inner-container,
.sw-process-roadmap > .wp-block-group__inner-container,
.sw-process-quarter > .wp-block-group__inner-container,
.sw-process-principles > .wp-block-group__inner-container {
    display: contents;
}

.sw-process-model {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 18px;
}

.sw-process-model-card {
    display: grid;
    align-content: start;
    min-height: 330px;
    padding: clamp(28px, 4vw, 50px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 52px rgba(8, 32, 43, .06);
}

.sw-process-model-card.is-primary {
    border-color: rgba(11, 154, 154, .34);
    background: linear-gradient(135deg, rgba(216, 242, 239, .86), #fff 68%);
}

.sw-process-model-card h3,
.sw-process-flow h2,
.sw-process-roadmap h2,
.sw-process-embedded h2,
.sw-process-principles h2 {
    margin: 0 0 18px;
    font-family: var(--sw-font-display);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .98;
}

.sw-process-model-card h3 {
    font-size: clamp(32px, 4vw, 56px);
}

.sw-process-model-card p:not(.sw-kicker),
.sw-process-roadmap-intro p,
.sw-process-principles p {
    color: var(--sw-muted);
}

.sw-process-flow {
    display: grid;
    gap: 28px;
}

.sw-process-flow-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-process-flow-step {
    min-height: 300px;
    padding: clamp(22px, 3vw, 34px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    background: #fff;
}

.sw-process-flow-step span,
.sw-process-quarter-card span {
    display: block;
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-process-flow-step h3 {
    margin: 56px 0 12px;
    font-family: var(--sw-font-display);
    font-size: clamp(25px, 2.6vw, 36px);
    line-height: 1;
}

.sw-process-flow-step p,
.sw-process-quarter-card p,
.sw-process-embedded p,
.sw-process-embedded li {
    color: var(--sw-muted);
}

.sw-process-roadmap {
    display: grid;
    gap: clamp(28px, 5vw, 58px);
    padding: clamp(36px, 6vw, 72px);
    border-radius: 8px;
    background: var(--sw-mist);
}

.sw-process-roadmap-intro {
    max-width: 920px;
}

.sw-process-quarter {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sw-process-quarter-line {
    position: absolute;
    top: 30px;
    right: 12%;
    left: 12%;
    height: 2px;
    background: rgba(11, 154, 154, .24);
}

.sw-process-quarter-card {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 240px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(11, 154, 154, .24);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(8, 32, 43, .05);
}

.sw-process-quarter-card::before {
    display: block;
    width: 22px;
    height: 22px;
    margin-bottom: 18px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--sw-teal);
    box-shadow: 0 0 0 1px rgba(11, 154, 154, .32);
    content: "";
}

.sw-process-quarter-card h3 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
}

.sw-process-embedded {
    gap: clamp(24px, 5vw, 64px);
    align-items: stretch;
}

.sw-process-embedded > .wp-block-column {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-process-embedded > .wp-block-column:last-child {
    background: linear-gradient(180deg, #fff, rgba(244, 240, 232, .72));
}

.sw-process-embedded ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-process-embedded li {
    position: relative;
    padding-left: 28px;
    font-size: 18px;
    line-height: 1.45;
}

.sw-process-embedded li::before {
    position: absolute;
    top: .6em;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--sw-teal);
    content: "";
    transform: rotate(45deg);
}

.sw-process-specialist-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sw-process-principles {
    max-width: 980px;
    padding-left: clamp(20px, 4vw, 38px);
    border-left: 4px solid var(--sw-gold);
}

@media (max-width: 1100px) {
    .sw-process-flow-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sw-process-specialist-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .sw-process-model,
    .sw-process-flow-grid,
    .sw-process-quarter {
        grid-template-columns: 1fr;
    }

    .sw-process-quarter-line {
        display: none;
    }
}

/* Saltwater 0.4.34 services overview refresh. */
.sw-services-expanded {
    display: grid;
    gap: clamp(58px, 8vw, 108px);
}

.sw-services-expanded > .wp-block-group__inner-container,
.sw-services-operating-model > .wp-block-group__inner-container,
.sw-services-scaling > .wp-block-group__inner-container,
.sw-services-scale-grid > .wp-block-group__inner-container {
    display: contents;
}

.sw-services-operating-model {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.sw-services-model-panel {
    min-height: 360px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(216, 242, 239, .8), #fff 62%);
    box-shadow: 0 18px 52px rgba(8, 32, 43, .06);
}

.sw-services-model-panel.is-dark {
    border-color: rgba(8, 32, 43, .2);
    background: var(--sw-ink);
    color: #fff;
}

.sw-services-model-panel.is-dark p:not(.sw-kicker) {
    color: rgba(255, 255, 255, .72);
}

.sw-services-model-panel h3,
.sw-services-scaling h2 {
    margin: 0 0 18px;
    font-family: var(--sw-font-display);
    font-weight: 800;
    letter-spacing: 0;
    line-height: .98;
}

.sw-services-model-panel h3 {
    font-size: clamp(34px, 4.5vw, 62px);
}

.sw-services-model-panel p:not(.sw-kicker),
.sw-services-scale-card p {
    color: var(--sw-muted);
}

.sw-services-scaling {
    display: grid;
    gap: 30px;
}

.sw-services-scale-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sw-services-scale-card {
    min-height: 300px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-services-scale-card span {
    display: block;
    margin-bottom: clamp(34px, 5vw, 66px);
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-services-scale-card h3 {
    margin: 0 0 12px;
    font-family: var(--sw-font-display);
    font-size: clamp(25px, 2.6vw, 36px);
    font-weight: 800;
    line-height: 1;
}

.sw-services-grid-expanded {
    border: 0;
    gap: 14px;
}

.sw-services-grid-expanded .sw-service-overview-card {
    min-height: 360px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 42px rgba(8, 32, 43, .04);
}

.sw-services-grid-expanded .sw-service-overview-card:hover,
.sw-services-grid-expanded .sw-service-overview-card:focus-within {
    border-color: rgba(11, 154, 154, .38);
    box-shadow: 0 22px 60px rgba(8, 32, 43, .08);
}

.sw-services-grid-expanded .sw-service-overview-card .sw-kicker {
    margin-bottom: clamp(42px, 5vw, 72px);
}

.sw-services-grid-expanded .sw-service-overview-card h3 {
    font-size: clamp(25px, 2.7vw, 38px);
}

.sw-services-depth {
    margin-top: 0;
}

@media (max-width: 1050px) {
    .sw-services-scale-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sw-services-operating-model,
    .sw-services-scale-grid {
        grid-template-columns: 1fr;
    }
}

/* Saltwater 0.4.37 Sprint system. */
.sw-sprints-hub,
.sw-sprint-page,
.sw-sprint-product {
    --sw-sprint-navy: #08263f;
    --sw-sprint-ink: #08202b;
    --sw-sprint-blue: #167fa6;
    --sw-sprint-aqua: #73d1df;
    --sw-sprint-mist: #eef7f8;
    --sw-sprint-warm: #fbfaf7;
    width: min(calc(100% - 48px), 1320px);
    margin: clamp(28px, 4vw, 54px) auto 0;
    color: var(--sw-sprint-ink);
}

.sw-sprint-page *,
.sw-sprint-product *,
.sw-sprints-hub * {
    box-sizing: border-box;
}

.sw-sprint-kicker {
    margin: 0 0 14px;
    color: var(--sw-sprint-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.sw-sprint-button,
.sw-sprint-final-cta > a,
.sw-sprint-card > a {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 14px 22px;
    border: 1px solid var(--sw-sprint-aqua);
    background: linear-gradient(135deg, var(--sw-sprint-blue), var(--sw-sprint-aqua));
    color: #fff;
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.sw-sprint-button:hover,
.sw-sprint-button:focus-visible,
.sw-sprint-final-cta > a:hover,
.sw-sprint-final-cta > a:focus-visible,
.sw-sprint-card > a:hover,
.sw-sprint-card > a:focus-visible {
    color: #fff;
    box-shadow: 0 12px 28px rgba(4, 24, 38, .18);
    transform: translateY(-2px);
}

.sw-sprint-button--ghost {
    border-color: rgba(255, 255, 255, .65);
    background: transparent;
}

.sw-sprint-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sw-sprints-hub__hero,
.sw-sprint-info-hero,
.sw-sprint-product-hero,
.sw-sprint-process,
.sw-sprint-final-cta {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 92% 16%, rgba(115, 209, 223, .13), transparent 30%),
        linear-gradient(135deg, #061d31, #082b49);
    color: #fff;
}

.sw-sprints-hub__hero::after,
.sw-sprint-info-hero::after,
.sw-sprint-product-hero::after,
.sw-sprint-process::after,
.sw-sprint-final-cta::after {
    position: absolute;
    right: -90px;
    bottom: -140px;
    z-index: -1;
    width: 520px;
    height: 380px;
    background: repeating-radial-gradient(ellipse at center, transparent 0 16px, rgba(255, 255, 255, .055) 17px 18px);
    content: "";
    opacity: .8;
    transform: rotate(-12deg);
}

.sw-sprints-hub__hero {
    min-height: 500px;
    display: grid;
    align-items: end;
    padding: clamp(58px, 8vw, 98px);
}

.sw-sprints-hub__hero > div {
    width: min(820px, 88%);
}

.sw-sprints-hub__hero h1,
.sw-sprint-info-hero h1,
.sw-sprint-product-hero h1,
.sw-sprints-hub__intro h2,
.sw-sprint-included h2,
.sw-sprint-process h2,
.sw-sprint-deliverables h2,
.sw-sprint-fit h2,
.sw-sprint-final-cta h2,
.sw-sprint-intake-section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.sw-sprints-hub__hero h1 {
    color: #fff;
    font-size: clamp(58px, 8vw, 110px);
    line-height: .92;
}

.sw-sprints-hub__hero h1 span,
.sw-sprint-info-hero h1 span,
.sw-sprint-product-hero h1 span {
    color: var(--sw-sprint-aqua);
}

.sw-sprints-hub__hero > div > p:last-child {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(18px, 2vw, 22px);
}

.sw-sprints-hub__intro,
.sw-sprint-included,
.sw-sprint-product-details,
.sw-sprint-intake-section {
    padding: clamp(70px, 8vw, 112px) clamp(24px, 6vw, 82px);
    background: #fff;
}

.sw-sprints-hub__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    gap: 20px 80px;
}

.sw-sprints-hub__intro .sw-sprint-kicker {
    grid-column: 1 / -1;
}

.sw-sprints-hub__intro h2 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
}

.sw-sprints-hub__intro > p:last-child {
    margin: 4px 0 0;
    color: #596a72;
    font-size: 19px;
    line-height: 1.7;
}

.sw-sprints-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #d8e3e6;
    border: 1px solid #d8e3e6;
}

.sw-sprint-card {
    display: grid;
    min-height: 520px;
    align-content: space-between;
    padding: clamp(34px, 4vw, 54px);
    background: var(--sw-sprint-warm);
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sw-sprint-card:hover {
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: 0 22px 60px rgba(8, 32, 43, .12);
    transform: translateY(-6px);
}

.sw-sprint-card h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1;
}

.sw-sprint-card p {
    color: #5c6970;
    line-height: 1.65;
}

.sw-sprint-card dl {
    display: grid;
    gap: 12px;
    margin: 34px 0;
}

.sw-sprint-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #d8e3e6;
}

.sw-sprint-card dt {
    color: #6b7b82;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sw-sprint-card dd {
    margin: 0;
    font-weight: 750;
}

.sw-sprint-card > a {
    justify-self: start;
}

.sw-sprint-info-hero {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(460px, 1.04fr);
    min-height: 650px;
}

.sw-sprint-info-hero__copy {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: clamp(48px, 6vw, 84px);
}

.sw-sprint-info-hero h1,
.sw-sprint-product-hero h1 {
    color: #fff;
    font-size: clamp(54px, 6.2vw, 88px);
    line-height: .94;
}

.sw-sprint-info-hero h2 {
    margin: 26px 0 0;
    color: var(--sw-sprint-aqua);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.sw-sprint-info-hero__copy > p:not(.sw-sprint-kicker) {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.6;
}

.sw-sprint-visual {
    min-width: 0;
    margin: 0;
}

.sw-sprint-visual--image {
    position: relative;
    overflow: hidden;
}

.sw-sprint-visual--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.sw-sprint-info-hero:hover .sw-sprint-visual--image img {
    transform: scale(1.035);
}

.sw-sprint-visual--image blockquote {
    position: absolute;
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(24px, 4vw, 56px);
    width: min(360px, calc(100% - 48px));
    margin: 0;
    padding: 28px;
    background: rgba(4, 29, 48, .92);
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
}

.sw-sprint-dashboard {
    display: grid;
    align-content: center;
    gap: 24px;
    margin: clamp(32px, 5vw, 70px);
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 32px 70px rgba(0, 0, 0, .2);
}

.sw-sprint-dashboard p,
.sw-sprint-dashboard strong,
.sw-sprint-dashboard span,
.sw-sprint-dashboard b {
    color: #fff;
}

.sw-sprint-dashboard p {
    margin: 0;
    color: var(--sw-sprint-aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sw-sprint-dashboard strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
}

.sw-sprint-chart {
    display: flex;
    height: 150px;
    align-items: end;
    gap: 12px;
    margin-top: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.sw-sprint-chart i {
    flex: 1;
    height: 32%;
    background: linear-gradient(180deg, var(--sw-sprint-aqua), rgba(115, 209, 223, .16));
    clip-path: polygon(50% 0, 100% 14%, 100% 100%, 0 100%, 0 22%);
}

.sw-sprint-chart i:nth-child(2) { height: 40%; }
.sw-sprint-chart i:nth-child(3) { height: 37%; }
.sw-sprint-chart i:nth-child(4) { height: 62%; }
.sw-sprint-chart i:nth-child(5) { height: 57%; }
.sw-sprint-chart i:nth-child(6) { height: 82%; }
.sw-sprint-chart i:nth-child(7) { height: 74%; }

.sw-sprint-dashboard__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sw-sprint-dashboard__cards div {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(3, 21, 34, .38);
}

.sw-sprint-dashboard__cards span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
}

.sw-sprint-dashboard__cards b {
    display: block;
    margin-top: 6px;
    font-size: 24px;
}

.sw-sprint-pipeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
}

.sw-sprint-pipeline span {
    padding: 14px 8px;
    border-right: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    text-align: center;
}

.sw-sprint-pipeline b {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}

.sw-sprint-workflow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-sprint-workflow span {
    flex: 1;
    padding: 16px 8px;
    border: 1px solid rgba(115, 209, 223, .35);
    font-size: 11px;
    text-align: center;
}

.sw-sprint-workflow i {
    color: var(--sw-sprint-aqua);
    font-style: normal;
}

.sw-sprint-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #fff;
}

.sw-sprint-benefits article {
    min-height: 260px;
    padding: clamp(36px, 5vw, 62px);
    border-right: 1px solid #dce5e7;
}

.sw-sprint-benefits article:last-child {
    border-right: 0;
}

.sw-sprint-benefits article > span,
.sw-sprint-included-grid article > span,
.sw-sprint-product-details article > span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--sw-sprint-blue);
    border-radius: 50%;
    color: var(--sw-sprint-blue);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.sw-sprint-benefits h3,
.sw-sprint-included-grid h3,
.sw-sprint-product-details h3 {
    margin: 24px 0 10px;
    color: var(--sw-sprint-ink);
    font-size: 18px;
    line-height: 1.25;
}

.sw-sprint-benefits p,
.sw-sprint-included-grid p,
.sw-sprint-product-details article p {
    margin: 0;
    color: #607078;
    line-height: 1.6;
}

.sw-sprint-included header {
    max-width: 860px;
    margin: 0 auto 54px;
    text-align: center;
}

.sw-sprint-included h2 {
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1;
}

.sw-sprint-included-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dce5e7;
    border-left: 1px solid #dce5e7;
}

.sw-sprint-included-grid article {
    min-height: 290px;
    padding: 34px 28px;
    border-right: 1px solid #dce5e7;
    border-bottom: 1px solid #dce5e7;
}

.sw-sprint-process {
    padding: clamp(66px, 8vw, 106px) clamp(28px, 6vw, 78px);
}

.sw-sprint-process header {
    max-width: 820px;
    margin-bottom: 54px;
}

.sw-sprint-process h2 {
    color: #fff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
}

.sw-sprint-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sw-sprint-process-step {
    min-height: 300px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-right: 1px solid rgba(255, 255, 255, .16);
    transition: background .25s ease, transform .25s ease;
}

.sw-sprint-process-step:hover {
    background: rgba(255, 255, 255, .055);
    transform: translateY(-4px);
}

.sw-sprint-process-step:last-child {
    border-right: 0;
}

.sw-sprint-process-step > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--sw-sprint-aqua);
    border-radius: 50%;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.sw-sprint-process-step h3 {
    margin: 22px 0 12px;
    color: #fff;
    font-size: 21px;
}

.sw-sprint-process-step p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.55;
}

.sw-sprint-process-step > p:first-of-type {
    margin-top: 22px;
    color: var(--sw-sprint-aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-sprint-deliverables {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 32px;
    padding: clamp(66px, 8vw, 100px);
    background: var(--sw-sprint-warm);
}

.sw-sprint-deliverables h2 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
}

.sw-sprint-deliverables ul,
.sw-sprint-product-notes ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.sw-sprint-deliverables li,
.sw-sprint-product-notes li {
    position: relative;
    padding-left: 24px;
    color: #42555e;
    line-height: 1.5;
}

.sw-sprint-deliverables li::before,
.sw-sprint-product-notes li::before,
.sw-sprint-purchase-card li::before {
    position: absolute;
    left: 0;
    color: var(--sw-sprint-blue);
    content: "✓";
    font-weight: 800;
}

.sw-sprint-deliverables aside {
    align-self: stretch;
    padding: clamp(36px, 5vw, 56px);
    background: #fff;
    box-shadow: 0 24px 60px rgba(8, 32, 43, .08);
}

.sw-sprint-deliverables aside strong {
    display: block;
    margin: 10px 0 12px;
    color: var(--sw-sprint-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 6vw, 78px);
    font-weight: 400;
}

.sw-sprint-deliverables aside p:not(.sw-sprint-kicker) {
    margin: 0 0 26px;
    color: #617079;
}

.sw-sprint-fit {
    padding: clamp(60px, 7vw, 90px);
    border-top: 1px solid #dce5e7;
    background: #fff;
    text-align: center;
}

.sw-sprint-fit h2 {
    max-width: 920px;
    margin-inline: auto;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
}

.sw-sprint-fit > p:last-child {
    margin: 20px 0 0;
    color: #5b6a71;
    font-size: 18px;
}

.sw-sprint-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 44px;
    align-items: center;
    padding: clamp(54px, 7vw, 84px);
}

.sw-sprint-final-cta h2 {
    color: #fff;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
}

.sw-sprint-final-cta p:not(.sw-sprint-kicker) {
    max-width: 700px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
}

.sw-sprint-final-cta > a {
    min-width: 250px;
}

/* Sprint product pages. */
.sw-sprint-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: center;
    min-height: 620px;
    padding: clamp(54px, 7vw, 90px);
}

.sw-sprint-product-hero > div > p:not(.sw-sprint-kicker) {
    max-width: 670px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
}

.sw-sprint-product-hero dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 38px 0 0;
}

.sw-sprint-product-hero dl div {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.sw-sprint-product-hero dt {
    color: var(--sw-sprint-aqua);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-sprint-product-hero dd {
    margin: 8px 0 0;
    color: #fff;
    line-height: 1.45;
}

.sw-sprint-purchase-card {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 4vw, 52px);
    background: var(--sw-sprint-warm);
    box-shadow: 0 30px 74px rgba(0, 0, 0, .22);
    color: var(--sw-sprint-ink);
}

.sw-sprint-purchase-card strong {
    display: block;
    margin: 8px 0 12px;
    color: var(--sw-sprint-navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 6vw, 84px);
    font-weight: 400;
    line-height: 1;
}

.sw-sprint-purchase-card > p:not(.sw-sprint-kicker) {
    color: #586970;
}

.sw-sprint-purchase-card ul {
    display: grid;
    gap: 12px;
    margin: 26px 0;
    padding: 24px 0 0;
    border-top: 1px solid #d8e3e6;
    list-style: none;
}

.sw-sprint-purchase-card li {
    position: relative;
    padding-left: 24px;
}

.sw-sprint-purchase-card .sw-sprint-button {
    width: 100%;
}

.sw-sprint-purchase-card small {
    display: block;
    margin-top: 16px;
    color: #64747c;
    line-height: 1.5;
}

.sw-sprint-product-photo {
    position: relative;
    height: min(62vw, 650px);
    min-height: 460px;
    margin: 0;
    overflow: hidden;
    background: var(--sw-sprint-navy);
}

.sw-sprint-product-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.sw-sprint-product-photo:hover img {
    transform: scale(1.035);
}

.sw-sprint-product-photo figcaption {
    position: absolute;
    left: clamp(24px, 6vw, 82px);
    bottom: clamp(24px, 6vw, 72px);
    width: min(540px, calc(100% - 48px));
    padding: clamp(26px, 4vw, 42px);
    background: rgba(4, 29, 48, .94);
    color: #fff;
}

.sw-sprint-product-photo figcaption strong {
    display: block;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 400;
    line-height: 1.06;
}

.sw-sprint-product-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.sw-sprint-product-details > div {
    padding: clamp(20px, 4vw, 50px);
}

.sw-sprint-product-details > div:first-child {
    border-right: 1px solid #dce5e7;
}

.sw-sprint-product-details article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid #dce5e7;
}

.sw-sprint-product-details article h3 {
    margin: 0 0 6px;
}

.sw-sprint-product-details article > span {
    width: 42px;
    height: 42px;
}

.sw-sprint-product-details article > div > p:first-child {
    margin-bottom: 4px;
    color: var(--sw-sprint-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.sw-sprint-product-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--sw-sprint-warm);
}

.sw-sprint-product-notes > div {
    padding: clamp(38px, 5vw, 62px);
    border-right: 1px solid #dce5e7;
}

.sw-sprint-product-notes > div:last-child {
    border-right: 0;
}

.sw-sprint-product-notes ul {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

.sw-sprint-product-notes p:not(.sw-sprint-kicker) {
    color: #52636b;
    line-height: 1.65;
}

.sw-sprint-intake-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
    gap: clamp(46px, 7vw, 92px);
    align-items: start;
}

.sw-sprint-intake-section h2 {
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
}

.sw-sprint-intake-section > div:first-child > p:last-child {
    color: #5a6a72;
    font-size: 18px;
    line-height: 1.7;
}

.sw-sprint-intake-card {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid #d5e1e4;
    background: var(--sw-sprint-warm);
    box-shadow: 0 24px 60px rgba(8, 32, 43, .08);
}

.sw-sprint-intake-fields {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    border: 0;
}

.sw-sprint-intake-fields legend {
    margin-bottom: 22px;
    color: var(--sw-sprint-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.sw-sprint-intake-fields label {
    display: grid;
    gap: 8px;
    color: #233943;
    font-size: 13px;
    font-weight: 750;
}

.sw-sprint-intake-fields input,
.sw-sprint-intake-fields textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #becdd1;
    border-radius: 0;
    background: #fff;
    color: var(--sw-sprint-ink);
    font: inherit;
    font-weight: 450;
}

.sw-sprint-intake-fields textarea {
    resize: vertical;
}

.sw-sprint-intake-fields input:focus,
.sw-sprint-intake-fields textarea:focus {
    border-color: var(--sw-sprint-blue);
    box-shadow: 0 0 0 3px rgba(22, 127, 166, .12);
    outline: 0;
}

.sw-sprint-intake-card form.cart {
    display: grid;
    gap: 24px;
    margin: 0;
}

.sw-sprint-intake-card form.cart .quantity {
    display: none;
}

.sw-sprint-intake-card form.cart .single_add_to_cart_button {
    width: 100%;
    min-height: 54px;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, var(--sw-sprint-blue), var(--sw-sprint-aqua));
    color: #fff;
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sw-sprint-product + .site-footer {
    margin-top: 0;
}

.woocommerce-notices-wrapper {
    width: min(calc(100% - 48px), 1320px);
    margin-inline: auto;
}

.case-card em {
    font-family: inherit;
    font-size: inherit;
    font-style: italic;
}

@media (max-width: 1060px) {
    .sw-sprints-grid,
    .sw-sprint-included-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-sprint-info-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .sw-sprint-visual--image {
        min-height: 500px;
    }

    .sw-sprint-dashboard {
        min-height: 500px;
    }

    .sw-sprint-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-sprint-process-step:nth-child(2) {
        border-right: 0;
    }

    .sw-sprint-product-hero,
    .sw-sprint-intake-section {
        grid-template-columns: 1fr;
    }

    .sw-sprint-purchase-card {
        width: min(100%, 620px);
    }

    .sw-sprint-product-notes {
        grid-template-columns: 1fr;
    }

    .sw-sprint-product-notes > div {
        border-right: 0;
        border-bottom: 1px solid #dce5e7;
    }
}

@media (max-width: 760px) {
    .sw-sprints-hub,
    .sw-sprint-page,
    .sw-sprint-product {
        width: calc(100% - 28px);
        margin-top: 14px;
    }

    .sw-sprints-hub__hero,
    .sw-sprint-info-hero__copy,
    .sw-sprint-product-hero,
    .sw-sprint-process,
    .sw-sprint-final-cta,
    .sw-sprints-hub__intro,
    .sw-sprint-included,
    .sw-sprint-product-details,
    .sw-sprint-intake-section,
    .sw-sprint-deliverables {
        padding: 44px 28px;
    }

    .sw-sprints-hub__hero {
        min-height: 520px;
    }

    .sw-sprints-hub__hero > div {
        width: 100%;
    }

    .sw-sprints-hub__hero h1 {
        font-size: clamp(50px, 15vw, 72px);
    }

    .sw-sprints-hub__intro,
    .sw-sprints-grid,
    .sw-sprint-benefits,
    .sw-sprint-included-grid,
    .sw-sprint-process-grid,
    .sw-sprint-deliverables,
    .sw-sprint-final-cta,
    .sw-sprint-product-details {
        grid-template-columns: 1fr;
    }

    .sw-sprint-card {
        min-height: 440px;
    }

    .sw-sprint-info-hero {
        min-height: 0;
    }

    .sw-sprint-info-hero h1,
    .sw-sprint-product-hero h1 {
        font-size: clamp(48px, 14vw, 66px);
    }

    .sw-sprint-actions {
        display: grid;
        width: 100%;
    }

    .sw-sprint-actions .sw-sprint-button {
        width: 100%;
    }

    .sw-sprint-visual--image,
    .sw-sprint-dashboard {
        min-height: 380px;
    }

    .sw-sprint-dashboard {
        margin: 0;
        border-radius: 0;
    }

    .sw-sprint-dashboard__cards,
    .sw-sprint-product-hero dl {
        grid-template-columns: 1fr;
    }

    .sw-sprint-pipeline {
        grid-template-columns: repeat(5, 92px);
        overflow-x: auto;
    }

    .sw-sprint-workflow {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }

    .sw-sprint-workflow span:last-of-type {
        grid-column: 1 / -1;
    }

    .sw-sprint-benefits article,
    .sw-sprint-included-grid article {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #dce5e7;
    }

    .sw-sprint-process-step {
        min-height: 0;
        border-right: 0;
    }

    .sw-sprint-deliverables ul,
    .sw-sprint-product-notes ul {
        grid-template-columns: 1fr;
    }

    .sw-sprint-final-cta > a {
        width: 100%;
        min-width: 0;
    }

    .sw-sprint-product-details {
        padding: 0;
    }

    .sw-sprint-product-details > div {
        padding: 42px 28px;
    }

    .sw-sprint-product-details > div:first-child {
        border-right: 0;
        border-bottom: 1px solid #dce5e7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sw-sprint-button,
    .sw-sprint-final-cta > a,
    .sw-sprint-card,
    .sw-sprint-process-step,
    .sw-sprint-visual--image img {
        transition: none;
    }
}

/* Saltwater 0.4.39 Sprint visual alignment. */
.sw-sprints-hub,
.sw-sprint-page,
.sw-sprint-product {
    --sw-sprint-navy: var(--sw-ink);
    --sw-sprint-blue: var(--sw-blue);
    --sw-sprint-aqua: var(--sw-gold);
    --sw-sprint-mist: var(--sw-mist);
    --sw-sprint-warm: #fbfaf7;
}

.sw-sprints-hub__hero h1,
.sw-sprint-info-hero h1,
.sw-sprint-product-hero h1,
.sw-sprints-hub__intro h2,
.sw-sprint-included h2,
.sw-sprint-process h2,
.sw-sprint-deliverables h2,
.sw-sprint-fit h2,
.sw-sprint-final-cta h2,
.sw-sprint-intake-section h2,
.sw-sprint-card h2,
.sw-sprint-deliverables aside strong,
.sw-sprint-purchase-card strong,
.sw-sprint-product-photo figcaption strong,
.sw-sprint-intake-fields legend {
    font-family: var(--sw-font-display);
    font-weight: 800;
    letter-spacing: 0;
}

/* Saltwater 0.4.40 process page refresh. */
.sw-page-content--process {
    padding-top: 0;
}

.sw-process-page {
    width: 100%;
}

.sw-process-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(340px, .72fr);
    gap: clamp(30px, 5vw, 74px);
    align-items: center;
    margin: calc(clamp(58px, 8vw, 98px) * -1) calc(50% - 50vw) 0;
    padding: clamp(92px, 11vw, 148px) max(24px, calc((100vw - var(--sw-max)) / 2)) clamp(62px, 8vw, 96px);
    border-bottom: 1px solid var(--sw-line);
    background:
        linear-gradient(118deg, rgba(255, 255, 255, .96) 0%, rgba(244, 240, 232, .88) 54%, rgba(216, 242, 239, .62) 100%);
    overflow: hidden;
}

.sw-process-hero::after {
    position: absolute;
    right: max(24px, calc((100vw - var(--sw-max)) / 2));
    bottom: 0;
    width: min(360px, 42vw);
    height: 4px;
    background: var(--sw-gold);
    content: "";
}

.sw-process-hero > .wp-block-group__inner-container,
.sw-process-hero-copy,
.sw-process-hero-visual {
    display: contents;
}

.sw-process-hero-copy {
    display: grid;
    gap: 22px;
    max-width: 840px;
}

.sw-process-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(48px, 6.4vw, 92px);
    font-weight: 800;
    line-height: .96;
    letter-spacing: 0;
    color: var(--sw-ink);
}

.sw-process-hero-copy p:not(.sw-kicker) {
    max-width: 780px;
    margin: 0;
    color: var(--sw-muted);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.42;
}

.sw-process-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
}

.sw-process-hero-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 22px;
    border: 1px solid var(--sw-ink);
    color: var(--sw-ink);
    font-family: var(--sw-font-system);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.sw-process-hero-actions a:first-child {
    border-color: var(--sw-gold);
    background: var(--sw-gold);
}

.sw-process-system-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(12, 43, 58, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 30px 84px rgba(8, 32, 43, .13);
}

.sw-process-system-card h2 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
}

.sw-process-system-map {
    display: grid;
    gap: 10px;
}

.sw-process-system-map span {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(12, 43, 58, .12);
    background: #fff;
    color: var(--sw-muted);
    font-size: 15px;
    line-height: 1.25;
}

.sw-process-system-map b {
    color: var(--sw-blue);
    font-family: var(--sw-font-system);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.sw-process-section-heading {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: end;
}

.sw-process-section-heading h2,
.sw-process-scope h2,
.sw-process-platform h2,
.sw-process-operating-rhythm h2,
.sw-process-compare h2 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(36px, 5vw, 74px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: 0;
}

.sw-process-section-heading p:not(.sw-kicker),
.sw-process-platform p,
.sw-process-operating-rhythm p,
.sw-process-compare p {
    color: var(--sw-muted);
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.48;
}

.sw-process-assembly {
    display: grid;
    gap: 26px;
}

.sw-process-assembly-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--sw-line);
    border-left: 1px solid var(--sw-line);
}

.sw-process-assembly-card {
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 310px;
    padding: clamp(24px, 3vw, 38px);
    border-right: 1px solid var(--sw-line);
    border-bottom: 1px solid var(--sw-line);
    background: #fff;
}

.sw-process-assembly-card span,
.sw-process-scope-card span,
.sw-process-rhythm-step span {
    color: var(--sw-gold);
    font-family: var(--sw-font-system);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.sw-process-assembly-card h3 {
    margin: 60px 0 14px;
    font-family: var(--sw-font-display);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}

.sw-process-assembly-card p {
    margin: 0;
    color: var(--sw-muted);
}

.sw-process-platform {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(26px, 5vw, 68px);
    align-items: stretch;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 8px;
    background: var(--sw-ink);
    color: #fff;
}

.sw-process-platform h2,
.sw-process-platform .sw-kicker {
    color: #fff;
}

.sw-process-platform p {
    color: rgba(255, 255, 255, .76);
}

.sw-process-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.sw-process-platform-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
}

.sw-process-platform-card strong {
    color: var(--sw-gold);
    font-family: var(--sw-font-system);
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.sw-process-platform-card p {
    margin: 0;
    font-size: 16px;
}

.sw-process-scope {
    display: grid;
    gap: 28px;
}

.sw-process-scope-grid {
    display: grid;
    grid-template-columns: .82fr 1fr .82fr;
    gap: 16px;
    align-items: stretch;
}

.sw-process-scope-card {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-process-scope-card.is-surge {
    background: linear-gradient(135deg, rgba(216, 242, 239, .88), #fff 70%);
    box-shadow: 0 20px 58px rgba(8, 32, 43, .1);
    transform: translateY(-14px);
}

.sw-process-scope-card h3 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(30px, 3.3vw, 48px);
    line-height: 1;
}

.sw-process-scope-card p {
    margin: 0;
    color: var(--sw-muted);
}

.sw-process-scope-bars {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.sw-process-scope-bars span {
    display: block;
    height: 11px;
    width: var(--scope-bar);
    background: var(--sw-blue);
}

.sw-process-scope-card.is-surge .sw-process-scope-bars span {
    background: var(--sw-gold);
}

.sw-process-operating-rhythm {
    display: grid;
    gap: 30px;
    padding: clamp(34px, 6vw, 68px);
    border-radius: 8px;
    background: var(--sw-mist);
}

.sw-process-rhythm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sw-process-rhythm-step {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 260px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(12, 43, 58, .12);
    border-radius: 8px;
    background: #fff;
}

.sw-process-rhythm-step h3 {
    margin: 0;
    font-family: var(--sw-font-display);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
}

.sw-process-rhythm-step p {
    margin: 0;
    color: var(--sw-muted);
}

.sw-process-compare {
    display: grid;
    gap: 26px;
}

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

.sw-process-compare-card {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-process-compare-card.is-saltwater {
    border-color: rgba(12, 43, 58, .26);
    background: linear-gradient(180deg, #fff, rgba(244, 240, 232, .7));
}

.sw-process-compare-card h3 {
    margin: 0 0 18px;
    font-family: var(--sw-font-display);
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1;
}

.sw-process-compare-card ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sw-process-compare-card li {
    position: relative;
    padding-left: 24px;
    color: var(--sw-muted);
    font-size: 17px;
    line-height: 1.42;
}

.sw-process-compare-card li::before {
    position: absolute;
    top: .58em;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--sw-gold);
    content: "";
    transform: rotate(45deg);
}

@media (max-width: 980px) {
    .sw-process-hero,
    .sw-process-section-heading,
    .sw-process-platform,
    .sw-process-scope-grid,
    .sw-process-compare-grid {
        grid-template-columns: 1fr;
    }

    .sw-process-assembly-grid,
    .sw-process-rhythm-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-process-scope-card.is-surge {
        transform: none;
    }
}

@media (max-width: 680px) {
    .sw-process-hero {
        margin-right: -20px;
        margin-left: -20px;
    }

    .sw-process-hero-actions a {
        width: 100%;
    }

    .sw-process-assembly-grid,
    .sw-process-platform-grid,
    .sw-process-rhythm-grid {
        grid-template-columns: 1fr;
    }

    .sw-process-assembly-card,
    .sw-process-rhythm-step {
        min-height: 0;
    }
}

/* Saltwater 0.4.41 Instrument typography system. */
.swi-demo-home .hero h1 {
    display: grid;
    gap: clamp(7px, 1vw, 13px);
    font-family: var(--sw-font-body);
    font-weight: 400;
}

.swi-demo-home .hero .eyebrow,
.swi-demo-home .hero-subhead,
.swi-demo-home .hero-copy,
.swi-demo-home .hero .button {
    font-family: var(--sw-font-body);
}

.swi-demo-home .hero-editorial-italic {
    display: block;
    font-family: var(--sw-font-display);
    font-size: clamp(58px, 8.2vw, 100px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: .88;
    transform-origin: left center;
    animation: swiInstrumentPhraseReveal 1.05s cubic-bezier(.2, .72, .2, 1) .34s both;
}

.swi-demo-home .hero-sans-line {
    display: block;
    font-family: var(--sw-font-body);
    font-size: clamp(35px, 5vw, 58px);
    font-style: normal;
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.02;
}

.swi-demo-home .hero-subhead {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    letter-spacing: .015em;
    line-height: 1.4;
}

@keyframes swiInstrumentPhraseReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        filter: blur(3px);
        opacity: 0;
        transform: translate3d(-12px, 10px, 0) skewX(-3deg);
    }
    62% {
        filter: blur(0);
        opacity: 1;
    }
    100% {
        clip-path: inset(0 0 0 0);
        filter: blur(0);
        opacity: 1;
        transform: translate3d(0, 0, 0) skewX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .swi-demo-home .hero-editorial-italic {
        animation: none;
    }
}

.sw-sprint-tier-pricing {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.sw-sprint-tier-pricing div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(8, 32, 43, .14);
}

.sw-sprint-tier-pricing dt,
.sw-sprint-tier-pricing dd {
    margin: 0;
}

.sw-sprint-tier-pricing dt {
    color: var(--sw-sprint-aqua);
    font-family: var(--sw-font-body);
    font-weight: 600;
}

.sw-sprint-tier-pricing dd {
    margin: 0;
    color: var(--sw-sprint-ink);
    font-family: var(--sw-font-body);
    font-weight: 700;
}

.sw-sprint-product-hero > div > .sw-sprint-kicker {
    color: var(--sw-sprint-aqua);
}

.sw-sprint-intake-card table.variations {
    width: 100%;
    margin: 0 0 20px;
}

.sw-sprint-intake-card table.variations th,
.sw-sprint-intake-card table.variations td {
    display: block;
    padding: 0 0 8px;
    text-align: left;
}

.sw-sprint-intake-card table.variations select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--sw-line);
    border-radius: 4px;
    background: #fff;
    color: var(--sw-ink);
    font-family: var(--sw-font-body);
    font-size: 16px;
    padding: 10px 12px;
}

.sw-sprint-intake-card .woocommerce-variation-price {
    margin: 0 0 18px;
    color: var(--sw-ink);
    font-family: var(--sw-font-display);
    font-size: clamp(30px, 4vw, 44px);
}

/* Inflection Point brand layer. The source layout remains intentionally intact. */
.sw-site-header {
    border-bottom-color: rgba(255, 255, 255, .1);
    background: rgba(23, 30, 38, .95);
}

.ip-brand-lockup {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    text-decoration: none;
}

.ip-brand-mark {
    width: 37px;
    height: 34px;
    background: url("assets/images/brand/inflection-point-logo-dark.webp") 50% 29% / 205px auto no-repeat;
    flex: 0 0 auto;
}

.ip-brand-copy {
    display: grid;
    gap: 1px;
    line-height: 1;
}

.ip-brand-copy strong {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2em;
}

.ip-brand-copy small {
    color: #d58a5c;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: .17em;
}

.sw-site-header .sw-menu > li > a,
.sw-site-header .sw-menu-toggle,
.sw-site-header .sw-nav > a {
    color: #fff;
}

.sw-site-header .sw-menu > li > a:hover,
.sw-site-header .sw-menu > li.current-menu-item > a,
.sw-site-header .sw-menu > li.current-menu-ancestor > a {
    color: #e0976b;
}

.swi-demo-home .hero-overlay {
    background: linear-gradient(90deg, rgba(14, 19, 25, .9) 0%, rgba(23, 30, 38, .62) 57%, rgba(197, 102, 47, .18) 100%);
}

.ip-footer-logo {
    display: block;
    width: min(360px, 85%);
    margin: 0 0 24px;
}

.sw-site-footer {
    background: #171e26;
    color: #fff;
}

.sw-site-footer a,
.sw-site-footer .sw-kicker {
    color: #e0976b;
}

@media (max-width: 720px) {
    .ip-brand-copy small { display: none; }
    .ip-brand-copy strong { font-size: 12px; letter-spacing: .14em; }
    .sw-site-header .sw-menu-toggle { border-color: rgba(255, 255, 255, .35); }
}

.ip-contact-hero {
    background: linear-gradient(120deg, #171e26 0%, #242d36 68%, #6d3927 100%);
    color: #fff;
}

.ip-contact-hero .sw-kicker { color: #e0976b; }
.ip-contact-hero p { max-width: 760px; }

.ip-contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(42px, 8vw, 110px);
    padding-top: clamp(70px, 9vw, 120px);
    padding-bottom: clamp(70px, 9vw, 120px);
}

.ip-contact-form { display: grid; gap: 20px; }
.ip-contact-form label { display: grid; gap: 8px; font-weight: 700; }
.ip-contact-form input,
.ip-contact-form textarea {
    width: 100%;
    border: 1px solid var(--sw-line);
    border-radius: 3px;
    background: #fff;
    color: var(--sw-ink);
    font: inherit;
    padding: 14px 15px;
}
.ip-contact-form input:focus,
.ip-contact-form textarea:focus { outline: 2px solid var(--sw-gold); outline-offset: 2px; }
.ip-honeypot { position: absolute; left: -10000px; }
.ip-form-notice { margin: 0; padding: 14px 16px; border-left: 4px solid var(--sw-gold); background: var(--sw-mist); }
.ip-form-notice.error { border-left-color: #a12f2f; }

@media (max-width: 760px) {
    .ip-contact-layout { grid-template-columns: 1fr; }
}

/* Inflection Point 2.1 — full brand lockup, tech-forward type, defining-moment hero. */
.sw-site-header {
    background: rgba(23, 30, 38, .975);
}

.sw-header-inner {
    min-height: 164px;
    gap: clamp(22px, 3vw, 46px);
}

.sw-brand,
.ip-brand-lockup {
    flex: 0 0 auto;
}

.ip-brand-lockup {
    display: block;
    color: #fff;
    text-decoration: none;
}

.ip-brand-art {
    position: relative;
    display: block;
    width: 226px;
    height: 160px;
    overflow: hidden;
}

.ip-brand-art img {
    position: absolute;
    top: -43px;
    left: -72px;
    width: 370px;
    max-width: none;
    height: auto;
}

.sw-nav a {
    font-family: var(--sw-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
}

.sw-menu {
    gap: clamp(14px, 1.8vw, 26px);
}

.swi-demo-home .hero {
    min-height: calc(100svh - 164px);
    padding: clamp(72px, 8vw, 112px) clamp(24px, 7vw, 100px) clamp(86px, 9vw, 126px);
    isolation: isolate;
}

.swi-demo-home .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.58) contrast(1.1) brightness(.78);
    transform: scale(1.01);
}

.swi-demo-home .hero-overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 72% 44%, rgba(197, 102, 47, .22), transparent 24%),
        linear-gradient(90deg, rgba(13, 18, 24, .98) 0%, rgba(23, 30, 38, .93) 38%, rgba(23, 30, 38, .47) 70%, rgba(23, 30, 38, .18) 100%),
        linear-gradient(180deg, rgba(23, 30, 38, .08), rgba(23, 30, 38, .68));
}

.swi-demo-home .hero-inner {
    width: min(850px, 69vw);
}

.swi-demo-home .hero .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: #e39a70;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.swi-demo-home .hero .eyebrow::before {
    width: 54px;
    height: 2px;
    background: var(--sw-gold);
    content: "";
}

.swi-demo-home .hero h1 {
    gap: 11px;
    margin: 0 0 28px;
    font-family: var(--sw-font-display);
}

.swi-demo-home .hero-sans-line {
    font-family: var(--sw-font-body);
    font-size: clamp(20px, 2.1vw, 31px);
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.15;
}

.swi-demo-home .hero-editorial-italic {
    max-width: 820px;
    color: #fff;
    font-family: var(--sw-font-display);
    font-size: clamp(55px, 7.1vw, 104px);
    font-style: normal;
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: .91;
    text-wrap: balance;
}

.swi-demo-home .hero-editorial-italic::after {
    display: block;
    width: clamp(120px, 18vw, 250px);
    height: 6px;
    margin-top: 24px;
    background: linear-gradient(90deg, var(--sw-gold), #e59c73 66%, transparent);
    content: "";
}

.swi-demo-home .hero-subhead {
    margin: 0 0 13px;
    color: #f3c0a0;
    font-size: clamp(18px, 1.65vw, 23px);
    font-weight: 700;
    letter-spacing: .01em;
}

.swi-demo-home .hero-copy {
    max-width: 690px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.65;
}

.swi-demo-home .hero .button {
    min-height: 52px;
    padding: 15px 23px;
    font-weight: 800;
    letter-spacing: .08em;
}

.swi-demo-home .button.light {
    border-color: var(--sw-gold);
    background: var(--sw-gold);
    color: #fff;
}

.ip-hero-mark {
    position: absolute;
    top: 18%;
    right: clamp(38px, 7vw, 110px);
    z-index: 2;
    width: clamp(150px, 17vw, 260px);
    height: clamp(150px, 17vw, 260px);
    opacity: .78;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, .3));
}

.ip-hero-mark span {
    position: absolute;
    display: block;
}

.ip-hero-mark__upper,
.ip-hero-mark__lower {
    right: 18%;
    width: 68%;
    height: clamp(5px, .55vw, 9px);
    transform-origin: right center;
}

.ip-hero-mark__upper {
    top: 34%;
    background: linear-gradient(90deg, rgba(255,255,255,.1), #fff);
    transform: rotate(34deg);
}

.ip-hero-mark__lower {
    top: 65%;
    background: linear-gradient(90deg, rgba(197,102,47,.12), #d97d47);
    transform: rotate(-34deg);
}

.ip-hero-mark__point {
    top: 46%;
    right: 2%;
    width: clamp(19px, 2.2vw, 34px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--sw-gold);
    box-shadow: 0 0 0 9px rgba(197, 102, 47, .13);
}

.ip-hero-sequence {
    position: absolute;
    right: clamp(28px, 6vw, 88px);
    bottom: clamp(28px, 4vw, 56px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .52);
    font-family: var(--sw-font-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.ip-hero-sequence i {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, .28);
}

.ip-hero-sequence strong { color: #e39a70; }

@media (max-width: 1060px) {
    .sw-header-inner { min-height: 140px; }
    .ip-brand-art { width: 190px; height: 137px; }
    .ip-brand-art img { top: -36px; left: -61px; width: 315px; }
    .swi-demo-home .hero { min-height: calc(100svh - 140px); }
    .ip-hero-mark { right: 4vw; opacity: .56; }
}

@media (max-width: 900px) {
    .sw-header-inner { min-height: 122px; }
    .ip-brand-art { width: 164px; height: 118px; }
    .ip-brand-art img { top: -31px; left: -52px; width: 270px; }
    .sw-site-header .sw-menu-toggle { border-color: rgba(255, 255, 255, .35); background: transparent; }
    .sw-site-header .sw-menu-toggle-icon,
    .sw-site-header .sw-menu-toggle-icon::before,
    .sw-site-header .sw-menu-toggle-icon::after { background: #fff; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 122px); background: #fff; }
    .sw-site-header .sw-menu a { color: var(--sw-ink); }
    .swi-demo-home .hero { min-height: calc(100svh - 122px); }
    .swi-demo-home .hero-inner { width: min(760px, 88vw); }
    .ip-hero-mark { top: 12%; right: -45px; opacity: .26; }
}

@media (max-width: 640px) {
    .sw-header-inner { min-height: 110px; }
    .ip-brand-art { width: 145px; height: 106px; }
    .ip-brand-art img { top: -28px; left: -47px; width: 241px; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 110px); }
    .swi-demo-home .hero {
        min-height: calc(100svh - 110px);
        padding: 62px 22px 84px;
    }
    .swi-demo-home .hero-bg img { object-position: 64% center; }
    .swi-demo-home .hero-overlay {
        background:
            linear-gradient(90deg, rgba(13, 18, 24, .97), rgba(23, 30, 38, .72)),
            linear-gradient(180deg, rgba(23, 30, 38, .12), rgba(23, 30, 38, .75));
    }
    .swi-demo-home .hero-inner { width: 100%; }
    .swi-demo-home .hero-editorial-italic { font-size: clamp(47px, 14.2vw, 70px); }
    .ip-hero-mark { display: none; }
    .ip-hero-sequence { right: 22px; bottom: 26px; left: 22px; justify-content: space-between; }
    .ip-hero-sequence i { width: 18px; }
}

/* Keep the canvas-free lockup authoritative after the earlier brand layer. */
.sw-site-header { background: #171e26; }
.sw-header-inner { min-height: 92px; }
.ip-brand-lockup { display: flex; align-items: center; gap: 13px; }
.ip-brand-symbol { width: 54px; height: 68px; flex: 0 0 54px; margin: 0; transform: none; }
.ip-brand-symbol img { display: block; width: auto; height: 68px; max-width: none; object-fit: contain; }
.ip-brand-words { max-width: 300px; gap: 6px; }
.ip-brand-words strong { font-size: 18px; letter-spacing: .18em; }
.ip-brand-words > i { background: var(--sw-gold); }
.ip-brand-words small { font-size: 7.5px; letter-spacing: .18em; }
.swi-demo-home .hero { min-height: calc(100svh - 92px); }
.swi-demo-home .hero-overlay {
    background:
        radial-gradient(circle at 72% 44%, rgba(173, 101, 66, .20), transparent 24%),
        linear-gradient(90deg, rgba(13, 18, 24, .98) 0%, rgba(23, 30, 38, .93) 38%, rgba(23, 30, 38, .47) 70%, rgba(23, 30, 38, .18) 100%),
        linear-gradient(180deg, rgba(23, 30, 38, .08), rgba(23, 30, 38, .68));
}
.swi-demo-home .hero .eyebrow,
.ip-hero-sequence strong { color: #c78a6b; }
.swi-demo-home .hero-editorial-italic::after { background: linear-gradient(90deg, var(--sw-gold), #c78a6b 66%, transparent); }
.swi-demo-home .hero-subhead { color: #d2a089; }
.ip-hero-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1120px) {
    .sw-header-inner { min-height: 88px; }
    .ip-brand-lockup { gap: 12px; }
    .ip-brand-symbol { width: 50px; height: 62px; flex-basis: 50px; margin: 0; transform: none; }
    .ip-brand-symbol img { height: 62px; }
    .ip-brand-words { max-width: 255px; }
    .ip-brand-words strong { font-size: 16px; letter-spacing: .16em; }
    .ip-brand-words small { font-size: 6.5px; letter-spacing: .15em; }
    .swi-demo-home .hero { min-height: calc(100svh - 88px); }
}

@media (max-width: 900px) {
    .sw-header-inner { min-height: 84px; }
    .ip-brand-lockup { gap: 10px; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 84px); }
    .swi-demo-home .hero { min-height: calc(100svh - 84px); }
}

@media (max-width: 640px) {
    .sw-header-inner { min-height: 76px; gap: 8px; }
    .ip-brand-lockup { gap: 8px; }
    .ip-brand-symbol { width: 38px; height: 48px; flex-basis: 38px; margin: 0; transform: none; }
    .ip-brand-symbol img { height: 48px; }
    .ip-brand-words { max-width: 152px; gap: 4px; }
    .ip-brand-words strong { font-size: 11.5px; letter-spacing: .12em; }
    .ip-brand-words small { font-size: 5.2px; letter-spacing: .1em; }
    .sw-site-header .sw-nav { max-height: calc(100vh - 76px); }
    .swi-demo-home .hero { min-height: calc(100svh - 76px); }
}

/* 2.2 — the hero mark becomes a dancing figure for three seconds per loop. */
.ip-hero-mark {
    opacity: .86;
    transform-origin: center;
    animation: ipHeroMarkTravel 13s cubic-bezier(.45, 0, .3, 1) infinite;
    will-change: transform;
}

.ip-hero-logo-state,
.ip-hero-dancer {
    position: absolute;
    inset: 0;
}

.ip-hero-logo-state {
    animation: ipHeroLogoState 13s ease-in-out infinite;
    will-change: opacity, transform;
}

.ip-hero-dancer {
    display: block;
    opacity: 0;
    animation: ipHeroDancerState 13s ease-in-out infinite;
    will-change: opacity, transform;
}

.ip-hero-dancer i {
    position: absolute;
    display: block;
    border-radius: 999px;
    transform-origin: center top;
}

.ip-dancer-head {
    top: 8%;
    left: 50%;
    width: clamp(25px, 2.2vw, 35px);
    aspect-ratio: 1;
    background: #c35c25;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(173, 101, 66, .13);
}

.ip-dancer-body {
    top: 27%;
    left: 50%;
    width: clamp(7px, .62vw, 10px);
    height: 38%;
    background: #c35c25;
    transform: translateX(-50%);
}

.ip-dancer-arm,
.ip-dancer-leg {
    left: 50%;
    width: clamp(6px, .52vw, 9px);
    background: #fff;
}

.ip-dancer-arm {
    top: 31%;
    height: 31%;
}

.ip-dancer-arm--left {
    animation: ipDancerArmLeft .36s ease-in-out infinite alternate;
}

.ip-dancer-arm--right {
    animation: ipDancerArmRight .36s ease-in-out infinite alternate;
}

.ip-dancer-leg {
    top: 62%;
    height: 32%;
    background: #ad6542;
}

.ip-dancer-leg--left {
    animation: ipDancerLegLeft .36s ease-in-out infinite alternate;
}

.ip-dancer-leg--right {
    animation: ipDancerLegRight .36s ease-in-out infinite alternate;
}

@keyframes ipHeroLogoState {
    0%, 74.5% { opacity: 1; transform: scale(1) rotate(0); }
    76.8%, 98.2% { opacity: 0; transform: scale(.58) rotate(12deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes ipHeroDancerState {
    0%, 74.8% { opacity: 0; transform: scale(.55) rotate(-8deg); }
    77%, 97.8% { opacity: 1; transform: scale(1) rotate(0); }
    100% { opacity: 0; transform: scale(.55) rotate(8deg); }
}

@keyframes ipHeroMarkTravel {
    0%, 76.5% { transform: translate3d(0, 0, 0) rotate(0); }
    80% { transform: translate3d(-17vw, 18vh, 0) rotate(-10deg); }
    84% { transform: translate3d(-39vw, 5vh, 0) rotate(12deg); }
    88% { transform: translate3d(-51vw, 28vh, 0) rotate(-8deg); }
    92% { transform: translate3d(-29vw, 36vh, 0) rotate(13deg); }
    96% { transform: translate3d(-9vw, 13vh, 0) rotate(-7deg); }
    100% { transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes ipDancerArmLeft {
    from { transform: translateX(-50%) rotate(48deg); }
    to { transform: translateX(-50%) rotate(118deg); }
}

@keyframes ipDancerArmRight {
    from { transform: translateX(-50%) rotate(-48deg); }
    to { transform: translateX(-50%) rotate(-118deg); }
}

@keyframes ipDancerLegLeft {
    from { transform: translateX(-50%) rotate(24deg); }
    to { transform: translateX(-50%) rotate(52deg); }
}

@keyframes ipDancerLegRight {
    from { transform: translateX(-50%) rotate(-24deg); }
    to { transform: translateX(-50%) rotate(-52deg); }
}

@media (max-width: 640px) {
    .ip-hero-mark {
        top: 13%;
        right: 10px;
        display: block;
        width: 105px;
        height: 135px;
        opacity: .42;
        animation-name: ipHeroMarkTravelMobile;
    }

    @keyframes ipHeroMarkTravelMobile {
        0%, 76.5% { transform: translate3d(0, 0, 0) rotate(0); }
        82% { transform: translate3d(-28vw, 15vh, 0) rotate(-10deg); }
        88% { transform: translate3d(-55vw, 25vh, 0) rotate(12deg); }
        94% { transform: translate3d(-30vw, 43vh, 0) rotate(-9deg); }
        100% { transform: translate3d(0, 0, 0) rotate(0); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .ip-hero-mark,
    .ip-hero-logo-state {
        animation: none;
        transform: none;
    }

    .ip-hero-logo-state { opacity: 1; }
    .ip-hero-dancer { display: none; }
}

/* 2.3.0 — six-person leadership, real publication marks, and a calmer homepage rhythm. */
.swi-demo-home .press,
.swi-demo-home .ip-home-intro,
.swi-demo-home .section-band,
.swi-demo-home .why,
.swi-demo-home .industries {
    padding: clamp(76px, 9vw, 126px) clamp(24px, 6vw, 80px);
}

.swi-demo-home .press {
    grid-template-columns: minmax(220px, .52fr) minmax(480px, 1.48fr);
    gap: clamp(28px, 5vw, 76px);
    padding-bottom: clamp(64px, 7vw, 94px);
}

.swi-demo-home .press h2 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 52px);
}

.swi-demo-home .press-ticker {
    margin-top: 10px;
    border-color: rgba(23, 30, 38, .12);
}

.swi-demo-home .press-track {
    animation-duration: 38s;
}

.swi-demo-home .press-logo {
    width: clamp(190px, 17vw, 252px);
    min-height: 112px;
    padding: 22px 28px;
    background: #fff;
}

.swi-demo-home .press-logo img,
.swi-demo-home .press-logo--forbes img,
.swi-demo-home .press-logo--prweek img,
.swi-demo-home .press-logo--bulldog-reporter img,
.swi-demo-home .press-logo--readwrite img,
.swi-demo-home .press-logo--search-engine-watch img {
    width: auto;
    max-width: 100%;
    max-height: 56px;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.swi-demo-home .press-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.035);
}

.swi-demo-home .press-logo--forbes img,
.swi-demo-home .press-logo--today-show img,
.swi-demo-home .press-logo--under30ceo img {
    max-width: 78px;
    max-height: 68px;
}

.swi-demo-home .ip-home-intro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: clamp(52px, 8vw, 120px);
    align-items: end;
    background: var(--demo-navy);
    color: #fff;
}

.swi-demo-home .ip-home-intro__copy h2 {
    max-width: 780px;
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: .99;
}

.swi-demo-home .ip-home-intro__copy > p:last-child {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(18px, 2vw, 22px);
}

.swi-demo-home .ip-home-intro .section-marker {
    color: #d2a089;
}

.swi-demo-home .ip-home-intro__steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    list-style: none;
}

.swi-demo-home .ip-home-intro__steps li {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 4px 18px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.swi-demo-home .ip-home-intro__steps span {
    grid-row: 1 / span 2;
    color: #d2a089;
    font-family: var(--sw-font-system);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .12em;
}

.swi-demo-home .ip-home-intro__steps strong {
    color: #fff;
    font-size: clamp(21px, 2vw, 27px);
}

.swi-demo-home .ip-home-intro__steps p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
}

.swi-demo-home .section-heading {
    margin-bottom: clamp(46px, 6vw, 76px);
}

.swi-demo-home .section-marker {
    color: var(--demo-gold);
}

.swi-demo-home .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
}

.swi-demo-home .team-card {
    padding: 16px 16px 28px;
    border: 0;
    border-top: 4px solid var(--demo-gold);
    border-radius: 0;
    box-shadow: 0 18px 46px rgba(23, 30, 38, .08);
}

.swi-demo-home .team-card figure {
    aspect-ratio: 4 / 4.65;
    margin-bottom: 24px;
    border-radius: 0;
}

.swi-demo-home .team-card:nth-child(5) figure img {
    object-position: 50% 22%;
}

.swi-demo-home .team-card:nth-child(6) figure img {
    object-position: 50% 34%;
}

.swi-demo-home .team-card .card-kicker,
.swi-demo-home .team-card h3,
.swi-demo-home .team-card > p:last-child {
    margin-right: 10px;
    margin-left: 10px;
}

.swi-demo-home .work {
    background: #fff;
}

.swi-demo-home .why,
.swi-demo-home .services {
    background: var(--demo-off);
}

.swi-demo-home .why-grid,
.swi-demo-home .industry-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.swi-demo-home .why-card,
.swi-demo-home .industry-card {
    grid-column: span 2;
}

.swi-demo-home .why-card:nth-last-child(-n+2),
.swi-demo-home .industry-card:nth-last-child(-n+2) {
    grid-column: span 3;
}

.swi-demo-home .why-card,
.swi-demo-home .pillar-card,
.swi-demo-home .industry-card {
    border-radius: 0;
}

.sw-team-profile-card {
    border-top: 4px solid var(--sw-gold);
}

.sw-team-profile-card p a {
    color: var(--sw-gold);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.sw-team-tags li {
    border-color: rgba(173, 101, 66, .38);
}

@media (max-width: 1040px) {
    .swi-demo-home .press,
    .swi-demo-home .ip-home-intro {
        grid-template-columns: 1fr;
    }

    .swi-demo-home .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swi-demo-home .why-grid,
    .swi-demo-home .industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swi-demo-home .why-card,
    .swi-demo-home .industry-card,
    .swi-demo-home .why-card:nth-last-child(-n+2),
    .swi-demo-home .industry-card:nth-last-child(-n+2) {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .swi-demo-home .press,
    .swi-demo-home .ip-home-intro,
    .swi-demo-home .section-band,
    .swi-demo-home .why,
    .swi-demo-home .industries {
        padding: 64px 22px;
    }

    .swi-demo-home .team-grid,
    .swi-demo-home .why-grid,
    .swi-demo-home .industry-grid {
        grid-template-columns: 1fr;
    }

    .swi-demo-home .press-logo {
        width: 190px;
        min-height: 96px;
    }

    .swi-demo-home .ip-home-intro__steps li {
        grid-template-columns: 42px minmax(0, 1fr);
    }
}
