/* © 2026 Koizumi Electronics — Uso no autorizado prohibido, todos los derechos reservados. */

:root {
  
  --font-main:    "DM Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Teko", "Bebas Neue", "DM Sans", sans-serif;

  
  --cyan-50:  #dffcff;
  --cyan-100: #a4fbff;
  --cyan-300: #49d7ea;
  --cyan-400: #00dfff;
  --cyan-500: #00bdd7;
  --cyan-700: #006e8c;

  
  --white-soft:   rgba(255, 255, 255, 0.86);
  --white-muted:  rgba(255, 255, 255, 0.68);
  --glass:        rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.3);
  --stroke:       rgba(0, 195, 225, 0.98);
  --stroke-strong: #00ecff;

  
  --shadow-card: 0 18px 46px rgba(0, 31, 42, 0.24);
  --shadow-cyan: 0 0 38px rgba(0, 223, 255, 0.24);

  
  --footer-height:      clamp(44px, 6.4svh, 54px);
  --nav-height:         72px;
  --app-max-width:      1120px;
  --app-pad-x:          clamp(22px, 5vw, 76px);
  --app-pad-y:          clamp(16px, 3.8svh, 42px);
  --app-gap-x:          clamp(18px, 4vw, 70px);
  --app-gap-y:          clamp(14px, 3svh, 34px);

  
  --logo-size:          240px;
  --brand-size:         clamp(2.55rem, 5.4vw, 5.15rem);
  --brand-letter-spacing: clamp(0.035em, 0.32vw, 0.12em);

  --text-edge-color: rgba(1, 10, 14, 0.92);
  --text-edge-soft: -0.45px -0.45px 0 var(--text-edge-color), 0.45px -0.45px 0 var(--text-edge-color), -0.45px 0.45px 0 var(--text-edge-color), 0.45px 0.45px 0 var(--text-edge-color), 0 1px 6px rgba(0, 0, 0, 0.28);
  --rotator-static-color: #1adfff;
  --rotator-dynamic-color: #ff9f2a;
}

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

html {
  width: 100%;
  height: 100%;
  background: var(--cyan-300);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

body {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  font-family: var(--font-main);
  color: var(--white-soft);
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.24) 0 10%, transparent 33%),
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22) 0 8%,  transparent 30%),
    radial-gradient(circle at 84% 80%, rgba(0, 124, 240, 0.18)  0 9%,  transparent 32%),
    linear-gradient(135deg, var(--cyan-50) 0%, #8ef1ff 29%, var(--cyan-300) 62%, var(--cyan-100) 100%);
}

body::before {
  content: none !important;
  display: none !important;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    transparent 0 36%,
    rgba(0, 22, 30, 0.17) 72%,
    rgba(0, 16, 22, 0.32) 100%
  );
}

::selection {
  color: #00242d;
  background: rgba(255, 255, 255, 0.82);
}

.hidden { display: none; }

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 22, 28, 0.55), rgba(8, 22, 28, 0.15));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-icon {
  width: 28px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: var(--brand-size);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: var(--brand-letter-spacing);
  color: #f5fbff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 #061820,
     1px -1px 0 #061820,
    -1px  1px 0 #061820,
     1px  1px 0 #061820,
     0 2px 0 rgba(0, 14, 20, 0.86),
     0 0 12px rgba(0, 24, 32, 0.32);
  -webkit-text-stroke: 0.35px #061820;
}

.nav-brand span {
  color: #16d8ea;
}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu li {
  cursor: pointer;
  font-size: 14px;
}

#hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.stage {
  position: relative;
  width: min(100%, var(--app-max-width));
  height: calc(100svh - var(--footer-height) - var(--nav-height));
  min-height: 0;
  margin-top: var(--nav-height);
  margin-inline: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: var(--card-size) minmax(0, 1fr) var(--card-size);
  grid-template-rows: var(--card-size) minmax(0, 1fr) var(--card-size);
  grid-template-areas:
    "card1 center card2"
    ".     center ."
    "card3 center card4";
  gap: var(--app-gap-y) var(--app-gap-x);
  place-items: center;
  padding: var(--app-pad-y) var(--app-pad-x);
}

.brand-stack {
  position: relative;
  z-index: 10;
  grid-area: center;
  width: min(98vw, 940px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4svh, 14px);
  text-align: center;
  pointer-events: none;
}

#logo-container {
  position: relative;
  margin-bottom: 10px;
  z-index: 18;
  width: var(--logo-size);
  height: var(--logo-size);
  display: grid;
  place-items: center;
  overflow: visible;
  opacity: 1;
  pointer-events: none;
  transform: none;
}

.kz-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: visible;
}

.kz-box::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, #00ffff, #40e0d0, #007cf0);
  filter: blur(50px);
  opacity: 0.62;
  pointer-events: none;
}

.kz-box::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.26) 0 9%, transparent 19%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(0, 223, 255, 0.14), rgba(0, 124, 240, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.32;
  filter: blur(1.2px) saturate(1.08);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.26) inset,
    0 0 22px rgba(0, 255, 255, 0.48),
    0 0 70px rgba(64, 224, 208, 0.56),
    0 0 130px rgba(0, 124, 240, 0.48);
  filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.4));
}

#brand-container {
  position: static;
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}

#brand-container h1 {
  margin: 0;
  max-width: 98vw;
  font-family: var(--font-display);
  font-size: var(--brand-size);
  font-weight: 750;
  line-height: 0.9;
  letter-spacing: var(--brand-letter-spacing);
  color: #f5fbff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    -1px -1px 0 #061820,
     1px -1px 0 #061820,
    -1px  1px 0 #061820,
     1px  1px 0 #061820,
     0 2px 0 rgba(0, 14, 20, 0.86),
     0 0 12px rgba(0, 24, 32, 0.32);
  -webkit-text-stroke: 0.45px #061820;
}

#brand-container h1 span {
  margin-left: 0.08em;
  color: #16d8ea;
  -webkit-text-stroke: 0.45px #061820;
  text-shadow:
    -1px -1px 0 #061820,
     1px -1px 0 #061820,
    -1px  1px 0 #061820,
     1px  1px 0 #061820,
     0 2px 0 rgba(0, 14, 20, 0.72),
     0 0 12px rgba(22, 216, 234, 0.34);
}

.brand-subtitle {
  max-width: min(92vw, 720px);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(8, 22, 28, 0.10);
  color: var(--white-soft);
  font-size: clamp(0.6rem, 1.1vw, 0.82rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.18px var(--text-edge-color);
}

.brand-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  pointer-events: all;
}

.action-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--stroke);
  border-radius: 8px;
  background: var(--glass);
  color: var(--white-soft);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.22px var(--text-edge-color);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 200ms ease, border-color 200ms ease, transform 180ms ease;
}

