:root {
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text);
  font-weight: 400;
  letter-spacing: var(--track-tight) !important;
}

h1 {
  font-size: var(--display-size) !important;
  font-weight: 500 !important;
}

h1,
h2 {
  font-family: "Space Grotesk", sans-serif;
}

a,
p,
span,
div,
li,
button,
blockquote {
  color: var(--text-dim);
  font-family: inherit;
}

h1 {
  font-size: var(--h1-size);
}

h2 {
  font-size: var(--h2-size);
  line-height: normal !important;
}

h3 {
  font-size: var(--h3-size);
  line-height: normal !important;
}

h4 {
  font-size: var(--h4-size);
}

h5 {
  font-size: var(--h5-size);
}

h6 {
  font-size: var(--h6-size);
}

p {
  font-size: var(--p-size);
  line-height: 1.7 !important;
}

@media (max-width: 662px) {
  h1 {
    font-size: var(--display-size) !important;
    letter-spacing: var(--track-tight) !important;
  }
}
:root {
  --display-xl-size: clamp(3rem, 2rem + 7vw, 7.5rem);
  --display-xl-size: clamp(2.5rem, 1.5rem + 5vw, 6.5rem);
  --display-lg-size: clamp(2.5rem, 1.75rem + 4vw, 5rem);
  --display-size: clamp(2.5rem, 1.5rem + 5vw, 6.5rem);
  --h1-size: clamp(2.4rem, 1.5rem + 3.8vw, 4.5rem);
  --h2-size: clamp(2rem, 1.35rem + 2.8vw, 3.4rem);
  --h3-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.4rem);
  --h4-size: clamp(1.3rem, 1rem + 1.3vw, 1.9rem);
  --h5-size: clamp(1.15rem, 0.95rem + 0.75vw, 1.45rem);
  --h6-size: clamp(1.05rem, 0.9rem + 0.45vw, 1.25rem);
  --p-size: 1rem;
  --small-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.9rem);
  --small-size: .8rem;
  --header-gap: clamp(2rem, 8vw, 7.5rem);
  --header-gap: clamp(50px, 7vw, 100px);
  --track-tight: -0.031em;
  --track-normal: normal;
  --track-wide: 0.05em;
  --track-widest: 0.1em;
}

:root {
  --bg: #050505;
  --bg-soft: rgba(255, 255, 255, .02);
  --surface: #0f172a;
  --surface: #090909;
  --surface-2: #111c33;
  --border: rgba(255, 255, 255, .1);
  --text: #F5F5F5;
  --text-muted: rgba(255, 255, 255, .35);
  --text-dim: rgba(255, 255, 255, .48);
  --primary: #1FAF54;
  --secondary: #4ADE80;
  --accent: #38BDF8;
  --primary-soft: color-mix(in srgb, var(--primary) 12%, transparent);
  --primary-subtle: color-mix(in srgb, var(--primary) 10%, transparent);
  --accent-soft: color-mix(in srgb, var(--accent) 18%, transparent);
  --danger: #ef4444;
  --warning: #f59e0b;
  --glow: #22d3ee;
}

:root {
  --container-max-w: 1280px;
  --container-padding: clamp(1rem, 3vw, 2rem);
  --section-padding: 6vw;
}

:root {
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
}

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

html {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  font-size: var(--p-size);
  color: var(--text-dim);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  cursor: default;
}

a,
a *,
button,
button *,
[role=button],
[role=button] * {
  cursor: pointer;
}

.eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  margin-bottom: 1.4rem !important;
  background: var(--primary-soft) !important;
  width: max-content !important;
  color: var(--primary) !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 999px !important;
  font-size: var(--small-size) !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #1FAF54;
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  transform: scale(0) rotateZ(-180deg);
  opacity: 0;
  z-index: 9999;
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

#light {
  position: fixed;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--primary) 20%, color-mix(in srgb, var(--primary) 18%, transparent) 70%, transparent 100%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1000;
  opacity: 0.5;
  animation: lightPulse 3s ease-in-out infinite;
}

