:root {
    --brand: #009f82;
    --brand-dark: #007b66;
    --brand-deep: #0a3630;
    --ink: #102925;
    --ink-soft: #48615c;
    --paper: #f5f8f5;
    --surface: #ffffff;
    --mint: #e8f5f0;
    --mint-strong: #d6eee6;
    --lime: #dfff71;
    --line: #d8e3df;
    --danger: #a33d32;
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow: 0 26px 80px rgba(10, 54, 48, .11);
    --container: 1240px;
    --header-height: 88px;
    --font: "Aptos", "Segoe UI Variable", "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

button,
input,
textarea,
select {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

::selection {
    color: var(--surface);
    background: var(--brand);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(80px, 9vw, 138px);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    color: var(--surface);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 2px;
    background: currentColor;
    content: "";
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 13px 23px;
    border: 1px solid var(--brand);
    border-radius: 100px;
    color: var(--surface);
    background: var(--brand);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-decoration: none;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.button:hover {
    border-color: var(--ink);
    background: var(--ink);
    transform: translateY(-2px);
}

.button span {
    font-size: 1.25em;
    line-height: 1;
}

.button--small {
    min-height: 44px;
    padding: 9px 19px;
}

.button--secondary {
    color: var(--ink);
    border-color: var(--line);
    background: transparent;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.brand-logo {
    display: block;
    flex: 0 0 auto;
    background-color: #fff;
    background-repeat: no-repeat;
    overflow: hidden;
}

.brand-logo--horizontal {
    width: 142px;
    aspect-ratio: 4.12 / 1;
    background-image: url("/assets/images/urv-logo-egysoros.png");
    background-position: center 47%;
    background-size: 138% auto;
}

.brand-logo--stacked {
    width: 106px;
    aspect-ratio: 2 / 1;
    background-image: url("/assets/images/urv-logo-ketsoros.png");
    background-position: center 50%;
    background-size: 140% auto;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 35px rgba(10, 54, 48, .07);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.site-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav > a,
.nav-group__link {
    position: relative;
    padding: 13px 14px;
    color: #29433e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
}

.site-nav > a:not(.button)::after,
.nav-group__link::after {
    position: absolute;
    right: 14px;
    bottom: 7px;
    left: 14px;
    height: 2px;
    background: var(--brand);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after,
.nav-group:hover .nav-group__link::after,
.nav-group.is-active .nav-group__link::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav > .button {
    margin-left: 10px;
    padding-inline: 20px;
    color: #fff;
}

.nav-group {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-group__toggle {
    display: grid;
    width: 26px;
    height: 34px;
    margin-left: -9px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-group__toggle svg {
    width: 10px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
    transition: transform .2s ease;
}

.submenu {
    position: absolute;
    top: calc(100% + 20px);
    right: -300px;
    display: grid;
    width: min(720px, 86vw);
    grid-template-columns: .8fr 1.2fr;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.submenu::before {
    position: absolute;
    top: -24px;
    right: 320px;
    width: 110px;
    height: 28px;
    content: "";
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu,
.nav-group.is-open .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-group.is-open .nav-group__toggle svg {
    transform: rotate(180deg);
}

.submenu__intro {
    display: flex;
    min-height: 270px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: var(--surface);
    background: var(--brand-deep);
}

.submenu__intro .eyebrow {
    color: #7be0cb;
}

.submenu__intro strong {
    max-width: 250px;
    font-size: 25px;
    line-height: 1.2;
}

.submenu__intro a {
    color: var(--lime);
    font-size: 14px;
    font-weight: 700;
}

.submenu__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 17px;
}

.submenu__links a {
    display: flex;
    min-height: 78px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 17px;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
    text-decoration: none;
}

.submenu__links a:hover {
    background: var(--mint);
}

.submenu__links span {
    margin-bottom: 5px;
    color: var(--brand);
    font-size: 10px;
    letter-spacing: .12em;
}

.nav-toggle {
    display: none;
}

/* Hero */
.page-hero {
    position: relative;
    min-height: 650px;
    background:
        radial-gradient(circle at 83% 15%, rgba(0, 159, 130, .12), transparent 29%),
        linear-gradient(135deg, #fbfdfb 0%, #f1f7f3 100%);
    overflow: hidden;
}

.page-hero--home {
    min-height: calc(100svh - var(--header-height));
}

.page-hero::after {
    position: absolute;
    right: -120px;
    bottom: -210px;
    width: 440px;
    height: 440px;
    border: 84px solid rgba(0, 159, 130, .055);
    border-radius: 50%;
    content: "";
}

.page-hero__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 41, 37, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 41, 37, .035) 1px, transparent 1px);
    background-position: center;
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: inherit;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
    align-items: center;
    gap: clamp(50px, 7vw, 105px);
    padding-block: 80px 96px;
}

.page-hero__copy {
    max-width: 760px;
}

.page-hero__copy h1 {
    max-width: 790px;
    margin: 25px 0 28px;
    font-size: clamp(46px, 5.2vw, 79px);
    font-weight: 780;
    letter-spacing: -.055em;
    line-height: .98;
    text-wrap: balance;
}

.page-hero--home .page-hero__copy h1 {
    font-size: clamp(52px, 5.85vw, 90px);
}

.page-hero__lead {
    max-width: 670px;
}

.page-hero__lead > p {
    max-width: 650px;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.5;
}

.page-hero__lead > p + p {
    margin-top: 18px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
    color: #71817e;
    font-size: 12px;
}

.breadcrumbs a {
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--brand-dark);
}

.system-card,
.page-signal {
    position: relative;
    width: min(100%, 475px);
    aspect-ratio: .91 / 1;
    margin-left: auto;
    border: 1px solid rgba(0, 159, 130, .2);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.system-card::before,
.page-signal::before {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 159, 130, .18) 1px, transparent 1px);
    background-size: 20px 20px;
    content: "";
    mask-image: linear-gradient(#000, transparent 78%);
}

.system-card > .brand-logo {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 36px;
}

.system-card__status {
    position: absolute;
    z-index: 2;
    top: 42px;
    right: 34px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--brand-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.system-card__status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 5px rgba(0, 159, 130, .12);
}

.system-map {
    position: absolute;
    inset: 128px 25px 92px;
}

.system-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: rgba(0, 159, 130, .42);
    stroke-dasharray: 5 7;
    stroke-width: 1.5;
}

.system-node {
    position: absolute;
    z-index: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 159, 130, .28);
    border-radius: 50%;
    color: var(--brand-deep);
    background: var(--mint);
    box-shadow: 0 12px 30px rgba(10, 54, 48, .08);
    font-size: 11px;
    font-weight: 800;
}

.system-node--main {
    top: 50%;
    left: 8%;
    width: 94px;
    height: 94px;
    transform: translateY(-50%);
}

.system-node--main span {
    color: var(--brand);
    font-size: 27px;
    line-height: 1;
}

.system-node--main strong {
    width: 70px;
    margin-top: -18px;
    font-size: 9px;
    line-height: 1.1;
    text-align: center;
}

.system-node--api {
    top: 4%;
    right: 22%;
    width: 58px;
    height: 58px;
}

.system-node--data {
    right: 5%;
    bottom: 23%;
    width: 68px;
    height: 68px;
}

.system-node--flow {
    right: 23%;
    bottom: 0;
    width: 92px;
    height: 48px;
    border-radius: 100px;
}

.system-card__foot {
    position: absolute;
    right: 34px;
    bottom: 24px;
    left: 34px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.system-card__foot span {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.system-card__foot p {
    margin: 0;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.25;
    text-align: right;
}

.page-signal {
    display: flex;
    aspect-ratio: .94 / 1;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}

.page-signal .brand-logo {
    position: absolute;
    z-index: 1;
    top: 43%;
    left: 50%;
    width: 180px;
    transform: translate(-50%, -50%);
}

.page-signal__number {
    position: absolute;
    z-index: 1;
    top: 36px;
    left: 38px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.page-signal__line {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    margin-bottom: 20px;
    background: var(--line);
}

.page-signal strong,
.page-signal small {
    position: relative;
    z-index: 1;
}

.page-signal strong {
    font-size: 17px;
    line-height: 1.3;
}

.page-signal small {
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 12px;
}

/* Content */
.expertise-rail {
    color: var(--surface);
    background: var(--brand-deep);
}

.expertise-rail__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.expertise-rail__inner > div {
    position: relative;
    display: grid;
    min-height: 130px;
    grid-template-columns: 48px 1fr;
    align-content: center;
    padding: 25px 44px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.expertise-rail__inner > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.expertise-rail span {
    grid-row: 1 / span 2;
    color: #72d8c4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}

.expertise-rail strong {
    font-size: 16px;
}

.expertise-rail small {
    color: #a8beb9;
    font-size: 12px;
}

.content-section {
    position: relative;
    background: var(--paper);
}

.content-section--tint {
    background: var(--mint);
}

.content-section--price .section-heading {
    padding: clamp(35px, 5vw, 70px);
    border: 1px solid var(--brand);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.section-heading {
    display: grid;
    grid-template-columns: 75px minmax(0, 760px);
    gap: 22px;
    margin-bottom: 54px;
}

.section-heading--compact {
    max-width: 980px;
    margin-bottom: 64px;
}

.section-heading h2,
.contact-info h2,
.knowledge-panel h2 {
    margin: 0 0 22px;
    font-size: clamp(35px, 4.2vw, 58px);
    font-weight: 760;
    letter-spacing: -.045em;
    line-height: 1.04;
    text-wrap: balance;
}

.section-index {
    padding-top: 11px;
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.prose {
    color: var(--ink-soft);
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose p {
    margin: 0 0 18px;
}

.prose a:not(.button) {
    color: var(--brand-dark);
    font-weight: 700;
}

.prose strong {
    color: var(--ink);
}

.prose--large {
    font-size: 19px;
}

.prose ul {
    display: grid;
    gap: 10px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding-left: 25px;
}

.prose ul li::before {
    position: absolute;
    top: .73em;
    left: 1px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--brand);
    border-radius: 50%;
    content: "";
}

.steps-list {
    display: grid;
    margin: 38px 0 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.steps-list li {
    position: relative;
    min-height: 72px;
    padding: 21px 15px 21px 62px;
    border-top: 1px solid var(--line);
    counter-increment: steps;
}

.steps-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.steps-list li::before {
    position: absolute;
    top: 20px;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--surface);
    background: var(--brand);
    content: counter(steps, decimal-leading-zero);
    font-size: 10px;
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 1px 0 rgba(10, 54, 48, .03);
    transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease;
}

.feature-card:hover {
    border-color: rgba(0, 159, 130, .5);
    box-shadow: 0 24px 55px rgba(10, 54, 48, .1);
    transform: translateY(-6px);
}

.feature-card__icon,
.service-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 50px;
    place-items: center;
    border-radius: 16px;
    color: var(--brand);
    background: var(--mint);
}

.feature-card__icon svg,
.service-card__icon svg {
    width: 30px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.feature-card h3 {
    margin: 0 0 15px;
    font-size: 24px;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.feature-card .button-row {
    margin-top: auto;
    padding-top: 26px;
}

.feature-card .button {
    min-height: auto;
    padding: 0;
    border: 0;
    color: var(--brand-dark);
    background: transparent;
}

.feature-card .button:hover {
    color: var(--ink);
    transform: none;
}

.closing-cta {
    color: var(--surface);
    background: var(--brand-deep);
}

.closing-cta__inner {
    position: relative;
    display: grid;
    min-height: 450px;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 60px;
    padding: clamp(45px, 6vw, 84px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    overflow: hidden;
}

.closing-cta__mark {
    color: var(--brand);
    font-size: clamp(140px, 21vw, 290px);
    font-weight: 900;
    letter-spacing: -.15em;
    line-height: .6;
}

.closing-cta h2 {
    max-width: 680px;
    margin: 24px 0 24px;
    font-size: clamp(40px, 5vw, 68px);
    letter-spacing: -.05em;
    line-height: 1;
}

.closing-cta .eyebrow {
    color: #72d8c4;
}

.closing-cta .prose {
    color: #bed0cc;
}

.closing-cta .prose strong {
    color: var(--surface);
}

.closing-cta .button--secondary {
    color: var(--surface);
    border-color: rgba(255, 255, 255, .35);
}

/* Services */
.service-overview,
.plugin-showcase,
.knowledge-layout,
.contact-layout {
    background: var(--surface);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 475px;
    flex-direction: column;
    padding: clamp(30px, 4vw, 50px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.service-card::after {
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 150px;
    height: 150px;
    border: 30px solid rgba(0, 159, 130, .06);
    border-radius: 50%;
    content: "";
}

.service-card:hover {
    border-color: rgba(0, 159, 130, .55);
    background: #fbfefc;
    transform: translateY(-4px);
}

.service-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-card__top > span {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.service-card__icon {
    margin: 0;
}

.service-card h2 {
    max-width: 480px;
    margin: 60px 0 20px;
    font-size: clamp(30px, 3.6vw, 46px);
    letter-spacing: -.045em;
    line-height: 1.02;
}

.service-card .prose {
    max-width: 540px;
}

.service-card .button-row {
    display: none;
}

.text-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 30px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    font-size: 18px;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
    transition: background .25s ease, transform .25s ease;
}

.product-card:nth-child(3n + 2) {
    background: var(--mint);
}

.product-card:hover {
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.product-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}

.product-card__number {
    color: var(--brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.product-card__wp {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: var(--surface);
    background: var(--ink);
    font-family: Georgia, serif;
    font-size: 23px;
}

.product-card h2 {
    margin: 0 0 18px;
    font-size: 28px;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.product-card .button-row {
    margin-top: auto;
    padding-top: 22px;
}

.product-card .button {
    min-height: auto;
    padding: 0;
    border: 0;
    color: var(--brand-dark);
    background: none;
}

.product-card .button:hover {
    transform: none;
}

.price-line strong {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 13px;
    border-radius: 100px;
    color: var(--brand-deep);
    background: var(--lime);
    font-size: 13px;
}

/* Knowledge */
.knowledge-layout .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.knowledge-panel {
    display: grid;
    min-height: 470px;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: clamp(32px, 4vw, 56px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.knowledge-panel:nth-child(3) {
    min-height: 320px;
    grid-column: 1 / -1;
    background: var(--mint);
}

.knowledge-panel h2 {
    font-size: clamp(32px, 3.7vw, 48px);
}

.archive-placeholder {
    display: flex;
    min-height: 130px;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
    padding: 25px;
    border: 1px dashed rgba(0, 159, 130, .48);
    border-radius: 16px;
    color: var(--ink);
    background: rgba(232, 245, 240, .55);
}

.archive-placeholder span {
    margin-bottom: 6px;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.archive-placeholder--large {
    min-height: 330px;
    grid-column: 1 / -1;
    align-items: center;
    margin: 0;
    text-align: center;
}

.archive-placeholder--large strong {
    font-size: clamp(29px, 4vw, 48px);
    letter-spacing: -.04em;
}

.archive-placeholder--large p {
    margin: 8px 0 0;
    color: var(--ink-soft);
}

/* Contact */
.contact-layout__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(45px, 7vw, 100px);
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: calc(var(--header-height) + 35px);
}

.contact-info {
    position: relative;
    padding: 0 0 52px 54px;
    border-bottom: 1px solid var(--line);
}

.contact-info + .contact-info {
    margin-top: 48px;
}

.contact-info .section-index {
    position: absolute;
    top: 0;
    left: 0;
}

.contact-info h2 {
    font-size: 31px;
}

.contact-info .prose ul {
    gap: 8px;
}

.contact-form-wrap {
    padding: clamp(30px, 5vw, 60px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
}

.contact-form-wrap h2 {
    margin: 22px 0 12px;
    font-size: clamp(38px, 5vw, 58px);
    letter-spacing: -.05em;
    line-height: 1;
}

.form-intro {
    max-width: 620px;
    margin: 0 0 42px;
    color: var(--ink-soft);
}

.contact-form {
    position: relative;
    display: grid;
    gap: 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field > span {
    font-size: 13px;
    font-weight: 750;
}

.form-field i,
.check-field i {
    color: var(--brand-dark);
    font-style: normal;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 13px;
    outline: none;
    background: var(--surface);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input,
.form-field select {
    height: 54px;
    padding: 0 16px;
}

.form-field textarea {
    min-height: 180px;
    padding: 15px 16px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(0, 159, 130, .1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #93a29f;
}

.field-help {
    justify-self: end;
    color: #7a8b88;
    font-size: 11px;
}

.field-error {
    color: var(--danger);
    font-size: 12px;
    font-weight: 700;
}

.file-field {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px dashed #a9bdb8;
    border-radius: 14px;
    background: var(--surface);
    cursor: pointer;
}

.file-field:hover {
    border-color: var(--brand);
}

.file-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.file-field__icon {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--surface);
    background: var(--brand);
    font-size: 22px;
}

.file-field strong,
.file-field small {
    display: block;
}

.file-field strong {
    font-size: 14px;
}

.file-field small {
    margin-top: 3px;
    color: var(--ink-soft);
    font-size: 11px;
}

.check-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 12px;
    cursor: pointer;
}

.check-field input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 2px 0 0;
    accent-color: var(--brand);
}

.button--submit {
    justify-self: start;
    margin-top: 8px;
    border: 0;
    cursor: pointer;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.form-notice {
    margin-top: 30px;
    padding: 24px;
    border-radius: 14px;
}

.form-notice--success {
    border: 1px solid var(--brand);
    background: var(--mint);
}

.form-notice--error {
    margin-bottom: 25px;
    color: #6d2720;
    border: 1px solid #e5bcb6;
    background: #fff2f0;
}

.urgent-note {
    padding-block: 44px;
    background: var(--mint);
}

.urgent-note__inner {
    display: grid;
    max-width: 1040px;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    align-items: start;
}

.urgent-note__inner > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    color: var(--surface);
    background: var(--brand-deep);
    font-size: 22px;
    font-weight: 800;
}

.urgent-note h2 {
    margin: 0 0 6px;
    font-size: 21px;
}

/* Footer */
.site-footer {
    padding: 85px 0 28px;
    color: var(--surface);
    background: #071e1b;
}

.site-footer__lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: end;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.brand-logo--footer {
    margin-bottom: 25px;
    border-radius: 4px;
}

.site-footer__lead p {
    max-width: 420px;
    margin: 0;
    color: #9db4af;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    justify-self: end;
    text-decoration: none;
}

.footer-cta span {
    color: #8eaaa4;
    font-size: 13px;
}

.footer-cta strong {
    color: var(--lime);
    font-size: clamp(34px, 5vw, 60px);
    letter-spacing: -.05em;
    line-height: 1.1;
}

.footer-cta strong span {
    color: inherit;
    font-size: .55em;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 60px;
    padding-block: 66px;
}

.site-footer__grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-footer h2 {
    margin: 0 0 17px;
    color: #6e8e87;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-footer__grid a {
    color: #d3dfdc;
    font-size: 14px;
    text-decoration: none;
}

.site-footer__grid a:hover {
    color: var(--lime);
}

.site-footer__contact {
    padding-left: 55px;
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.site-footer__contact a {
    color: var(--surface);
    font-size: 20px;
    font-weight: 700;
}

.site-footer__contact p {
    margin: 17px 0 0;
    color: #829f99;
    font-size: 13px;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .13);
    color: #6f8b85;
    font-size: 11px;
}

.not-found {
    min-height: 75vh;
    background: var(--mint);
}

.not-found__inner {
    max-width: 760px;
    text-align: center;
}

.not-found__inner > span {
    color: var(--brand);
    font-size: clamp(100px, 20vw, 260px);
    font-weight: 850;
    letter-spacing: -.1em;
    line-height: .8;
}

.not-found h1 {
    margin: 30px 0 20px;
    font-size: clamp(42px, 6vw, 70px);
    letter-spacing: -.05em;
    line-height: 1;
}

.not-found .button {
    margin-top: 30px;
}

/* Motion */
.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .25, 1);
}

.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    :root {
        --header-height: 76px;
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .site-header {
        backdrop-filter: none;
    }

    .nav-toggle {
        display: inline-flex;
        height: 44px;
        align-items: center;
        gap: 12px;
        padding: 0 15px;
        border: 1px solid var(--line);
        border-radius: 100px;
        background: var(--surface);
        cursor: pointer;
    }

    .nav-toggle__label {
        font-size: 13px;
        font-weight: 750;
    }

    .nav-toggle__icon {
        position: relative;
        width: 16px;
        height: 12px;
    }

    .nav-toggle__icon i {
        position: absolute;
        left: 0;
        width: 16px;
        height: 1.5px;
        background: var(--ink);
        transition: top .2s ease, transform .2s ease;
    }

    .nav-toggle__icon i:first-child { top: 2px; }
    .nav-toggle__icon i:last-child { top: 9px; }
    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child { top: 6px; transform: rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child { top: 6px; transform: rotate(-45deg); }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 25px 20px 50px;
        background: var(--surface);
        opacity: 0;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav > a,
    .nav-group__link {
        display: flex;
        min-height: 60px;
        align-items: center;
        padding: 14px 5px;
        border-bottom: 1px solid var(--line);
        font-size: 18px;
    }

    .site-nav > a::after,
    .nav-group__link::after {
        display: none;
    }

    .site-nav > .button {
        display: inline-flex;
        min-height: 52px;
        margin: 28px 0 0;
        padding-inline: 24px;
        border: 0;
        font-size: 15px;
    }

    .nav-group {
        display: grid;
        grid-template-columns: 1fr 50px;
    }

    .nav-group__toggle {
        width: 50px;
        height: 60px;
        margin: 0;
        border-bottom: 1px solid var(--line);
    }

    .submenu {
        position: static;
        display: none;
        width: auto;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .nav-group:hover .submenu,
    .nav-group:focus-within .submenu {
        display: none;
    }

    .nav-group.is-open .submenu {
        display: grid;
    }

    .submenu__intro {
        display: none;
    }

    .submenu__links {
        grid-template-columns: 1fr;
        padding: 10px 5px 18px 20px;
    }

    .submenu__links a {
        min-height: 55px;
    }

    .page-hero__inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
        gap: 45px;
    }

    .feature-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 800px) {
    .page-hero,
    .page-hero--home {
        min-height: auto;
    }

    .page-hero__inner {
        grid-template-columns: 1fr;
        padding-block: 70px;
    }

    .page-hero__visual {
        width: 100%;
        max-width: 520px;
        margin-inline: auto;
    }

    .system-card,
    .page-signal {
        margin-inline: auto;
    }

    .page-signal {
        aspect-ratio: 1.45 / 1;
    }

    .expertise-rail__inner {
        grid-template-columns: 1fr;
    }

    .expertise-rail__inner > div,
    .expertise-rail__inner > div:first-child {
        min-height: 105px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .section-heading {
        grid-template-columns: 42px 1fr;
    }

    .feature-grid,
    .service-grid,
    .product-grid,
    .knowledge-layout .container,
    .contact-layout__grid,
    .site-footer__lead {
        grid-template-columns: 1fr;
    }

    .feature-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .knowledge-panel:nth-child(3),
    .archive-placeholder--large {
        grid-column: auto;
    }

    .closing-cta__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .closing-cta__mark {
        font-size: 160px;
    }

    .contact-aside {
        position: static;
    }

    .footer-cta {
        justify-self: start;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
        padding: 35px 0 0;
        border-top: 1px solid rgba(255, 255, 255, .13);
        border-left: 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section-pad {
        padding-block: 74px;
    }

    .brand-logo--horizontal {
        width: 124px;
    }

    .page-hero__inner {
        padding-block: 55px 64px;
    }

    .page-hero__copy h1,
    .page-hero--home .page-hero__copy h1 {
        font-size: clamp(42px, 13.5vw, 61px);
        line-height: .99;
    }

    .breadcrumbs {
        margin-bottom: 28px;
    }

    .system-card {
        aspect-ratio: .91 / 1.08;
    }

    .system-card > .brand-logo {
        top: 25px;
        left: 25px;
        width: 90px;
    }

    .system-card__status {
        top: 33px;
        right: 24px;
    }

    .system-map {
        inset: 105px 15px 82px;
    }

    .system-card__foot {
        right: 24px;
        bottom: 20px;
        left: 24px;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 38px;
    }

    .section-heading h2,
    .knowledge-panel h2 {
        font-size: 36px;
    }

    .section-index {
        padding-top: 0;
    }

    .feature-card,
    .service-card,
    .product-card {
        min-height: auto;
        padding: 28px;
    }

    .feature-card__icon {
        margin-bottom: 38px;
    }

    .service-card h2 {
        margin-top: 42px;
        font-size: 34px;
    }

    .service-card .text-link,
    .product-card .button-row {
        margin-top: 35px;
    }

    .product-card__head {
        margin-bottom: 45px;
    }

    .knowledge-panel {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .closing-cta__inner {
        padding: 34px 25px;
    }

    .closing-cta h2 {
        font-size: 39px;
    }

    .contact-info {
        padding-left: 0;
    }

    .contact-info .section-index {
        position: static;
        display: block;
        margin-bottom: 10px;
    }

    .contact-form-wrap {
        padding: 27px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .urgent-note__inner {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 68px;
    }

    .site-footer__lead {
        gap: 48px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .site-footer__contact {
        grid-column: auto;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .has-js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .site-footer,
    .page-hero__visual,
    .button-row {
        display: none !important;
    }

    body,
    .content-section,
    .service-overview,
    .plugin-showcase {
        color: #000;
        background: #fff;
    }

    .page-hero {
        min-height: auto;
        background: #fff;
    }

    .page-hero__inner {
        display: block;
        padding: 30px 0;
    }
}