.action-btn:hover {
  background: var(--glass-strong);
  border-color: var(--stroke-strong);
  transform: translateY(-2px);
}

#brand-credit {
  color: var(--white-muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.18px var(--text-edge-color);
}

.main-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  height: var(--footer-height);
  min-height: var(--footer-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 42, 48, 0.62), rgba(18, 30, 34, 0.84));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.footer-content {
  width: min(100%, 1200px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 2vw, 30px);
  min-width: 0;
}

.footer-copy {
  flex: 0 0 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.66rem, 1vw, 0.82rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.18px var(--text-edge-color);
}

.footer-links {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(78vw, 850px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 3px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.54rem, 0.86vw, 0.72rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, text-shadow 180ms ease;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.18px var(--text-edge-color);
}

.footer-links a:not(:last-child)::after {
  content: "-";
  margin: 0 clamp(6px, 1vw, 13px);
  color: rgba(255, 255, 255, 0.52);
  pointer-events: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 223, 255, 0.38);
  outline: none;
}

.footer-links a:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

@media (max-width: 950px) {
  :root {
    --nav-height:         64px;
    --app-max-width:      980px;
    --app-pad-x:          clamp(20px, 5vw, 54px);
    --app-pad-y:          clamp(14px, 3.4svh, 30px);
    --logo-size:          190px;
    --brand-size:         clamp(2.35rem, 6.4vw, 4rem);
    --brand-letter-spacing: clamp(0.03em, 0.42vw, 0.085em);
  }

  .menu { display: none; }
  #hamburger { display: block; }

  .nav {
    height: 64px;
    padding: 10px 16px;
  }

  .nav-brand { font-size: 1.15rem; }

  .kz-box::before { inset: -24px; filter: blur(42px); }
  .kz-box::after  { inset: -14px; }
}

@media (max-width: 600px) {
  :root {
    --footer-height:      44px;
    --app-pad-x:          clamp(12px, 3.8vw, 20px);
    --app-pad-y:          clamp(10px, 2.6svh, 18px);
    --app-gap-x:          clamp(8px, 2.8vw, 18px);
    --app-gap-y:          clamp(8px, 2svh, 14px);
    --logo-size:          158px;
    --brand-size:         clamp(2rem, 8.3vw, 2.75rem);
    --brand-letter-spacing: clamp(0.015em, 0.55vw, 0.045em);
  }

  .stage { width: 100%; }

  .kz-box::before { inset: -22px; filter: blur(38px); }
  .kz-box::after  { inset: -12px; }
}

@media (max-height: 700px) {
  :root {
    --app-pad-y:   10px;
    --app-gap-y:   10px;
    --brand-size:  clamp(2.1rem, 5vw, 3.35rem);
  }
}

@media (max-width: 380px), (max-height: 610px) {
  :root {
    --footer-height:  42px;
    --logo-size:       130px;
    --brand-size:      clamp(1.75rem, 7.8vw, 2.15rem);
    --brand-letter-spacing: 0.015em;
  }

  .kz-box::before { inset: -18px; filter: blur(32px); }
  .kz-box::after  { inset: -10px; }
}

@media (max-width: 760px) {
  :root { --footer-height: 50px; }

  .main-footer { padding: 0 0.65rem; }

  .footer-content { gap: 8px; }

  .footer-copy {
    font-size: clamp(0.54rem, 1.55vw, 0.66rem);
    letter-spacing: 0.035em;
  }

  .footer-links { max-width: calc(100% - 112px); row-gap: 2px; }

  .footer-links a {
    font-size: clamp(0.43rem, 1.48vw, 0.56rem);
    letter-spacing: 0.032em;
  }

  .footer-links a:not(:last-child)::after { margin: 0 clamp(4px, 1vw, 8px); }
}

