:root {
    --paper: #f3f1eb;
    --paper2: #e8e7e1;
    --white: #fbfbf8;
    --graphite: #242724;
    --muted: #686e67;
    --line: rgba(36, 39, 36, 0.14);
    --green: #9dcd32;
    --green-dark: #6d941d;
    --shadow: 0 30px 80px rgba(29, 33, 28, 0.12);
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    --mono: "IBM Plex Mono", Consolas, monospace;
    --max: 1220px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--graphite);
    background: var(--paper);
    font: 400 17px/1.65 var(--sans);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background: radial-gradient(
            circle at 82% 6%,
            rgba(157, 205, 50, 0.23),
            transparent 24%
        ),
        linear-gradient(rgba(36, 39, 36, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 39, 36, 0.035) 1px, transparent 1px);
    background-size: auto, 54px 54px, 54px 54px;
    mask-image: linear-gradient(#000, transparent 78%);
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
}
button {
    font: inherit;
}
.container {
    width: min(calc(100% - 42px), var(--max));
    margin-inline: auto;
}
.skip-link {
    position: fixed;
    top: -70px;
    left: 20px;
    z-index: 100;
    padding: 11px 18px;
    color: #fff;
    background: var(--graphite);
    border-radius: 10px;
}
.skip-link:focus {
    top: 20px;
}
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 20px;
    color: var(--green-dark);
    font: 700 0.79rem/1 var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--green);
}
.section {
    padding: clamp(85px, 11vw, 70px) 0;
}
.section-title {
    margin: 0;
    font-size: clamp(2.3rem, 5.2vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}
.section-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.07rem;
}
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    transition: 0.3s ease;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(243, 241, 235, 0.9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    width: 190px;
    height: 54px;
    align-items: center;
    padding: 7px 10px;
    border-radius: 13px;
}
.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav a {
    color: #4e534e;
    font-size: 0.91rem;
    font-weight: 700;
}
.nav a:not(.nav-cta) {
    position: relative;
}
.nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    inset: auto 0 -7px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.25s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nav-cta {
    padding: 11px 19px;
    color: #fff !important;
    background: var(--graphite);
    border-radius: 999px;
}
.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--graphite);
    background: transparent;
    border: none;
    border-radius: 0%;
	cursor: pointer;
}
.menu-btn span,
.menu-btn::before,
.menu-btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}
.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 150px 0 90px;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: clamp(40px, 7vw, 95px);
	position: relative;
	z-index: 2;
}

#network-canvas {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	pointer-events: none;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.45rem, 7.4vw, 7.25rem);
    line-height: 0.86;
    letter-spacing: -0.075em;
}
.hero h1 .soft {
    color: #858b84;
    font-weight: 500;
}
.hero-lead {
    max-width: 620px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.6vw, 1.23rem);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}
.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 23px;
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 750;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 35, 27, 0.1);
}
.btn-primary {
    color: #fff;
    background: var(--graphite);
    border-color: var(--graphite);
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 48px;
    color: #7c827b;
    font: 700 0.75rem/1.4 var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.core-scene {
    position: relative;
    min-height: 560px;
    perspective: 1200px;
}
.core-orbit {
    position: absolute;
    inset: 8% 0;
    transform-style: preserve-3d;
    animation: float 7s ease-in-out infinite;
}
.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 335px;
    aspect-ratio: 1;
    border: 1px solid rgba(36, 39, 36, 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-16deg);
    box-shadow: 0 30px 90px rgba(36, 39, 36, 0.1),
        inset 0 0 55px rgba(157, 205, 50, 0.08);
}
.core-ring::before,
.core-ring::after {
    content: "";
    position: absolute;
    inset: 39px;
    border: 1px dashed rgba(36, 39, 36, 0.19);
    border-radius: inherit;
}
.core-ring::after {
    inset: 84px;
    border-style: solid;
    border-color: rgba(109, 148, 29, 0.42);
}
.core-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 138px;
    height: 138px;
    transform: translate(-50%,-50%) rotateX(49deg) rotateZ(62deg);
    background: linear-gradient(135deg, #c3ea6b, var(--green));
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 28px 75px rgba(83, 111, 24, 0.24);
}
.core-cube::before {
    content: "bePRO";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(36, 39, 36, 0.78);
    font: 800 0.86rem/1 var(--mono);
    transform: rotateZ(-45deg);
}
.node {
    position: absolute;
    display: grid;
    place-items: center;
    width: 98px;
    height: 88px;
    color: #424742;
    background: rgba(251, 251, 248, 0.9);
    border: 1px solid rgba(36, 39, 36, 0.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
    font: 700 0.72rem/1.35 var(--mono);
    text-align: center;
    backdrop-filter: blur(12px);
}
.node::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
}
.node-1 {
    left: 3%;
    top: 17%;
}
.node-2 {
    right: 1%;
    top: 25%;
}
.node-3 {
    left: 12%;
    bottom: 8%;
}
.node-4 {
    right: 10%;
    bottom: 5%;
}
.route {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--green-dark),
        transparent
    );
    opacity: 0.35;
    animation: pulse 2.5s ease-in-out infinite;
}
.route-1 {
    width: 230px;
    left: 18%;
    top: 32%;
    transform: rotate(15deg);
}
.route-2 {
    width: 205px;
    right: 15%;
    top: 42%;
    transform: rotate(-21deg);
}
.route-3 {
    width: 195px;
    left: 25%;
    bottom: 27%;
    transform: rotate(-24deg);
}
.route-4 {
    width: 180px;
    right: 20%;
    bottom: 25%;
    transform: rotate(26deg);
}
.scene-label {
    position: absolute;
    right: 2%;
    bottom: 11%;
    padding: 10px 15px;
    color: #4f681b;
    background: rgba(251, 251, 248, 0.88);
    border: 1px solid var(--line);
    border-radius: 999px;
    font: 700 0.7rem/1 var(--mono);
    box-shadow: 0 12px 35px rgba(36, 39, 36, 0.08);
}
.services-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 55px;
    margin-bottom: 58px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}
