@font-face {
    font-family: "Overused Grotesk";
    src: url("/images/GetWab/overused_grotesk/fonts/variable/OverusedGrotesk-VF.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --gw-green-900: #004437;
    --gw-green-700: #176552;
    --gw-green-300: #b5d9a7;
    --gw-green-100: #e7f0e3;
    --gw-paper: #f7f9f7;
    --gw-white: #fff;
    --gw-ink: #111;
    --gw-muted: #5f7168;
    --gw-line: #d7e2dc;
    --gw-danger: #b6483f;
    --gw-font: "Overused Grotesk", Arial, sans-serif;
    --gw-shell: 1280px;
    --gw-gutter: clamp(20px, 4vw, 64px);
    --gw-section: clamp(80px, 10vw, 144px);
    --gw-radius-sm: 8px;
    --gw-radius-md: 16px;
    --gw-radius-pill: 999px;
    --gw-shadow: 0 18px 50px rgba(0, 68, 55, .08);
    --gw-header-bg: rgba(247,249,247,.94);
    --gw-panel: #f7f9f7;
    --gw-field: #fff;
    --gw-focus: #9bc78b;
    --gw-field-hover: #5b8275;
    --gw-dark-section: #111;
    --gw-dark-line: #3c423f;
    --gw-dark-muted: #aeb9b3;
    --gw-display: clamp(56px, 7vw, 108px);
    --gw-h1: clamp(48px, 6vw, 88px);
    --gw-h2: clamp(38px, 4.3vw, 64px);
    --gw-h3: clamp(24px, 2.3vw, 32px);
    --gw-body: clamp(17px, 1.25vw, 20px);
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --gw-paper: #202320;
    --gw-white: #181b19;
    --gw-ink: #eef2ee;
    --gw-muted: #aab4ae;
    --gw-line: #424a45;
    --gw-green-100: #20352d;
    --gw-shadow: 0 18px 50px rgba(0, 0, 0, .28);
    --gw-header-bg: rgba(24,27,25,.94);
    --gw-panel: #242824;
    --gw-field: #1b1f1c;
    --gw-focus: #316958;
    --gw-field-hover: #588575;
    --gw-dark-section: #292e2b;
    --gw-dark-line: #4c5650;
    --gw-dark-muted: #b2bcb6;
}

:root[data-theme="dark"] .gw-header .gw-brand img { filter: invert(1); }
:root[data-theme="dark"] .gw-eyebrow,
:root[data-theme="dark"] .gw-kicker,
:root[data-theme="dark"] .gw-panel__label,
:root[data-theme="dark"] .gw-inline-link,
:root[data-theme="dark"] .gw-button--ghost { color: var(--gw-green-300); }
:root[data-theme="dark"] .gw-button--secondary { --gw-button-border: var(--gw-green-300); --gw-button-fill: var(--gw-white); color: var(--gw-green-300); }
:root[data-theme="dark"] .gw-button--secondary:hover { --gw-button-fill: var(--gw-green-300); color: #004437; }
:root[data-theme="dark"] .gw-button--ghost { box-shadow: inset 0 -1px 0 var(--gw-green-300); }
:root[data-theme="dark"] .gw-button:not(.gw-button--secondary):not(.gw-button--ghost):not(.gw-button--light) { --gw-button-border: var(--gw-green-300); --gw-button-fill: var(--gw-green-300); color: #004437; }
:root[data-theme="dark"] .gw-button:not(.gw-button--secondary):not(.gw-button--ghost):not(.gw-button--light):hover { --gw-button-border: #fff; --gw-button-fill: #fff; }
:root[data-theme="dark"] .gw-hero h1 span { color: var(--gw-green-300); }
:root[data-theme="dark"] .gw-stat .is-positive { color: var(--gw-green-300); }
:root[data-theme="dark"] .gw-stat .is-negative { color: #ef8f86; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--gw-ink); background: var(--gw-white); font-family: var(--gw-font); font-size: var(--gw-body); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
.gw-shell { width: min(100%, calc(var(--gw-shell) + var(--gw-gutter) * 2)); margin-inline: auto; padding-inline: var(--gw-gutter); }
.gw-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.gw-header { position: sticky; z-index: 20; top: 0; background: var(--gw-header-bg); border-bottom: 1px solid var(--gw-line); backdrop-filter: blur(14px); }
.gw-header__inner { min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.gw-brand { width: 148px; }
.gw-brand img { width: 100%; height: auto; }
.gw-nav { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 42px); }
.gw-nav a, .gw-header__login { text-decoration: none; font-size: 15px; font-weight: 600; }
.gw-nav a { position: relative; }
.gw-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--gw-green-900); transition: right .2s ease; }
.gw-nav a:hover::after, .gw-nav a:focus-visible::after { right: 0; }
.gw-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.gw-theme-button { min-height: 40px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 0; color: var(--gw-ink); background: transparent; border: 0; font-size: 13px; font-weight: 650; cursor: pointer; }
.gw-theme-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; stroke-linejoin: miter; }
.gw-theme-button__moon { display: none; }
:root[data-theme="dark"] .gw-theme-button__sun { display: none; }
:root[data-theme="dark"] .gw-theme-button__moon { display: block; }
.gw-menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--gw-line); border-radius: 50%; background: transparent; }
.gw-menu-button span:not(.gw-sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--gw-ink); transition: transform .2s ease, opacity .2s ease; }