@media (max-width: 420px) {
  :root { --footer-height: 48px; }

  .main-footer { padding: 0 0.5rem; }

  .footer-copy { font-size: 0.5rem; }

  .footer-links { max-width: calc(100% - 86px); }

  .footer-links a {
    font-size: 0.42rem;
    letter-spacing: 0.02em;
  }

  .footer-links a:not(:last-child)::after { margin: 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes logoSpinIn {
  from { transform: rotate(0deg);   opacity: 0.4; }
  to   { transform: rotate(360deg); opacity: 1;   }
}

.kz-box {
  animation: logoSpinIn 1500ms cubic-bezier(0.22, 1, 0.36, 1) 1s both;
  transform-origin: center center;
}
.stage--home {
  width: min(100%, 1040px);
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  grid-template-areas: "center";
}

.stage--home .brand-stack {
  grid-area: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.menu {
  align-items: center;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: var(--white-soft);
  font-family: var(--font-main);
  font-size: clamp(0.62rem, 0.9vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: var(--text-edge-soft);
  -webkit-text-stroke: 0.2px var(--text-edge-color);
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  border-radius: 2px;
  background: var(--stroke-strong);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: #ffffff;
  text-shadow: var(--text-edge-soft), 0 0 14px rgba(0, 223, 255, 0.42);
  outline: none;
  transform: translateY(-1px);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  opacity: 0.95;
  transform: scaleX(1);
}

.menu a[aria-disabled="true"] {
  cursor: default;
}

.brand-rotator {
  max-width: min(92vw, 760px);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 22, 28, 0.16);
  color: var(--rotator-static-color);
  font-family: var(--font-main);
  font-size: clamp(0.72rem, 1.25vw, 0.94rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: var(--text-edge-soft), 0 0 16px color-mix(in srgb, var(--rotator-static-color) 52%, transparent);
  -webkit-text-stroke: 0.22px var(--text-edge-color);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.rotator-static {
  display: inline-block;
  color: var(--rotator-static-color);
  text-shadow: var(--text-edge-soft), 0 0 16px color-mix(in srgb, var(--rotator-static-color) 52%, transparent);
  -webkit-text-stroke: 0.22px var(--text-edge-color);
}

.brand-rotator span,
.rotator-dynamic {
  display: inline-block;
  color: var(--rotator-dynamic-color);
  text-shadow: var(--text-edge-soft), 0 0 18px color-mix(in srgb, var(--rotator-dynamic-color) 58%, transparent);
  -webkit-text-stroke: 0.22px var(--text-edge-color);
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-rotator .rotator-static {
  color: var(--rotator-static-color);
  text-shadow: var(--text-edge-soft), 0 0 16px color-mix(in srgb, var(--rotator-static-color) 52%, transparent);
}

.brand-rotator span.is-changing {
  opacity: 0;
  transform: translateY(4px);
}

#hamburger {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #ffffff;
  background: var(--glass);
  box-shadow: 0 0 18px rgba(0, 223, 255, 0.14);
}

#hamburger:focus-visible,
.action-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22), var(--shadow-card);
}

@media (max-width: 1180px) {
  .menu {
    gap: 13px;
  }

  .menu a {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 900px) {
  .menu {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 50%;
    right: auto;
    width: min(82vw, 330px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--stroke);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(8, 22, 28, 0.98), rgba(8, 22, 28, 0.88));
    box-shadow: var(--shadow-card), var(--shadow-cyan);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  body.menu-open .menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    width: 100%;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .menu a::after {
    display: none;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    transform: none;
  }

  #hamburger {
    display: inline-flex;
  }
}

@media (min-width: 901px) and (max-width: 950px) {
  .menu {
    display: flex;
  }

  #hamburger {
    display: none;
  }
}

:root {
  --kz-ink-edge: rgba(1, 7, 12, 0.82);
  --kz-ink-edge-solid: #02080d;
  --kz-text-outline: -0.26px -0.26px 0 var(--kz-ink-edge), 0.26px -0.26px 0 var(--kz-ink-edge), -0.26px 0.26px 0 var(--kz-ink-edge), 0.26px 0.26px 0 var(--kz-ink-edge), 0 1px 2px rgba(0, 0, 0, 0.38);
  --kz-text-outline-strong: -0.38px -0.38px 0 var(--kz-ink-edge-solid), 0.38px -0.38px 0 var(--kz-ink-edge-solid), -0.38px 0.38px 0 var(--kz-ink-edge-solid), 0.38px 0.38px 0 var(--kz-ink-edge-solid), 0 1px 3px rgba(0, 0, 0, 0.46);
  --kz-bg-base: #0b5260;
  --kz-bg-mid: #128395;
  --kz-bg-soft: #1ba6b1;
  --kz-bg-glow: rgba(88, 219, 230, 0.12);
  --kz-surface-soft: rgba(19, 56, 64, 0.38);
  --kz-surface-medium: rgba(27, 72, 81, 0.48);
  --kz-surface-strong: rgba(22, 54, 64, 0.64);
  --kz-surface-compact: rgba(16, 44, 53, 0.62);
  --kz-line-soft: rgba(220, 250, 252, 0.16);
  --kz-line-medium: rgba(98, 185, 190, 0.34);
  --kz-line-strong: rgba(124, 212, 218, 0.48);
  --kz-geometry-line: rgba(124, 212, 218, 0.13);
  --kz-geometry-line-strong: rgba(124, 212, 218, 0.30);
  --kz-geometry-fill: rgba(28, 78, 88, 0.22);
  --kz-geometry-fill-strong: rgba(36, 92, 102, 0.30);
  --kz-geometry-shadow: 0 16px 36px rgba(5, 22, 28, 0.18), 0 0 18px rgba(105, 190, 198, 0.035);
  --kz-topbar-surface: linear-gradient(180deg, rgba(22, 55, 64, 0.86), rgba(17, 45, 54, 0.78));
  --kz-footer-surface: linear-gradient(180deg, rgba(20, 55, 64, 0.88), rgba(14, 40, 49, 0.90));
  --kz-accent-blue: #5ed8ea;
  --kz-accent-orange: #e1a04d;
  --kz-accent-green: #6ed5a3;
  --rotator-static-color: var(--kz-accent-blue);
  --rotator-dynamic-color: var(--kz-accent-orange);
  --text-edge-color: rgba(1, 7, 12, 0.84);
  --text-edge-soft: var(--kz-text-outline);
}

html {
  background: var(--kz-bg-base) !important;
}

body {
  color: rgba(248, 253, 255, 0.92) !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(111, 196, 210, 0.12) 0 10%, transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.055) 0 8%, transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(77, 156, 188, 0.10) 0 11%, transparent 35%),
    linear-gradient(135deg, var(--kz-bg-base) 0%, var(--kz-bg-mid) 46%, var(--kz-bg-soft) 100%) !important;
}

body::before {
  opacity: 0.12 !important;
  background:
    linear-gradient(rgba(223, 246, 252, 0.048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 246, 252, 0.034) 1px, transparent 1px) !important;
  background-size: 56px 56px !important;
  mask-image: radial-gradient(circle at center, black 0 54%, transparent 82%) !important;
}

body::after {
  background:
    linear-gradient(180deg, rgba(1, 14, 18, 0.06), transparent 22%, transparent 76%, rgba(1, 14, 18, 0.12)),
    radial-gradient(circle at center, transparent 0 56%, rgba(4, 25, 31, 0.14) 84%, rgba(3, 18, 24, 0.22) 100%) !important;
}

.nav {
  background: var(--kz-topbar-surface) !important;
  border-bottom-color: rgba(225, 246, 252, 0.12) !important;
  box-shadow: 0 10px 28px rgba(1, 8, 14, 0.26) !important;
}

.stage--home {
  isolation: isolate;
}

.brand-stack {
  z-index: 5;
  isolation: isolate;
}

.kz-box::before {
  background: linear-gradient(45deg, rgba(86, 174, 190, 0.45), rgba(106, 178, 150, 0.30), rgba(83, 132, 190, 0.26)) !important;
  opacity: 0.28 !important;
  filter: blur(38px) saturate(0.82) !important;
}

.kz-box::after {
  opacity: 0.12 !important;
  filter: blur(1px) saturate(0.9) !important;
  mix-blend-mode: normal !important;
}

.hero-logo {
  box-shadow:
    0 0 0 1px rgba(225, 246, 252, 0.18) inset,
    0 0 14px rgba(88, 177, 192, 0.22),
    0 0 42px rgba(88, 177, 192, 0.16),
    0 0 72px rgba(60, 98, 146, 0.11) !important;
  filter: drop-shadow(0 0 6px rgba(79, 165, 180, 0.16)) !important;
}

.menu a,
.action-btn,
.brand-subtitle,
#brand-credit,
.footer-copy,
.footer-links a,
#hamburger {
  color: rgba(248, 253, 255, 0.92) !important;
  text-shadow: var(--kz-text-outline) !important;
  -webkit-text-stroke: 0.14px var(--kz-ink-edge) !important;
}

.menu a {
  font-weight: 800 !important;
}

.menu a:hover,
.menu a:focus-visible {
  color: #ffffff !important;
  text-shadow: var(--kz-text-outline), 0 0 8px rgba(179, 232, 242, 0.22) !important;
}

.menu a::after {
  background: var(--kz-line-strong) !important;
}

.brand-rotator,
.brand-subtitle,
.action-btn,

.brand-rotator {
  padding: 6px 14px !important;
  background: linear-gradient(135deg, var(--kz-surface-strong), var(--kz-surface-compact)) !important;
  border-color: var(--kz-line-strong) !important;
}