@keyframes lightPulse {
  0%, 100% {
    scale: 1;
    opacity: 0.45;
  }
  50% {
    scale: 1.05;
    opacity: 0.6;
  }
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #050505;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 10px;
  border: 2px solid #050505;
  box-shadow: 0 0 20px rgba(157, 124, 255, 0.25);
  transition: 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

body > .grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 90%);
  z-index: -1;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("/assets/img/noice.svg");
}

.glow-line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(157, 124, 255, 0.6), transparent);
  left: 5vw;
  top: 0;
  opacity: 0;
}
@media (max-width: 662px) {
  .glow-line {
    display: none;
  }
}

.social-rail {
  position: fixed;
  left: 2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 50;
}
.social-rail a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 1px;
  transition: 0.3s ease;
}
.social-rail a:first-child,
.social-rail a:nth-child(2),
.social-rail a:nth-child(5) {
  display: none;
}
.social-rail a:hover {
  color: var(--primary);
  transform: translateX(4px);
}
@media (max-width: 992px) {
  .social-rail {
    left: 1.8vw;
    gap: 14px;
  }
  .social-rail a {
    font-size: var(--small-size);
  }
}
@media (max-width: 600px) {
  .social-rail {
    display: none;
  }
}
.social-rail .side-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  user-select: none;
}
.social-rail .side-time .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary) !important;
  box-shadow: 0 0 12px var(--secondary) !important;
  transition: 0.3s ease;
}
.social-rail .side-time__clock {
  font-size: var(--small-size);
  font-weight: 500;
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.08em;
}
.social-rail .side-time__location,
.social-rail .side-time__zone {
  font-size: clamp(0.65rem, 0.65vw, 0.75rem);
  color: var(--text);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb {
  font-size: var(--p-size);
  margin-bottom: 50px;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.breadcrumb li {
  color: var(--text);
  opacity: 0.5;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: var(--text-dim);
}
.breadcrumb li:last-child::after {
  content: "";
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-dim);
  transition: 0.5s ease;
  opacity: 1;
}
.breadcrumb a:hover {
  color: var(--text);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 900;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-4px);
  background: rgba(157, 124, 255, 0.2);
}

.cta {
  position: relative;
  width: max-content;
  padding: 18px 34px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  gap: 15px;
  overflow: hidden;
  will-change: transform;
  transition: all 0.3s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta:hover span {
  transform: translateX(5px);
  transition: 0.3s ease;
}

.cta--primary {
  background: var(--primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--primary) 33%, transparent);
}

.cta--primary:hover {
  box-shadow: 0 5px 25px color-mix(in srgb, var(--primary) 53%, transparent) !important;
}

.cta--secondary {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.cta--secondary span {
  color: var(--primary);
}

.cta--secondary:hover {
  box-shadow: 0 5px 30px color-mix(in srgb, var(--primary) 53%, transparent) !important;
}

:root {
  --lightbox-background: rgb(8 8 10 / 96%);
  --lightbox-control-background: rgb(255 255 255 / 10%);
  --lightbox-control-hover: rgb(255 255 255 / 18%);
  --lightbox-text: rgb(255 255 255);
  --lightbox-muted: rgb(255 255 255 / 60%);
}

.case-study-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.case-study-gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1rem;
  background: transparent;
  cursor: zoom-in;
}

.case-study-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 400ms ease;
}

.case-study-gallery__item:hover img {
  transform: scale(1.02);
}

