/*
  ONLIME SYSTEMS - HOME CRITICAL CSS
  Purpose: render only the first viewport, header and consent UI quickly.
  The complete stylesheet is still loaded async from /styles.css.
*/

/* critical slice: styles.css lines 1-371 */

/*
  ONLIME SYSTEMS - MERGED STYLESHEET
  Contains:
  1. public/styles.css
  2. public/solution-dashboard.css
  3. onlime-tech-consistent.css
  4. operational drag clean patch v5

  Use this as the only stylesheet after the Google Fonts link.
*/

:root {
  color-scheme: dark;
  --bg: #020203;
  --accent: #59d6ff;
  --accent-strong: #2aa8ff;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(89, 214, 255, 0.16);
  --line-strong: rgba(89, 214, 255, 0.3);
  --text: #f7f7f5;
  --muted: #a9a9a6;
  --soft: #d7d7d2;
  --dim: #6e6e6b;
  --black: #020203;
  --max: 1180px;
  --solve-ai-seam-p: 0;
  --ai-applied-entry-p: 1;
  --header-anchor-offset: 156px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-anchor-offset);
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 0%, rgba(89, 214, 255, 0.16), transparent 32rem),
    radial-gradient(circle at 18% 32%, rgba(42, 168, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #050506 0%, #020203 42%, #000 100%);
}

body.portal-transition-active::after {
  position: fixed;
  inset: -12vh -12vw;
  z-index: 120;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(89, 214, 255, 0.3), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(99, 240, 165, 0.16), transparent 46%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  mix-blend-mode: screen;
  animation: portalFlash 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.background-system {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.grid-layer {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(89, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.particle-layer {
  position: absolute;
  inset: -10%;
  opacity: 0.52;
  background-image:
    radial-gradient(circle, rgba(89, 214, 255, 0.82) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.5px);
  background-position:
    0 0,
    38px 62px;
  background-size:
    142px 142px,
    211px 211px;
  animation: particleDrift 26s linear infinite;
}

.scanline {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateY(-100%);
  animation: scan 10s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  width: 100%;
  min-height: 72px;

  margin: 0;
  padding: 14px 24px;

  background: transparent;
  border: none;
  border-radius: 0 0 18px 18px;

  isolation: isolate;
  overflow: visible;
}

/* GLASS BACKGROUND */
.site-header::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;
  pointer-events: none;

  border-radius: 0 0 18px 18px;

  background: linear-gradient(
    90deg,
    rgba(5, 5, 6, 0.72) 0%,
    rgba(5, 5, 6, 0.62) 30%,
    rgba(5, 5, 6, 0.42) 55%,
    rgba(5, 5, 6, 0.14) 72%,
    rgba(5, 5, 6, 0.00) 86%
  );

  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18);

  /* FADE DEL BACKGROUND */
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,0) 100%
  );

  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 68%,
    rgba(0,0,0,0) 100%
  );
}

/* LINEA INFERIOR */
.site-header::after {
  content: "";

  position: absolute;
  left: clamp(18px, 3vw, 32px);
  bottom: 0;

  width: min(92%, 1200px);
  height: 2px;

  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(89, 214, 255, 0.85) 0%,
    rgba(89, 214, 255, 0.45) 35%,
    rgba(89, 214, 255, 0.18) 62%,
    rgba(89, 214, 255, 0.00) 100%
  );

  /* IMPORTANTE */
  filter: none;

  clip-path: polygon(
    0 0,
    100% 35%,
    100% 100%,
    0 100%
  );

  /* EL FADE REAL */
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 58%,
    rgba(0,0,0,0) 100%
  );

  mask-image: linear-gradient(
    90deg,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 58%,
    rgba(0,0,0,0) 100%
  );
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: min(30vw, 140px);
  max-width: 140px;
  max-height: 64px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
}


.solution-panel,
.use-card,
.metric-card,
.process-step,
.workflow-node,
.faq-item,
.lead-form {
  box-shadow: 0 0 0 1px rgba(89, 214, 255, 0.03), 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand-mark strong,
.brand-mark small {
  display: block;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.82rem;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-right: 8px;
}

.language-select {
  height: 38px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 6, 0.86);
  outline: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
}

.language-select:focus {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.language-select option {
  color: #111;
  background: #fff;
}

.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;
}

.section-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* Anchor offset: prevents sticky header from covering sections after clicking nav/footer links. */
main [id],
.site-footer [id] {
  scroll-margin-top: var(--header-anchor-offset);
}