.rotator-static,
.rotator-dynamic,
.brand-rotator span,
.brand-rotator .rotator-static {
  text-shadow: var(--kz-text-outline-strong), 0 0 5px color-mix(in srgb, currentColor 24%, transparent) !important;
  -webkit-text-stroke: 0.18px var(--kz-ink-edge-solid) !important;
}

.rotator-static,
.brand-rotator .rotator-static {
  color: var(--rotator-static-color) !important;
}

.rotator-dynamic,
.brand-rotator span:not(.rotator-static) {
  color: var(--rotator-dynamic-color) !important;
}

.brand-subtitle {
  background: rgba(18, 30, 45, 0.54) !important;
  color: rgba(247, 252, 255, 0.88) !important;
  border-color: rgba(226, 246, 252, 0.18) !important;
}

.action-btn:hover,
.action-btn:focus-visible,

#hamburger {
  background: var(--kz-surface-medium) !important;
  border-color: var(--kz-line-medium) !important;
}

.main-footer {
  background: var(--kz-footer-surface) !important;
  border-top-color: rgba(225, 246, 252, 0.12) !important;
  box-shadow: 0 -8px 24px rgba(1, 8, 14, 0.25) !important;
}

.footer-copy,
.footer-links a {
  color: rgba(248, 253, 255, 0.82) !important;
}

.footer-links a:not(:last-child)::after {
  color: rgba(248, 253, 255, 0.48) !important;
  text-shadow: var(--kz-text-outline) !important;
}

@media (max-width: 900px) {
  .stage--home::after {
    width: min(92vw, 470px);
    height: min(64svh, 430px);
  }

  .stage--home .brand-stack::before,
  .stage--home .brand-stack::after {
    width: min(92vw, 460px);
    height: calc(100% + 22px);
  }

  .menu {
    left: 50% !important;
    right: auto !important;
    width: min(84vw, 340px) !important;
    align-items: stretch !important;
    background: linear-gradient(180deg, rgba(24, 40, 57, 0.98), rgba(13, 24, 38, 0.96)) !important;
    border-color: var(--kz-line-medium) !important;
    box-shadow: 0 18px 48px rgba(1, 8, 14, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.06) inset !important;
    backdrop-filter: blur(18px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(110%) !important;
    transform: translateX(-50%) translateY(-10px) scale(0.98) !important;
  }

  body.menu-open .menu {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .menu a:hover,
  .menu a:focus-visible {
    background: rgba(255, 255, 255, 0.075) !important;
  }
}

body.is-home .nav-left {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
}

.nav-left {
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.nav {
  background: linear-gradient(180deg, rgba(19, 58, 66, 0.82), rgba(12, 39, 47, 0.62)) !important;
  box-shadow: 0 14px 32px rgba(1, 14, 20, 0.22), inset 0 -1px 0 rgba(209, 249, 252, 0.08) !important;
}

.nav-right {
  align-items: center;
}

.menu {
  gap: 3px !important;
  padding: 5px !important;
  border: 1px solid rgba(205, 250, 252, 0.13) !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(14, 54, 63, 0.42), rgba(9, 31, 40, 0.24)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 10px 28px rgba(1, 12, 18, 0.14) !important;
  backdrop-filter: blur(12px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(115%) !important;
}

.menu li {
  position: relative;
}

.menu li + li::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 28%;
  width: 1px;
  height: 44%;
  background: rgba(224, 252, 255, 0.13);
}

.menu a {
  min-height: 32px !important;
  padding: 0 11px !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  font-size: clamp(0.62rem, 0.78vw, 0.72rem) !important;
  letter-spacing: 0.085em !important;
  color: rgba(247, 253, 255, 0.88) !important;
  background: transparent !important;
}

.menu a::after {
  display: none !important;
}

.menu a:hover,
.menu a:focus-visible,
.menu a[aria-current="page"] {
  color: #ffffff !important;
  border-color: rgba(195, 245, 250, 0.22) !important;
  background: linear-gradient(135deg, rgba(179, 236, 242, 0.14), rgba(54, 147, 160, 0.10)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 6px 16px rgba(0, 17, 23, 0.14) !important;
  transform: none !important;
}

.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  min-width: 78px;
  height: 38px !important;
  padding: 0 11px !important;
  border: 1px solid rgba(205, 250, 252, 0.22) !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, rgba(20, 66, 76, 0.72), rgba(10, 35, 44, 0.64)) !important;
  color: rgba(249, 253, 255, 0.92) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 10px 22px rgba(1, 12, 18, 0.18) !important;
  font-family: var(--font-main);
  font-size: 0.64rem !important;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.stage--home::before,
.stage--home::after,
.stage--home .brand-stack::before,
.stage--home .brand-stack::after,
#brand-container,
#brand-credit,
.brand-rotator,
.brand-subtitle,
.brand-actions,

body.intro-ready .stage--home::before,
body.intro-ready .stage--home::after,
body.intro-ready .stage--home .brand-stack::before,
body.intro-ready .stage--home .brand-stack::after,
body.intro-ready #brand-container,
body.intro-ready #brand-credit,
body.intro-ready .brand-rotator,
body.intro-ready .brand-subtitle,
body.intro-ready .brand-actions,
body.intro-ready .brand-socials {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.brand-stack {
  gap: clamp(9px, 1.55svh, 15px) !important;
}

.brand-rotator {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
  max-width: min(88vw, 760px) !important;
  overflow-wrap: anywhere;
}

.brand-actions {
  width: min(92vw, 390px);
  flex-wrap: wrap;
  align-items: center;
}

.action-btn {
  flex: 1 1 160px;
  min-width: 0;
  white-space: nowrap;
}

.app-section {
  position: relative;
  width: min(100%, 1120px);
  min-height: calc(100svh - var(--footer-height) - var(--nav-height));
  margin: var(--nav-height) auto var(--footer-height);
  padding: clamp(22px, 4vw, 58px) clamp(16px, 5vw, 76px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

[data-app-section][hidden],
.app-section[hidden] {
  display: none !important;
}

.section-shell {
  position: relative;
  width: min(100%, 960px);
  padding: clamp(24px, 4vw, 46px);
  border: 1.4px solid rgba(207, 250, 252, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 62, 72, 0.54), rgba(10, 39, 49, 0.42));
  box-shadow: 0 20px 44px rgba(2, 18, 26, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(var(--kz-line-strong), var(--kz-line-strong)) 0 0 / 50px 2px no-repeat, linear-gradient(var(--kz-line-strong), var(--kz-line-strong)) 0 0 / 2px 50px no-repeat, linear-gradient(var(--kz-line-strong), var(--kz-line-strong)) 100% 100% / 50px 2px no-repeat, linear-gradient(var(--kz-line-strong), var(--kz-line-strong)) 100% 100% / 2px 50px no-repeat;
  opacity: 0.66;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(207, 250, 252, 0.20);
  border-radius: 8px;
  color: var(--kz-accent-orange);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline);
}

.section-shell h2 {
  margin: 16px 0 10px;
  color: rgba(250, 253, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5.8vw, 4.45rem);
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline-strong), 0 10px 28px rgba(1, 14, 20, 0.22);
}

.section-shell > p {
  max-width: 760px;
  color: rgba(241, 251, 253, 0.78);
  font-size: clamp(0.92rem, 1.55vw, 1.05rem);
  font-weight: 600;
  line-height: 1.65;
  text-shadow: var(--kz-text-outline);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  margin-top: clamp(20px, 3vw, 30px);
}

.section-card {
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(207, 250, 252, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.028), 0 10px 24px rgba(0, 14, 22, 0.14);
}

.section-card span {
  color: var(--kz-accent-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline);
}

.section-card h3 {
  margin: 10px 0 8px;
  color: rgba(250, 253, 255, 0.92);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: var(--kz-text-outline);
}

.section-card p {
  color: rgba(241, 251, 253, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
  text-shadow: var(--kz-text-outline);
}

.faq-page {
  min-height: 100svh;
  height: auto;
  overflow: auto;
  padding: clamp(18px, 4vw, 52px);
}

.faq-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px);
  border: 1.4px solid rgba(207, 250, 252, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18, 62, 72, 0.58), rgba(10, 39, 49, 0.46));
  box-shadow: 0 24px 54px rgba(2, 18, 26, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(110%);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
}

.faq-back {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(207, 250, 252, 0.18);
  border-radius: 8px;
  color: rgba(247, 253, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline);
}

.faq-header {
  margin-top: clamp(22px, 4vw, 38px);
  margin-bottom: clamp(22px, 4vw, 34px);
}

.faq-header span {
  color: var(--kz-accent-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline);
}

.faq-header h1 {
  margin: 8px 0 12px;
  color: rgba(250, 253, 255, 0.95);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline-strong);
}

.faq-header p {
  max-width: 760px;
  color: rgba(241, 251, 253, 0.78);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  text-shadow: var(--kz-text-outline);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  padding: 18px;
  border: 1px solid rgba(207, 250, 252, 0.16);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.028), 0 10px 24px rgba(0, 14, 22, 0.14);
}

.faq-card h2 {
  margin: 0 0 8px;
  color: rgba(250, 253, 255, 0.93);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  text-shadow: var(--kz-text-outline);
}

.faq-card p {
  margin: 0;
  color: rgba(241, 251, 253, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.58;
  text-shadow: var(--kz-text-outline);
}

@media (max-width: 1180px) {
  .menu a {
    padding-inline: 8px !important;
    font-size: 0.6rem !important;
  }
}

@media (max-width: 900px) {
  .menu {
    position: fixed !important;
    top: calc(var(--nav-height) + 10px) !important;
    right: 14px !important;
    left: auto !important;
    width: min(86vw, 360px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 12px !important;
    border: 1px solid rgba(207, 250, 252, 0.20) !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, rgba(17, 56, 66, 0.98), rgba(8, 30, 40, 0.97)) !important;
    box-shadow: 0 22px 54px rgba(1, 10, 16, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.055) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-8px) scale(0.98) !important;
    transform-origin: top right !important;
  }

  body.menu-open .menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
  }

  .menu li + li::before {
    display: none !important;
  }

  .menu li {
    width: 100% !important;
    border-top: 1px solid rgba(207, 250, 252, 0.10) !important;
  }

  .menu a {
    width: 100% !important;
    min-height: 46px !important;
    justify-content: flex-start !important;
    padding: 0 11px !important;
    border-radius: 8px !important;
    font-size: 0.74rem !important;
    letter-spacing: 0.08em !important;
  }

  .hamburger-btn {
    display: inline-flex !important;
  }

  #hamburger {
    display: inline-flex !important;
  }

  body.is-home .nav-left {
    display: none;
  }
}