.gw-button { --gw-cut: 11px; --gw-button-border: var(--gw-green-900); --gw-button-fill: var(--gw-green-900); position: relative; isolation: isolate; min-height: 52px; display: inline-flex; justify-content: center; align-items: center; gap: 18px; padding: 13px 24px; border: 0; border-radius: 0; clip-path: polygon(var(--gw-cut) 0, 100% 0, 100% 100%, 0 100%, 0 var(--gw-cut)); color: #fff; background: var(--gw-button-border); font-size: 16px; font-weight: 650; line-height: 1; text-decoration: none; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.gw-button::before { content: ""; position: absolute; z-index: -1; inset: 1px; clip-path: polygon(calc(var(--gw-cut) - 1px) 0, 100% 0, 100% 100%, 0 100%, 0 calc(var(--gw-cut) - 1px)); background: var(--gw-button-fill); transition: background .2s ease; }
.gw-button:hover { --gw-button-border: var(--gw-green-700); --gw-button-fill: var(--gw-green-700); transform: translateY(-2px); }
.gw-button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, button:focus-visible { outline: 3px solid var(--gw-focus); outline-offset: 3px; }
.gw-button--small { --gw-cut: 8px; min-height: 44px; padding: 10px 20px; font-size: 14px; }
.gw-button--secondary { --gw-button-fill: var(--gw-white); color: var(--gw-green-900); }
.gw-button--secondary:hover { --gw-button-fill: var(--gw-green-900); color: #fff; }
.gw-button--ghost { min-height: auto; padding: 8px 0; clip-path: none; color: var(--gw-green-900); background: transparent; box-shadow: inset 0 -1px 0 var(--gw-green-900); }
.gw-button--ghost::before { display: none; }
.gw-button--ghost:hover { color: var(--gw-green-700); background: transparent; box-shadow: inset 0 -1px 0 var(--gw-green-700); }
.gw-button--light { --gw-button-border: var(--gw-green-300); --gw-button-fill: var(--gw-green-300); color: #004437; }
.gw-button--light:hover { --gw-button-border: #fff; --gw-button-fill: #fff; color: #004437; }
.gw-button:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.gw-hero { min-height: calc(100vh - 82px); display: grid; align-items: stretch; background: var(--gw-paper); overflow: hidden; }
.gw-hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); align-items: center; gap: clamp(50px, 8vw, 120px); padding-block: clamp(80px, 10vw, 150px); }
.gw-eyebrow, .gw-kicker, .gw-panel__label { margin: 0 0 24px; color: var(--gw-green-900); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gw-hero h1 { max-width: 930px; margin: 0; font-size: var(--gw-h1); font-weight: 650; letter-spacing: -.055em; line-height: .94; }
.gw-hero h1 span { color: var(--gw-green-900); }
.gw-lead { max-width: 720px; margin: 32px 0 0; color: var(--gw-muted); font-size: clamp(19px, 1.7vw, 25px); line-height: 1.42; }
.gw-button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.gw-hero__visual { position: relative; aspect-ratio: .82; min-height: 460px; padding: 36px; color: #fff; background: var(--gw-green-900); overflow: hidden; }
.gw-hero__number { font-size: 14px; font-weight: 650; letter-spacing: .12em; }
.gw-hero__mark { position: absolute; top: 22%; right: 3%; width: 55%; opacity: .94; }
.gw-hero__mark img { width: 100%; height: auto; }
.gw-hero__note { position: absolute; right: 36px; bottom: 36px; left: 36px; padding-top: 20px; border-top: 1px solid rgba(181,217,167,.5); }
.gw-hero__note span { color: var(--gw-green-300); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.gw-hero__note strong { display: block; margin-top: 8px; font-size: clamp(24px, 2.5vw, 38px); font-weight: 500; line-height: 1.05; }

.gw-section { padding-block: var(--gw-section); }
.gw-section--paper { background: var(--gw-paper); }
.gw-section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); gap: clamp(50px, 8vw, 130px); align-items: end; margin-bottom: clamp(52px, 7vw, 92px); }
.gw-section-heading h2, .gw-cta h2 { margin: 0; font-size: var(--gw-h2); font-weight: 570; letter-spacing: -.045em; line-height: 1; }
.gw-section-heading > p { max-width: 530px; margin: 0; color: var(--gw-muted); }
.gw-color-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--gw-line); }
.gw-swatch { aspect-ratio: .9; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-right: 1px solid var(--gw-line); }
.gw-swatch:last-child { border-right: 0; }
.gw-swatch span { font-size: 14px; }
.gw-swatch strong { font-size: 18px; font-weight: 550; }
.gw-swatch--dark { color: var(--gw-white); background: var(--gw-green-900); }
.gw-swatch--light { background: var(--gw-green-300); }
.gw-swatch--ink { color: var(--gw-white); background: var(--gw-ink); }
.gw-swatch--paper { background: var(--gw-paper); }

.gw-type-specimens { border-top: 1px solid var(--gw-line); }
.gw-type-row { display: grid; grid-template-columns: 150px 1fr; gap: 34px; padding-block: 34px; border-bottom: 1px solid var(--gw-line); align-items: start; }
.gw-type-row > span { padding-top: 10px; color: var(--gw-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.gw-type-row h1, .gw-type-row h2, .gw-type-row h3, .gw-type-row p, .gw-display { margin: 0; }
.gw-display { font-size: var(--gw-display); font-weight: 650; letter-spacing: -.06em; line-height: .9; }
.gw-type-row h1 { font-size: clamp(42px, 5vw, 72px); letter-spacing: -.05em; line-height: .96; }
.gw-type-row h2 { font-size: clamp(34px, 4vw, 54px); letter-spacing: -.04em; line-height: 1; }
.gw-type-row h3 { font-size: var(--gw-h3); }
.gw-body-copy { max-width: 760px; color: var(--gw-muted); }
.gw-inline-link { color: var(--gw-green-900); font-weight: 650; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.gw-inline-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.gw-inline-link:hover span { transform: translate(3px, -3px); }

.gw-component-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gw-panel { padding: clamp(28px, 4vw, 52px); border: 1px solid var(--gw-line); border-radius: var(--gw-radius-md); background: var(--gw-panel); }
.gw-panel--wide { grid-column: 1 / -1; }
.gw-component-stack { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.gw-form { display: grid; gap: 10px; }
.gw-form label { margin-top: 8px; font-size: 14px; font-weight: 650; }
.gw-form input[type="text"], .gw-form select { width: 100%; min-height: 54px; padding: 12px 16px; color: var(--gw-ink); background: var(--gw-field); border: 1px solid var(--gw-line); border-radius: var(--gw-radius-sm); }
.gw-form input[type="text"]:hover, .gw-form select:hover { border-color: var(--gw-field-hover); }
.gw-form input::placeholder { color: #829188; }
.gw-check { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.gw-check input { width: 18px; height: 18px; accent-color: var(--gw-green-900); }
.gw-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.gw-stat { min-height: 200px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--gw-line); background: var(--gw-white); }
.gw-stat + .gw-stat { border-left: 0; }
.gw-stat span { color: var(--gw-muted); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.gw-stat strong { margin: auto 0 18px; font-size: clamp(42px, 5vw, 64px); font-weight: 620; letter-spacing: -.04em; line-height: 1; }
.gw-stat small { color: var(--gw-muted); }
.gw-stat .is-positive { color: var(--gw-green-700); }
.gw-stat .is-negative { color: var(--gw-danger); }

.gw-section--dark { color: #fff; background: var(--gw-dark-section); }
.gw-section--dark .gw-kicker, .gw-section--dark a { color: var(--gw-green-300); }
.gw-section--dark .gw-section-heading > p, .gw-section--dark article p { color: var(--gw-dark-muted); }
.gw-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--gw-dark-line); border-bottom: 1px solid var(--gw-dark-line); }
.gw-feature-grid article { min-height: 340px; display: flex; flex-direction: column; padding: 32px; border-right: 1px solid var(--gw-dark-line); }
.gw-feature-grid article:last-child { border-right: 0; }
.gw-feature-grid span { color: var(--gw-green-300); font-size: 13px; letter-spacing: .12em; }
.gw-feature-grid h3 { margin: auto 0 12px; font-size: var(--gw-h3); font-weight: 520; }
.gw-feature-grid p { margin: 0 0 28px; }
.gw-feature-grid a { font-size: 15px; font-weight: 650; text-underline-offset: 5px; }

.gw-cta { padding-block: clamp(100px, 14vw, 190px); color: #fff; background: var(--gw-green-900); }
.gw-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; }
.gw-cta .gw-eyebrow { grid-column: 1 / -1; color: var(--gw-green-300); margin-bottom: 0; }
.gw-cta h2 { color: #fff; font-size: clamp(48px, 7vw, 96px); }
.gw-footer { padding-block: 64px 28px; color: #fff; background: #111; }
.gw-footer__top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 40px; padding-bottom: 70px; }
.gw-brand--footer { width: 210px; }
.gw-footer__top p { margin: 0; color: #aeb9b3; font-size: 16px; }
.gw-footer__links { display: grid; grid-template-columns: repeat(2, auto); gap: 14px 40px; }
.gw-footer__links a { color: #fff; font-size: 15px; text-decoration: none; }
.gw-footer__links a:hover { color: var(--gw-green-300); }
.gw-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: #87918c; border-top: 1px solid #353a37; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 980px) {
    .gw-color-grid { grid-template-columns: repeat(2, 1fr); }
    .gw-swatch { aspect-ratio: 1.35; border-bottom: 1px solid var(--gw-line); }
    .gw-swatch:nth-child(2) { border-right: 0; }
    .gw-swatch:nth-child(n+3) { border-bottom: 0; }
    .gw-section-heading { grid-template-columns: 1fr; }
    .gw-section-heading > p { max-width: 700px; }
}

@media (max-width: 860px) {
    :root { --gw-section: 80px; }
    .gw-header__inner { min-height: 70px; grid-template-columns: 1fr auto; }
    .gw-brand { width: 130px; }
    .gw-menu-button { display: block; }
    .gw-header__login, .gw-header__actions > .gw-button { display: none; }
    .gw-theme-button span { display: none; }
    .gw-nav { position: absolute; top: 70px; right: 0; left: 0; display: none; align-items: stretch; padding: 14px var(--gw-gutter) 28px; background: var(--gw-paper); border-bottom: 1px solid var(--gw-line); box-shadow: var(--gw-shadow); }
    .gw-nav a { padding-block: 16px; border-bottom: 1px solid var(--gw-line); font-size: 18px; }
    .gw-nav a::after { display: none; }
    .gw-header.is-open .gw-nav { display: flex; flex-direction: column; gap: 0; }
    .gw-header.is-open .gw-menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .gw-header.is-open .gw-menu-button span:nth-child(2) { opacity: 0; }
    .gw-header.is-open .gw-menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .gw-hero { min-height: auto; }
    .gw-hero__grid { grid-template-columns: 1fr; padding-top: 72px; }
    .gw-hero__visual { min-height: 400px; aspect-ratio: 1.15; }
    .gw-component-grid { grid-template-columns: 1fr; }
    .gw-panel--wide { grid-column: auto; }
    .gw-stat-grid, .gw-feature-grid { grid-template-columns: 1fr; }
    .gw-stat + .gw-stat { border-top: 0; border-left: 1px solid var(--gw-line); }
    .gw-feature-grid article { min-height: 270px; border-right: 0; border-bottom: 1px solid #3c423f; }
    .gw-feature-grid article:last-child { border-bottom: 0; }
    .gw-cta__inner { grid-template-columns: 1fr; align-items: start; }
    .gw-footer__top { grid-template-columns: 1fr 1fr; }
    .gw-footer__links { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    :root { --gw-gutter: 20px; --gw-section: 68px; }
    .gw-button-row, .gw-button-row .gw-button { width: 100%; }
    .gw-hero__grid { gap: 52px; padding-bottom: 68px; }
    .gw-hero__visual { min-height: 360px; padding: 24px; }
    .gw-hero__note { right: 24px; bottom: 24px; left: 24px; }
    .gw-color-grid { grid-template-columns: 1fr; }
    .gw-swatch { aspect-ratio: 1.9; border-right: 0; border-bottom: 1px solid var(--gw-line) !important; }
    .gw-swatch:last-child { border-bottom: 0 !important; }
    .gw-type-row { grid-template-columns: 1fr; gap: 12px; }
    .gw-type-row > span { padding-top: 0; }
    .gw-component-stack { align-items: stretch; }
    .gw-component-stack .gw-button { width: 100%; }
    .gw-panel { padding: 24px; }
    .gw-stat { min-height: 175px; padding: 22px; }
    .gw-footer__top { grid-template-columns: 1fr; padding-bottom: 48px; }
    .gw-footer__links { grid-column: auto; }
    .gw-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