@media (max-width: 760px) {
  :root {
    --header-anchor-offset: 124px;
  }
}

#method-title,
#lead-form,
#audit {
  scroll-margin-top: var(--header-anchor-offset);
}

/* critical slice: styles.css lines 849-976 */

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 50px rgba(0, 0, 0, 0.42);
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.button::after {
  width: 16px;
  height: 1px;
  margin-left: 12px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.105);
  transform: translateY(-1px);
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(4px);
}

.button-primary {
  color: #04111a;
  background: linear-gradient(180deg, #c9f3ff, #55c8f3);
  border-color: rgba(89, 214, 255, 0.6);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(180deg, #e4f9ff, #7cdfff);
}

.button-primary-pill {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  padding: 7px 56px 7px 26px;
  border: 0;
  border-radius: 999px;
  color: #031116;
  background: linear-gradient(135deg, #8ef5ff 0%, #43dcff 48%, #79ffe1 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 16px 42px rgba(49, 216, 255, 0.26),
    0 0 62px rgba(94, 233, 255, 0.2);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.025em;
  transition:
    transform 0.18s ease,
    filter 0.22s ease,
    box-shadow 0.22s ease;
}

.button-primary-pill::before {
  content: "";
  position: absolute;
  top: -90%;
  bottom: -90%;
  left: -58%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg);
  animation: onlCtaShine 3.8s ease-in-out infinite;
}

.button-primary-pill::after {
  position: absolute;
  top: 50%;
  right: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: 0;
  border-radius: 50%;
  background: rgba(3, 17, 22, 0.14);
  box-shadow:
    0 0 0 1px rgba(3, 17, 22, 0.16) inset,
    0 0 18px rgba(255, 255, 255, 0.18);
  color: currentColor;
  content: "\2192";
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.button-primary-pill:hover,
.button-primary-pill:focus-visible {
  border-color: transparent;
  background: linear-gradient(135deg, #8ef5ff 0%, #43dcff 48%, #79ffe1 100%);
  filter: brightness(1.05) saturate(1.08);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.46) inset,
    0 20px 54px rgba(49, 216, 255, 0.36),
    0 0 82px rgba(94, 233, 255, 0.28);
}

.button-primary-pill:hover::after,
.button-primary-pill:focus-visible::after {
  background: rgba(3, 17, 22, 0.22);
  transform: translateY(-50%) translateX(3px);
}

/* critical slice: styles.css lines 1930-2450 */

.automation-banner {
  margin-top: 18px;
  margin-bottom: 48px;
}

.automation-banner-frame {
  position: relative;
  overflow: hidden;
  padding: 28px;
  
}

.automation-banner-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(89, 214, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 214, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  pointer-events: none;
}

.automation-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: center;
}

.automation-banner-copy {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.automation-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.automation-banner-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(89, 214, 255, 0.9);
}

.automation-banner-title {
  max-width: min(100%, 12.6ch);
  margin: 0;
  color: var(--text);
  font-size: clamp(2.65rem, 5.9vw, 5.05rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

html[lang="es"] .automation-banner-title {
  max-width: min(100%, 12.3ch);
  font-size: clamp(2.45rem, 5.25vw, 4.55rem);
}

html[lang="et"] .automation-banner-title {
  max-width: min(100%, 12.9ch);
  font-size: clamp(2.25rem, 4.65vw, 4rem);
  letter-spacing: -0.045em;
}

html[lang="it"] .automation-banner-title {
  max-width: min(100%, 12.4ch);
  font-size: clamp(2.4rem, 5vw, 4.35rem);
}

.automation-banner-title span {
  display: block;
}

.automation-banner-title span:last-child {
  color: transparent;
  background: linear-gradient(90deg, #56d3ff 0%, #5f7cff 44%, #9b6bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.automation-banner-subtitle {
  max-width: 540px;
  color: var(--soft);
  font-size: 1.05rem;
}

.automation-banner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.automation-banner-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.automation-banner-note::before {
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #9b6bff;
  box-shadow: 0 0 12px rgba(155, 107, 255, 0.8);
}

.automation-banner-diagram {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.automation-diagram-stage {
  position: relative;
  width: 100%;
  min-height: 350px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(89, 214, 255, 0.12);
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 39%, rgba(78, 167, 255, 0.10), transparent 35%),
    radial-gradient(circle at 72% 48%, rgba(55, 255, 158, 0.08), transparent 32%),
    linear-gradient(rgba(80, 170, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 170, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 7, 13, 0.98), rgba(3, 5, 10, 0.92));
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 26px 90px rgba(0, 0, 0, 0.28);
}

.automation-diagram-stage::before {
  position: absolute;
  inset: 8%;
  content: "";
  background-image: radial-gradient(rgba(80, 180, 255, 0.34) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.32;
  mask-image: radial-gradient(circle at 50% 44%, black 0 18%, transparent 55%);
  pointer-events: none;
}

.automation-diagram-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at var(--diagram-pointer-x, 50%) var(--diagram-pointer-y, 42%), rgba(78, 167, 255, 0.22), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(78, 167, 255, 0.08), transparent 44%);
  opacity: 0.78;
  mix-blend-mode: screen;
}

.automation-diagram-links {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.automation-diagram-line {
  fill: none;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  animation: automationDiagramDash 3.2s linear infinite;
}

.automation-diagram-line--left {
  stroke: url(#automationBlueLine);
  filter: url(#automationGlowBlue);
}

.automation-diagram-line--right {
  stroke: url(#automationGreenLine);
  filter: url(#automationGlowGreen);
}

.automation-diagram-point {
  animation: automationPointPulse 2.8s ease-in-out infinite;
}

.automation-diagram-point--left {
  fill: #5ad5ff;
}

.automation-diagram-point--right {
  fill: #63f0a5;
}

.automation-diagram-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 205px) minmax(240px, 1fr) minmax(0, 205px);
  gap: 18px;
  align-items: center;
  min-height: 350px;
}

.automation-banner-stack {
  display: grid;
  gap: 17px;
  align-content: start;
  width: 100%;
  max-width: 205px;
}

.automation-banner-stack-left {
  justify-self: start;
}

.automation-banner-stack-right {
  justify-self: end;
}

.automation-node-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 63px;
  padding: 12px 14px;
  border: 1px solid rgba(89, 214, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(16, 34, 52, 0.84), rgba(7, 18, 29, 0.78));
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.automation-node-card:hover {
  transform: translateY(-2px);
}

.automation-node-card--blue {
  border-color: rgba(89, 214, 255, 0.16);
}

.automation-node-card--green {
  border-color: rgba(99, 240, 165, 0.16);
}

.automation-node-card--blue .automation-node-icon {
  color: var(--accent);
  border-color: rgba(89, 214, 255, 0.24);
  background: rgba(89, 214, 255, 0.09);
  box-shadow: 0 0 22px rgba(78, 167, 255, 0.12);
}

.automation-node-card--green .automation-node-icon {
  color: #63f0a5;
  border-color: rgba(99, 240, 165, 0.24);
  background: rgba(99, 240, 165, 0.1);
  box-shadow: 0 0 22px rgba(63, 245, 155, 0.12);
}

.automation-node-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1px solid;
  border-radius: 8px;
}

.automation-node-icon svg {
  width: 17px;
  height: 17px;
}

.automation-node-card strong,
.automation-node-card small {
  display: block;
}

.automation-node-card strong {
  margin-bottom: 2px;
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.automation-node-card small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.automation-banner-center {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.automation-core-card {
  width: min(100%, 180px);
  min-height: 180px;
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 18px 15px 15px;
  text-align: center;
  border: 1px solid rgba(89, 214, 255, 0.22);
  border-radius: 17px;
  background:
    radial-gradient(circle at 50% 30%, rgba(78, 167, 255, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(13, 35, 55, 0.92), rgba(5, 16, 29, 0.95));
  box-shadow:
    0 0 0 1px rgba(58, 152, 255, 0.2),
    0 0 50px rgba(57, 151, 255, 0.44),
    inset 0 0 42px rgba(60, 159, 255, 0.13);
}

.automation-core-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(89, 214, 255, 0.3);
  border-radius: 18px;
  color: var(--accent);
  background: rgba(89, 214, 255, 0.08);
  box-shadow: inset 0 0 16px rgba(89, 214, 255, 0.08);
}

.automation-core-icon svg {
  width: 30px;
  height: 30px;
}

.automation-core-card strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.automation-core-card small {
  max-width: 14ch;
  color: var(--muted);
  font-size: 0.64rem;
  text-align: center;
}

.automation-engine-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 19px 24px 23px;
  border: 1px solid rgba(89, 214, 255, 0.18);
  border-radius: 13px;
  background:
    radial-gradient(circle at top right, rgba(89, 214, 255, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(13, 30, 43, 0.9), rgba(5, 15, 25, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.33);
}

.automation-engine-panel strong {
  display: block;
  margin-bottom: 19px;
  color: var(--text);
  text-align: center;
  font-size: 0.95rem;
}

.automation-engine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-engine-grid > .automation-engine-step {
  min-width: 0;
  padding: 0 14px;
  text-align: center;
  border-right: 1px solid rgba(126, 190, 255, 0.11);
}

.automation-engine-grid > .automation-engine-step:last-child {
  border-right: none;
}

.automation-engine-step {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px 10px 10px;
}

.automation-step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(89, 214, 255, 0.2);
  border-radius: 999px;
  color: #a4d5ff;
  background: rgba(69, 154, 255, 0.08);
}

.automation-step-icon svg {
  width: 22px;
  height: 22px;
}

.automation-engine-step strong {
  font-size: 0.84rem;
  font-weight: 750;
}

.automation-engine-step small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.15;
}

.automation-banner-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  padding: 14px 0;
  border: 1px solid rgba(89, 214, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(89, 214, 255, 0.08), transparent 38%),
    rgba(5, 8, 11, 0.62);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.automation-stat {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 6px 22px;
  background: transparent;
  box-shadow: none;
}

.automation-stat-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(89, 214, 255, 0.18);
  border-radius: 14px;
  color: var(--accent);
  background: rgba(89, 214, 255, 0.08);
}

.automation-stat-icon svg {
  width: 24px;
  height: 24px;
}

.automation-stat-number {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.automation-stat small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.84rem;
}

.stat-blue {
  --stat-color: #5ad5ff;
}

.stat-purple {
  --stat-color: #9b6bff;
}


/* critical slice: styles.css lines 7552-8364 */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  width: min(1040px, calc(100vw - 32px));
  transform: translateX(-50%);
}

.cookie-banner__shell,
.cookie-modal__dialog,
.cookie-category {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(168, 226, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 18%, rgba(92, 232, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 82%, rgba(164, 244, 214, 0.08), transparent 20%),
    linear-gradient(135deg, rgba(5, 10, 14, 0.96), rgba(7, 15, 22, 0.94) 58%, rgba(9, 24, 28, 0.8)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 32px 90px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(92, 232, 255, 0.05);
  backdrop-filter: blur(24px);
}

.cookie-banner__shell {
  display: grid;
  gap: 18px;
  padding: 30px 32px 24px;
}

.cookie-banner__shell::before,
.cookie-modal__dialog::before,
.cookie-category::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(104, 236, 255, 0.14), transparent 28%),
    linear-gradient(315deg, rgba(132, 255, 197, 0.08), transparent 26%);
}

.cookie-banner__shell::after,
.cookie-modal__dialog::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  content: "";
  pointer-events: none;
}

.cookie-banner__content,
.cookie-banner__layout,
.cookie-banner__footer,
.cookie-modal__top,
.cookie-modal__intro,
.cookie-modal__categories,
.cookie-modal__actions,
.cookie-category__head {
  position: relative;
  z-index: 3;
}

.cookie-banner__eyebrow {
  margin: 0 0 12px;
  color: #18e5bf;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cookie-banner__title,
.cookie-modal__title {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.04em;
}

.cookie-banner__title {
  max-width: 7.4ch;
  font-size: clamp(2.3rem, 4.1vw, 3.95rem);
  line-height: 0.9;
  text-wrap: balance;
}

.cookie-banner__text,
.cookie-modal__intro,
.cookie-category__description {
  margin: 0;
  color: rgba(226, 237, 245, 0.76);
  line-height: 1.7;
}

.cookie-banner__text {
  margin-top: 14px;
  max-width: 33ch;
  font-size: 0.95rem;
  line-height: 1.52;
}

.cookie-banner__layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(460px, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.cookie-banner__content {
  display: grid;
  align-content: start;
}

.cookie-banner__content::after {
  position: absolute;
  top: 2px;
  right: -14px;
  bottom: 2px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(130, 205, 232, 0.18), transparent);
}

.cookie-banner__hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 81px;
  margin-bottom: 10px;
  color: #19f0d7;
}

.cookie-banner__hero-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px 14px;
  margin-top: 22px;
}

.cookie-banner__benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.cookie-banner__benefit strong {
  display: block;
  margin: 0 0 2px;
  color: rgba(240, 247, 251, 0.96);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.cookie-banner__benefit small {
  display: block;
  color: rgba(192, 208, 217, 0.7);
  font-size: 0.78rem;
  line-height: 1.36;
}

.cookie-banner__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cookie-banner__benefit-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__reasons {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-top: 2px;
  min-height: 100%;
}

.cookie-banner__reason {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  align-content: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cookie-banner__reason:last-child {
  border-bottom: 0;
}

.cookie-banner__reason h3 {
  margin: 0 0 4px;
  color: #f5fbff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cookie-banner__reason p {
  margin: 0;
  color: rgba(205, 221, 230, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner__reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(170, 236, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cookie-banner__reason-icon::before {
  width: 20px;
  height: 20px;
  content: "";
}

.cookie-banner__pill {
  align-self: start;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(24, 229, 191, 0.14);
  color: #18e5bf;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cookie-banner__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.85fr) minmax(260px, 1.15fr);
  gap: 14px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-banner__manage {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(23, 234, 199, 0.94);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.cookie-banner__manage:hover,
.cookie-banner__manage:focus-visible {
  color: #f5fdff;
  transform: translateY(-1px);
}

.cookie-banner__manage-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  margin-left: 6px;
}

.cookie-banner__manage-icon::before {
  width: 100%;
  height: 100%;
  content: "";
}

.cookie-banner__links {
  display: none;
}

.cookie-banner__hero-icon::before,
.cookie-banner__benefit-icon::before,
.cookie-banner__reason-icon::before,
.cookie-banner__manage-icon::before {
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.cookie-banner__hero-icon--privacy {
  color: transparent;
}

.cookie-banner__hero-icon--privacy::before {
  background: center / contain no-repeat url("/assets/icons/cookie-consent/privacy-shield.svg");
  mask-image: none;
  -webkit-mask-image: none;
}

.cookie-banner__benefit-icon--secure {
  color: #19f0d7;
}

.cookie-banner__benefit-icon--secure::before {
  mask-image: url("/assets/icons/cookie-consent/secure-shield.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/secure-shield.svg");
}

.cookie-banner__benefit-icon--performance {
  color: #20bcff;
}

.cookie-banner__benefit-icon--performance::before {
  mask-image: url("/assets/icons/cookie-consent/performance-bars.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/performance-bars.svg");
}

.cookie-banner__benefit-icon--experience {
  color: #b86bff;
}

.cookie-banner__benefit-icon--experience::before {
  mask-image: url("/assets/icons/cookie-consent/experience-user.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/experience-user.svg");
}

.cookie-banner__reason-icon--essential {
  background: radial-gradient(circle at 50% 38%, rgba(25, 240, 215, 0.16), rgba(255, 255, 255, 0.02));
  color: #19f0d7;
}

.cookie-banner__reason-icon--essential::before {
  mask-image: url("/assets/icons/cookie-consent/essential-lock.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/essential-lock.svg");
}

.cookie-banner__reason-icon--data {
  background: radial-gradient(circle at 50% 38%, rgba(32, 188, 255, 0.16), rgba(255, 255, 255, 0.02));
  color: #20bcff;
}

.cookie-banner__reason-icon--data::before {
  mask-image: url("/assets/icons/cookie-consent/data-shield.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/data-shield.svg");
}

.cookie-banner__reason-icon--control {
  background: radial-gradient(circle at 50% 38%, rgba(184, 107, 255, 0.16), rgba(255, 255, 255, 0.02));
  color: #b86bff;
}

.cookie-banner__reason-icon--control::before {
  mask-image: url("/assets/icons/cookie-consent/control-sliders.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/control-sliders.svg");
}

.cookie-banner__manage-icon {
  color: currentColor;
}

.cookie-banner__manage-icon::before {
  mask-image: url("/assets/icons/cookie-consent/external-link.svg");
  -webkit-mask-image: url("/assets/icons/cookie-consent/external-link.svg");
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

body.consent-pending > *:not(.cookie-banner):not(.cookie-modal) {
  filter: blur(10px);
  pointer-events: none;
  user-select: none;
  transition: filter 220ms ease, opacity 220ms ease;
}

body.consent-pending::before {
  position: fixed;
  inset: 0;
  z-index: 115;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 18, 24, 0.18), rgba(2, 8, 12, 0.34)),
    rgba(1, 5, 8, 0.18);
  pointer-events: none;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(173, 227, 255, 0.2);
  font: inherit;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  pointer-events: auto;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
}

.cookie-button--primary,
.cookie-button--secondary {
  flex: 1 1 180px;
}

.cookie-button--primary {
  color: #041018;
  background: linear-gradient(135deg, #72efff, #9ff6cb);
  box-shadow: 0 14px 30px rgba(114, 239, 255, 0.18);
}

.cookie-button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-button--ghost {
  color: rgba(220, 232, 241, 0.86);
  background: transparent;
}

.cookie-banner .cookie-button--primary,
.cookie-banner .cookie-button--secondary {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
  min-height: 48px;
  border-radius: 18px;
}

.cookie-banner .cookie-button--primary {
  color: #ecffff;
  background: linear-gradient(135deg, #23dbab 0%, #1eaef9 100%);
  border-color: rgba(108, 238, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(33, 193, 247, 0.24),
    0 0 40px rgba(41, 226, 189, 0.08);
}

.cookie-banner .cookie-button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cookie-banner .cookie-button--primary:hover,
.cookie-banner .cookie-button--primary:focus-visible,
.cookie-banner .cookie-button--secondary:hover,
.cookie-banner .cookie-button--secondary:focus-visible {
  border-color: rgba(157, 239, 255, 0.26);
  background: rgba(157, 239, 255, 0.08);
}

.cookie-banner .cookie-button--primary:hover,
.cookie-banner .cookie-button--primary:focus-visible {
  background: linear-gradient(135deg, #2ae8b5 0%, #25bbff 100%);
  border-color: rgba(108, 238, 255, 0.42);
}

.cookie-banner .cookie-button--secondary:hover,
.cookie-banner .cookie-button--secondary:focus-visible {
  background: rgba(157, 239, 255, 0.08);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  width: min(968px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.cookie-modal::backdrop {
  background: rgba(1, 4, 7, 0.72);
  backdrop-filter: blur(14px);
}

.cookie-modal[open] {
  display: block;
}

.cookie-modal .cookie-modal__dialog {
  isolation: isolate;
  max-height: min(860px, calc(100dvh - 48px));
  overflow: auto;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar {
  width: 10px;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(157, 239, 255, 0.18);
  background-clip: padding-box;
}

.cookie-modal .cookie-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}

.cookie-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px;
}

.cookie-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-modal__title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.94;
}

.cookie-modal__intro {
  margin-top: 16px;
  max-width: 72ch;
}

.cookie-modal__close {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(173, 227, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 4;
}

.cookie-modal__close span {
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(45deg);
}

.cookie-modal__categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.cookie-category {
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
}

.cookie-category__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-category__title {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.cookie-category__meta {
  display: grid;
  justify-items: end;
  gap: 12px;
  color: rgba(198, 217, 228, 0.82);
  font-size: 0.82rem;
  white-space: nowrap;
}

.cookie-category__meta span {
  padding: 6px 10px;
  border: 1px solid rgba(170, 236, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-category--compact {
  grid-column: 1 / -1;
}

.cookie-category[data-consent-category="necessary"] {
  border-color: rgba(150, 244, 205, 0.16);
}

.cookie-category[data-consent-category="analytics"] {
  border-color: rgba(157, 239, 255, 0.16);
}

.cookie-category[data-consent-category="marketing"] {
  border-color: rgba(255, 203, 133, 0.14);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 196, 112, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(5, 10, 14, 0.96), rgba(7, 15, 22, 0.94) 58%, rgba(9, 24, 28, 0.8)),
    rgba(255, 255, 255, 0.03);
}

.cookie-category[data-consent-category="preferences"] {
  border-color: rgba(208, 220, 232, 0.12);
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 34px;
  pointer-events: auto;
  z-index: 4;
}

.cookie-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-toggle__track {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(175, 226, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cookie-toggle__track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(232, 240, 246, 0.9);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  content: "";
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-toggle input:checked + .cookie-toggle__track {
  border-color: rgba(129, 239, 221, 0.55);
  background: linear-gradient(135deg, rgba(77, 236, 255, 0.42), rgba(129, 239, 221, 0.52));
  box-shadow: inset 0 0 18px rgba(83, 233, 255, 0.18);
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(24px);
  background: #061116;
}

.cookie-toggle--locked .cookie-toggle__track {
  border-color: rgba(166, 229, 255, 0.3);
  background: linear-gradient(135deg, rgba(74, 231, 255, 0.38), rgba(147, 245, 205, 0.38));
}

.cookie-toggle--locked .cookie-toggle__track::after {
  transform: translateX(24px);
  background: #061116;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    transform: none;
  }

  .cookie-banner__shell,
  .cookie-modal__dialog {
    padding: 22px;
    border-radius: 24px;
  }

  .cookie-modal {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .cookie-banner__shell {
    gap: 20px;
  }

  .cookie-banner__layout,
  .cookie-banner__footer {
    grid-template-columns: 1fr;
  }

  .cookie-banner__content::after {
    display: none;
  }

  .cookie-banner__benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner__reasons {
    grid-template-rows: none;
    min-height: 0;
  }

  .cookie-banner__benefit {
    width: 100%;
  }

  .cookie-banner__footer {
    justify-items: stretch;
  }

  .cookie-banner__manage {
    justify-self: start;
  }

  .cookie-banner__reason {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .cookie-banner__pill {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .cookie-category__head,
  .cookie-modal__top {
    flex-direction: column;
  }

  .cookie-category__meta {
    justify-items: start;
    white-space: normal;
  }

  .cookie-button--primary,
  .cookie-button--secondary,
  .cookie-button--ghost {
    flex-basis: 100%;
  }

  .cookie-banner .cookie-button--primary,
  .cookie-banner .cookie-button--secondary {
    width: 100%;
  }

  .cookie-modal__categories {
    grid-template-columns: 1fr;
  }
}

/* critical slice: styles.css lines 8459-8479 */

@keyframes particleDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-120px, 90px, 0);
  }
}

@keyframes scan {
  0%,
  68% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}


/* critical slice: styles.css lines 8597-8613 */

@keyframes onlCtaShine {
  0%,
  48% {
    transform: translateX(-180%) rotate(18deg);
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  78%,
  100% {
    transform: translateX(360%) rotate(18deg);
    opacity: 0;
  }
}

/* critical slice: styles.css lines 17572-17898 */

/* Compact header navigation and language menu */
.header-actions {
  gap: 8px;
  padding-right: clamp(2px, 0.8vw, 8px);
}

.site-nav {
  gap: 2px;
  padding: 3px;
  min-height: 36px;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.10);
  background:
    linear-gradient(135deg, rgba(71, 215, 255, 0.075), rgba(56, 240, 189, 0.04)),
    rgba(5, 12, 15, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 12px 26px rgba(0, 0, 0, 0.20);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
  color: rgba(214, 227, 238, 0.78);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: -0.025em;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--footer-mint, #34f5a3);
  box-shadow: 0 0 10px rgba(52, 245, 163, 0.52);
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(71, 215, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before {
  transform: translateY(-50%) scale(1.35);
  box-shadow: 0 0 14px rgba(52, 245, 163, 0.74);
}

.language-menu {
  position: relative;
  z-index: 160;
  display: inline-flex;
  align-items: center;
}

.language-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  min-width: 58px;
  padding: 0 9px 0 12px;
  border: 1px solid rgba(71, 215, 255, 0.30);
  border-radius: 999px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(71, 215, 255, 0.12), rgba(56, 240, 189, 0.05)),
    rgba(4, 17, 22, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(56, 240, 189, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.language-menu__trigger svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
  transition: transform 180ms ease;
}

.language-menu__trigger:hover,
.language-menu__trigger:focus-visible,
.language-menu.is-open .language-menu__trigger {
  border-color: rgba(56, 240, 189, 0.48);
  background:
    linear-gradient(135deg, rgba(71, 215, 255, 0.16), rgba(56, 240, 189, 0.08)),
    rgba(5, 23, 28, 0.96);
  box-shadow:
    0 0 0 4px rgba(71, 215, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.30);
  transform: translateY(-1px);
}

.language-menu.is-open .language-menu__trigger svg {
  transform: rotate(180deg);
}

.language-menu__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 68px;
  padding: 5px;
  border: 1px solid rgba(71, 215, 255, 0.20);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(71, 215, 255, 0.08), rgba(56, 240, 189, 0.045)),
    rgba(4, 10, 12, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.language-menu.is-open .language-menu__list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 25px;
  padding: 0 8px 0 17px;
  border: 0;
  border-radius: 9px;
  color: rgba(214, 227, 238, 0.76);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 780;
  letter-spacing: 0.01em;
  text-align: left;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.language-menu__option::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(52, 245, 163, 0.24);
  transform: translateY(-50%);
}

.language-menu__option:hover,
.language-menu__option:focus-visible {
  color: #ffffff;
  background: rgba(71, 215, 255, 0.10);
  outline: none;
}

.language-menu__option[aria-selected="true"] {
  color: #ffffff;
  background: rgba(52, 245, 163, 0.13);
}

.language-menu__option[aria-selected="true"]::before {
  background: var(--footer-mint, #34f5a3);
  box-shadow: 0 0 10px rgba(52, 245, 163, 0.58);
}

@media (max-width: 920px) {
  .site-nav a {
    padding-right: 8px;
    padding-left: 18px;
    font-size: 0.72rem;
  }

  .site-nav a::before {
    left: 8px;
  }
}

@media (max-width: 700px) {
  .header-actions {
    gap: 6px;
  }

  .language-menu__trigger {
    min-width: 54px;
    height: 32px;
    padding-right: 8px;
    padding-left: 10px;
  }
}

/* Final header menu correction: restored items, compact spacing, language dot */
.site-nav {
  gap: 1px;
  padding: 3px 4px;
  min-height: 34px;
}

.site-nav a {
  min-height: 27px;
  padding: 0 8px 0 18px;
  font-size: 0.72rem;
  letter-spacing: -0.03em;
}

.site-nav a::before {
  left: 8px;
  width: 4px;
  height: 4px;
}

.language-menu__trigger {
  position: relative;
  min-width: 62px;
  height: 34px;
  padding: 0 8px 0 20px;
}

.language-menu__trigger::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--footer-mint, #34f5a3);
  box-shadow: 0 0 10px rgba(52, 245, 163, 0.58);
  transform: translateY(-50%);
}

.language-menu__list {
  width: 62px;
  padding: 4px;
}

.language-menu__option {
  height: 24px;
  padding: 0 7px 0 17px;
  font-size: 0.72rem;
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-right: 7px;
    padding-left: 16px;
    font-size: 0.68rem;
  }

  .site-nav a::before {
    left: 7px;
  }

  .language-menu__trigger {
    min-width: 58px;
    padding-left: 18px;
  }

  .language-menu__trigger::before {
    left: 9px;
  }
}

/* Final nav/footer dot color correction */
.site-nav a::before,
.site-footer__nav > a::before {
  background: #2edbff !important;
  box-shadow: 0 0 12px rgba(46, 219, 255, 0.56) !important;
}

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-footer__nav > a:hover::before,
.site-footer__nav > a:focus-visible::before {
  box-shadow: 0 0 16px rgba(46, 219, 255, 0.78) !important;
}


/* ============================================================
   Performance: skip below-the-fold rendering on the HOME
   ------------------------------------------------------------
   This keeps the first viewport lighter without changing the
   visual design. It intentionally excludes the header, hero,
   cookie banner, booking modal and animated seam section.
============================================================ */
@supports (content-visibility: auto) {
  main > section.solve-it,
  main > section.ai-applied-section,
  main > section.onl-next-step,
  main > section.methodology-section,
  main > section#use-cases,
  main > section.hero-secondary,
  main > section[aria-labelledby="process-title"],
  main > section.faq-section,
  main > section.form-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto var(--onl-cv-block-size, 860px);
    contain-intrinsic-block-size: var(--onl-cv-block-size, 860px);
  }

  main > section.solve-it {
    --onl-cv-block-size: 420px;
  }

  main > section.ai-applied-section {
    --onl-cv-block-size: 820px;
  }

  main > section.onl-next-step {
    --onl-cv-block-size: 720px;
  }

  main > section.methodology-section {
    --onl-cv-block-size: 860px;
  }

  main > section#use-cases {
    --onl-cv-block-size: 820px;
  }

  main > section.hero-secondary {
    --onl-cv-block-size: 460px;
  }

  main > section[aria-labelledby="process-title"] {
    --onl-cv-block-size: 680px;
  }

  main > section.faq-section {
    --onl-cv-block-size: 760px;
  }

  main > section.form-section {
    --onl-cv-block-size: 940px;
  }

  .site-footer {
    --onl-cv-block-size: 520px;
  }

  @media (max-width: 760px) {
    main > section.solve-it {
      --onl-cv-block-size: 520px;
    }

    main > section.ai-applied-section {
      --onl-cv-block-size: 1120px;
    }

    main > section.onl-next-step {
      --onl-cv-block-size: 980px;
    }

    main > section.methodology-section {
      --onl-cv-block-size: 1180px;
    }

    main > section#use-cases {
      --onl-cv-block-size: 1080px;
    }

    main > section.hero-secondary {
      --onl-cv-block-size: 560px;
    }

    main > section[aria-labelledby="process-title"] {
      --onl-cv-block-size: 920px;
    }

    main > section.faq-section {
      --onl-cv-block-size: 920px;
    }

    main > section.form-section {
      --onl-cv-block-size: 1280px;
    }

    .site-footer {
      --onl-cv-block-size: 680px;
    }
  }
}