@media (max-width: 760px) {
  .section-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .app-section {
    overflow: auto;
    align-items: start;
    place-items: start center;
    padding-bottom: calc(var(--footer-height) + 24px);
  }
}

@media (max-width: 430px) {
  .stage--home .brand-stack::before,
  .stage--home .brand-stack::after {
    width: min(94vw, 360px) !important;
    height: calc(100% + 44px) !important;
  }

  .stage--home::after {
    width: min(94vw, 380px) !important;
    height: min(72svh, 488px) !important;
  }

  .brand-stack {
    width: min(94vw, 360px) !important;
    gap: 8px !important;
  }

  .brand-rotator {
    width: min(88vw, 330px) !important;
    margin-top: 6px !important;
    margin-bottom: 5px !important;
    padding: 7px 9px !important;
    font-size: clamp(0.58rem, 2.9vw, 0.72rem) !important;
    line-height: 1.28 !important;
    letter-spacing: 0.075em !important;
  }

  .brand-subtitle {
    width: min(88vw, 330px) !important;
    padding: 6px 8px !important;
    font-size: clamp(0.54rem, 2.55vw, 0.66rem) !important;
    line-height: 1.28 !important;
    letter-spacing: 0.11em !important;
  }

  .brand-actions {
    width: min(88vw, 330px) !important;
    gap: 8px !important;
  }

  .action-btn {
    flex: 1 1 100% !important;
    width: 100% !important;
    padding: 9px 12px !important;
    font-size: 0.68rem !important;
  }

}

@media (max-height: 670px) and (max-width: 430px) {
  .brand-stack {
    gap: 6px !important;
  }

  .brand-rotator {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .stage--home .brand-stack::before,
  .stage--home .brand-stack::after {
    height: calc(100% + 52px) !important;
  }

  .stage--home::after {
    height: min(78svh, 498px) !important;
  }
}

body::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
}

