:root {
--ink: oklch(17% 0.008 122);
--ink-raised: oklch(21% 0.012 122);
--ink-soft: oklch(36% 0.018 122);
--text-muted: oklch(44% 0.016 122);
--line: oklch(87% 0.012 122);
--line-dark: oklch(32% 0.016 122);
--surface: oklch(97.2% 0.006 122);
--surface-strong: oklch(93.5% 0.014 122);
--white: oklch(100% 0 0);
--brand: oklch(54.6% 0.111 122);
--brand-bright: oklch(77% 0.155 122);
--brand-soft: oklch(94% 0.043 122);
--brand-deep: oklch(37% 0.075 122);
--focus: oklch(79% 0.18 122);
--font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
--font-sans: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
--container: 1240px;
--header-height: 84px;
--radius-sm: 6px;
--radius-md: 12px;
--space-xs: 0.75rem;
--space-sm: 1rem;
--space-md: 1.5rem;
--space-lg: 2rem;
--space-xl: 3rem;
--space-2xl: 4.5rem;
--space-3xl: 6.5rem;
--z-sticky: 30;
--z-menu: 40;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
scroll-padding-top: calc(var(--header-height) + 24px);
}
body {
margin: 0;
overflow-x: hidden;
background: var(--white);
color: var(--ink);
font-family: var(--font-sans);
font-size: 16px;
line-height: 1.6;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
img {
display: block;
max-width: 100%;
height: auto;
}
a {
color: inherit;
text-decoration: none;
}
button,
summary,
a {
-webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
outline: 3px solid var(--focus);
outline-offset: 4px;
}
h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
margin: 0;
}
h1,
h2,
h3 {
color: inherit;
font-family: var(--font-display);
font-weight: 700;
letter-spacing: -0.032em;
line-height: 1.04;
text-wrap: balance;
}
p {
text-wrap: pretty;
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
ul,
ol {
margin: 0;
padding: 0;
}
.container {
width: min(calc(100% - 48px), var(--container));
margin-inline: auto;
}
.section {
padding-block: clamp(5.5rem, 9vw, 8.5rem);
}
.skip-link {
position: fixed;
z-index: 100;
top: 12px;
left: 12px;
transform: translateY(-160%);
padding: 12px 18px;
border-radius: var(--radius-sm);
background: var(--white);
color: var(--ink);
font-weight: 700;
transition: transform 160ms ease-out;
}
.skip-link:focus {
transform: translateY(0);
}
#main-content:focus {
outline: none;
}
.site-header {
position: sticky;
z-index: var(--z-sticky);
top: 0;
height: var(--header-height);
border-bottom: 1px solid var(--line-dark);
background: var(--ink);
color: var(--white);
}
.header-inner {
display: flex;
align-items: center;
width: calc(100% - 48px);
height: 100%;
margin-inline: auto;
gap: clamp(1.5rem, 3vw, 3.5rem);
}
.brand {
display: inline-flex;
flex: 0 0 auto;
align-items: center;
}
.brand img {
width: 148px;
height: 64px;
object-fit: contain;
}
.desktop-nav {
display: flex;
align-items: center;
gap: clamp(1rem, 1.7vw, 1.75rem);
margin-inline: auto;
}
.desktop-nav > a,
.nav-group > summary,
.phone-link {
position: relative;
color: oklch(91% 0.008 122);
font-size: 0.875rem;
font-weight: 600;
line-height: 1;
padding-block: 0.75rem;
}
.desktop-nav > a::after,
.nav-group > summary::after,
.phone-link::after {
position: absolute;
right: 0;
bottom: -9px;
left: 0;
height: 1px;
background: var(--brand-bright);
content: "";
transform: scaleX(0);
transform-origin: left;
transition: transform 180ms ease-out;
}
.nav-group {
position: relative;
}
.nav-group > summary {
display: inline-flex;
cursor: pointer;
list-style: none;
align-items: center;
gap: 0.4rem;
}
.nav-group > summary::-webkit-details-marker {
display: none;
}
.nav-group > summary::before {
order: 2;
color: var(--brand-bright);
content: "+";
font-size: 0.8rem;
font-weight: 600;
line-height: 1;
transition: transform 180ms ease-out;
}
.nav-group[open] > summary::before {
transform: rotate(45deg);
}
.nav-group[open] > summary::after,
.nav-group.is-current > summary::after,
.nav-group:has(a[aria-current="page"]) > summary::after,
.desktop-nav > a[aria-current="page"]::after {
transform: scaleX(1);
}
.nav-panel {
position: absolute;
z-index: var(--z-menu);
top: calc(100% + 20px);
left: 50%;
display: grid;
width: min(620px, calc(100vw - 48px));
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0;
padding: 1rem;
border: 1px solid var(--line-dark);
background: var(--ink-raised);
box-shadow: 0 8px 8px oklch(8% 0.01 122 / 28%);
transform: translateX(-50%);
}
.nav-panel-right {
right: 0;
left: auto;
transform: none;
}
.nav-panel-wide {
width: min(920px, calc(100vw - 48px));
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-panel-column {
min-width: 0;
}
.nav-panel-column + .nav-panel-column {
margin-left: 1rem;
padding-left: 1rem;
border-left: 1px solid var(--line-dark);
}
.nav-panel-label {
margin-bottom: 0.35rem;
color: var(--brand-bright);
font-size: 0.7rem;
font-weight: 700;
}
.nav-panel a {
display: flex;
min-height: 64px;
flex-direction: column;
justify-content: center;
padding: 0.72rem 0.35rem;
border-top: 1px solid var(--line-dark);
background: transparent;
color: var(--white);
transition: background-color 180ms ease-out, color 180ms ease-out;
}
.nav-panel a strong {
font-family: var(--font-display);
font-size: 0.9rem;
letter-spacing: -0.015em;
}
.nav-panel a span {
margin-top: 0.2rem;
color: oklch(71% 0.014 122);
font-size: 0.73rem;
line-height: 1.35;
}
.nav-panel a[aria-current="page"] {
color: var(--brand-bright);
}
.mobile-nav-label {
margin: 1rem 0 0.2rem;
color: var(--brand-bright);
font-size: 0.76rem;
font-weight: 700;
}
.mobile-menu nav .mobile-nav-label:first-child {
margin-top: 0;
}
.header-actions {
display: flex;
align-items: center;
gap: 1.15rem;
}
.button {
display: inline-flex;
min-height: 52px;
align-items: center;
justify-content: center;
padding: 0.9rem 1.35rem;
border: 1px solid transparent;
border-radius: var(--radius-sm);
font-size: 0.925rem;
font-weight: 700;
line-height: 1.1;
text-align: center;
transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out, transform 180ms ease-out;
}
.button-small {
min-height: 44px;
padding-inline: 1.05rem;
font-size: 0.82rem;
}
.button-accent {
background: var(--brand);
color: var(--white);
}
.button-outline {
border-color: var(--ink);
background: transparent;
color: var(--ink);
}
.button-dark {
background: var(--ink);
color: var(--white);
}
.button:active {
transform: translateY(0) scale(0.985);
}
.text-link {
display: inline-flex;
min-height: 44px;
align-items: center;
gap: 0.55rem;
border-bottom: 1px solid currentColor;
color: var(--ink);
font-weight: 700;
line-height: 1.35;
padding-block: 0.15rem 0.2rem;
}
.text-link-light {
color: var(--white);
}
.text-link span {
transition: transform 180ms ease-out;
}
.mobile-menu {
display: none;
margin-left: auto;
}
.mobile-menu > summary {
display: grid;
width: 46px;
height: 46px;
cursor: pointer;
list-style: none;
place-content: center;
gap: 5px;
}
.mobile-menu > summary::-webkit-details-marker {
display: none;
}
.mobile-menu > summary span {
display: block;
width: 24px;
height: 2px;
background: var(--white);
transition: opacity 160ms ease-out, transform 160ms ease-out;
}
.mobile-menu[open] > summary span:first-child {
transform: translateY(7px) rotate(45deg);
}
.mobile-menu[open] > summary span:nth-child(2) {
opacity: 0;
}
.mobile-menu[open] > summary span:last-child {
transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu nav {
position: absolute;
z-index: var(--z-menu);
top: 100%;
right: 0;
left: 0;
display: grid;
border-top: 1px solid var(--line-dark);
background: var(--ink);
padding: 16px 24px 28px;
}
.mobile-menu:not([open]) > nav {
display: none;
}
.mobile-menu nav a {
padding: 13px 0;
border-bottom: 1px solid var(--line-dark);
color: var(--white);
font-size: 1rem;
font-weight: 600;
}
.mobile-nav-group {
border-bottom: 1px solid var(--line-dark);
}
.mobile-nav-group > summary {
display: flex;
min-height: 54px;
cursor: pointer;
list-style: none;
align-items: center;
justify-content: space-between;
color: var(--white);
font-size: 1rem;
font-weight: 700;
}
.mobile-nav-group > summary::-webkit-details-marker {
display: none;
}
.mobile-nav-group > summary::after {
color: var(--brand-bright);
content: "+";
font-size: 1.15rem;
font-weight: 400;
transition: transform 180ms ease-out;
}
.mobile-nav-group[open] > summary::after {
transform: rotate(45deg);
}
.mobile-nav-group > div {
padding: 0 0 0.8rem 1rem;
}
.mobile-nav-group > div a {
display: block;
padding-block: 0.7rem;
border-bottom: 0;
color: oklch(82% 0.01 122);
font-size: 0.9rem;
}
.mobile-menu nav a[aria-current="page"] {
color: var(--brand-bright);
}
.mobile-menu nav .mobile-nav-action {
margin-top: 1rem;
border-bottom: 0;
border-radius: var(--radius-sm);
background: var(--brand);
color: var(--white);
text-align: center;
}
.hero {
position: relative;
isolation: isolate;
min-height: clamp(700px, calc(100svh - var(--header-height)), 820px);
overflow: hidden;
background: var(--ink);
color: var(--white);
}
.hero-copy {
position: relative;
z-index: 2;
display: flex;
width: min(calc(100% - 48px), var(--container));
min-height: inherit;
flex-direction: column;
align-items: flex-start;
justify-content: center;
margin-inline: auto;
padding-block: clamp(5rem, 9vw, 7.5rem);
}
.hero-context {
display: inline-flex;
align-items: center;
gap: var(--space-xs);
margin-bottom: var(--space-md);
color: var(--brand-bright);
font-size: 0.84rem;
font-weight: 600;
}
.hero-context::before {
width: 42px;
height: 1px;
background: currentColor;
content: "";
}
.hero h1 {
max-width: 1000px;
font-size: clamp(3.8rem, 6.2vw, 5.8rem);
letter-spacing: -0.038em;
}
.hero-intro {
max-width: 640px;
margin-top: var(--space-lg);
color: oklch(91% 0.01 122);
font-size: clamp(1.05rem, 1.35vw, 1.2rem);
line-height: 1.65;
}
.hero-actions {
display: flex;
align-items: center;
gap: var(--space-md);
margin-top: clamp(var(--space-lg), 4vw, var(--space-xl));
}
.hero-signature {
display: flex;
flex-wrap: wrap;
gap: 0;
margin-top: var(--space-xl);
color: oklch(84% 0.012 122);
font-size: 0.76rem;
font-weight: 600;
letter-spacing: 0.055em;
}
.hero-signature span {
display: inline-flex;
align-items: center;
}
.hero-signature span:not(:last-child)::after {
width: 1px;
height: 13px;
margin-inline: 1rem;
background: var(--brand);
content: "";
}
.hero-media {
position: absolute;
z-index: 0;
inset: 0;
border-bottom: 7px solid var(--brand);
background: var(--ink-raised);
}
.hero-media::after {
position: absolute;
z-index: 1;
inset: 0;
background:
linear-gradient(90deg, oklch(10% 0.006 122 / 0.92) 0%, oklch(10% 0.006 122 / 0.84) 34%, oklch(10% 0.006 122 / 0.58) 60%, oklch(10% 0.006 122 / 0.16) 100%),
linear-gradient(0deg, oklch(10% 0.006 122 / 0.68) 0%, transparent 52%);
content: "";
pointer-events: none;
}
.hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 48%;
animation: hero-settle 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-media figcaption {
position: absolute;
z-index: 2;
right: max(24px, calc((100vw - var(--container)) / 2));
bottom: var(--space-md);
display: grid;
min-width: min(330px, 78%);
padding-top: var(--space-xs);
border-top: 2px solid var(--brand-bright);
background: transparent;
color: var(--white);
text-shadow: 0 1px 3px oklch(10% 0.006 122 / 0.72);
}
.hero-media figcaption span {
color: var(--brand-bright);
font-size: 0.72rem;
font-weight: 600;
}
.hero-media figcaption strong {
margin-top: 0.15rem;
font-size: 0.95rem;
font-weight: 600;
}
@keyframes hero-settle {
from {
opacity: 0.92;
transform: scale(1.025);
}
to {
opacity: 1;
transform: scale(1);
}
}
.proof-strip {
border-bottom: 1px solid var(--line);
background: var(--brand-soft);
}
.proof-strip dl {
display: grid;
width: min(calc(100% - 48px), var(--container));
margin-inline: auto;
grid-template-columns: repeat(3, 1fr);
}
.proof-strip dl > div {
padding: 1.9rem clamp(1.2rem, 3vw, 2.75rem);
}
.proof-strip dl > div:first-child {
padding-left: 0;
}
.proof-strip dl > div:not(:last-child) {
border-right: 1px solid oklch(81% 0.035 122);
}
.proof-strip dt {
color: var(--brand-deep);
font-size: 0.82rem;
font-weight: 800;
}
.proof-strip dd {
max-width: 32ch;
margin-top: 0.35rem;
color: var(--ink-soft);
font-size: 0.91rem;
line-height: 1.5;
}
.audience-section {
background: var(--white);
}
.audience-intro {
display: grid;
align-items: start;
gap: clamp(3rem, 8vw, 8rem);
grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}
.audience-intro h2,
.section-heading h2,
.solutions-header h2,
.resources-lede h2,
.testimonial-heading h2 {
font-size: clamp(2.45rem, 4.5vw, 4.6rem);
}
.audience-intro > div {
padding-top: 0.5rem;
}
.audience-intro p {
max-width: 58ch;
color: var(--text-muted);
font-size: 1.05rem;
line-height: 1.7;
}
.audience-intro .text-link {
margin-top: 1.5rem;
}
.audience-paths {
display: grid;
margin-top: clamp(4rem, 7vw, 6.5rem);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
grid-template-columns: repeat(3, 1fr);
}
.audience-paths article {
padding: clamp(1.8rem, 3vw, 3rem);
}
.audience-paths article:first-child {
padding-left: 0;
}
.audience-paths article:not(:last-child) {
border-right: 1px solid var(--line);
}
.audience-paths h3 {
font-size: 1.25rem;
letter-spacing: -0.02em;
}
.audience-paths p {
max-width: 40ch;
min-height: 5.3rem;
margin-top: 1rem;
color: var(--text-muted);
font-size: 0.95rem;
}
.audience-paths a {
display: inline-flex;
min-height: 44px;
align-items: center;
margin-top: 1.25rem;
border-bottom: 1px solid var(--brand);
color: var(--brand-deep);
font-size: 0.88rem;
font-weight: 700;
}
.applications-section {
background: var(--surface);
}
.section-heading {
display: grid;
gap: 1.2rem;
}
.section-heading-wide {
align-items: end;
gap: clamp(2rem, 8vw, 8rem);
grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
}
.section-heading p {
max-width: 58ch;
color: var(--text-muted);
font-size: 1rem;
line-height: 1.7;
}
.application-mosaic {
--application-row-height: 225px;
display: grid;
margin-top: clamp(3rem, 6vw, 5rem);
gap: 12px;
grid-auto-rows: var(--application-row-height);
grid-template-columns: repeat(12, minmax(0, 1fr));
grid-template-rows: repeat(2, var(--application-row-height)) calc(var(--application-row-height) + var(--space-lg));
}
.application {
position: relative;
display: block;
overflow: hidden;
border-radius: var(--radius-sm);
background: var(--ink-raised);
color: var(--white);
}
.application::after {
position: absolute;
inset: 0;
background: linear-gradient(to top, oklch(10% 0.006 122 / 0.82), transparent 60%);
content: "";
pointer-events: none;
}
.application img {
width: 100%;
height: 100%;
object-fit: cover;
}
.application-copy {
position: absolute;
z-index: 1;
right: 0;
bottom: 0;
left: 0;
display: grid;
gap: 0.25rem;
padding: clamp(1.2rem, 2.5vw, 2rem);
}
.application-copy strong {
font-size: clamp(1.25rem, 2vw, 1.8rem);
letter-spacing: -0.025em;
}
.application-copy small {
max-width: 44ch;
color: oklch(88% 0.01 122);
font-size: 0.82rem;
line-height: 1.4;
}
.application-copy a {
justify-self: start;
margin-top: 0.45rem;
border-bottom: 1px solid oklch(82% 0.08 122);
color: var(--white);
font-size: 0.78rem;
font-weight: 700;
}
.application-education {
grid-column: 1 / span 8;
grid-row: span 2;
}
.application-worship {
grid-column: 9 / span 4;
grid-row: span 2;
}
.application-commercial {
grid-column: 1 / span 5;
}
.application-custom {
grid-column: 6 / span 7;
}
.section-end-link {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
margin-top: 2.5rem;
}
.solutions-section {
background: var(--white);
}
.solutions-header {
display: grid;
align-items: end;
gap: clamp(3rem, 8vw, 9rem);
grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
}
.single-kicker {
margin-bottom: 1.25rem;
color: var(--brand-deep);
font-size: 0.84rem;
font-weight: 700;
}
.solutions-header > p,
.resources-lede > p:last-child {
max-width: 60ch;
color: var(--text-muted);
font-size: 1rem;
line-height: 1.7;
}
.solution-list {
margin-top: clamp(3.5rem, 7vw, 6rem);
border-top: 1px solid var(--ink);
}
.solution-list article {
display: grid;
gap: clamp(2.5rem, 7vw, 7rem);
padding-block: clamp(2rem, 4vw, 3.5rem);
border-bottom: 1px solid var(--line);
grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}
.solution-title h3 {
font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}
.solution-title p {
max-width: 49ch;
margin-top: 1rem;
color: var(--text-muted);
font-size: 0.95rem;
}
.solution-list ul {
display: grid;
align-self: start;
column-gap: 2rem;
grid-template-columns: repeat(2, minmax(0, 1fr));
list-style: none;
}
.solution-list li {
border-bottom: 1px solid var(--line);
}
.solution-list li:nth-last-child(-n + 2) {
border-bottom-color: transparent;
}
.solution-list a {
display: flex;
min-height: 49px;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding-block: 0.65rem;
color: var(--ink-soft);
font-size: 0.91rem;
font-weight: 600;
transition: color 160ms ease-out, transform 160ms ease-out;
}
.solution-list a::after {
color: var(--brand);
content: "↗";
font-size: 0.8rem;
}
.custom-section {
display: grid;
min-height: 720px;
background: var(--ink);
color: var(--white);
grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}
.custom-media {
position: relative;
overflow: hidden;
}
.custom-media::after {
position: absolute;
right: 0;
bottom: 0;
width: 7px;
height: 34%;
background: var(--brand);
content: "";
}
.custom-media img {
width: 100%;
height: 100%;
object-fit: cover;
}
.custom-copy {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: clamp(4.5rem, 9vw, 8.5rem);
}
.custom-copy .single-kicker {
color: var(--brand-bright);
}
.custom-copy h2 {
max-width: 720px;
font-size: clamp(2.6rem, 5vw, 5rem);
}
.custom-copy > p:not(.single-kicker, .custom-note) {
max-width: 62ch;
margin-top: 1.7rem;
color: oklch(84% 0.012 122);
font-size: 1.05rem;
}
.custom-capabilities {
display: grid;
width: 100%;
max-width: 780px;
margin: 2.5rem 0;
border-top: 1px solid var(--line-dark);
grid-template-columns: repeat(2, minmax(0, 1fr));
list-style: none;
}
.custom-capabilities li {
padding: 0.95rem 1rem 0.95rem 0;
border-bottom: 1px solid var(--line-dark);
color: oklch(91% 0.009 122);
font-size: 0.9rem;
}
.custom-capabilities li:nth-child(odd) {
margin-right: 1.5rem;
}
.custom-note {
margin-top: clamp(3rem, 6vw, 6rem);
padding-top: 1rem;
border-top: 1px solid var(--brand);
color: var(--brand-bright);
font-size: 0.83rem;
font-weight: 700;
}
.process-section {
background: var(--white);
}
.process-layout {
display: grid;
align-items: start;
gap: clamp(var(--space-xl), 6vw, var(--space-3xl));
grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}
.process-media {
position: sticky;
top: calc(var(--header-height) + 28px);
overflow: hidden;
border-radius: var(--radius-sm);
background: var(--ink);
color: var(--white);
}
.process-visual {
position: relative;
}
.process-visual img {
width: 100%;
aspect-ratio: 4 / 3;
object-fit: cover;
}
.process-visual figcaption {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: var(--space-xs) var(--space-sm);
background: oklch(13% 0.008 122 / 0.88);
color: oklch(91% 0.01 122);
font-size: 0.78rem;
font-weight: 600;
}
.process-brief {
padding: clamp(var(--space-lg), 3vw, 2.5rem);
}
.process-brief > p {
color: var(--brand-bright);
font-size: 0.84rem;
font-weight: 700;
}
.process-brief h3 {
max-width: 14ch;
margin-top: var(--space-xs);
font-size: clamp(1.55rem, 2.2vw, 2.1rem);
line-height: 1.12;
}
.process-brief ul {
margin-top: var(--space-lg);
border-top: 1px solid var(--line-dark);
list-style: none;
}
.process-brief li {
padding-block: var(--space-xs);
border-bottom: 1px solid var(--line-dark);
color: oklch(84% 0.012 122);
font-size: 0.92rem;
}
.process-brief .text-link {
margin-top: var(--space-lg);
}
.process-copy .section-heading h2 {
font-size: clamp(2.45rem, 4.2vw, 4.3rem);
}
.process-steps {
margin-top: 2.5rem;
border-top: 1px solid var(--ink);
list-style: none;
}
.process-steps li {
display: grid;
gap: 1.5rem;
padding-block: 1.55rem;
border-bottom: 1px solid var(--line);
grid-template-columns: 52px minmax(0, 1fr);
}
.process-steps > li > span {
color: var(--brand);
font-size: 0.79rem;
font-weight: 800;
}
.process-steps h3 {
font-size: 1.28rem;
letter-spacing: -0.02em;
}
.process-steps p {
max-width: 55ch;
margin-top: 0.6rem;
color: var(--text-muted);
font-size: 0.94rem;
}
.resources-section {
background: var(--brand-soft);
}
.resources-lede {
display: grid;
align-items: end;
column-gap: clamp(3rem, 7vw, 8rem);
grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr);
}
.resources-lede .single-kicker {
grid-column: 1 / -1;
}
.resource-columns {
display: grid;
margin-top: clamp(3.5rem, 7vw, 6rem);
gap: clamp(2.5rem, 6vw, 7rem);
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.resource-columns article {
border-top: 2px solid var(--brand-deep);
}
.resource-columns h3 {
padding-block: 1.5rem 1.1rem;
font-size: 1.35rem;
}
.resource-columns a {
display: flex;
min-height: 59px;
align-items: center;
justify-content: space-between;
gap: 1.25rem;
border-bottom: 1px solid oklch(80% 0.035 122);
color: var(--ink-soft);
font-size: 0.94rem;
font-weight: 600;
transition: color 160ms ease-out, transform 160ms ease-out;
}
.resource-columns a span:last-child {
color: var(--brand-deep);
font-size: 0.7rem;
font-weight: 800;
}
.testimonials-section {
background: var(--white);
}
.testimonial-layout {
display: grid;
align-items: stretch;
column-gap: clamp(var(--space-xl), 7vw, var(--space-3xl));
row-gap: var(--space-xl);
grid-template-areas:
"heading carousel"
"navigation carousel";
grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
grid-template-rows: minmax(0, 1fr) auto;
}
.testimonial-heading {
grid-area: heading;
}
.testimonial-navigation {
align-self: end;
grid-area: navigation;
}
.testimonial-heading h2 {
font-size: clamp(2.25rem, 3.8vw, 3.9rem);
}
.testimonial-heading > p {
max-width: 36ch;
margin-top: var(--space-md);
color: var(--text-muted);
font-size: 1rem;
}
.testimonial-controls {
display: flex;
align-items: center;
gap: var(--space-xs);
}
.testimonial-control {
display: inline-grid;
width: 48px;
height: 48px;
place-items: center;
border: 1px solid var(--ink);
border-radius: 50%;
background: transparent;
color: var(--ink);
cursor: pointer;
font: inherit;
font-size: 1.25rem;
transition: background-color 180ms ease-out, color 180ms ease-out, transform 180ms ease-out;
}
.testimonial-control:focus-visible,
.testimonial-viewport:focus-visible {
outline: 3px solid var(--focus);
outline-offset: 4px;
}
.testimonial-control:disabled {
border-color: var(--line);
color: var(--line);
cursor: not-allowed;
}
.testimonial-status {
min-width: 4.5rem;
color: var(--ink-soft);
font-size: 0.86rem;
font-weight: 700;
text-align: center;
}
.testimonial-progress {
width: min(100%, 15rem);
height: 3px;
margin-top: var(--space-md);
overflow: hidden;
background: var(--line);
}
.testimonial-progress span {
display: block;
width: 100%;
height: 100%;
background: var(--brand);
transform: scaleX(var(--testimonial-progress, 0.3333));
transform-origin: left center;
transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-carousel {
min-width: 0;
border-radius: var(--radius-sm);
background: var(--ink);
color: var(--white);
grid-area: carousel;
}
.testimonial-viewport {
overflow: visible;
}
.testimonial-carousel.is-enhanced .testimonial-viewport {
overflow-x: auto;
overscroll-behavior-inline: contain;
scroll-snap-type: inline mandatory;
scrollbar-width: none;
}
.testimonial-carousel.is-enhanced .testimonial-viewport::-webkit-scrollbar {
display: none;
}
.testimonial-track {
display: grid;
list-style: none;
}
.testimonial-carousel.is-enhanced .testimonial-track {
display: flex;
}
.testimonial-slide {
display: flex;
min-height: 470px;
flex-direction: column;
justify-content: space-between;
gap: var(--space-xl);
padding: clamp(var(--space-lg), 5vw, var(--space-2xl));
}
.testimonial-carousel:not(.is-enhanced) .testimonial-slide + .testimonial-slide {
border-top: 1px solid var(--line-dark);
}
.testimonial-carousel.is-enhanced .testimonial-slide {
min-width: 100%;
flex: 0 0 100%;
scroll-snap-align: start;
scroll-snap-stop: always;
}
.testimonial-slide blockquote {
display: flex;
flex: 1;
flex-direction: column;
justify-content: space-between;
gap: var(--space-xl);
}
.testimonial-slide blockquote p {
max-width: 30ch;
color: var(--white);
font-family: var(--font-display);
font-size: clamp(1.65rem, 2.75vw, 2.75rem);
font-weight: 600;
letter-spacing: -0.032em;
line-height: 1.27;
text-wrap: balance;
}
.testimonial-slide footer {
padding-top: var(--space-sm);
border-top: 1px solid var(--line-dark);
}
.testimonial-slide cite {
color: var(--brand-bright);
font-size: 0.88rem;
font-style: normal;
font-weight: 800;
}
.testimonial-slide cite span {
display: block;
margin-top: 0.18rem;
color: oklch(80% 0.012 122);
font-size: 0.78rem;
font-weight: 600;
}
.project-cta {
background: var(--brand);
color: var(--white);
}
.project-cta-inner {
display: grid;
min-height: 410px;
align-items: center;
gap: clamp(3rem, 8vw, 9rem);
padding-block: clamp(4.5rem, 8vw, 7.5rem);
grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
}
.project-cta .single-kicker {
color: var(--white);
}
.project-cta h2 {
font-size: clamp(3rem, 6.5vw, 6rem);
}
.project-cta p:not(.single-kicker) {
max-width: 59ch;
margin-top: 1.3rem;
color: oklch(94% 0.018 122);
font-size: 1.05rem;
}
.project-cta-actions {
display: grid;
justify-items: start;
gap: 1.4rem;
}
.project-cta-actions > a:not(.button) {
display: inline-flex;
min-height: 44px;
align-items: center;
border-bottom: 1px solid currentColor;
font-size: 0.92rem;
font-weight: 700;
}
.site-footer {
background: var(--ink);
color: var(--white);
padding-top: clamp(4rem, 7vw, 6.5rem);
}
.footer-grid {
display: grid;
gap: clamp(2.5rem, 5vw, 5rem);
grid-template-columns: minmax(230px, 1.25fr) minmax(145px, 0.65fr) minmax(170px, 0.72fr) minmax(240px, 0.95fr);
}
.footer-brand .brand img {
width: 175px;
height: auto;
}
.footer-brand p {
max-width: 39ch;
margin-top: 1.4rem;
color: oklch(72% 0.012 122);
font-size: 0.88rem;
}
.site-footer h2 {
margin-bottom: 1.35rem;
color: var(--brand-bright);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0;
}
.site-footer nav,
.footer-contact {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.site-footer nav a,
.footer-contact a,
.footer-contact address {
margin-bottom: 0.65rem;
color: oklch(80% 0.009 122);
font-size: 0.82rem;
font-style: normal;
line-height: 1.6;
}
.footer-contact a:last-child {
overflow-wrap: anywhere;
}
.footer-bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
margin-top: clamp(3.5rem, 7vw, 6.5rem);
padding-block: 1.25rem;
border-top: 1px solid var(--line-dark);
color: oklch(62% 0.012 122);
font-size: 0.72rem;
}
@media (hover: hover) {
.desktop-nav > a:hover::after,
.nav-group > summary:hover::after,
.phone-link:hover::after {
transform: scaleX(1);
}
.nav-panel a:hover {
background: oklch(26% 0.016 122);
color: var(--white);
}
.button:hover {
transform: translateY(-2px);
}
.button-accent:hover {
background: var(--brand-deep);
}
.button-outline:hover {
background: var(--ink);
color: var(--white);
}
.button-dark:hover {
background: oklch(25% 0.014 122);
}
.text-link:hover span {
transform: translate(2px, -2px);
}
.solution-list a:hover,
.resource-columns a:hover {
color: var(--brand-deep);
transform: translateX(0.3rem);
}
.testimonial-control:not(:disabled):hover {
background: var(--ink);
color: var(--white);
transform: translateY(-2px);
}
.site-footer nav a:hover,
.footer-contact a:hover {
color: var(--white);
}
}
@media (max-width: 1180px) {
.desktop-nav {
gap: 1rem;
}
.desktop-nav > a,
.nav-group > summary,
.phone-link {
font-size: 0.8rem;
}
.phone-link {
display: none;
}
.testimonial-layout {
grid-template-columns: 0.8fr 1.2fr;
}
}
@media (max-width: 960px) {
:root {
--header-height: 76px;
}
body.nav-open {
overflow: hidden;
}
.header-inner {
width: min(calc(100% - 36px), 1440px);
}
.brand img {
width: 132px;
height: 58px;
}
.desktop-nav,
.header-actions {
display: none;
}
.mobile-menu {
display: block;
}
.mobile-menu nav {
height: calc(100svh - var(--header-height));
align-content: start;
overflow-y: auto;
overscroll-behavior: contain;
}
.hero {
min-height: max(720px, calc(100svh - var(--header-height)));
}
.hero-copy {
width: min(calc(100% - 48px), 760px);
min-height: inherit;
justify-content: flex-end;
padding-block: clamp(5rem, 11vw, 7rem) 3.5rem;
}
.hero h1 {
max-width: 700px;
font-size: clamp(3.2rem, 9vw, 5.1rem);
}
.hero-intro {
max-width: 660px;
}
.hero-signature {
margin-top: 2.5rem;
}
.hero-media::after {
background:
linear-gradient(0deg, oklch(10% 0.006 122 / 0.98) 0%, oklch(10% 0.006 122 / 0.9) 54%, oklch(10% 0.006 122 / 0.3) 100%),
linear-gradient(90deg, oklch(10% 0.006 122 / 0.54) 0%, transparent 86%);
}
.hero-media img {
object-position: center 45%;
}
.hero-media figcaption {
display: none;
}
.proof-strip dl {
width: min(calc(100% - 40px), 760px);
}
.proof-strip dl > div {
padding-inline: 1.25rem;
}
.audience-intro,
.section-heading-wide,
.solutions-header,
.resources-lede,
.process-layout {
grid-template-columns: 1fr;
}
.audience-intro,
.section-heading-wide,
.solutions-header,
.resources-lede {
gap: 2rem;
}
.audience-paths {
grid-template-columns: 1fr;
}
.audience-paths article,
.audience-paths article:first-child {
padding-inline: 0;
}
.audience-paths article:not(:last-child) {
border-right: 0;
border-bottom: 1px solid var(--line);
}
.audience-paths p {
min-height: 0;
}
.application-mosaic {
--application-row-height: 240px;
}
.application-education,
.application-worship,
.application-commercial,
.application-custom {
grid-column: auto / span 6;
grid-row: auto;
}
.application-education,
.application-worship {
grid-row: span 2;
}
.solution-list article {
gap: 2.5rem;
grid-template-columns: 1fr;
}
.custom-section {
min-height: auto;
grid-template-columns: 1fr;
}
.custom-media {
min-height: 670px;
}
.custom-media::after {
width: 35%;
height: 7px;
}
.custom-copy {
padding: clamp(4.5rem, 10vw, 7rem) max(24px, calc((100vw - 760px) / 2));
}
.process-media {
position: static;
display: grid;
align-items: stretch;
grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}
.process-visual img {
height: 100%;
min-height: 420px;
aspect-ratio: auto;
}
.resource-columns {
gap: 3.5rem;
}
.testimonial-layout {
gap: var(--space-xl);
grid-template-areas:
"heading"
"carousel"
"navigation";
grid-template-columns: 1fr;
grid-template-rows: auto;
}
.project-cta-inner {
grid-template-columns: minmax(0, 1fr);
}
.project-cta-inner > *,
.project-cta-actions {
min-width: 0;
}
.footer-grid {
grid-template-columns: 1.1fr repeat(2, 0.7fr);
}
.footer-contact {
grid-column: 2 / -1;
}
.hero-context,
.hero-signature,
.hero-media figcaption span,
.application-copy small,
.single-kicker,
.proof-strip dt,
.process-steps > li > span,
.process-brief > p,
.process-visual figcaption,
.site-footer h2,
.footer-bottom,
.resource-columns a span:last-child,
.site-footer nav a,
.footer-contact a,
.footer-contact address,
.footer-brand p,
.custom-note {
font-size: 0.875rem;
}
}
@media (max-width: 700px) {
.container {
width: min(calc(100% - 36px), var(--container));
}
.section {
padding-block: 5rem;
}
.hero-copy {
width: min(calc(100% - 36px), 760px);
min-height: inherit;
padding-block: 4.5rem 2.75rem;
}
.hero-context {
align-items: flex-start;
font-size: 0.875rem;
}
.hero-context::before {
width: 28px;
margin-top: 0.7em;
}
.hero h1 {
font-size: clamp(2.75rem, 14vw, 4rem);
letter-spacing: -0.035em;
}
.hero-intro {
margin-top: 1.45rem;
font-size: 1rem;
}
.hero-actions {
align-items: flex-start;
flex-direction: column;
gap: 1.15rem;
margin-top: 2rem;
}
.hero-signature {
gap: 0.55rem 0;
margin-top: 2.5rem;
letter-spacing: 0.03em;
}
.hero-signature span:not(:last-child)::after {
margin-inline: 0.65rem;
}
.process-media {
display: block;
}
.process-visual img {
height: auto;
min-height: 0;
aspect-ratio: 4 / 3;
}
.proof-strip dl {
width: min(calc(100% - 36px), 760px);
grid-template-columns: 1fr;
}
.proof-strip dl > div,
.proof-strip dl > div:first-child {
padding: 1.3rem 0;
}
.proof-strip dl > div:not(:last-child) {
border-right: 0;
border-bottom: 1px solid oklch(81% 0.035 122);
}
.proof-strip dd {
max-width: 52ch;
}
.audience-intro h2,
.section-heading h2,
.solutions-header h2,
.resources-lede h2,
.testimonial-heading h2 {
font-size: clamp(2.25rem, 11vw, 3.4rem);
}
.application-mosaic {
display: flex;
flex-direction: column;
}
.application {
min-height: 365px;
}
.application-education {
min-height: 300px;
}
.application-copy small {
font-size: 0.875rem;
}
.solution-list ul {
grid-template-columns: 1fr;
}
.solution-list li:nth-last-child(-n + 2) {
border-bottom-color: var(--line);
}
.solution-list li:last-child {
border-bottom-color: transparent;
}
.section-end-link {
align-items: flex-start;
flex-direction: column;
}
.custom-media {
min-height: 520px;
}
.custom-copy {
padding: 5rem 24px;
}
.custom-copy h2 {
font-size: clamp(2.55rem, 12vw, 3.7rem);
}
.custom-capabilities {
grid-template-columns: 1fr;
}
.custom-capabilities li:nth-child(odd) {
margin-right: 0;
}
.resource-columns,
.testimonial-layout {
grid-template-columns: 1fr;
}
.testimonial-slide {
min-height: 470px;
padding: var(--space-lg);
}
.testimonial-slide blockquote p {
font-size: clamp(1.45rem, 7vw, 1.9rem);
line-height: 1.34;
}
.project-cta h2 {
font-size: clamp(3rem, 16vw, 4.75rem);
}
.footer-grid {
grid-template-columns: 1fr 1fr;
}
.footer-brand,
.footer-contact {
grid-column: 1 / -1;
}
.footer-bottom {
align-items: flex-start;
flex-direction: column;
gap: 0.5rem;
}
.site-footer nav a,
.footer-contact a {
display: flex;
min-height: 44px;
align-items: center;
margin-bottom: 0;
}
}
@media (max-width: 440px) {
.header-inner {
width: calc(100% - 28px);
}
.hero-copy {
padding-inline: 0;
}
.project-cta h2 {
font-size: clamp(2.5rem, 13vw, 4rem);
overflow-wrap: break-word;
}
.hero-context {
gap: 0.55rem;
}
.hero-context::before {
width: 18px;
}
.hero-signature {
font-size: 0.875rem;
}
.hero-signature span:not(:last-child)::after {
margin-inline: 0.45rem;
}
.button {
width: 100%;
}
.hero-actions,
.hero-actions .button {
width: 100%;
}
.hero-actions .text-link {
width: auto;
}
.section-end-link .button {
width: 100%;
}
.footer-grid {
grid-template-columns: 1fr;
}
.footer-brand,
.footer-contact {
grid-column: auto;
}
}
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
scroll-behavior: auto !important;
transition-duration: 0.01ms !important;
}
}.product-detail-page {
background: var(--white);
}
.product-detail-hero {
position: relative;
isolation: isolate;
min-height: clamp(680px, 76svh, 800px);
overflow: hidden;
background: var(--ink);
color: var(--white);
}
.product-detail-hero-media {
position: absolute;
z-index: 0;
inset: 0;
border-bottom: 7px solid var(--brand);
background: var(--ink-raised);
}
.product-detail-hero-media::after {
position: absolute;
z-index: 1;
inset: 0;
background:
linear-gradient(270deg, oklch(9% 0.006 122 / 0.97) 0%, oklch(9% 0.006 122 / 0.9) 41%, oklch(9% 0.006 122 / 0.48) 70%, oklch(9% 0.006 122 / 0.08) 100%),
linear-gradient(0deg, oklch(9% 0.006 122 / 0.76) 0%, transparent 54%);
content: "";
pointer-events: none;
}
.product-detail-hero-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
animation: hero-settle 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.product-detail-hero-media figcaption {
position: absolute;
z-index: 2;
bottom: var(--space-md);
left: max(24px, calc((100vw - var(--container)) / 2));
display: grid;
width: min(340px, 78%);
padding-top: 0.6rem;
border-top: 2px solid var(--brand-bright);
text-shadow: 0 1px 3px oklch(10% 0.006 122 / 0.72);
}
.product-detail-hero-media figcaption span {
color: var(--brand-bright);
font-size: 0.72rem;
font-weight: 700;
}
.product-detail-hero-media figcaption strong {
margin-top: 0.12rem;
font-size: 0.95rem;
font-weight: 600;
}
.product-detail-hero-copy {
position: relative;
z-index: 2;
display: flex;
min-height: inherit;
align-items: center;
justify-content: flex-end;
padding-block: clamp(4.75rem, 8vw, 7rem);
}
.product-detail-hero-copy-inner {
width: min(100%, 725px);
}
.breadcrumbs {
display: flex;
flex-wrap: wrap;
gap: 0.55rem;
margin-bottom: clamp(2.3rem, 4vw, 3.5rem);
color: oklch(82% 0.012 122);
font-size: 0.78rem;
font-weight: 600;
}
.breadcrumbs a {
border-bottom: 1px solid currentColor;
}
.product-detail-hero .hero-context {
margin-bottom: 1.15rem;
}
.product-detail-hero h1 {
max-width: 760px;
font-size: clamp(3.6rem, 5.65vw, 5.65rem);
letter-spacing: -0.04em;
}
.product-detail-hero .hero-intro {
max-width: 665px;
}
.product-identity {
border-bottom: 1px solid oklch(78% 0.045 122);
background: var(--brand-soft);
}
.product-identity-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-identity-grid > div {
min-height: 112px;
padding: 1.45rem clamp(1rem, 2.5vw, 2.2rem);
border-right: 1px solid oklch(80% 0.035 122);
}
.product-identity-grid > div:first-child {
padding-left: 0;
}
.product-identity-grid > div:last-child {
padding-right: 0;
border-right: 0;
}
.product-identity dt {
margin-bottom: 0.35rem;
color: var(--brand-deep);
font-size: 0.72rem;
font-weight: 800;
}
.product-identity dd {
color: var(--ink);
font-family: var(--font-display);
font-size: 1.05rem;
font-weight: 700;
letter-spacing: -0.015em;
line-height: 1.35;
}
.product-page-index {
position: sticky;
z-index: 25;
top: var(--header-height);
border-bottom: 1px solid var(--line);
background: oklch(100% 0 0 / 0.97);
box-shadow: 0 3px 8px oklch(12% 0.008 122 / 0.06);
}
.product-page-index-inner {
display: flex;
overflow-x: auto;
overscroll-behavior-inline: contain;
scrollbar-width: none;
}
.product-page-index-inner::-webkit-scrollbar {
display: none;
}
.product-page-index a {
display: inline-flex;
min-height: 62px;
flex: 1 0 auto;
align-items: center;
justify-content: center;
padding-inline: clamp(1rem, 2.25vw, 2.2rem);
border-right: 1px solid var(--line);
color: var(--ink-soft);
font-size: 0.84rem;
font-weight: 700;
white-space: nowrap;
transition: background-color 160ms ease-out, color 160ms ease-out;
}
.product-page-index a:first-child {
border-left: 1px solid var(--line);
}
#overview,
#configure,
#performance,
#applications,
#documents,
#faqs {
scroll-margin-top: 38px;
}
.product-overview-layout {
display: grid;
align-items: stretch;
gap: clamp(3.5rem, 8vw, 8.5rem);
grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}
.product-overview-copy h2,
.configuration-heading h2,
.selection-workflow-copy h2,
.performance-heading h2,
.application-heading h2,
.documentation-heading h2,
.related-heading h2,
.product-faq h2 {
font-size: clamp(2.75rem, 4.75vw, 4.85rem);
}
.overview-lede {
max-width: 47ch;
margin-top: 1.75rem;
color: var(--ink);
font-family: var(--font-display);
font-size: clamp(1.35rem, 2.15vw, 1.82rem);
font-weight: 600;
letter-spacing: -0.026em;
line-height: 1.35;
}
.product-overview-copy > p:not(.single-kicker, .overview-lede) {
max-width: 63ch;
margin-top: 1.3rem;
color: var(--text-muted);
line-height: 1.76;
}
.overview-facts {
margin-top: clamp(2.6rem, 5vw, 4.5rem);
border-top: 1px solid var(--ink);
}
.overview-facts > div {
display: grid;
gap: 2rem;
padding-block: 1.2rem;
border-bottom: 1px solid var(--line);
grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
}
.overview-facts dt {
color: var(--brand-deep);
font-size: 0.76rem;
font-weight: 800;
}
.overview-facts dd {
color: var(--ink-soft);
line-height: 1.55;
}
.product-artifact {
display: grid;
min-height: 610px;
grid-template-columns: minmax(230px, 1fr) minmax(130px, 0.48fr);
background: var(--ink);
color: var(--white);
}
.product-artifact-image {
display: flex;
align-items: center;
justify-content: center;
padding: clamp(1.5rem, 4vw, 3.25rem) 0 clamp(1.5rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3.25rem);
overflow: hidden;
}
.product-artifact-image img {
width: min(100%, 401px);
max-height: 522px;
object-fit: contain;
}
.product-artifact figcaption {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: clamp(1.5rem, 3vw, 2.4rem);
border-left: 1px solid var(--line-dark);
}
.product-artifact figcaption span {
color: var(--brand-bright);
font-size: 0.72rem;
font-weight: 800;
}
.product-artifact figcaption strong {
margin-top: 0.35rem;
font-family: var(--font-display);
font-size: 1.08rem;
line-height: 1.35;
}
.product-artifact figcaption p {
margin-top: 1rem;
color: oklch(76% 0.012 122);
font-size: 0.82rem;
line-height: 1.55;
}
.configuration-section {
border-top: 1px solid oklch(80% 0.035 122);
background: var(--brand-soft);
}
.configuration-heading,
.application-heading,
.documentation-heading {
display: grid;
align-items: end;
gap: clamp(3rem, 8vw, 8rem);
grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}
.configuration-heading > p,
.application-heading > p,
.documentation-heading > div:last-child > p {
max-width: 61ch;
color: var(--text-muted);
line-height: 1.72;
}
.configuration-layout {
display: grid;
align-items: start;
gap: clamp(3rem, 7vw, 7rem);
margin-top: clamp(3.75rem, 7vw, 6rem);
grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
}
.configuration-visual {
position: sticky;
top: calc(var(--header-height) + 96px);
}
.edge-profile-figure {
padding: clamp(1.4rem, 3vw, 2.5rem);
background: var(--white);
}
.edge-profile-figure img {
width: min(100%, 401px);
margin-inline: auto;
}
.edge-profile-figure figcaption {
margin-top: 1rem;
padding-top: 0.7rem;
border-top: 1px solid var(--line);
color: var(--text-muted);
font-size: 0.76rem;
font-weight: 700;
}
.configuration-note {
padding: 1.3rem 1.4rem;
border-top: 1px solid var(--brand);
background: var(--brand-deep);
color: oklch(94% 0.018 122);
font-size: 0.86rem;
line-height: 1.6;
}
.configuration-note strong {
display: block;
margin-bottom: 0.25rem;
color: var(--white);
}
.configuration-ledger {
border-top: 2px solid var(--brand-deep);
}
.configuration-row {
display: grid;
gap: clamp(1.5rem, 3vw, 2.5rem);
padding-block: clamp(1.65rem, 3vw, 2.35rem);
border-bottom: 1px solid oklch(78% 0.04 122);
grid-template-columns: minmax(145px, 0.42fr) minmax(0, 0.88fr) minmax(160px, 0.7fr);
}
.configuration-row > div {
display: grid;
align-content: start;
gap: 0.3rem;
}
.configuration-row h3 {
font-size: clamp(1.2rem, 1.8vw, 1.55rem);
line-height: 1.2;
}
.configuration-row p {
color: var(--ink-soft);
font-size: 0.9rem;
line-height: 1.62;
}
.configuration-row p strong {
display: block;
margin-bottom: 0.22rem;
color: var(--brand-deep);
font-size: 0.72rem;
}
.selection-workflow {
padding-block: clamp(5.5rem, 9vw, 8.5rem);
border-bottom: 1px solid var(--line);
background: var(--white);
}
.selection-workflow-layout {
display: grid;
align-items: stretch;
min-height: 0;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.selection-workflow-media {
position: relative;
min-height: 0;
overflow: hidden;
background: var(--ink-raised);
}
.selection-workflow-media::after {
position: absolute;
right: 0;
bottom: 0;
width: 7px;
height: 38%;
background: var(--brand);
content: "";
}
.selection-workflow-media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 18%;
}
.selection-workflow-media figcaption {
position: absolute;
right: 2rem;
bottom: 2rem;
left: 2rem;
padding-top: 0.65rem;
border-top: 1px solid oklch(100% 0 0 / 0.65);
color: var(--white);
font-size: 0.76rem;
font-weight: 700;
text-shadow: 0 1px 3px oklch(10% 0.006 122 / 0.9);
}
.selection-workflow-copy {
display: flex;
flex-direction: column;
justify-content: center;
padding: clamp(2.75rem, 3.9vw, 4rem);
background: var(--surface);
}
.selection-workflow-copy h2 {
font-size: clamp(2.8rem, 4vw, 4.2rem);
}
.workflow-intro {
max-width: 58ch;
margin-top: 1.4rem;
color: var(--text-muted);
line-height: 1.7;
}
.selection-steps {
margin-top: clamp(2rem, 3vw, 2.5rem);
border-top: 1px solid var(--ink);
list-style: none;
}
.selection-steps li {
display: grid;
align-items: start;
gap: 1.35rem;
padding-block: 0.9rem;
border-bottom: 1px solid var(--line);
grid-template-columns: 35px minmax(0, 1fr);
}
.selection-steps > li > span {
padding-top: 0.2rem;
color: var(--brand-deep);
font-size: 0.72rem;
font-weight: 800;
}
.selection-steps h3 {
font-size: 1.05rem;
line-height: 1.3;
}
.selection-steps p {
margin-top: 0.25rem;
color: var(--text-muted);
font-size: 0.85rem;
line-height: 1.45;
}
.selection-workflow-copy > .text-link {
align-self: flex-start;
margin-top: 1.6rem;
}
.performance-section {
background: var(--ink);
color: var(--white);
}
.performance-layout {
display: grid;
align-items: start;
gap: clamp(4rem, 9vw, 10rem);
grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}
.performance-heading {
position: sticky;
top: calc(var(--header-height) + 96px);
}
.performance-heading .single-kicker {
color: var(--brand-bright);
}
.performance-heading > p:not(.single-kicker) {
max-width: 57ch;
margin-top: 1.5rem;
color: oklch(78% 0.012 122);
line-height: 1.72;
}
.performance-heading .text-link {
margin-top: 1.8rem;
}
.performance-data table {
width: 100%;
border-collapse: collapse;
}
.performance-data caption {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
.performance-data th,
.performance-data td {
padding: 1.25rem 0;
border-bottom: 1px solid var(--line-dark);
text-align: left;
}
.performance-data thead th {
border-top: 2px solid var(--brand-bright);
color: var(--brand-bright);
font-size: 0.75rem;
font-weight: 800;
}
.performance-data thead th:last-child,
.performance-data tbody td {
text-align: right;
}
.performance-data tbody th {
color: oklch(89% 0.01 122);
font-family: var(--font-display);
font-size: clamp(1.15rem, 1.8vw, 1.45rem);
font-weight: 600;
}
.performance-data tbody td {
color: var(--white);
font-family: var(--font-display);
font-size: clamp(1.4rem, 2.3vw, 2rem);
font-weight: 700;
letter-spacing: -0.025em;
}
.performance-note {
margin-top: 1.4rem;
color: oklch(72% 0.012 122);
font-size: 0.82rem;
line-height: 1.65;
}
.fire-note {
display: grid;
gap: 1rem;
margin-top: clamp(2.5rem, 5vw, 4rem);
padding: 1.5rem 0;
border-top: 1px solid var(--brand);
border-bottom: 1px solid var(--line-dark);
grid-template-columns: minmax(120px, 0.35fr) minmax(0, 0.65fr);
}
.fire-note span {
color: var(--brand-bright);
font-size: 0.74rem;
font-weight: 800;
}
.fire-note p {
color: oklch(82% 0.012 122);
font-size: 0.88rem;
line-height: 1.65;
}
.application-section {
border-bottom: 1px solid var(--line);
}
.application-ledger {
display: grid;
margin-top: clamp(3.5rem, 7vw, 6rem);
border-top: 2px solid var(--ink);
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.application-ledger article {
position: relative;
min-height: 325px;
padding: clamp(1.8rem, 3vw, 2.7rem);
border-right: 1px solid var(--line);
}
.application-ledger article:first-child {
padding-left: 0;
}
.application-ledger article:last-child {
padding-right: 0;
border-right: 0;
}
.application-ledger h3 {
max-width: 12ch;
margin-top: clamp(1rem, 2vw, 1.75rem);
font-size: clamp(1.65rem, 2.7vw, 2.5rem);
}
.application-ledger ul {
margin-top: 1.5rem;
color: var(--text-muted);
list-style: none;
}
.application-ledger li {
padding-block: 0.45rem;
border-bottom: 1px solid var(--line);
}
.documentation-section {
background: var(--brand-soft);
}
.documentation-heading .text-link {
margin-top: 1.4rem;
}
.documentation-layout {
display: grid;
align-items: start;
gap: clamp(3.5rem, 8vw, 8rem);
margin-top: clamp(3.5rem, 7vw, 6rem);
grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}
.coordination-details {
border-top: 2px solid var(--brand-deep);
}
.coordination-details details {
border-bottom: 1px solid oklch(78% 0.04 122);
}
.coordination-details summary,
.faq-list summary {
position: relative;
display: flex;
min-height: 74px;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
cursor: pointer;
list-style: none;
color: var(--ink);
font-family: var(--font-display);
font-size: 1.08rem;
font-weight: 700;
}
.coordination-details summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
display: none;
}
.coordination-details summary span,
.faq-list summary span {
position: relative;
width: 18px;
height: 18px;
flex: 0 0 18px;
}
.coordination-details summary span::before,
.coordination-details summary span::after,
.faq-list summary span::before,
.faq-list summary span::after {
position: absolute;
top: 50%;
left: 50%;
width: 14px;
height: 2px;
background: var(--brand-deep);
content: "";
transform: translate(-50%, -50%);
transition: transform 160ms ease-out;
}
.coordination-details summary span::after,
.faq-list summary span::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.coordination-details details[open] summary span::after,
.faq-list details[open] summary span::after {
transform: translate(-50%, -50%) rotate(0deg);
}
.coordination-details details > div {
padding: 0 2.5rem 1.5rem 0;
}
.coordination-details details p {
color: var(--text-muted);
font-size: 0.92rem;
line-height: 1.68;
}
.document-ledger {
border-top: 2px solid var(--brand-deep);
}
.document-ledger a {
display: flex;
min-height: 86px;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
padding: 1rem 0;
border-bottom: 1px solid oklch(78% 0.04 122);
transition: color 160ms ease-out, padding-left 160ms ease-out;
}
.document-ledger a > span {
display: grid;
font-family: var(--font-display);
font-size: 1.08rem;
font-weight: 700;
letter-spacing: -0.018em;
line-height: 1.35;
}
.document-ledger small {
margin-bottom: 0.2rem;
color: var(--brand-deep);
font-family: var(--font-sans);
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0;
}
.document-ledger strong {
color: var(--brand-deep);
font-size: 0.72rem;
}
.related-products {
background: var(--white);
}
.related-heading {
display: grid;
gap: 1rem;
}
.related-product-rail {
display: grid;
margin-top: clamp(3.4rem, 7vw, 6rem);
border-top: 2px solid var(--ink);
border-bottom: 1px solid var(--line);
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.related-product-rail a {
position: relative;
min-height: 330px;
padding: clamp(1.6rem, 2.7vw, 2.5rem);
border-right: 1px solid var(--line);
transition: background-color 180ms ease-out, color 180ms ease-out;
}
.related-product-rail a:first-child {
padding-left: 0;
}
.related-product-rail a:last-child {
padding-right: 0;
border-right: 0;
}
.related-product-rail a > span {
color: var(--brand-deep);
font-size: 0.72rem;
font-weight: 800;
}
.related-product-rail h3 {
margin-top: clamp(3.25rem, 6vw, 5rem);
font-size: clamp(1.35rem, 2.1vw, 1.82rem);
line-height: 1.2;
}
.related-product-rail p {
margin-top: 0.9rem;
color: var(--text-muted);
font-size: 0.9rem;
line-height: 1.6;
}
.related-product-rail a > strong {
position: absolute;
right: clamp(1.6rem, 2.7vw, 2.5rem);
bottom: clamp(1.6rem, 2.7vw, 2.5rem);
color: var(--brand-deep);
}
.related-product-rail a:first-child > strong {
right: clamp(1.6rem, 2.7vw, 2.5rem);
}
.related-atlas-action {
display: flex;
justify-content: flex-end;
margin-top: 1.5rem;
}
.product-faq {
border-top: 1px solid var(--line);
background: var(--surface);
}
.faq-layout {
display: grid;
align-items: start;
gap: clamp(4rem, 9vw, 10rem);
grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
}
.faq-layout header {
position: sticky;
top: calc(var(--header-height) + 96px);
}
.faq-layout header > p:last-child {
max-width: 52ch;
margin-top: 1.4rem;
color: var(--text-muted);
line-height: 1.7;
}
.faq-list {
border-top: 2px solid var(--ink);
}
.faq-list details {
border-bottom: 1px solid var(--line);
}
.faq-list summary {
min-height: 94px;
font-size: clamp(1.05rem, 1.7vw, 1.3rem);
line-height: 1.35;
}
.faq-list details > div {
padding: 0 3rem 1.7rem 0;
}
.faq-list details p {
max-width: 66ch;
color: var(--text-muted);
line-height: 1.72;
}
@media (hover: hover) {
.product-page-index a:hover {
background: var(--brand-soft);
color: var(--brand-deep);
}
.document-ledger a:hover {
padding-left: 0.45rem;
color: var(--brand-deep);
}
.related-product-rail a:hover {
background: var(--brand-soft);
}
}
@media (max-width: 1100px) {
.product-detail-hero-copy-inner {
width: min(100%, 650px);
}
.product-overview-layout {
gap: 4.5rem;
grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr);
}
.product-artifact {
grid-template-columns: 1fr;
}
.product-artifact figcaption {
border-top: 1px solid var(--line-dark);
border-left: 0;
}
.configuration-layout {
grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1.42fr);
}
.configuration-row {
grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1fr);
}
.configuration-row > p:last-child {
grid-column: 2;
}
.related-product-rail {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.related-product-rail a {
border-bottom: 1px solid var(--line);
}
.related-product-rail a:nth-child(2) {
border-right: 0;
}
.related-product-rail a:nth-child(3) {
padding-left: 0;
}
.related-product-rail a:nth-child(n + 3) {
border-bottom: 0;
}
}
@media (max-width: 960px) {
.product-detail-hero {
min-height: calc(100svh - var(--header-height));
}
.product-detail-hero-media::after {
background:
linear-gradient(0deg, oklch(9% 0.006 122 / 0.99) 0%, oklch(9% 0.006 122 / 0.88) 60%, oklch(9% 0.006 122 / 0.2) 100%),
linear-gradient(90deg, oklch(9% 0.006 122 / 0.42) 0%, transparent 88%);
}
.product-detail-hero-media img {
object-position: 22% center;
}
.product-detail-hero-media figcaption {
display: none;
}
.product-detail-hero-copy {
align-items: flex-end;
justify-content: flex-start;
padding-block: 5rem 3.5rem;
}
.product-detail-hero-copy-inner {
width: min(100%, 760px);
}
.product-detail-hero h1 {
font-size: clamp(3.15rem, 9vw, 5.15rem);
}
.product-identity-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-identity-grid > div:nth-child(2) {
border-right: 0;
}
.product-identity-grid > div:nth-child(-n + 2) {
border-bottom: 1px solid oklch(80% 0.035 122);
}
.product-identity-grid > div:nth-child(3) {
padding-left: 0;
}
.product-overview-layout,
.configuration-heading,
.configuration-layout,
.performance-layout,
.application-heading,
.documentation-heading,
.documentation-layout,
.faq-layout {
grid-template-columns: 1fr;
}
.product-overview-layout,
.configuration-heading,
.application-heading,
.documentation-heading,
.faq-layout {
gap: 2.5rem;
}
.product-artifact {
min-height: auto;
grid-template-columns: minmax(230px, 1fr) minmax(180px, 0.52fr);
}
.product-artifact figcaption {
border-top: 0;
border-left: 1px solid var(--line-dark);
}
.configuration-visual,
.performance-heading,
.faq-layout header {
position: static;
}
.configuration-visual {
display: grid;
align-items: stretch;
grid-template-columns: 1fr;
}
.configuration-note {
padding: 1.4rem;
border-top: 1px solid var(--brand);
border-left: 0;
}
.selection-workflow-layout {
height: auto;
min-height: 0;
grid-template-columns: 1fr;
}
.selection-workflow-media {
min-height: 520px;
}
.selection-workflow-media::after {
width: 34%;
height: 7px;
}
.performance-layout {
gap: 4rem;
}
.documentation-layout {
gap: 4rem;
}
}
@media (max-width: 700px) {
.product-detail-hero-copy {
padding-block: 3.25rem 2.25rem;
}
.product-detail-hero .breadcrumbs {
margin-bottom: 1.35rem;
font-size: 0.875rem;
}
.product-detail-hero h1 {
font-size: clamp(2.45rem, 12.6vw, 4rem);
letter-spacing: -0.038em;
}
.product-identity-grid {
grid-template-columns: 1fr;
}
.product-identity-grid > div,
.product-identity-grid > div:first-child,
.product-identity-grid > div:nth-child(3),
.product-identity-grid > div:last-child {
min-height: 0;
padding: 1.1rem 0;
border-right: 0;
border-bottom: 1px solid oklch(80% 0.035 122);
}
.product-identity-grid > div:last-child {
border-bottom: 0;
}
.product-page-index a {
min-height: 56px;
}
.product-page-index::after {
position: absolute;
top: 0;
right: 0;
display: grid;
width: 30px;
height: 56px;
place-items: center;
background: linear-gradient(90deg, oklch(100% 0 0 / 0), var(--white) 40%);
color: var(--brand-deep);
content: "›";
font-size: 1.05rem;
font-weight: 800;
pointer-events: none;
}
#overview,
#configure,
#performance,
#applications,
#documents,
#faqs {
scroll-margin-top: 32px;
}
.product-overview-copy h2,
.configuration-heading h2,
.selection-workflow-copy h2,
.performance-heading h2,
.application-heading h2,
.documentation-heading h2,
.related-heading h2,
.product-faq h2 {
font-size: clamp(2.35rem, 11vw, 3.5rem);
}
.overview-facts > div {
gap: 0.45rem;
grid-template-columns: 1fr;
}
.product-artifact {
grid-template-columns: 1fr;
}
.product-artifact-image {
padding: 1.5rem;
}
.product-artifact figcaption {
border-top: 1px solid var(--line-dark);
border-left: 0;
}
.configuration-visual {
grid-template-columns: 1fr;
}
.configuration-note {
border-top: 1px solid var(--brand);
border-left: 0;
}
.configuration-row,
.configuration-row > p:last-child {
grid-column: auto;
grid-template-columns: 1fr;
}
.configuration-row {
gap: 1rem;
}
.selection-workflow-media {
min-height: 360px;
}
.selection-workflow-copy {
padding: 3.5rem 1.5rem;
}
.selection-workflow-media figcaption {
right: 1.25rem;
bottom: 1.25rem;
left: 1.25rem;
}
.performance-data th,
.performance-data td {
padding: 1rem 0;
}
.fire-note {
gap: 0.65rem;
grid-template-columns: 1fr;
}
.application-ledger {
grid-template-columns: 1fr;
}
.application-ledger article,
.application-ledger article:first-child,
.application-ledger article:last-child {
min-height: 0;
padding: 1.8rem 0;
border-right: 0;
border-bottom: 1px solid var(--line);
}
.application-ledger article:last-child {
border-bottom: 0;
}
.application-ledger h3 {
margin-top: 2rem;
}
.coordination-details summary,
.faq-list summary {
min-height: 82px;
}
.related-product-rail {
grid-template-columns: 1fr;
}
.related-product-rail a,
.related-product-rail a:first-child,
.related-product-rail a:nth-child(3),
.related-product-rail a:last-child {
min-height: 270px;
padding: 1.8rem 0;
border-right: 0;
border-bottom: 1px solid var(--line);
}
.related-product-rail a:last-child {
border-bottom: 0;
}
.related-product-rail a > strong,
.related-product-rail a:first-child > strong {
right: 0;
bottom: 1.8rem;
}
.related-product-rail h3 {
margin-top: 2.7rem;
}
.related-atlas-action {
justify-content: flex-start;
}
}
@media (max-width: 440px) {
.product-detail-hero .hero-actions,
.product-detail-hero .hero-actions .button {
width: 100%;
}
.product-detail-hero .hero-actions .text-link {
display: inline-flex;
width: auto;
}
.product-detail-hero .hero-actions {
gap: 0.65rem;
}
.selection-workflow-copy {
padding-inline: 1.25rem;
}
.performance-data tbody th {
font-size: 1.05rem;
}
.performance-data tbody td {
font-size: 1.25rem;
}
}
@media (prefers-reduced-motion: reduce) {
.product-detail-hero-media img {
animation: none;
}
}.product-family-page .product-artifact-image {
background: var(--white);
}
.product-family-page .product-artifact-image img {
width: min(100%, 370px);
max-height: 420px;
object-fit: contain;
}
.product-family-page .configuration-brief {
display: flex;
min-height: 430px;
flex-direction: column;
justify-content: flex-end;
padding: clamp(2rem, 4vw, 3.25rem);
background: var(--ink);
color: var(--white);
}
.product-family-page .configuration-brief > span {
color: var(--brand-bright);
font-size: 0.72rem;
font-weight: 800;
}
.product-family-page .configuration-brief h3 {
max-width: 14ch;
margin-top: 0.6rem;
font-size: clamp(1.75rem, 3vw, 2.65rem);
line-height: 1.08;
}
.product-family-page .configuration-brief ul {
display: grid;
gap: 0.65rem;
margin-top: 2rem;
color: oklch(82% 0.012 122);
list-style: none;
}
.product-family-page .configuration-brief li {
padding-top: 0.65rem;
border-top: 1px solid var(--line-dark);
font-size: 0.9rem;
line-height: 1.5;
}
.product-family-page .source-boundary {
margin-top: 1.25rem;
padding: 1.1rem 1.2rem;
border: 1px solid var(--line-dark);
color: oklch(80% 0.012 122);
font-size: 0.82rem;
line-height: 1.6;
}
.product-family-page .source-boundary strong {
display: block;
margin-bottom: 0.25rem;
color: var(--brand-bright);
font-size: 0.72rem;
}
.product-family-page .product-artifact figcaption p {
max-width: 34ch;
}
.product-family-page .performance-data tbody th {
max-width: 36ch;
}
.product-family-page .performance-data tbody td {
padding-left: 2rem;
}
.product-family-page .application-ledger article {
min-height: 290px;
}
.product-family-page .application-ledger h3 {
max-width: 15ch;
}
.product-family-page .document-ledger a {
min-height: 82px;
}
.product-family-page .project-cta h2 {
max-width: 14ch;
}
.product-family-page .project-cta-inner > * {
min-width: 0;
}
@media (max-width: 960px) {
.product-family-page .configuration-brief {
min-height: 0;
}
}
@media (max-width: 700px) {
.product-family-page .configuration-brief {
padding: 2rem 1.5rem;
}
.product-family-page .performance-data tbody td {
padding-left: 1rem;
}
.product-family-page .project-cta h2 {
font-size: clamp(2.65rem, 13vw, 3.75rem);
}
}body.admin-bar .site-header {
top: 32px;
}
body.admin-bar .growth-page-nav {
top: calc(var(--header-height) + 32px);
}
.qts-v2-site #main-content {
min-height: 40vh;
}
.qts-v2-site .site-header .brand,
.qts-v2-site .site-footer .brand {
background: transparent;
}
.qts-v2-page > .body_wrap,
.qts-v2-page .entry-header,
.qts-v2-page .post-inner {
display: none;
}
@media (max-width: 782px) {
body.admin-bar .site-header {
top: 46px;
}
body.admin-bar .growth-page-nav {
top: calc(var(--header-height) + 46px);
}
}
@media (max-width: 600px) {
body.admin-bar .site-header {
top: 0;
}
body.admin-bar .growth-page-nav {
top: var(--header-height);
}
}