/* Modern lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  background: var(--lightbox-background);
  overscroll-behavior: none;
  touch-action: none;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.lightbox__viewport {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: grab;
}

.lightbox__viewport.is-dragging {
  cursor: grabbing;
}

.lightbox__image {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  user-select: none;
  transform-origin: center;
  will-change: transform;
}

.lightbox__close,
.lightbox__previous,
.lightbox__next {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 4vw, 3.5rem);
  height: clamp(2.75rem, 4vw, 3.5rem);
  border: 0;
  border-radius: 50%;
  background: var(--lightbox-control-background);
  color: var(--lightbox-text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  cursor: pointer;
  backdrop-filter: blur(1rem);
  transition: background-color 200ms ease, transform 200ms ease;
}

.lightbox__close:hover,
.lightbox__previous:hover,
.lightbox__next:hover {
  background: var(--lightbox-control-hover);
  transform: scale(1.05);
}

.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  backdrop-filter: none;
}

.lightbox__previous {
  top: 50%;
  left: clamp(1rem, 3vw, 2rem);
  transform: translateY(-50%);
}

.lightbox__next {
  top: 50%;
  right: clamp(1rem, 3vw, 2rem);
  transform: translateY(-50%);
}

.lightbox__previous:hover,
.lightbox__next:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox__status {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--lightbox-muted);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  transform: translateX(-50%);
  backdrop-filter: blur(1rem);
}

.lightbox button:focus-visible {
  outline: 2px solid var(--lightbox-text);
  outline-offset: 4px;
}

body.lightbox-is-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .case-study-gallery {
    grid-template-columns: 1fr;
  }
  .lightbox__previous,
  .lightbox__next {
    top: auto;
    bottom: 1rem;
  }
  .lightbox__previous {
    left: 1rem;
  }
  .lightbox__next {
    right: 1rem;
  }
  .lightbox__status {
    bottom: 1.5rem;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
}
.preloader .ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  animation: spin 1.2s linear infinite;
  filter: drop-shadow(0 0 20px rgba(123, 97, 255, 0.3));
}
.preloader .center {
  text-align: center;
  color: var(--text);
}
.preloader .logo {
  letter-spacing: var(--track-wide);
  color: var(--text);
  text-transform: uppercase;
  font-size: var(--h5-size);
}
.preloader .percent {
  margin-top: 10px;
  color: var(--primary);
}
.preloader .percent span {
  color: var(--primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 var(--section-padding);
  z-index: 100;
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
}
.navbar .container {
  width: 100%;
  max-width: var(--container-max-w);
  margin: auto;
  padding-block: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-size: 1.7rem;
  letter-spacing: var(--track-wide);
  transition: 0.3s ease;
}
.navbar .logo:hover {
  color: var(--primary);
}
.navbar .logo img {
  height: 22px;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}
.navbar .nav-links li:nth-child(2),
.navbar .nav-links li:nth-child(5) {
  display: none;
}
@media (max-width: 992px) {
  .navbar .nav-links {
    display: none;
  }
}
.navbar .nav-links .has-dropdown {
  position: relative;
}
.navbar .nav-links .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-links .has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.navbar .nav-links .has-dropdown > .nav-link i, .navbar .nav-links .has-dropdown > .nav-link::before {
  order: 2;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.navbar .nav-links .has-dropdown > .nav-link::after {
  display: none !important;
}
.navbar .nav-links .has-dropdown:hover > .nav-link i, .navbar .nav-links .has-dropdown:hover > .nav-link::before {
  transform: rotate(180deg);
}
.navbar .nav-links .has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  padding-top: 0.75rem;
  left: 0;
  transform: translateY(0.75rem);
  min-width: 200px;
  padding: 0.75rem 0;
  list-style: none;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 20;
}
.navbar .nav-links .has-dropdown .dropdown-menu li {
  display: block !important;
}
.navbar .nav-links .has-dropdown .dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-size: var(--p-size);
  transition: 0.25s ease;
}
.navbar .nav-links .has-dropdown .dropdown-menu a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}
.navbar .nav-links .has-dropdown .dropdown-menu .tooltip {
  display: none;
}
.navbar .nav-link {
  position: relative;
  text-decoration: none;
  font-size: var(--p-size);
  font-weight: 300;
  padding: 6px 0;
  transition: 0.3s ease;
}
.navbar .nav-link.active {
  color: var(--text);
}
.navbar .nav-link:hover {
  color: var(--primary);
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 10px;
  transition: 0.4s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 100%;
}
.navbar .nav-link.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}
.navbar .nav-link .tooltip {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}
.navbar .nav-link:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 2rem;
}
@media (max-width: 992px) {
  .navbar .nav-right {
    display: none;
  }
}
.navbar .nav-phone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s ease;
  display: none;
}
.navbar .nav-phone:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.navbar .nav-phone .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.8s infinite;
}
.navbar .nav-phone .tooltip {
  position: absolute;
  top: 140%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background: #111;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.75rem;
  transition: 0.25s ease;
}
.navbar .nav-phone:hover .tooltip {
  opacity: 1;
}
.navbar .nav-btn {
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.navbar .nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 30px color-mix(in srgb, var(--primary) 53%, transparent);
}
.navbar .menu-toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: none;
  cursor: pointer;
}
.navbar .menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
}
@media (max-width: 992px) {
  .navbar .menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(65vw, 380px);
  height: 100dvh;
  padding: 2rem;
  background: #050505;
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: 0.35s ease;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .menu-close {
  background: none;
  border: 0;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}
.mobile-menu .mobile-links {
  list-style: none;
  padding: 3rem 0;
}
.mobile-menu .mobile-links li {
  margin-bottom: 1.5rem;
}
.mobile-menu .mobile-links li:nth-child(4) {
  display: none;
}
.mobile-menu .mobile-links a {
  text-decoration: none;
  font-size: var(--p-size);
}
.mobile-menu .mobile-links a:hover {
  color: var(--primary);
}
.mobile-menu .mobile-links a.active {
  color: var(--text);
}
.mobile-menu .mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes pulse {
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}
.footer {
  position: relative;
  padding: 0 var(--section-padding);
  overflow-x: hidden;
}
.footer .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: 100px 0 60px;
}
.footer .footer-watermark {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 40px;
  font-size: min(23vw, 420px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.01);
  white-space: nowrap;
  pointer-events: none;
  text-align: center;
  letter-spacing: 10px;
}
.footer .footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 4fr auto auto auto;
  gap: 60px;
}
.footer .eyebrow {
  display: inline-block;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: var(--small-size) !important;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer .footer-brand {
  width: max-content;
}
.footer .footer-email {
  position: relative;
  display: inline-block;
  color: var(--text);
  margin-top: 30px;
  font-size: clamp(38px, 4.5vw, 68px);
  line-height: 0.95;
  text-decoration: none;
  font-style: normal;
  transition: 0.3s ease;
}
.footer .footer-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer .footer-email:hover {
  color: var(--primary);
}
.footer .footer-email:hover::after {
  width: 100%;
}
.footer .footer-brand p {
  margin-top: 30px;
  max-width: 450px;
}
.footer .footer-brand p.footer-lead {
  margin-top: 20px;
  max-width: 500px;
  font-size: var(--p-size);
}
.footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer-column span,
.footer .footer-column h3 {
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: var(--p-size);
}
.footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.footer .footer-column li {
  font-size: var(--small-size);
  letter-spacing: var(--track-wide);
}
.footer .footer-column a {
  display: inline-block;
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 15px;
}
.footer .footer-column a:hover {
  color: var(--text);
  transform: translateX(10px);
}
.footer .footer-column:nth-child(2) li:nth-child(4) {
  display: none;
}
.footer .socials {
  display: none;
}
.footer #social-title + ul li:last-child {
  display: none;
}
.footer .footer-bottom {
  position: relative;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
}
.footer .footer-bottom a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: var(--small-size);
  margin: 0 8px;
  transition: 0.3s ease;
}
.footer .footer-bottom a:hover {
  color: var(--text);
}
.footer .footer-bottom p {
  font-size: var(--small-size);
}
@media (max-width: 1300px) {
  .footer .footer-top {
    grid-template-columns: 3fr auto auto;
  }
}
@media (max-width: 1100px) {
  .footer .footer-top {
    grid-template-columns: repeat(2, auto);
    gap: 60px;
  }
  .footer .footer-brand {
    width: 60%;
  }
  .footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 900px) {
  .footer .footer-brand {
    width: 100%;
  }
  .footer .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .footer .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer .footer-column {
    gap: 12px;
  }
  .footer .footer-column span,
  .footer .footer-column h3 {
    margin-bottom: 10px;
  }
  .footer .socials {
    display: block;
  }
  .footer .footer-bottom span {
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .footer .footer-watermark {
    font-size: 28vw;
    bottom: 20px;
    opacity: 0.015;
  }
  .footer .footer-brand .footer-email {
    font-size: 34px;
  }
  .footer .footer-bottom {
    font-size: 0.85rem;
  }
}

:root {
  --category-width: 1270px;
}

.category-page {
  overflow: hidden;
}
.category-page .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
}
.category-page a {
  text-decoration: none;
}
.category-page button,
.category-page input {
  font: inherit;
}
.category-page img {
  max-width: 100%;
}

.section-header {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-header .section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  max-width: none;
}
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
  color: var(--secondary);
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-header .eyebrow::before {
  width: 24px;
  height: 1px;
  background: var(--primary);
  content: "";
}
.section-header .heading {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.04;
  font-weight: 500;
}
.section-header .description {
  max-width: 600px;
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: var(--text);
  opacity: 0.7;
}

.category-hero {
  position: relative;
  min-height: min(900px, 90vh);
  display: flex;
  align-items: center;
  padding: 0 var(--section-padding);
  isolation: isolate;
}
.category-hero .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.category-hero::before {
  position: absolute;
  top: 12%;
  right: -12%;
  width: min(60vw, 800px);
  height: min(60vw, 800px);
  border: 1px solid rgba(31, 175, 84, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(31, 175, 84, 0.06), inset 0 0 100px rgba(31, 175, 84, 0.03);
  content: "";
  pointer-events: none;
}

.category-hero::after {
  position: absolute;
  top: 22%;
  right: 10%;
  width: 1px;
  height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(31, 175, 84, 0.35), transparent);
  content: "";
  opacity: 0.45;
}

.category-hero__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.category-hero__content {
  position: relative;
  z-index: 2;
}

.category-hero__title {
  max-width: 850px;
  margin: 0 0 2rem;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 500;
}
.category-hero__title span {
  display: block;
  color: var(--primary);
}

.category-hero__description {
  max-width: 650px;
  margin: 0;
  color: #b5b5bd;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.category-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.category-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.category-stat strong {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.category-stat span {
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-hero__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.category-hero__orb {
  position: absolute;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(31, 175, 84, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(31, 175, 84, 0.12), inset 0 0 80px rgba(31, 175, 84, 0.06);
  animation: categoryOrbPulse 5s ease-in-out infinite;
}

.category-hero__orb::before,
.category-hero__orb::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(56, 189, 248, 0.12);
  border-radius: inherit;
  content: "";
}

.category-hero__orb::after {
  inset: 25%;
  border-color: rgba(74, 222, 128, 0.16);
}

.code-window {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(11, 18, 32, 0.88);
  background: rgba(11, 32, 13, 0.88);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 50px rgba(31, 175, 84, 0.08);
  backdrop-filter: blur(18px);
  transform: rotate(3deg);
  transition: 0.3s ease;
}

.code-window:hover {
  border-color: var(--primary);
  transform: rotate(0deg) translateY(-8px);
}

.code-window__top {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}

.code-window__top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #263044;
}

.code-window__top span:first-child {
  background: var(--primary);
}

.code-window__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  font-family: monospace;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
}

.code-line {
  color: #8d96a8;
}

.code-line b {
  color: var(--secondary);
}

.code-line strong {
  color: var(--accent);
}

.code-line em {
  color: #eab308;
  font-style: normal;
}

.code-line i {
  color: #c084fc;
  font-style: normal;
}

.code-line--indent {
  padding-left: 2rem;
  color: var(--text);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--small-size);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue .line {
  position: relative;
  width: 70px;
  height: 1px;
  overflow: hidden;
  background: var(--border);
}
.scroll-cue .dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: var(--primary);
  animation: scrollCue 2s ease-in-out infinite;
}

.category-featured {
  padding: 0 8vw;
  border-top: 1px solid var(--border);
}
.category-featured .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.featured-article__image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 175, 84, 0.25), transparent 55%), #0a0f19;
}

.featured-article__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.45), transparent 50%);
  content: "";
}

.featured-article__image img {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.featured-article:hover .featured-article__image img {
  opacity: 1;
  transform: scale(1.06);
}

.featured-article__number {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.08em;
}

.featured-article__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.article-label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.article-label span {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--secondary);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-article__content h3 {
  margin: 0 0 1.5rem;
  font-size: var(--h4-size);
  line-height: 1.3;
}

.featured-article__content h3 a {
  color: var(--text);
  transition: color 0.25s ease;
}

.featured-article__content h3 a:hover {
  color: var(--secondary);
}

.featured-article__content p {
  max-width: 560px;
  margin: 0;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--secondary);
  transition: gap 0.25s ease, color 0.25s ease;
}

.article-link:hover {
  gap: 1.1rem;
  color: var(--text);
}

.category-articles {
  padding: 0 8vw;
  border-top: 1px solid var(--border);
}
.category-articles .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, background 0.4s ease;
}

.category-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
}

.category-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 175, 84, 0.2), transparent), #080c14;
}

.category-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.4), transparent);
  content: "";
}

.category-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(5, 5, 5, 0.65);
  background: var(--surface);
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.category-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.6rem;
}

.category-card__content h3 {
  margin: 0 0 1rem;
  font-size: var(--h5-size);
  line-height: 1.3;
}

.category-card__content h3 a {
  color: var(--text);
  transition: color 0.25s ease;
}

.category-card__content h3 a:hover {
  color: var(--primary);
}

.category-card__content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: #777;
  font-size: 0.78rem;
}

.category-card__read {
  color: var(--secondary);
  transition: transform 0.25s ease;
}

.category-card:hover .category-card__read {
  transform: translateX(4px);
}

.category-load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cta:hover {
  transform: translateY(-3px);
}

.cta--primary {
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
}

.cta--primary:hover {
  background: #24c460;
}

.cta--secondary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.cta--secondary:hover {
  border-color: var(--primary);
  background: rgba(31, 175, 84, 0.08);
}

.category-topics {
  padding: 0 8vw;
  border-top: 1px solid var(--border);
}
.category-topics .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.topic-card {
  position: relative;
  min-height: 330px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.topic-card::before {
  position: absolute;
  right: -30%;
  bottom: -35%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(31, 175, 84, 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 0.5s ease;
}

.topic-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
}

.topic-card:hover::before {
  transform: scale(1.5);
}

.topic-card__number {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.topic-card i {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 2rem;
}

.topic-card h3 {
  margin: 0 0 0.8rem;
  color: var(--text);
  font-size: var(--h4-size);
}

.topic-card p {
  max-width: 260px;
  margin: 0;
  font-size: var(--p-size);
}

.topic-card__arrow {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  color: var(--secondary);
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}

.topic-card:hover .topic-card__arrow {
  transform: translate(4px, -4px);
}

.related-categories {
  padding: 0 8vw;
  border-top: 1px solid var(--border);
}
.related-categories .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.related-categories .section-header {
  max-width: 800px;
}

.related-categories .heading span {
  display: block;
  color: var(--primary);
}

.related-category-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.related-category-list a {
  display: flex;
  min-height: 140px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: 0.3s ease;
}

.related-category-list a:hover {
  background: var(--primary);
}

.related-category-list a i {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
  color: var(--text);
}

.related-category-list a:hover i {
  transform: translate(4px, -4px);
}

.related-category-list a span {
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  color: var(--text);
}

.blog-newsletter {
  padding: 0 var(--section-padding);
}
.blog-newsletter .blog-newsletter__container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
  gap: 3rem;
  overflow: hidden;
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.blog-newsletter .blog-newsletter__content {
  position: relative;
  z-index: 2;
}
.blog-newsletter .blog-newsletter__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--secondary);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.blog-newsletter .blog-newsletter__header h2 {
  max-width: 700px;
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.blog-newsletter .blog-newsletter__header p {
  max-width: 600px;
  margin: 0 0 2rem;
  color: var(--text-dim);
}
.blog-newsletter .blog-newsletter__form {
  display: flex;
  max-width: 560px;
  gap: 0.7rem;
}
.blog-newsletter .blog-newsletter__form input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  outline: none;
  background: #080808;
  color: var(--text);
}
.blog-newsletter .blog-newsletter__form input::placeholder {
  color: #666;
}
.blog-newsletter .blog-newsletter__form input:focus {
  border-color: var(--primary);
}
.blog-newsletter .blog-newsletter__form .cta {
  border-radius: var(--radius-full);
}
.blog-newsletter .blog-newsletter__form .cta span {
  color: var(--text);
}
.blog-newsletter .blog-newsletter__privacy {
  margin: 1rem 0 0;
  color: #666;
  font-size: 0.8rem;
}
.blog-newsletter .blog-newsletter__visual {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
}
.blog-newsletter .blog-newsletter__icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 120px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.4);
  border-radius: 50%;
  background: rgba(31, 175, 84, 0.1);
  color: var(--secondary);
  font-size: 3rem;
  box-shadow: 0 0 60px rgba(31, 175, 84, 0.12);
}
.blog-newsletter .blog-newsletter__shape {
  position: absolute;
  border: 1px solid rgba(31, 175, 84, 0.15);
  border-radius: 50%;
}
.blog-newsletter .blog-newsletter__shape--one {
  width: 220px;
  height: 220px;
}
.blog-newsletter .blog-newsletter__shape--two {
  width: 330px;
  height: 330px;
}

.category-cta {
  padding: 0 8vw;
  border-top: 1px solid var(--border);
}
.category-cta .container {
  max-width: var(--container-max-w);
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
}
.category-cta .heading {
  max-width: 850px;
  margin: 0 auto 1.5rem;
  font-size: var(--display-xl-size);
  line-height: 0.98;
}
.category-cta .description {
  max-width: 650px;
  margin: 0 auto 2rem;
}
.category-cta .cta {
  border-radius: var(--radius-full) !important;
}

@media (max-width: 1100px) {
  .category-hero__container {
    grid-template-columns: 1fr;
  }
  .category-hero__visual {
    max-width: 600px;
    min-height: 360px;
    margin-inline: auto;
  }
  .featured-article {
    grid-template-columns: 1fr;
  }
  .featured-article__image {
    min-height: 420px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .related-category-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 850px) {
  .section-header--split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-newsletter__container {
    grid-template-columns: 1fr;
  }
  .blog-newsletter__visual {
    min-height: 200px;
  }
}
@media (max-width: 650px) {
  .category-hero {
    min-height: auto;
    padding-top: 8rem;
  }
  .category-hero .breadcrumb {
    top: -3rem;
  }
  .category-hero__title {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }
  .category-hero__visual {
    min-height: 300px;
  }
  .code-window {
    transform: rotate(0);
  }
  .category-hero__orb {
    width: 260px;
  }
  .featured-article__image {
    min-height: 280px;
  }
  .featured-article__content {
    padding: 1.5rem;
  }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    min-height: 430px;
  }
  .topic-grid {
    grid-template-columns: 1fr;
  }
  .related-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .related-category-list a {
    min-height: 110px;
  }
  .blog-newsletter__form {
    flex-direction: column;
  }
  .blog-newsletter__form .cta {
    width: 100%;
  }
}
@media (max-width: 420px) {
  .category-hero__meta {
    gap: 1.25rem;
  }
  .category-stat strong {
    font-size: 1.4rem;
  }
  .related-category-list {
    grid-template-columns: 1fr;
  }
  .related-category-list a {
    min-height: 90px;
  }
  .blog-newsletter__container {
    padding: 1.5rem;
    border-radius: 20px;
  }
}
@keyframes categoryOrbPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}
@keyframes scrollCue {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(250%);
  }
  100% {
    transform: translateX(250%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-hero__orb {
    animation: none;
  }
  .category-card,
  .topic-card,
  .featured-article__image img,
  .code-window {
    transition: none;
  }
}

/*# sourceMappingURL=blog-category.css.map */