.stage--home::before,
.stage--home::after,
.stage--home .brand-stack::before,
.stage--home .brand-stack::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.brand-rotator,
.brand-subtitle {
  width: auto !important;
  max-width: min(92vw, 760px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  -webkit-text-stroke: 0 !important;
}

.brand-rotator,
.brand-rotator span,
.rotator-static,
.rotator-dynamic,
.brand-rotator .rotator-static,
.brand-rotator span:not(.rotator-static),
.brand-subtitle {
  text-shadow: 0 1px 8px rgba(0, 10, 16, 0.34) !important;
  -webkit-text-stroke: 0 !important;
}

.brand-rotator {
  font-size: clamp(0.72rem, 1.25vw, 0.94rem) !important;
  line-height: 1.28 !important;
  letter-spacing: 0.12em !important;
  overflow-wrap: normal !important;
}

.rotator-static,
.brand-rotator .rotator-static {
  color: var(--rotator-static-color) !important;
}

.rotator-dynamic,
.brand-rotator span:not(.rotator-static) {
  color: var(--rotator-dynamic-color) !important;
}

.brand-subtitle {
  color: rgba(247, 252, 255, 0.88) !important;
  font-size: clamp(0.6rem, 1.1vw, 0.82rem) !important;
  line-height: 1.28 !important;
  letter-spacing: 0.2em !important;
}

.hamburger-btn {
  width: 42px !important;
  min-width: 42px !important;
  height: 38px !important;
  padding: 0 !important;
  gap: 0 !important;
}

.hamburger-btn > span:not(.hamburger-icon),

.hamburger-icon {
  width: 20px;
  height: 15px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 1px 4px rgba(0, 10, 16, 0.25);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .hamburger-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.menu-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.menu::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  .menu {
    top: calc(var(--nav-height) + 8px) !important;
    left: 50% !important;
    right: auto !important;
    width: min(86vw, 360px) !important;
    padding: 10px !important;
    gap: 2px !important;
    border-radius: 10px !important;
    transform: translateX(-50%) translateY(-10px) scale(0.98) !important;
    transform-origin: top center !important;
  }

  body.menu-open .menu {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .menu li {
    border-top: 0 !important;
  }

  .menu li + li {
    border-top: 1px solid rgba(207, 250, 252, 0.10) !important;
  }

  .menu a {
    justify-content: flex-start !important;
    text-align: left !important;
    min-height: 44px !important;
    padding: 0 12px !important;
  }

  .brand-rotator {
    width: min(88vw, 330px) !important;
    max-width: min(88vw, 330px) !important;
    margin-top: 6px !important;
    margin-bottom: 2px !important;
    padding: 0 !important;
    font-size: clamp(0.6rem, 2.9vw, 0.74rem) !important;
    line-height: 1.32 !important;
    letter-spacing: 0.075em !important;
  }

  .brand-subtitle {
    width: min(88vw, 330px) !important;
    max-width: min(88vw, 330px) !important;
    padding: 0 !important;
    font-size: clamp(0.54rem, 2.55vw, 0.66rem) !important;
    line-height: 1.32 !important;
    letter-spacing: 0.11em !important;
  }
}

body.is-home:not(.intro-ready) .nav,
body.is-home:not(.intro-ready) .main-footer {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body.is-home:not(.intro-ready) .nav {
  transform: translateY(-10px) !important;
}

body.is-home:not(.intro-ready) .main-footer {
  transform: translateY(10px) !important;
}

body.is-home .nav,
body.is-home .main-footer {
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms ease !important;
}

body.is-home #brand-container,
body.is-home #brand-credit,
body.is-home .brand-rotator,
body.is-home .brand-subtitle,
body.is-home .brand-actions,
body.is-home .brand-socials {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(8px) !important;
  transition: opacity 560ms ease, visibility 560ms ease, transform 560ms ease !important;
}

body.is-home.intro-branding #brand-container,
body.is-home.intro-branding:not(.intro-credit-out) #brand-credit {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

body.is-home.intro-credit-out #brand-credit {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  transition-duration: 420ms !important;
}

body.is-home.intro-ready #brand-container,
body.is-home.intro-ready .brand-rotator,
body.is-home.intro-ready .brand-subtitle,
body.is-home.intro-ready .brand-actions,
body.is-home.intro-ready .brand-socials,
body.is-home.intro-ready .nav,
body.is-home.intro-ready .main-footer {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

body.is-home.intro-ready #brand-credit {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
}

.brand-actions {
  width: auto !important;
  max-width: min(92vw, 420px) !important;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  pointer-events: all !important;
}

.action-btn {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  padding: 10px 22px !important;
  border: 1.5px solid var(--stroke) !important;
  border-radius: 8px !important;
  background: var(--glass) !important;
  color: var(--white-soft) !important;
  font-family: var(--font-main) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  text-shadow: var(--text-edge-soft) !important;
  -webkit-text-stroke: 0.22px var(--text-edge-color) !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.035) inset, 0 8px 18px rgba(1, 8, 14, 0.18) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: background 200ms ease, border-color 200ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.action-btn:hover,
.action-btn:focus-visible {
  background: var(--glass-strong) !important;
  border-color: var(--stroke-strong) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.section-shell {
  border-color: rgba(207, 250, 252, 0.24) !important;
  background: linear-gradient(135deg, rgba(18, 62, 72, 0.48), rgba(10, 39, 49, 0.38)) !important;
}

.section-card {
  border-color: rgba(207, 250, 252, 0.16) !important;
  background: linear-gradient(135deg, rgba(17, 56, 68, 0.46), rgba(11, 37, 48, 0.30)) !important;
}

@media (max-width: 430px) {
  .brand-actions {
    max-width: min(92vw, 340px) !important;
    gap: 8px !important;
  }

  .action-btn {
    flex: 0 1 auto !important;
    width: auto !important;
    padding: 9px 12px !important;
    font-size: clamp(0.62rem, 2.55vw, 0.72rem) !important;
    letter-spacing: 0.045em !important;
  }
}

@media (max-width: 360px) {
  .brand-actions {
    gap: 7px !important;
  }

  .action-btn {
    padding-inline: 10px !important;
    font-size: 0.62rem !important;
  }
}

:root {
  --kz-bg-base: #0b5260;
  --kz-bg-mid: #128395;
  --kz-bg-soft: #1ba6b1;
  --kz-bg-glow: rgba(88, 219, 230, 0.12);
  --kz-surface-soft: rgba(15, 56, 66, 0.38);
  --kz-surface-medium: rgba(24, 78, 90, 0.48);
  --kz-surface-strong: rgba(15, 50, 60, 0.68);
  --kz-surface-compact: rgba(10, 42, 52, 0.62);
  --kz-line-medium: rgba(139, 223, 230, 0.28);
  --kz-line-strong: rgba(151, 235, 240, 0.46);
  --kz-topbar-surface: linear-gradient(180deg, rgba(17, 57, 67, 0.86), rgba(13, 43, 54, 0.76));
  --kz-footer-surface: linear-gradient(180deg, rgba(18, 58, 68, 0.84), rgba(12, 42, 53, 0.88));
  --kz-accent-blue: #5ed8ea;
  --kz-accent-orange: #e1a04d;
  --kz-accent-green: #6ed5a3;
}

html {
  background: var(--kz-bg-base) !important;
}

body {
  background:
    radial-gradient(circle at 50% 34%, var(--kz-bg-glow) 0 8%, transparent 29%),
    radial-gradient(circle at 12% 16%, rgba(215, 252, 255, 0.045) 0 7%, transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(86, 191, 206, 0.08) 0 10%, transparent 34%),
    linear-gradient(135deg, var(--kz-bg-base) 0%, var(--kz-bg-mid) 50%, var(--kz-bg-soft) 100%) !important;
}

.nav {
  background: var(--kz-topbar-surface) !important;
  border-bottom: 1px solid rgba(216, 252, 255, 0.13) !important;
  box-shadow: 0 10px 28px rgba(0, 12, 18, 0.18) !important;
}

@media (min-width: 901px) {
  .nav {
    gap: clamp(16px, 2vw, 28px);
  }

  .nav-right {
    margin-left: auto;
  }

  .brand-socials {
    position: static !important;
    z-index: 101;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 auto 0 16px !important;
    pointer-events: all;
  }

  body.is-home .brand-socials {
    margin-left: 0 !important;
  }

  .menu {
    display: flex !important;
    align-items: center !important;
    gap: clamp(14px, 1.7vw, 24px) !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .menu a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--white-soft) !important;
    font-family: var(--font-main) !important;
    font-size: clamp(0.62rem, 0.9vw, 0.78rem) !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    text-shadow: var(--text-edge-soft) !important;
    -webkit-text-stroke: 0.2px var(--text-edge-color) !important;
    transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease !important;
  }

  .menu a::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 1px !important;
    left: 0 !important;
    width: auto !important;
    height: 1px !important;
    border-radius: 2px !important;
    background: var(--stroke-strong) !important;
    opacity: 0 !important;
    transform: scaleX(0.35) !important;
    transform-origin: center !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

  .menu a:hover,
  .menu a:focus-visible,
  .menu a[aria-current="page"] {
    color: #ffffff !important;
    text-shadow: var(--text-edge-soft), 0 0 12px rgba(70, 220, 236, 0.24) !important;
    outline: none !important;
    transform: translateY(-1px) !important;
  }

  .menu a:hover::after,
  .menu a:focus-visible::after,
  .menu a[aria-current="page"]::after {
    opacity: 0.95 !important;
    transform: scaleX(1) !important;
  }
}

@media (max-width: 900px) {
  .brand-socials {
    position: absolute !important;
    top: 50% !important;
    right: 70px !important;
    left: auto !important;
    z-index: 101;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    pointer-events: all;
  }

  .menu {
    top: calc(var(--nav-height) + 8px) !important;
    left: 50% !important;
    right: auto !important;
    width: min(86vw, 360px) !important;
    padding: 10px !important;
    gap: 2px !important;
    border-radius: 10px !important;
    transform: translateX(-50%) translateY(-10px) scale(0.98) !important;
    transform-origin: top center !important;
  }

  body.menu-open .menu {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  .menu li {
    border-top: 0 !important;
  }

  .menu li + li {
    border-top: 1px solid rgba(207, 250, 252, 0.10) !important;
  }

  .menu a {
    justify-content: flex-start !important;
    text-align: left !important;
    min-height: 44px !important;
    padding: 0 12px !important;
  }
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 252, 255, 0.22);
  border-radius: 8px;
  color: rgba(248, 253, 255, 0.92);
  background: rgba(8, 42, 52, 0.30);
  box-shadow: 0 8px 18px rgba(0, 12, 18, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(9px) saturate(108%);
  -webkit-backdrop-filter: blur(9px) saturate(108%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: #ffffff;
  border-color: var(--stroke-strong);
  background: rgba(18, 88, 100, 0.42);
  box-shadow: 0 10px 22px rgba(0, 12, 18, 0.20), 0 0 12px rgba(88, 218, 230, 0.12);
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 430px) {
  .brand-socials {
    right: 64px !important;
    gap: 6px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon svg {
    width: 15px;
    height: 15px;
  }
}

.app-section {
  height: calc(100svh - var(--footer-height) - var(--nav-height));
  min-height: 0;
  padding: clamp(14px, 3vw, 34px) clamp(14px, 4vw, 60px);
  overflow: hidden !important;
}

.section-shell {
  width: min(100%, 1040px);
  height: min(100%, 630px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(18px, 3vw, 34px) !important;
  overflow: hidden;
}

.section-head {
  min-width: 0;
}

.section-shell h2 {
  margin: 12px 0 8px !important;
  font-size: clamp(2rem, 4.8vw, 4rem) !important;
}

.section-shell > p,
.section-head > p {
  max-width: 760px;
  color: rgba(241, 251, 253, 0.78);
  font-size: clamp(0.86rem, 1.35vw, 1rem);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: var(--kz-text-outline);
}

.section-grid {
  min-height: 0;
  margin-top: 0 !important;
}

.section-card {
  min-height: 0 !important;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  align-content: start;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.section-card:hover,
.section-card:focus-visible {
  border-color: var(--stroke-strong) !important;
  background: linear-gradient(135deg, rgba(20, 96, 110, 0.46), rgba(8, 44, 58, 0.38)) !important;
  box-shadow: 0 16px 34px rgba(0, 12, 18, 0.18), 0 0 14px rgba(80, 216, 230, 0.08) !important;
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 760px) {
  .app-section {
    align-items: center !important;
    place-items: center !important;
    padding: 10px 12px !important;
  }

  .section-shell {
    height: min(100%, 560px);
    gap: 10px;
    padding: 14px !important;
  }

  .section-kicker {
    min-height: 24px;
    padding: 0 9px;
    font-size: 0.58rem;
  }

  .section-shell h2 {
    margin: 8px 0 6px !important;
    font-size: clamp(1.55rem, 8vw, 2.5rem) !important;
  }

  .section-head > p {
    font-size: 0.76rem;
    line-height: 1.36;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section-grid {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .section-card {
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }

  .section-card span {
    font-size: 0.56rem;
  }

  .section-card h3 {
    margin: 5px 0 4px;
    font-size: 0.82rem;
  }

  .section-card p {
    font-size: 0.7rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 390px), (max-height: 700px) {
  .section-shell {
    height: min(100%, 520px);
    padding: 12px !important;
  }

  .section-head > p {
    -webkit-line-clamp: 1;
  }

  .section-card p {
    -webkit-line-clamp: 1;
  }
}

.section-shell--construction {
  width: min(100%, 760px);
  height: auto;
  min-height: min(52svh, 440px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 36px) !important;
}

.section-shell--construction::before {
  opacity: 0.42;
}

.section-card--construction {
  width: min(100%, 620px);
  min-height: 0 !important;
  display: grid;
  gap: clamp(10px, 1.7vw, 16px);
  align-content: center;
  padding: clamp(22px, 4vw, 38px) !important;
  cursor: default;
  text-align: left;
}

.section-card--construction:hover,
.section-card--construction:focus-visible {
  transform: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)) !important;
  border-color: rgba(207, 250, 252, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.028), 0 10px 24px rgba(0, 14, 22, 0.14) !important;
}

.section-card--construction .section-kicker {
  width: fit-content;
}

.section-card--construction h2 {
  margin: 0 !important;
  color: rgba(250, 253, 255, 0.94);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem) !important;
  font-weight: 650;
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline-strong), 0 10px 28px rgba(1, 14, 20, 0.22);
}

.section-card--construction p {
  margin: 0;
  color: rgba(241, 251, 253, 0.78);
  font-size: clamp(0.88rem, 1.45vw, 1rem);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: var(--kz-text-outline);
}

.section-card--construction strong {
  display: block;
  margin-top: 4px;
  color: var(--kz-accent-orange);
  font-size: clamp(0.74rem, 1.15vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.35;
  text-transform: uppercase;
  text-shadow: var(--kz-text-outline);
}

@media (max-width: 760px) {
  .section-shell--construction {
    width: min(100%, 520px);
    min-height: min(56svh, 420px);
    height: auto;
    padding: 14px !important;
  }

  .section-card--construction {
    gap: 9px;
    padding: 18px !important;
  }

  .section-card--construction h2 {
    font-size: clamp(1.55rem, 8vw, 2.45rem) !important;
  }

  .section-card--construction p {
    display: block;
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .section-card--construction strong {
    font-size: 0.65rem;
  }
}

:root {
  --kz-bg-base: #0b5260;
  --kz-bg-mid: #128395;
  --kz-bg-soft: #1ba6b1;
  --kz-bg-glow: rgba(88, 219, 230, 0.12);
}

body {
  background:
    radial-gradient(circle at 50% 34%, var(--kz-bg-glow) 0 8%, transparent 29%),
    radial-gradient(circle at 13% 18%, rgba(210, 252, 255, 0.045) 0 7%, transparent 28%),
    radial-gradient(circle at 87% 76%, rgba(89, 210, 222, 0.085) 0 10%, transparent 34%),
    linear-gradient(135deg, var(--kz-bg-base) 0%, var(--kz-bg-mid) 50%, var(--kz-bg-soft) 100%) !important;
}

.nav {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  column-gap: clamp(16px, 2vw, 28px) !important;
}

.nav-left {
  grid-column: 1 !important;
  justify-self: start !important;
}

.nav-right {
  grid-column: 3 !important;
  justify-self: end !important;
  margin-left: 0 !important;
}

body.is-home .nav-left {
  display: none !important;
}

.brand-socials {
  grid-column: 1 !important;
  justify-self: start !important;
  position: relative !important;
  inset: auto !important;
  z-index: 101 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  margin: 0 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none !important;
  transition: opacity 360ms ease, visibility 360ms ease;
}

body.is-home.intro-ready .brand-socials {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body:not(.is-home) .brand-socials,
body.is-home:not(.intro-ready) .brand-socials {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(216, 252, 255, 0.22);
  border-radius: 8px;
  color: rgba(248, 253, 255, 0.92);
  background: rgba(8, 42, 52, 0.30);
  box-shadow: 0 8px 18px rgba(0, 12, 18, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(9px) saturate(108%);
  -webkit-backdrop-filter: blur(9px) saturate(108%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: #ffffff;
  border-color: var(--stroke-strong);
  background: rgba(18, 88, 100, 0.42);
  box-shadow: 0 10px 22px rgba(0, 12, 18, 0.20), 0 0 12px rgba(88, 218, 230, 0.12);
  transform: translateY(-1px);
  outline: none;
}

@media (min-width: 901px) {
  .nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    column-gap: 20px !important;
  }

  .nav-left {
    justify-self: auto !important;
  }

  .nav-right {
    justify-self: auto !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
  }

  body.is-home .nav-left {
    display: none !important;
  }

  .brand-socials {
    position: relative !important;
    inset: auto !important;
    order: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    transform: none !important;
  }

  body.is-home.intro-ready .brand-socials {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body:not(.is-home) .brand-socials,
  body.is-home:not(.intro-ready) .brand-socials {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .menu {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .menu li {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 1 !important;
    cursor: pointer !important;
  }

  .menu li + li::before {
    display: none !important;
    content: none !important;
  }

  .menu a {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: 0 0 5px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--white-soft) !important;
    font-family: var(--font-main) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: 0.03em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    text-shadow: var(--text-edge-soft) !important;
    -webkit-text-stroke: 0 !important;
    transform: none !important;
    transition: color 180ms ease, text-shadow 180ms ease !important;
  }

  .menu a::before {
    display: none !important;
    content: none !important;
  }

  .menu a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 1px !important;
    border-radius: 999px !important;
    background: var(--stroke-strong) !important;
    opacity: 0 !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

  .menu a:hover,
  .menu a:focus-visible {
    color: #ffffff !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: var(--text-edge-soft), 0 0 10px rgba(84, 221, 235, 0.22) !important;
    transform: none !important;
  }

  .menu a[aria-current="page"] {
    color: var(--white-soft) !important;
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    transform: none !important;
  }

  .menu a:hover::after,
  .menu a:focus-visible::after {
    opacity: 1 !important;
    transform: scaleX(1) !important;
  }

  .menu a[aria-current="page"]::after {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }

  .hamburger-btn {
    display: none !important;
  }

  .social-icon {
    width: 31px !important;
    height: 31px !important;
    border-radius: 8px !important;
  }

  .social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    column-gap: 9px !important;
    padding-inline: clamp(14px, 4vw, 22px) !important;
  }

  .nav-left {
    grid-column: 1 !important;
  }

  .nav-right {
    grid-column: 3 !important;
    justify-self: end !important;
  }

  body.is-home .nav-right {
    grid-column: 2 !important;
  }

  body.is-home .brand-socials {
    grid-column: 3 !important;
    justify-self: end !important;
    gap: 6px !important;
  }

  .brand-socials {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
  }

  .social-icon {
    width: 29px !important;
    height: 29px !important;
    border-radius: 7px !important;
  }

  .social-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
}

@media (max-width: 380px) {
  .nav {
    column-gap: 6px !important;
    padding-inline: 12px !important;
  }

  body.is-home .brand-socials {
    gap: 4px !important;
  }

  .social-icon {
    width: 27px !important;
    height: 27px !important;
  }

  .social-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

  .hamburger-btn {
    width: 38px !important;
    min-width: 38px !important;
  }
}

@media (max-width: 900px) {
  body.is-home .nav {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    column-gap: clamp(8px, 3vw, 16px) !important;
  }

  body.is-home .nav-right {
    grid-column: 1 !important;
    justify-self: start !important;
    margin-left: 0 !important;
  }

  body.is-home .brand-socials {
    grid-column: 3 !important;
    justify-self: end !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
