:root {
--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
--text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
--text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
--text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
--text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
--text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
--text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
--space-1: 0.25rem;
--space-2: 0.5rem;
--space-3: 0.75rem;
--space-4: 1rem;
--space-5: 1.25rem;
--space-6: 1.5rem;
--space-8: 2rem;
--space-10: 2.5rem;
--space-12: 3rem;
--space-16: 4rem;
--space-20: 5rem;
--space-24: 6rem;
--space-32: 8rem;
--radius-sm: 0.25rem;
--radius-md: 0.375rem;
--radius-lg: 0.625rem;
--radius-xl: 1rem;
--radius-full: 9999px;
--transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
--content-narrow: 680px;
--content-default: 1040px;
--content-wide: 1280px;
--font-display: 'Cabinet Grotesk', 'Helvetica Neue', Arial, sans-serif;
--font-body: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}
:root,
[data-theme='light'] {
color-scheme: light;
--color-bg: #f3f5f6;
--color-surface: #ffffff;
--color-surface-2: #f8fafa;
--color-surface-offset: #e9edef;
--color-surface-offset-2: #dfe5e8;
--color-divider: #d9e0e3;
--color-border: #c6d0d5;
--color-text: #101c23;
--color-text-muted: #56666f;
--color-text-faint: #97a4ab;
--color-text-inverse: #f3f5f6;
--color-primary: #146b66;
--color-primary-hover: #0f5551;
--color-primary-active: #0b403d;
--color-primary-highlight: #d3e6e3;
--color-ink: #0e1a20; --color-ink-2: #142430;
--shadow-sm: 0 1px 2px oklch(0.25 0.02 220 / 0.08);
--shadow-md: 0 6px 18px oklch(0.25 0.02 220 / 0.1);
--shadow-lg: 0 18px 44px oklch(0.25 0.02 220 / 0.14);
}
[data-theme='dark'] {
color-scheme: dark;
--color-bg: #0e1418;
--color-surface: #131a1f;
--color-surface-2: #171f25;
--color-surface-offset: #1b242b;
--color-surface-offset-2: #212b33;
--color-divider: #232d34;
--color-border: #34414a;
--color-text: #d7dee2;
--color-text-muted: #8f9ca4;
--color-text-faint: #5f6c74;
--color-text-inverse: #0e1418;
--color-primary: #5fb5ad;
--color-primary-hover: #7cc6bf;
--color-primary-active: #3f9a92;
--color-primary-highlight: #1c3634;
--color-ink: #0a1013;
--color-ink-2: #101a20;
--shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
--shadow-md: 0 6px 18px oklch(0 0 0 / 0.35);
--shadow-lg: 0 18px 44px oklch(0 0 0 / 0.45);
}
@media (prefers-color-scheme: dark) {
:root:not([data-theme]) {
color-scheme: dark;
--color-bg: #0e1418;
--color-surface: #131a1f;
--color-surface-2: #171f25;
--color-surface-offset: #1b242b;
--color-surface-offset-2: #212b33;
--color-divider: #232d34;
--color-border: #34414a;
--color-text: #d7dee2;
--color-text-muted: #8f9ca4;
--color-text-faint: #5f6c74;
--color-text-inverse: #0e1418;
--color-primary: #5fb5ad;
--color-primary-hover: #7cc6bf;
--color-primary-active: #3f9a92;
--color-primary-highlight: #1c3634;
--color-ink: #0a1013;
--color-ink-2: #101a20;
}
} .container {
width: min(100% - 2 * clamp(var(--space-5), 5vw, var(--space-12)), var(--content-wide));
margin-inline: auto;
}
.container--default {
max-width: var(--content-default);
}
.container--narrow {
max-width: var(--content-narrow);
}
.section {
padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}
.section--tight {
padding-block: clamp(var(--space-12), 5vw, var(--space-20));
}
.section--offset {
background: var(--color-surface-offset);
}
.section--ink {
background: var(--color-ink);
color: #dfe6ea;
}
.section--ink .eyebrow {
color: var(--color-primary);
}
[data-theme='light'] .section--ink .eyebrow,
:root:not([data-theme]) .section--ink .eyebrow {
color: #7fcbc3;
}
.skip-link {
position: absolute;
top: -100%;
left: var(--space-4);
z-index: 100;
padding: var(--space-2) var(--space-4);
background: var(--color-primary);
color: #fff;
border-radius: var(--radius-md);
}
.skip-link:focus {
top: var(--space-4);
} .eyebrow {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--color-primary);
margin-bottom: var(--space-4);
display: flex;
align-items: center;
gap: var(--space-3);
}
.eyebrow::before {
content: '';
width: 28px;
height: 2px;
background: currentColor;
flex: none;
}
.display {
font-family: var(--font-display);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.05;
}
h1.display {
font-size: var(--text-3xl);
}
h2.display {
font-size: var(--text-2xl);
}
.h-xl {
font-family: var(--font-display);
font-weight: 700;
font-size: var(--text-xl);
letter-spacing: -0.015em;
line-height: 1.12;
}
.h-lg {
font-size: var(--text-lg);
font-weight: 700;
line-height: 1.25;
}
.lead {
font-size: var(--text-lg);
font-weight: 400;
line-height: 1.5;
color: var(--color-text-muted);
max-width: 60ch;
}
.muted {
color: var(--color-text-muted);
}
.small {
font-size: var(--text-sm);
}
.num {
font-variant-numeric: tabular-nums;
} .btn {
display: inline-flex;
align-items: center;
gap: var(--space-2);
padding: 0.85em 1.4em;
font-size: var(--text-sm);
font-weight: 700;
border-radius: var(--radius-md);
text-decoration: none;
line-height: 1;
min-height: 44px;
border: 1px solid transparent;
}
.btn--primary {
background: var(--color-primary);
color: #fff;
}
.btn--primary:hover {
background: var(--color-primary-hover);
}
.btn--primary:active {
background: var(--color-primary-active);
}
.btn--ghost {
border-color: color-mix(in oklab, currentColor 35%, transparent);
color: inherit;
background: transparent;
}
.btn--ghost:hover {
border-color: currentColor;
background: color-mix(in oklab, currentColor 8%, transparent);
}
.btn--light {
background: #fff;
color: var(--color-ink);
}
.btn--light:hover {
background: #e4ecef;
}
.btn svg {
width: 16px;
height: 16px;
}
.link-arrow {
display: inline-flex;
align-items: center;
gap: var(--space-2);
font-weight: 700;
font-size: var(--text-sm);
color: var(--color-primary);
text-decoration: none;
}
.link-arrow svg {
width: 16px;
height: 16px;
transition: transform var(--transition-interactive);
}
.link-arrow:hover svg {
transform: translateX(4px);
} .topbar {
background: var(--color-ink);
color: #b9c6cd;
font-size: var(--text-xs);
}
.topbar .container {
display: flex;
justify-content: space-between;
align-items: center;
min-height: 36px;
gap: var(--space-4);
}
.topbar__values {
display: flex;
gap: var(--space-5);
list-style: none;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.topbar__values li {
display: flex;
align-items: center;
gap: var(--space-2);
}
.topbar__values svg {
width: 14px;
height: 14px;
color: #7fcbc3;
}
.topbar a {
color: inherit;
text-decoration: none;
}
.topbar a:hover {
color: #fff;
}
.header {
position: sticky;
top: 0;
z-index: 50;
background: color-mix(in oklab, var(--color-bg) 88%, transparent);
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-bottom: 1px solid transparent;
transition:
box-shadow 0.3s var(--ease-out),
border-color 0.3s var(--ease-out);
}
.header--scrolled {
border-bottom-color: var(--color-divider);
box-shadow: var(--shadow-sm);
}
.header .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-6);
min-height: 72px;
}
.logo {
display: inline-flex;
align-items: center;
gap: var(--space-3);
color: var(--color-text);
text-decoration: none;
}
.logo svg {
width: 34px;
height: 34px;
flex: none;
}
.logo__word {
font-family: var(--font-display);
font-weight: 800;
font-size: 1.35rem;
letter-spacing: -0.03em;
line-height: 1;
}
.logo__word span {
color: var(--color-primary);
}
.nav {
display: flex;
align-items: center;
gap: var(--space-6);
}
.nav__list {
display: flex;
gap: var(--space-6);
list-style: none;
}
.nav__list a {
font-size: var(--text-sm);
font-weight: 500;
color: var(--color-text-muted);
text-decoration: none;
padding-block: var(--space-2);
position: relative;
}
.nav__list a:hover,
.nav__list a[aria-current='page'] {
color: var(--color-text);
}
.nav__list a[aria-current='page']::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -2px;
height: 2px;
background: var(--color-primary);
}
.nav__actions {
display: flex;
align-items: center;
gap: var(--space-3);
}
.icon-btn {
width: 40px;
height: 40px;
display: inline-grid;
place-items: center;
border-radius: var(--radius-md);
color: var(--color-text-muted);
}
.icon-btn:hover {
background: var(--color-surface-offset);
color: var(--color-text);
}
.icon-btn svg {
width: 20px;
height: 20px;
}
.nav-toggle {
display: none;
}
@media (max-width: 900px) {
.nav__list {
display: none;
}
.nav-toggle {
display: inline-grid;
}
.nav .btn {
display: none;
}
.nav.is-open .nav__list {
display: flex;
flex-direction: column;
gap: 0;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--color-surface);
border-bottom: 1px solid var(--color-divider);
box-shadow: var(--shadow-lg);
padding: var(--space-4) clamp(var(--space-5), 5vw, var(--space-12)) var(--space-6);
}
.nav.is-open .nav__list a {
display: block;
padding: var(--space-4) 0;
border-bottom: 1px solid var(--color-divider);
font-size: var(--text-base);
}
.nav.is-open .nav__list a[aria-current='page']::after {
display: none;
}
.nav.is-open .nav__list li:last-child a {
border-bottom: 0;
}
.topbar__values li:nth-child(n + 2) {
display: none;
}
} .hero {
position: relative;
min-height: min(88vh, 860px);
display: grid;
align-items: end;
color: #fff;
isolation: isolate;
overflow: hidden;
}
.hero__media {
position: absolute;
inset: 0;
z-index: -2;
}
.hero__media img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.hero::after {
content: '';
position: absolute;
inset: 0;
z-index: -1;
background:
linear-gradient(to top, oklch(0.14 0.02 220 / 0.92) 0%, oklch(0.14 0.02 220 / 0.55) 45%, oklch(0.14 0.02 220 / 0.15) 100%),
linear-gradient(to right, oklch(0.14 0.02 220 / 0.5), transparent 60%);
}
.hero .container {
padding-block: clamp(var(--space-16), 10vw, var(--space-32)) clamp(var(--space-12), 6vw, var(--space-20));
display: grid;
grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
gap: var(--space-10);
align-items: end;
}
.hero__content .eyebrow {
color: #8fd6ce;
}
.hero h1 {
max-width: 16ch;
margin-bottom: var(--space-6);
text-shadow: 0 2px 24px oklch(0 0 0 / 0.25);
}
.hero p {
color: #d4dde2;
max-width: 52ch;
margin-bottom: var(--space-8);
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: var(--space-3);
}
.hero__facts {
display: grid;
gap: 0;
border-top: 1px solid oklch(1 0 0 / 0.25);
justify-self: end;
width: min(100%, 380px);
padding: 0 var(--space-5);
background: oklch(0.14 0.02 220 / 0.45);
backdrop-filter: blur(6px);
-webkit-backdrop-filter: blur(6px);
border-radius: var(--radius-md);
}
.hero__facts div {
padding: var(--space-4) 0;
border-bottom: 1px solid oklch(1 0 0 / 0.18);
display: flex;
justify-content: space-between;
gap: var(--space-4);
font-size: var(--text-sm);
color: #c9d3d9;
}
.hero__facts strong {
color: #fff;
font-weight: 700;
text-align: right;
}
@media (max-width: 900px) {
.hero .container {
grid-template-columns: 1fr;
}
.hero__facts {
justify-self: start;
}
} .page-hero {
padding-block: clamp(var(--space-16), 9vw, var(--space-24)) clamp(var(--space-10), 5vw, var(--space-16));
border-bottom: 1px solid var(--color-divider);
}
.page-hero .container {
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: var(--space-10);
align-items: end;
}
.page-hero h1 {
font-size: var(--text-2xl);
max-width: 18ch;
}
.page-hero .lead {
margin-top: var(--space-2);
}
@media (max-width: 900px) {
.page-hero .container {
grid-template-columns: 1fr;
gap: var(--space-4);
}
} .split {
display: grid;
grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
gap: clamp(var(--space-8), 6vw, var(--space-20));
align-items: start;
}
.split--reverse {
grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.split--center {
align-items: center;
}
.split h2 {
margin-bottom: var(--space-5);
}
.split .prose p + p {
margin-top: var(--space-4);
}
.split .sticky {
position: sticky;
top: calc(72px + var(--space-8));
}
@media (max-width: 900px) {
.split,
.split--reverse {
grid-template-columns: minmax(0, 1fr);
}
.split .sticky {
position: static;
}
}
.prose p {
color: var(--color-text);
}
.prose p + p {
margin-top: var(--space-4);
}
.prose ul {
padding-left: 1.2em;
margin-top: var(--space-4);
}
.prose li + li {
margin-top: var(--space-2);
}
.figure {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
background: var(--color-surface-offset);
}
.figure img {
width: 100%;
height: 100%;
object-fit: cover;
}
.figure--tall {
aspect-ratio: 3 / 4;
}
.figure--wide {
aspect-ratio: 4 / 3;
}
.figure figcaption {
position: absolute;
left: var(--space-4);
bottom: var(--space-4);
padding: var(--space-2) var(--space-3);
background: oklch(0.14 0.02 220 / 0.7);
color: #fff;
font-size: var(--text-xs);
border-radius: var(--radius-sm);
backdrop-filter: blur(6px);
} .stats {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid var(--color-divider);
border-bottom: 1px solid var(--color-divider);
}
.stats div {
padding: var(--space-6) var(--space-5);
border-right: 1px solid var(--color-divider);
}
.stats div:last-child {
border-right: 0;
}
.stats strong {
display: block;
font-family: var(--font-display);
font-size: var(--text-xl);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.1;
color: var(--color-text);
}
.stats span {
display: block;
margin-top: var(--space-2);
font-size: var(--text-sm);
color: var(--color-text-muted);
}
@media (max-width: 900px) {
.stats {
grid-template-columns: repeat(2, 1fr);
}
.stats div:nth-child(2) {
border-right: 0;
}
.stats div:nth-child(-n + 2) {
border-bottom: 1px solid var(--color-divider);
}
} .reasons {
display: grid;
grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
gap: clamp(var(--space-8), 6vw, var(--space-20));
}
.reasons__list {
list-style: none;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0 var(--space-10);
}
.reasons__list li {
padding: var(--space-6) 0;
border-top: 1px solid var(--color-divider);
display: grid;
grid-template-columns: 2.5rem 1fr;
gap: var(--space-3);
}
.reasons__list li:first-child,
.reasons__list li:nth-child(2) {
border-top: 1px solid var(--color-divider);
}
.reasons__list .n {
font-family: var(--font-display);
font-weight: 700;
font-size: var(--text-lg);
color: var(--color-primary);
line-height: 1.2;
}
.reasons__list h3 {
font-size: var(--text-base);
font-weight: 700;
margin-bottom: var(--space-2);
}
.reasons__list p {
font-size: var(--text-sm);
color: var(--color-text-muted);
}
.reasons__list li.is-wide {
grid-column: 1 / -1;
}
@media (max-width: 900px) {
.reasons {
grid-template-columns: 1fr;
}
.reasons__list {
grid-template-columns: 1fr;
}
} .section-head {
display: flex;
justify-content: space-between;
align-items: end;
gap: var(--space-8);
margin-bottom: clamp(var(--space-8), 4vw, var(--space-12));
}
.section-head h2 {
max-width: 22ch;
}
@media (max-width: 720px) {
.section-head {
flex-direction: column;
align-items: start;
gap: var(--space-4);
}
}
.tiles {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: var(--space-5);
}
.tile {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
background: var(--color-surface);
border: 1px solid var(--color-divider);
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
transition:
transform 0.35s var(--ease-out),
box-shadow 0.35s var(--ease-out),
border-color var(--transition-interactive);
}
.tile:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
border-color: var(--color-border);
}
.tile--img {
grid-column: span 7;
min-height: 420px;
color: #fff;
justify-content: end;
border: 0;
}
.tile--img img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s var(--ease-out);
}
.tile--img:hover img {
transform: scale(1.03);
}
.tile--img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, oklch(0.14 0.02 220 / 0.94), oklch(0.14 0.02 220 / 0.55) 45%, oklch(0.14 0.02 220 / 0.1) 80%, transparent);
}
.tile--img .tile__body {
position: relative;
z-index: 1;
flex: 0 0 auto;
margin-top: auto;
}
.tile--img .tile__body p {
color: #d4dde2;
}
.tile--text {
grid-column: span 5;
}
.tile--sm {
grid-column: span 4;
}
.tile__body {
padding: var(--space-6);
display: flex;
flex-direction: column;
gap: var(--space-3);
flex: 1;
}
.tile__body h3 {
font-family: var(--font-display);
font-size: var(--text-lg);
font-weight: 700;
letter-spacing: -0.01em;
}
.tile__body p {
font-size: var(--text-sm);
color: var(--color-text-muted);
flex: 1;
}
.tile__meta {
font-size: var(--text-xs);
color: var(--color-text-faint);
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.tile--img .tile__meta {
color: #9fb1ba;
}
.tile__spec {
display: grid;
grid-template-columns: auto 1fr;
gap: var(--space-1) var(--space-4);
font-size: var(--text-xs);
border-top: 1px solid var(--color-divider);
padding-top: var(--space-3);
margin-top: auto;
}
.tile__spec dt {
color: var(--color-text-faint);
}
.tile__spec dd {
color: var(--color-text-muted);
font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
.tile--img,
.tile--text,
.tile--sm {
grid-column: span 12;
}
.tile--img {
min-height: 320px;
}
}
@media (min-width: 640px) and (max-width: 900px) {
.tile--sm {
grid-column: span 6;
}
} .band {
position: relative;
min-height: 60vh;
display: grid;
align-items: center;
color: #fff;
isolation: isolate;
overflow: hidden;
}
.band img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -2;
}
.band::after {
content: '';
position: absolute;
inset: 0;
z-index: -1;
background: linear-gradient(to right, oklch(0.14 0.02 220 / 0.9), oklch(0.14 0.02 220 / 0.55) 55%, oklch(0.14 0.02 220 / 0.2));
}
.band .container {
padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}
.band__inner {
max-width: 560px;
}
.band__inner .eyebrow {
color: #8fd6ce;
}
.band__inner h2 {
margin-bottom: var(--space-5);
}
.band__inner p {
color: #d4dde2;
margin-bottom: var(--space-6);
}
.band__steps {
list-style: none;
display: grid;
gap: var(--space-3);
}
.band__steps li {
display: grid;
grid-template-columns: 1.75rem 1fr;
gap: var(--space-3);
font-size: var(--text-sm);
color: #e6edf0;
padding: var(--space-3) 0;
border-top: 1px solid oklch(1 0 0 / 0.18);
}
.band__steps .n {
font-family: var(--font-display);
font-weight: 700;
color: #8fd6ce;
} .process {
list-style: none;
counter-reset: step;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--space-8);
}
.process li {
counter-increment: step;
position: relative;
padding-top: var(--space-6);
border-top: 2px solid var(--color-divider);
}
.process li::before {
content: counter(step, decimal-leading-zero);
position: absolute;
top: -0.7em;
left: 0;
background: var(--color-bg);
padding-right: var(--space-2);
font-family: var(--font-display);
font-weight: 700;
font-size: var(--text-lg);
color: var(--color-primary);
line-height: 1;
}
.section--offset .process li::before {
background: var(--color-surface-offset);
}
.process h3 {
font-size: var(--text-base);
font-weight: 700;
margin-bottom: var(--space-2);
}
.process p {
font-size: var(--text-sm);
color: var(--color-text-muted);
}
@media (max-width: 900px) {
.process {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 560px) {
.process {
grid-template-columns: 1fr;
}
} .table-wrap {
overflow-x: auto;
border: 1px solid var(--color-divider);
border-radius: var(--radius-lg);
background: var(--color-surface);
}
.spec-table {
font-size: var(--text-sm);
min-width: 560px;
}
.split > *,
.product > *,
.contact > * {
min-width: 0;
}
.spec-table th,
.spec-table td {
padding: var(--space-3) var(--space-5);
text-align: left;
border-bottom: 1px solid var(--color-divider);
vertical-align: top;
}
.spec-table thead th {
font-size: var(--text-xs);
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--color-text-muted);
background: var(--color-surface-2);
font-weight: 700;
}
.spec-table tbody th {
font-weight: 700;
color: var(--color-text);
width: 34%;
}
.spec-table td {
color: var(--color-text-muted);
font-variant-numeric: tabular-nums;
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td {
border-bottom: 0;
} .product {
display: grid;
grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
gap: clamp(var(--space-8), 6vw, var(--space-16));
padding-block: clamp(var(--space-10), 5vw, var(--space-16));
border-top: 1px solid var(--color-divider);
}
.product:first-of-type {
border-top: 0;
padding-top: 0;
}
.product__head h2 {
margin-bottom: var(--space-3);
}
.product__head .idx {
font-family: var(--font-display);
font-weight: 700;
font-size: var(--text-sm);
color: var(--color-primary);
letter-spacing: 0.06em;
display: block;
margin-bottom: var(--space-3);
}
.product__body p + p {
margin-top: var(--space-4);
}
.product__body .uses {
margin-top: var(--space-6);
display: flex;
flex-wrap: wrap;
gap: var(--space-2);
list-style: none;
}
.product__body .uses li {
font-size: var(--text-xs);
font-weight: 500;
padding: var(--space-1) var(--space-3);
border: 1px solid var(--color-border);
border-radius: var(--radius-full);
color: var(--color-text-muted);
}
.product__body .table-wrap {
margin-top: var(--space-6);
}
@media (max-width: 900px) {
.product {
grid-template-columns: minmax(0, 1fr);
gap: var(--space-6);
}
} .solutions {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: var(--space-5);
}
.sol {
border: 1px solid var(--color-divider);
border-radius: var(--radius-lg);
background: var(--color-surface);
overflow: hidden;
display: flex;
flex-direction: column;
}
.sol--lg {
grid-column: span 8;
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.sol--lg .sol__media {
position: relative;
aspect-ratio: auto;
min-height: 360px;
height: 100%;
}
.sol--lg .sol__media img {
position: absolute;
inset: 0;
}
.sol--md {
grid-column: span 4;
}
.sol--sm {
grid-column: span 4;
}
.sol__media {
aspect-ratio: 4 / 3;
background: var(--color-surface-offset);
overflow: hidden;
}
.sol__media img {
width: 100%;
height: 100%;
object-fit: cover;
}
.sol__body {
padding: var(--space-6);
display: flex;
flex-direction: column;
gap: var(--space-3);
}
.sol__body h3 {
font-family: var(--font-display);
font-size: var(--text-lg);
font-weight: 700;
}
.sol__body p {
font-size: var(--text-sm);
color: var(--color-text-muted);
}
.sol__spec {
margin-top: auto;
padding-top: var(--space-4);
border-top: 1px solid var(--color-divider);
display: grid;
gap: var(--space-2);
font-size: var(--text-xs);
}
.sol__spec div {
display: flex;
justify-content: space-between;
gap: var(--space-4);
}
.sol__spec dt {
color: var(--color-text-faint);
}
.sol__spec dd {
color: var(--color-text);
text-align: right;
font-variant-numeric: tabular-nums;
}
@media (max-width: 900px) {
.sol--lg,
.sol--md,
.sol--sm {
grid-column: span 12;
}
.sol--lg {
grid-template-columns: 1fr;
}
.sol--lg .sol__media {
height: auto;
min-height: 0;
aspect-ratio: 4 / 3;
}
}
@media (min-width: 640px) and (max-width: 900px) {
.sol--sm,
.sol--md {
grid-column: span 6;
}
} .contact {
display: grid;
grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
gap: clamp(var(--space-8), 6vw, var(--space-20));
}
.contact__info dl {
display: grid;
gap: var(--space-5);
margin-top: var(--space-8);
}
.contact__info dt {
font-size: var(--text-xs);
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--color-text-faint);
margin-bottom: var(--space-1);
}
.contact__info dd {
font-size: var(--text-base);
}
.contact__info dd a {
color: var(--color-text);
text-decoration: none;
border-bottom: 1px solid var(--color-border);
}
.contact__info dd a:hover {
border-color: var(--color-primary);
color: var(--color-primary);
}
.checklist {
list-style: none;
margin-top: var(--space-8);
border-top: 1px solid var(--color-divider);
}
.checklist li {
display: grid;
grid-template-columns: 20px 1fr;
gap: var(--space-3);
padding: var(--space-3) 0;
border-bottom: 1px solid var(--color-divider);
font-size: var(--text-sm);
color: var(--color-text-muted);
}
.checklist svg {
width: 18px;
height: 18px;
color: var(--color-primary);
margin-top: 2px;
}
.form {
background: var(--color-surface);
border: 1px solid var(--color-divider);
border-radius: var(--radius-lg);
padding: clamp(var(--space-6), 3vw, var(--space-10));
display: grid;
gap: var(--space-5);
}
.form__row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--space-5);
}
.field {
display: grid;
gap: var(--space-2);
}
.field label {
font-size: var(--text-sm);
font-weight: 500;
}
.field input,
.field select,
.field textarea {
width: 100%;
min-height: 46px;
padding: var(--space-3) var(--space-4);
border: 1px solid var(--color-border);
border-radius: var(--radius-md);
background: var(--color-bg);
font-size: var(--text-sm);
}
.field textarea {
min-height: 140px;
resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
outline: none;
border-color: var(--color-primary);
box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.field .hint {
font-size: var(--text-xs);
color: var(--color-text-faint);
}
.form__foot {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-4);
flex-wrap: wrap;
}
.form__foot p {
font-size: var(--text-xs);
color: var(--color-text-faint);
}
.form__status {
display: none;
padding: var(--space-4);
border-radius: var(--radius-md);
background: var(--color-primary-highlight);
color: var(--color-text);
font-size: var(--text-sm);
}
.form__status.is-visible {
display: block;
}
@media (max-width: 900px) {
.contact {
grid-template-columns: 1fr;
}
}
@media (max-width: 600px) {
.form__row {
grid-template-columns: 1fr;
}
} .cta {
background: var(--color-ink);
color: #fff;
}
.cta .container {
display: grid;
grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
gap: var(--space-10);
align-items: center;
padding-block: clamp(var(--space-16), 7vw, var(--space-24));
}
.cta h2 {
margin-bottom: var(--space-4);
}
.cta p {
color: #b9c6cd;
}
.cta__actions {
display: flex;
flex-wrap: wrap;
gap: var(--space-3);
justify-content: end;
}
@media (max-width: 900px) {
.cta .container {
grid-template-columns: 1fr;
}
.cta__actions {
justify-content: start;
}
} .footer {
background: var(--color-ink-2);
color: #9fb1ba;
font-size: var(--text-sm);
}
.footer .container {
padding-block: clamp(var(--space-12), 5vw, var(--space-20)) var(--space-8);
}
.footer__grid {
display: grid;
grid-template-columns: minmax(0, 2fr) 1fr 1fr 1fr;
gap: var(--space-10);
padding-bottom: var(--space-10);
border-bottom: 1px solid oklch(1 0 0 / 0.1);
}
.footer .logo {
color: #fff;
}
.footer .logo__word span {
color: #7fcbc3;
}
.footer__tag {
margin-top: var(--space-4);
max-width: 34ch;
}
.footer h4 {
color: #fff;
font-size: var(--text-xs);
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: var(--space-4);
}
.footer ul {
list-style: none;
display: grid;
gap: var(--space-2);
}
.footer a {
color: inherit;
text-decoration: none;
}
.footer a:hover {
color: #fff;
}
.footer__bottom {
display: flex;
justify-content: space-between;
gap: var(--space-4);
flex-wrap: wrap;
padding-top: var(--space-6);
font-size: var(--text-xs);
color: #6f818b;
}
@media (max-width: 900px) {
.footer__grid {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 560px) {
.footer__grid {
grid-template-columns: 1fr;
}
} .reveal {
opacity: 0;
transform: translateY(14px);
transition:
opacity 0.7s var(--ease-out),
transform 0.7s var(--ease-out);
}
.reveal.is-in {
opacity: 1;
transform: none;
}
@media (prefers-reduced-motion: reduce) {
.reveal {
opacity: 1;
transform: none;
}
}
@media (min-width: 900px) {
.split .spec-table td:last-child:not([colspan]),
.product .spec-table th[scope='row'] {
white-space: nowrap;
}
}