.service-card {
    position: relative;
    min-height: 365px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    background: rgba(251, 251, 248, 0.82);
    border: 1px solid var(--line);
    border-radius: 25px;
    box-shadow: 0 12px 45px rgba(36, 39, 36, 0.045);
    transform-style: preserve-3d;
    transition: 0.25s ease;
}
.service-card:hover {
    border-color: rgba(109, 148, 29, 0.36);
    box-shadow: var(--shadow);
}
.service-card.large {
    grid-column: span 7;
}
.service-card.small {
    grid-column: span 5;
}
.service-card .number {
    color: #888e87;
    font: 700 0.76rem/1 var(--mono);
}
.service-card h3 {
    max-width: 460px;
    margin: auto 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}
.service-card p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--green-dark);
    font: 700 0.79rem/1 var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.service-visual {
    position: absolute;
    top: 27px;
    right: 28px;
    width: 135px;
    height: 105px;
    opacity: 0.75;
}
.server-stack i {
    position: absolute;
    right: 0;
    width: 116px;
    height: 27px;
    border: 1px solid rgba(109, 148, 29, 0.38);
    background: rgba(157, 205, 50, 0.08);
    transform: skewY(-8deg);
}
.server-stack i:nth-child(2) {
    top: 36px;
    right: 10px;
}
.server-stack i:nth-child(3) {
    top: 72px;
    right: 20px;
}
.server-stack i::after {
    content: "";
    position: absolute;
    right: 9px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}
.api-path {
    background: radial-gradient(
            circle,
            var(--green-dark) 0 3px,
            transparent 4px
        )
        0 0/35px 35px;
}
.api-path::after {
    content: "↔";
    position: absolute;
    inset: 12px;
    display: grid;
    place-items: center;
    color: var(--green-dark);
    font: 700 2rem/1 var(--mono);
    background: rgba(251, 251, 248, 0.72);
    border: 1px solid rgba(109, 148, 29, 0.28);
    border-radius: 50%;
}
.cloud-shape {
    border: 1px solid rgba(109, 148, 29, 0.3);
    border-radius: 50%;
    transform: rotate(-12deg);
}
.cloud-shape::before,
.cloud-shape::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(109, 148, 29, 0.22);
    border-radius: 50%;
}
.cloud-shape::before {
    inset: 18px -20px;
}
.cloud-shape::after {
    inset: -13px 34px;
}
.system-section {
    background: var(--graphite);
    color: #f4f5f0;
}
.system-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
}
.system-section .section-copy {
    color: #b7bcb5;
}
.system-section .eyebrow {
    color: #bde75d;
}
.activity-window {
    overflow: hidden;
    color: var(--graphite);
    background: var(--white);
    border-radius: 23px;
    box-shadow: 0 38px 100px rgba(0, 0, 0, 0.3);
}
.activity-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    color: #697069;
    background: #e9ebe5;
    border-bottom: 1px solid rgba(36, 39, 36, 0.1);
    font: 700 0.76rem/1 var(--mono);
}
.activity-top span:last-child {
    color: var(--green-dark);
}
.activity-body {
    padding: 26px;
}
.activity-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s ease;
}
.activity-row.show {
    opacity: 1;
    transform: none;
}
.activity-row:last-child {
    border: 0;
}
.activity-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #4e6817;
    background: rgba(157, 205, 50, 0.18);
    border-radius: 13px;
    font-weight: 800;
}
.activity-row strong {
    display: block;
    line-height: 1.25;
}
.activity-row small {
    color: var(--muted);
    font-size: 0.8rem;
}
.status {
    padding: 7px 10px;
    color: #547019;
    background: rgba(157, 205, 50, 0.16);
    border-radius: 999px;
    font: 700 0.69rem/1 var(--mono);
}
.stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}
.stack-list span {
    padding: 9px 13px;
    color: #d4d8d0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    font: 600 0.72rem/1 var(--mono);
}
.architecture {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 55px;
}
.arch-card {
    padding: 29px;
    background: rgba(251, 251, 248, 0.76);
    border: 1px solid var(--line);
    border-radius: 21px;
}
.arch-card .icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 38px;
    color: #4e6817;
    background: rgba(157, 205, 50, 0.16);
    border-radius: 13px;
    font: 800 0.8rem/1 var(--mono);
}
.arch-card h3 {
    margin: 0 0 9px;
    font-size: 1.23rem;
}
.arch-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}
.flow-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 48px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.flow-step {
    position: relative;
    min-height: 190px;
    padding: 27px;
    background: var(--white);
}
.flow-step span {
    color: var(--green-dark);
    font: 800 0.75rem/1 var(--mono);
}
.flow-step h3 {
    margin: 49px 0 7px;
    font-size: 1.08rem;
}
.flow-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}
.flow-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 26px;
    right: -9px;
    z-index: 2;
    color: var(--graphite);
}
.deliverables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}
.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}
.check-list li {
    display: grid;
    grid-template-columns: 37px 1fr;
    gap: 14px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.check-list li::before {
    content: "✓";
    color: var(--green-dark);
    font-weight: 900;
}
.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}
.process-track::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--green-dark),
        rgba(36, 39, 36, 0.1)
    );
}
.step {
    position: relative;
    padding-top: 67px;
}
.step-dot {
    position: absolute;
    top: 17px;
    left: 0;
    z-index: 1;
    width: 17px;
    height: 17px;
    background: var(--paper);
    border: 3px solid var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 8px var(--paper);
}
.step span {
    color: var(--green-dark);
    font: 800 0.72rem/1 var(--mono);
}
.step h3 {
    margin: 12px 0 8px;
}
.step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.91rem;
}
.cta-panel {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
    padding: 60px 30px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: var(--graphite);
    border-radius: 34px;
}
.cta-panel::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(157, 205, 50, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(157, 205, 50, 0.035),
        0 0 0 200px rgba(157, 205, 50, 0.025);
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-panel h2 {
    max-width: 880px;
    margin: 0 auto;
    font-size: clamp(2.6rem, 6.6vw, 6.2rem);
    line-height: 0.9;
    letter-spacing: -0.065em;
}
.cta-panel p {
    color: #bdc2bb;
}
.cta-panel .btn {
    color: var(--graphite);
    background: var(--green);
    border-color: var(--green);
}
.footer {
    padding: 28px 0 38px;
    color: #747a73;
    font-size: 0.88rem;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.payment-page {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: radial-gradient(
            circle at 50% 0,
            rgba(157, 205, 50, 0.2),
            transparent 36%
        ),
        var(--paper);
}
.simple-header {
    padding: 25px 0;
}
.simple-header .brand {
    margin: 0 auto;
}
.payment-main {
    display: grid;
    place-items: center;
    padding: 45px 0 75px;
	z-index: 3;
}
.payment-card {
    width: min(100%, 680px);
    padding: clamp(35px, 6vw, 66px);
    text-align: center;
    background: rgba(251, 251, 248, 0.92);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
	margin: 0 auto;
}
.success-mark {
    position: relative;
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    margin: 0 auto 32px;
    color: #fff;
    background: var(--green-dark);
    border-radius: 50%;
    font-size: 2.5rem;
    box-shadow: 0 0 0 13px rgba(157, 205, 50, 0.17);
}
.success-mark::after {
    content: "";
    position: absolute;
    inset: -25px;
    border: 1px solid rgba(109, 148, 29, 0.2);
    border-radius: 50%;
    animation: ring 2.5s ease-out infinite;
}
.payment-card h1 {
    margin: 0;
    font-size: clamp(2.3rem, 6vw, 3.3rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}
.payment-card > p {
    max-width: 490px;
    margin: 22px auto 30px;
    color: var(--muted);
}
.payment-details {
    margin: 0 0 30px;
    padding: 20px;
    text-align: left;
    background: #eff0eb;
    border-radius: 16px;
}
.payment-details div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
}
.payment-details dt {
    color: var(--muted);
}
.payment-details dd {
    margin: 0;
    font-weight: 750;
    text-align: right;
}
.payment-card .btn {
    width: 100%;
}
.payment-help {
    margin-top: 21px !important;
    font-size: 0.89rem;
}
.payment-footer {
    padding: 22px;
    color: #767c75;
    text-align: center;
    font-size: 0.82rem;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease,
        transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].visible {
    opacity: 1;
    transform: none;
}
@keyframes float {
    50% {
        transform: translateY(-17px) rotateY(5deg);
    }
}
@keyframes pulse {
    50% {
        opacity: 0.7;
    }
}
@keyframes ring {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}
@media (max-width: 980px) {
    .nav {
        position: fixed;
        inset: 82px 20px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        background: rgba(251, 251, 248, 0.97);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }
    .nav.open {
        display: flex;
    }
    .nav a {
        padding: 14px;
    }
    .nav-cta {
        margin-top: 6px;
        text-align: center;
    }
    .menu-btn {
        display: block;
    }
    .hero-grid,
    .system-layout,
    .deliverables {
        grid-template-columns: 1fr;
    }
    .core-scene {
        min-height: 490px;
    }
    .services-head {
        display: block;
    }
    .service-card.large,
    .service-card.small {
        grid-column: span 6;
    }
    .architecture {
        grid-template-columns: 1fr 1fr;
    }
    .architecture .arch-card:last-child {
        grid-column: span 2;
    }
    .flow-panel {
        grid-template-columns: 1fr 1fr;
    }
    .flow-step:nth-child(2)::after {
        display: none;
    }
}
@media (max-width: 680px) {
    body {
        font-size: 16px;
    }
    .container {
        width: min(calc(100% - 28px), var(--max));
    }
    .site-header {
        padding: 12px 0;
    }
    .brand {
        width: 162px;
        height: 47px;
    }
    .hero {
        min-height: auto;
        padding: 130px 0 70px;
    }
    .hero h1 {
        font-size: clamp(3.05rem, 15vw, 4.8rem);
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-meta {
        flex-direction: column;
        gap: 8px;
    }
    .core-scene {
        min-height: 405px;
        margin: 0 -18px;
        transform: scale(0.88);
    }
    .core-ring {
        width: 280px;
    }
    .node {
        width: 82px;
        height: 76px;
        font-size: 0.62rem;
    }
    .section {
        padding: 82px 0;
    }
    .services-grid {
        display: block;
    }
    .service-card {
        min-height: 345px;
        margin-bottom: 14px;
        padding: 25px;
    }
    .architecture {
        grid-template-columns: 1fr;
    }
    .architecture .arch-card:last-child {
        grid-column: auto;
    }
    .flow-panel {
        grid-template-columns: 1fr;
    }
    .flow-step {
        min-height: 160px;
    }
    .flow-step h3 {
        margin-top: 30px;
    }
    .flow-step::after {
        display: none !important;
    }
    .activity-row {
        grid-template-columns: 42px 1fr;
    }
    .activity-row .status {
        grid-column: 2;
        justify-self: start;
    }
    .activity-body {
        padding: 18px;
    }
    .process-track {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-track::before {
        top: 8px;
        bottom: 8px;
        left: 8px;
        right: auto;
        width: 1px;
        height: auto;
    }
    .step {
        padding: 0 0 0 44px;
    }
    .step-dot {
        top: 1px;
    }
    .cta-panel {
        min-height: 380px;
        border-radius: 24px;
    }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .payment-card {
        border-radius: 23px;
    }
    .payment-details div {
        display: block;
    }
    .payment-details dd {
        text-align: left;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
.payment-cancelled-page {
	background: radial-gradient(circle at 50% 0, rgba(139, 104, 70, .14), transparent 36%), var(--paper);
}

.payment-cancelled-card {
	border-color: rgba(139, 104, 70, .2);
}

.payment-eyebrow {
	justify-content: center;
	color: #795b3e;
}

.payment-eyebrow::before {
	background: #a27c55;
}

.cancel-mark {
	position: relative;
	display: grid;
	width: 94px;
	height: 94px;
	place-items: center;
	margin: 0 auto 32px;
	color: #fff;
	background: #373a37;
	border-radius: 50%;
	font-size: 3rem;
	font-weight: 300;
	line-height: 1;
	box-shadow: 0 0 0 13px rgba(55, 58, 55, .09);
}

.cancel-mark::after {
	content: "";
	position: absolute;
	inset: -25px;
	border: 1px solid rgba(55, 58, 55, .14);
	border-radius: 50%;
}

.cancel-notice {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0 0 30px;
	padding: 20px;
	color: var(--graphite);
	text-align: left;
	background: #efede7;
	border: 1px solid rgba(139, 104, 70, .14);
	border-radius: 16px;
}

.cancel-notice strong {
	font-size: 1rem;
}

.cancel-notice span {
	color: var(--muted);
	font-size: .9rem;
}

.company-details {
	display: grid;
	grid-template-columns: .8fr 1.3fr 1fr;
	gap: 40px;
	padding: 34px 0;
	color: #666c65;
	border-top: 1px solid var(--line);
	font-size: .9rem;
}

.company-name {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.company-name strong {
	color: var(--graphite);
	font-size: 1.05rem;
}

.company-details address {
	font-style: normal;
}

.company-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
	text-align: right;
}

.company-contact strong {
	color: var(--graphite);
}

.company-contact a {
	color: var(--graphite);
	font-weight: 700;
	transition: color .2s ease;
}

.company-contact a:hover {
	color: var(--green-dark);
}

@media (max-width: 780px) {
	.company-details {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.company-contact {
		align-items: flex-start;
		text-align: left;
	}
}

.contact-page {
	min-height: 100vh;
}

.contact-hero {
	display: grid;
	align-items: center;
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: clamp(50px, 9vw, 130px);
}

.contact-hero h1 {
	margin: 0;
	font-size: clamp(3.5rem, 7vw, 7rem);
	line-height: .88;
	letter-spacing: -.07em;
}

.contact-hero h1 span {
	color: #858b84;
	font-weight: 500;
}

.contact-lead {
	max-width: 590px;
	margin: 28px 0 0;
	color: var(--muted);
	font-size: 1.15rem;
}

.contact-cards {
	display: grid;
	gap: 16px;
}

.contact-card {
	display: flex;
	flex-direction: column;
	padding: 28px;
	background: rgba(251, 251, 248, .88);
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: 0 15px 45px rgba(36, 39, 36, .06);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-card:hover {
	transform: translateY(-4px);
	border-color: rgba(109, 148, 29, .4);
	box-shadow: var(--shadow);
}

.contact-label {
	margin-bottom: 18px;
	color: var(--green-dark);
	font: 700 .75rem/1 var(--mono);
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-card strong {
	color: var(--graphite);
	font-size: clamp(1.2rem, 2.3vw, 1.7rem);
	word-break: break-word;
}

.contact-action {
	margin-top: 18px;
	color: var(--muted);
	font-size: .88rem;
	font-weight: 700;
}

.company-section {
	background: var(--graphite);
}

.company-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	padding: clamp(35px, 6vw, 65px);
	color: #f4f5f0;
	background: rgba(255, 255, 255, .045);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 28px;
}

.company-panel .eyebrow {
	color: #bde75d;
}

.company-panel h2 {
	margin: 0;
	font-size: clamp(2.2rem, 5vw, 4.5rem);
	line-height: 1;
	letter-spacing: -.05em;
	margin-bottom: 2rem;
}

.company-record {
	display: grid;
	gap: 30px;
}

.company-record div {
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.company-record div:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.company-record span {
	display: block;
	margin-bottom: 8px;
	color: #aeb4ac;
	font-size: .82rem;
}

.company-record strong {
	font-size: 1.05rem;
	line-height: 1.6;
}

@media (max-width: 850px) {
	.contact-layout,
	.company-panel {
		grid-template-columns: 1fr;
	}

	.contact-hero {
		min-height: auto;
		padding: 140px 0 80px;
	}

	.company-panel {
		gap: 42px;
	}
}

.contact-form {
	position: relative;
	display: grid;
	gap: 18px;
	padding: clamp(25px, 4vw, 40px);
	background: rgba(251, 251, 248, .92);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: var(--shadow);
}

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

.form-field label {
	color: var(--graphite);
	font-size: .9rem;
	font-weight: 700;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 14px 16px;
	color: var(--graphite);
	background: #fff;
	border: 1px solid rgba(36, 39, 36, .18);
	border-radius: 12px;
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
	min-height: 150px;
	resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
	border-color: var(--green-dark);
	box-shadow: 0 0 0 4px rgba(157, 205, 50, .15);
}

.form-consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	align-items: start;
	gap: 11px;
	color: var(--muted);
	font-size: .82rem;
	line-height: 1.5;
	cursor: pointer;
}

.form-consent input {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	accent-color: var(--green-dark);
}

.form-submit {
	width: 100%;
	border: 0;
	cursor: pointer;
}

.form-submit:disabled {
	cursor: wait;
	opacity: .7;
	transform: none;
}

.form-status {
	display: none;
	padding: 13px 15px;
	border-radius: 11px;
	font-size: .88rem;
	font-weight: 600;
}

.form-status-success {
	display: block;
	color: #425e13;
	background: rgba(157, 205, 50, .17);
	border: 1px solid rgba(109, 148, 29, .22);
}

.form-status-error {
	display: block;
	color: #7b3535;
	background: rgba(178, 70, 70, .1);
	border: 1px solid rgba(178, 70, 70, .18);
}

.form-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.language-switcher {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 132px;
	height: 44px;
	padding: 4px;
	overflow: hidden;
	background: rgba(36, 39, 36, .06);
	border: 1px solid rgba(36, 39, 36, .11);
	border-radius: 999px;
	isolation: isolate;
}

.language-switcher::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: 4px;
	z-index: -1;
	width: calc(50% - 4px);
	background: #fff;
	border: 1px solid rgba(36, 39, 36, .08);
	border-radius: 999px;
	box-shadow: 0 4px 15px rgba(36, 39, 36, .1);
	transition: transform .25s cubic-bezier(.2, .7, .2, 1);
}

.language-switcher[data-active-language="pl"]::before {
	transform: translateX(100%);
}

.language-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	padding: 0 8px;
	color: #858b84;
	background: transparent;
	border: 0;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .04em;
	cursor: pointer;
	transition: color .2s ease, opacity .2s ease;
}

.language-option:hover {
	color: var(--graphite);
}

.language-option.is-active {
	color: var(--graphite);
}

.language-option img {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(36, 39, 36, .1);
}

.language-option:focus-visible {
	outline: 2px solid var(--green-dark);
	outline-offset: -2px;
}

@media (max-width: 980px) {
	.language-switcher {
		width: 100%;
		margin: 10px 0;
	}

	.language-option {
		min-height: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.language-switcher::before {
		transition: none;
	}
}

.error-page {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at 15% 15%, rgba(161, 214, 54, .13), transparent 30rem),
		radial-gradient(circle at 85% 80%, rgba(35, 38, 35, .07), transparent 34rem),
		#f5f4ef;
	color: #242724;
}

.error-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
}

.error-404-card {
	position: relative;
	width: min(100%, 760px);
	padding: clamp(32px, 6vw, 72px);
	overflow: hidden;
	text-align: center;
	background: rgba(255, 255, 255, .78);
	border: 1px solid rgba(35, 38, 35, .1);
	border-radius: 32px;
	box-shadow: 0 30px 80px rgba(35, 38, 35, .1);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.error-404-card::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(161, 214, 54, .15);
	filter: blur(4px);
	pointer-events: none;
}

.error-404-logo {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-bottom: 32px;
}

.error-404-logo img {
	display: block;
	width: min(220px, 60vw);
	height: auto;
}

.error-404-code {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 2vw, 20px);
	margin-bottom: 22px;
	color: #242724;
	font-size: clamp(72px, 16vw, 140px);
	font-weight: 800;
	line-height: .8;
	letter-spacing: -.08em;
}

.error-404-symbol {
	width: clamp(58px, 11vw, 96px);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	border: clamp(8px, 1.3vw, 13px) solid #a1d636;
	border-radius: 28%;
	transform: rotate(30deg);
	box-shadow: 0 15px 35px rgba(161, 214, 54, .25);
}

.error-404-symbol div {
	width: 31%;
	height: 31%;
	background: #242724;
	border-radius: 4px;
}

.error-404-label {
	margin: 0 0 12px;
	color: #708f2f;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .16em;
}

.error-404 h1 {
	max-width: 620px;
	margin: 0 auto 18px;
	font-size: clamp(28px, 5vw, 48px);
	line-height: 1.08;
	letter-spacing: -.045em;
}

.error-404-description {
	max-width: 530px;
	margin: 0 auto;
	color: #686c68;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.7;
}

.error-404-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.error-404-reference {
	margin: 28px 0 0;
	color: #959995;
	font-size: 13px;
}

@media (max-width: 560px) {
	.error-404 {
		padding: 16px;
	}

	.error-404-card {
		padding: 36px 20px;
		border-radius: 24px;
	}

	.error-404-actions {
		flex-direction: column;
	}

	.error-404-actions .btn {
		width: 100%;
		box-sizing: border-box;
	}
}

.payment-redirect-page {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at 15% 15%, rgba(161, 214, 54, .14), transparent 30rem),
		radial-gradient(circle at 85% 85%, rgba(36, 39, 36, .07), transparent 34rem),
		#f5f4ef;
	color: #242724;
}

.payment-redirect {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
}

.payment-redirect-card {
	position: relative;
	width: min(100%, 620px);
	padding: clamp(32px, 6vw, 58px);
	overflow: hidden;
	text-align: center;
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(36, 39, 36, .1);
	border-radius: 30px;
	box-shadow: 0 30px 80px rgba(36, 39, 36, .11);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-sizing: border-box;
}

.payment-redirect-card::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(161, 214, 54, .13);
	pointer-events: none;
}

.payment-redirect-brand {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}

.payment-redirect-brand img {
	display: block;
	width: min(210px, 60vw);
	height: auto;
	margin: 0 auto;
}

.payment-redirect-icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 70px;
	height: 70px;
	margin: 0 auto 22px;
	background: #eff7df;
	border: 1px solid rgba(161, 214, 54, .3);
	border-radius: 22px;
	color: #709526;
	transform: rotate(-3deg);
}

.payment-redirect-icon svg {
	width: 34px;
	height: 34px;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.payment-redirect-label {
	margin: 0 0 10px;
	color: #708f2f;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.payment-redirect h1 {
	margin: 0;
	color: #242724;
	font-size: clamp(28px, 5vw, 42px);
	line-height: 1.1;
	letter-spacing: -.04em;
}

.payment-redirect-description {
	max-width: 470px;
	margin: 16px auto 28px;
	color: #707470;
	font-size: 16px;
	line-height: 1.65;
}

.payment-redirect-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 26px;
	text-align: left;
}

.payment-redirect-detail {
	padding: 17px 18px;
	background: #f7f7f3;
	border: 1px solid #e3e4de;
	border-radius: 14px;
}

.payment-redirect-detail span {
	display: block;
	margin-bottom: 6px;
	color: #8b8f89;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.payment-redirect-detail strong {
	display: block;
	color: #242724;
	font-size: 15px;
	word-break: break-word;
}

.payment-redirect-detail .payment-redirect-amount {
	color: #638221;
	font-size: 19px;
}

.payment-redirect-loader {
	position: relative;
	height: 5px;
	overflow: hidden;
	background: #e8e9e3;
	border-radius: 999px;
}

.payment-redirect-loader span {
	position: absolute;
	inset: 0;
	width: 35%;
	background: linear-gradient(90deg, transparent, #a1d636, transparent);
	border-radius: inherit;
	animation: paymentRedirectLoader 1.25s ease-in-out infinite;
}

.payment-redirect-status {
	margin: 14px 0 22px;
	color: #777b77;
	font-size: 14px;
}

.payment-redirect-status strong {
	color: #242724;
}

.payment-redirect-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
}

.payment-redirect-back {
	display: inline-block;
	margin-top: 17px;
	color: #6f736f;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.payment-redirect-back:hover {
	color: #242724;
}

.payment-redirect-security {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #e5e6df;
	color: #969a94;
	font-size: 11px;
}

.payment-redirect-security svg {
	width: 15px;
	height: 15px;
	stroke: #779d29;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

@keyframes paymentRedirectLoader {
	from {
		transform: translateX(-110%);
	}

	to {
		transform: translateX(300%);
	}
}

@media (max-width: 560px) {
	.payment-redirect {
		padding: 16px;
	}

	.payment-redirect-card {
		padding: 34px 20px;
		border-radius: 24px;
	}

	.payment-redirect-details {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.payment-redirect-loader span {
		width: 100%;
		animation: none;
	}
}

.regulamin-page {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at 10% 5%, rgba(161, 214, 54, .12), transparent 34rem),
		radial-gradient(circle at 90% 80%, rgba(36, 39, 36, .06), transparent 38rem),
		#f5f4ef;
	color: #242724;
}

.regulamin-main {
	min-height: 100vh;
	padding: clamp(40px, 8vw, 100px) 20px;
	box-sizing: border-box;
}

.regulamin-container {
	width: min(100%, 900px);
	margin: 0 auto;
	overflow: hidden;
	background: rgba(255, 255, 255, .88);
	border: 1px solid rgba(36, 39, 36, .1);
	border-radius: 30px;
	box-shadow: 0 30px 80px rgba(36, 39, 36, .09);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.regulamin-header {
	position: relative;
	padding: clamp(34px, 7vw, 68px);
	overflow: hidden;
	border-bottom: 1px solid #e4e5df;
}

.regulamin-header::after {
	content: '';
	position: absolute;
	top: -110px;
	right: -90px;
	width: 270px;
	height: 270px;
	background: rgba(161, 214, 54, .13);
	border-radius: 50%;
	pointer-events: none;
}

.regulamin-badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-bottom: 18px;
	padding: 8px 12px;
	background: rgba(161, 214, 54, .13);
	border: 1px solid rgba(161, 214, 54, .28);
	border-radius: 999px;
	color: #668526;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.regulamin-header h1 {
	position: relative;
	z-index: 1;
	max-width: 680px;
	margin: 0;
	color: #242724;
	font-size: clamp(34px, 6vw, 58px);
	line-height: 1.05;
	letter-spacing: -.05em;
}

.regulamin-header .date {
	position: relative;
	z-index: 1;
	margin-top: 20px;
	color: #777b77;
	font-size: 13px;
	font-weight: 600;
}

.regulamin-content {
	padding: 0 clamp(26px, 7vw, 68px);
}

.regulamin-content section {
	padding: 38px 0;
}

.regulamin-content section + section {
	border-top: 1px solid #e7e8e2;
}

.regulamin-content h2 {
	margin: 0 0 20px;
	color: #242724;
	font-size: clamp(21px, 3vw, 27px);
	line-height: 1.3;
	letter-spacing: -.025em;
}

.regulamin-content p,
.regulamin-content li {
	color: #606460;
	font-size: 15px;
	line-height: 1.75;
}

.regulamin-content p {
	margin: 0;
}

.regulamin-content ul {
	margin: 0;
	padding-left: 24px;
}

.regulamin-content li {
	margin-bottom: 9px;
	padding-left: 5px;
}

.regulamin-content li:last-child {
	margin-bottom: 0;
}

.regulamin-content li::marker {
	color: #83ad2e;
}

.regulamin-content li ul {
	margin-top: 10px;
}

.regulamin-content strong {
	color: #303330;
	font-weight: 700;
}

.regulamin-company {
	padding: 22px 24px;
	background: #f7f7f3;
	border: 1px solid #e2e3dc;
	border-left: 4px solid #a1d636;
	border-radius: 14px;
}

.regulamin-company p {
	color: #555955;
	line-height: 1.8;
}

.regulamin-company strong {
	display: inline-block;
	margin-bottom: 4px;
	font-size: 18px;
}

.regulamin-footer {
	padding: 30px clamp(26px, 7vw, 68px);
	background: #f7f7f3;
	border-top: 1px solid #e4e5df;
	text-align: center;
}

.regulamin-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	background: #242724;
	border-radius: 11px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .2s ease, background-color .2s ease;
}

.regulamin-back:hover {
	background: #343834;
	transform: translateY(-2px);
}

.regulamin-back:focus-visible {
	outline: 3px solid rgba(161, 214, 54, .45);
	outline-offset: 3px;
}

@media (max-width: 600px) {
	.regulamin-main {
		padding: 16px;
	}

	.regulamin-container {
		border-radius: 22px;
	}

	.regulamin-header {
		padding: 36px 22px;
	}

	.regulamin-content {
		padding: 0 22px;
	}

	.regulamin-content section {
		padding: 30px 0;
	}

	.regulamin-content p,
	.regulamin-content li {
		font-size: 14px;
	}

	.regulamin-footer {
		padding: 25px 22px;
	}

	.regulamin-back {
		width: 100%;
		box-sizing: border-box;
	}
}
.custom-alert-container {
	position: fixed;
	top: 22px;
	left: 22px;
	z-index: 999999;
	display: flex;
	width: min(420px, calc(100vw - 44px));
	flex-direction: column;
	gap: 12px;
	pointer-events: none;
}

.custom-alert {
	--alert-color: #64748b;
	--alert-background: #ffffff;
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 32px;
	align-items: center;
	gap: 14px;
	min-height: 78px;
	padding: 16px 14px 16px 16px;
	overflow: hidden;
	color: #242724;
	background: var(--alert-background);
	border: 1px solid rgba(36, 39, 36, .1);
	border-left: 4px solid var(--alert-color);
	border-radius: 16px;
	box-shadow: 0 18px 55px rgba(24, 29, 23, .16);
	opacity: 0;
	pointer-events: auto;
	transform: translateX(-25px) scale(.97);
	transition: opacity .3s ease, transform .3s ease;
}

.custom-alert-visible {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.custom-alert-closing {
	opacity: 0;
	transform: translateX(-20px) scale(.97);
}

.custom-alert-success {
	--alert-color: #75a51d;
	--alert-background: #fbfdf7;
}

.custom-alert-error {
	--alert-color: #c44949;
	--alert-background: #fffafa;
}

.custom-alert-warning {
	--alert-color: #c58a24;
	--alert-background: #fffcf5;
}

.custom-alert-info {
	--alert-color: #477fad;
	--alert-background: #f8fbfe;
}

.custom-alert-icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	color: #fff;
	background: var(--alert-color);
	border-radius: 13px;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 22px color-mix(in srgb, var(--alert-color) 28%, transparent);
}

.custom-alert-content {
	min-width: 0;
}

.custom-alert-title {
	margin-bottom: 2px;
	font-size: .92rem;
	font-weight: 800;
	line-height: 1.35;
}

.custom-alert-message {
	color: #666d65;
	font-size: .86rem;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.custom-alert-close {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	align-self: start;
	padding: 0;
	color: #818780;
	background: transparent;
	border: 0;
	border-radius: 8px;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	transition: color .2s ease, background-color .2s ease;
}

.custom-alert-close:hover {
	color: #242724;
	background: rgba(36, 39, 36, .07);
}

.custom-alert-progress {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--alert-color);
	transform-origin: left;
	animation-name: customAlertProgress;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes customAlertProgress {
	from {
		transform: scaleX(1);
	}

	to {
		transform: scaleX(0);
	}
}

@media (max-width: 600px) {
	.custom-alert-container {
		top: 12px;
		right: 12px;
		left: 12px;
		width: auto;
	}

	.custom-alert {
		grid-template-columns: 40px minmax(0, 1fr) 30px;
		min-height: 72px;
		padding: 14px 12px;
		border-radius: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.custom-alert {
		transition: none;
	}

	.custom-alert-progress {
		animation: none;
	}
}
.loader-manager-overlay-active {
	isolation: isolate;
}

.loader-manager-layer {
	position: absolute;
	inset: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 20px;
	color: #242724;
	background: rgba(251, 251, 248, .82);
	border-radius: inherit;
	opacity: 0;
	backdrop-filter: blur(4px);
	transition: opacity .2s ease;
	cursor: wait;
}

.loader-manager-visible {
	opacity: 1;
}

.loader-manager-message {
	max-width: 280px;
	font-size: .88rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}

.loader-manager-spinner {
	display: block;
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border: 3px solid rgba(36, 39, 36, .13);
	border-top-color: #75a51d;
	border-radius: 50%;
	animation: loaderManagerSpin .75s linear infinite;
}

.loader-manager-spinner-small {
	width: 19px;
	height: 19px;
	border-width: 2px;
}

.loader-manager-spinner-medium {
	width: 38px;
	height: 38px;
	border-width: 3px;
}

.loader-manager-spinner-large {
	width: 56px;
	height: 56px;
	border-width: 4px;
}

/* Loader wewnątrz przycisku */

.loader-manager-button-active {
	position: relative;
	color: transparent !important;
	pointer-events: none;
	cursor: wait;
}

.loader-manager-button-active > *:not(.loader-manager-button-layer) {
	visibility: hidden;
}

.loader-manager-button-layer {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: inherit;
	color: #fff;
	opacity: 0;
	transition: opacity .2s ease;
}

.loader-manager-button-layer.loader-manager-visible {
	opacity: 1;
}

.loader-manager-button-active .loader-manager-spinner {
	border-color: rgba(255, 255, 255, .3);
	border-top-color: #fff;
}

.loader-manager-button-text {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

/* Loader całej strony */

.loader-manager-fullscreen {
	position: fixed;
	z-index: 999999;
	border-radius: 0;
	background: rgba(243, 241, 235, .92);
}

.loader-manager-page-active {
	overflow: hidden;
}

@keyframes loaderManagerSpin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.loader-manager-layer,
	.loader-manager-button-layer {
		transition: none;
	}

	.loader-manager-spinner {
		animation-duration: 1.5s;
	}
}
.loader-manager-input-active {
	cursor: wait;
	animation: loaderManagerInputPulse 1s ease-in-out infinite;
}

@keyframes loaderManagerInputPulse {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: .65;
	}
}

