/*
 * خدمات برتر — Liquid Glass
 * A dark, immersive interface based on the Bartar turquoise and silver identity.
 */

:root {
  --brand: #0a91b2;
  --brand-light: #35d4f5;
  --brand-bright: #73e7ff;
  --brand-dark: #045e74;
  --silver: #9ba6aa;
  --ink: #02080b;
  --ink-soft: #071216;
  --canvas: #030a0d;
  --canvas-elevated: #071419;
  --paper: rgba(11, 29, 35, 0.62);
  --text: #dce9ed;
  --heading: #f5fbfd;
  --muted: #8ca1a8;
  --line: rgba(172, 226, 238, 0.14);
  --line-strong: rgba(117, 226, 249, 0.28);
  --glass: rgba(10, 28, 34, 0.56);
  --glass-heavy: rgba(7, 22, 27, 0.79);
  --glass-soft: rgba(255, 255, 255, 0.055);
  --glass-highlight: rgba(255, 255, 255, 0.16);
  --glow: rgba(53, 212, 245, 0.24);
  --shadow-sm: 0 18px 42px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.42);
  --shadow-glow: 0 24px 70px rgba(6, 127, 156, 0.22);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 36px;
  --pointer-x: 18vw;
  --pointer-y: 18vh;
}

html {
  color-scheme: dark;
  scroll-padding-top: 100px;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% -8%, rgba(21, 179, 214, 0.18), transparent 34rem),
    radial-gradient(circle at 2% 36%, rgba(6, 127, 156, 0.15), transparent 31rem),
    linear-gradient(145deg, #020608 0%, #041014 48%, #02080b 100%);
  color: var(--text);
  font-size: 15px;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.38;
}

body::before {
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 23rem;
  height: 23rem;
  background: rgba(33, 204, 239, 0.22);
  transform: translate(-50%, -50%);
  transition: left 900ms cubic-bezier(0.2, 0.8, 0.2, 1), top 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body::after {
  right: -14rem;
  bottom: -12rem;
  background: rgba(6, 127, 156, 0.18);
}

::selection {
  background: rgba(53, 212, 245, 0.35);
  color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 4px;
}

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

.site-main {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  overflow: clip;
}

.site-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title {
  color: var(--heading);
}

.skip-link:focus {
  background: var(--glass-heavy);
  box-shadow: var(--shadow-glow);
  color: #fff;
}

/* Header — a floating liquid navigation rail */
.site-header {
  top: 12px;
  width: min(1380px, calc(100% - 30px));
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(5, 17, 21, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 55px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -1px;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
  opacity: 0.58;
}

.site-header.is-scrolled {
  border-color: rgba(117, 226, 249, 0.24);
  background: rgba(3, 13, 17, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 65px rgba(0, 0, 0, 0.38),
    0 0 45px rgba(6, 127, 156, 0.08);
}

.admin-bar .site-header {
  top: 44px;
}

.header-inner {
  min-height: 78px;
  gap: 24px;
  padding-inline: 14px;
}

.site-brand {
  gap: 11px;
}

.site-brand__mark,
.site-brand__custom {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border: 1px solid rgba(126, 225, 246, 0.22);
  border-radius: 16px 21px 16px 20px;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 #fff,
    0 11px 30px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(53, 212, 245, 0.1);
}

.site-brand:hover .site-brand__mark,
.site-brand:hover .site-brand__custom {
  border-color: rgba(115, 231, 255, 0.55);
  box-shadow: 0 14px 36px rgba(6, 127, 156, 0.28);
  transform: translateY(-2px) rotate(-1deg);
}

.site-brand__text strong {
  color: var(--heading);
  font-size: 16px;
  font-weight: 900;
}

.site-brand__text small {
  margin-top: 5px;
  color: var(--brand-bright);
  font-size: 8px;
  letter-spacing: 0.19em;
}

.main-navigation {
  min-width: 0;
  margin-inline: auto;
}

.primary-menu {
  gap: 3px;
}

.primary-menu a {
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 9px 10px;
  color: #afc0c5;
  font-size: 11.5px;
  font-weight: 720;
}

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

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  border-color: rgba(117, 226, 249, 0.16);
  background:
    linear-gradient(135deg, rgba(53, 212, 245, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-actions {
  flex: 0 0 auto;
}

.header-search,
.menu-toggle {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(137, 219, 237, 0.18);
  border-radius: 15px 18px 15px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  color: #c8dadd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.header-search:hover,
.menu-toggle:hover {
  border-color: rgba(115, 231, 255, 0.48);
  background: rgba(53, 212, 245, 0.14);
  box-shadow: 0 0 26px rgba(53, 212, 245, 0.14);
  color: #fff;
  transform: translateY(-2px);
}

.menu-toggle span {
  background: currentColor;
}

.header-cta {
  display: none !important;
}

/* Shared liquid controls */
.eyebrow,
.micro-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.eyebrow::before,
.micro-label::before,
.section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand-light), transparent);
  box-shadow: 0 0 12px var(--glow);
}

.button,
.wp-element-button,
button[type="submit"] {
  min-height: 48px;
  border: 1px solid rgba(115, 231, 255, 0.48);
  border-radius: 16px 20px 16px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #0ba3c6, #056b83);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 40px rgba(6, 127, 156, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  padding: 10px 21px;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  border-color: rgba(156, 241, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
    linear-gradient(135deg, #12b6dc, #067f9c);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 20px 48px rgba(6, 127, 156, 0.38),
    0 0 26px rgba(53, 212, 245, 0.16);
  color: #fff;
  transform: translateY(-3px);
}

.button--outline {
  border-color: rgba(158, 217, 230, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #d8e9ed;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.button--outline:hover {
  border-color: rgba(115, 231, 255, 0.38);
  background: rgba(53, 212, 245, 0.11);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  color: #fff;
}

.section {
  position: relative;
  padding-block: 92px;
}

.section--soft {
  border-block: 1px solid rgba(166, 227, 239, 0.08);
  background:
    radial-gradient(circle at 86% 12%, rgba(53, 212, 245, 0.09), transparent 24rem),
    rgba(255, 255, 255, 0.018);
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-top: 9px;
  color: var(--heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 920;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.section-heading p {
  max-width: 670px;
  color: var(--muted);
  font-size: 12px;
}

.section-link {
  color: var(--brand-bright);
  font-size: 11px;
  font-weight: 850;
}

.section-link:hover {
  color: #fff;
  text-shadow: 0 0 16px rgba(53, 212, 245, 0.5);
}

/* Home hero */
.home-hero {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid rgba(162, 226, 240, 0.08);
  background: transparent;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.home-hero::before {
  top: 5%;
  right: 56%;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(95, 223, 248, 0.14);
  background: radial-gradient(circle at 36% 32%, rgba(255, 255, 255, 0.14), rgba(53, 212, 245, 0.05) 42%, transparent 67%);
  animation: liquid-orbit 16s ease-in-out infinite alternate;
}

.home-hero::after {
  right: -7rem;
  bottom: 2rem;
  width: 17rem;
  height: 17rem;
  background: radial-gradient(circle, rgba(6, 127, 156, 0.2), transparent 68%);
  filter: blur(20px);
}

.hero-grid {
  min-height: 720px;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 76px;
  padding-block: 100px 86px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 19px;
  color: var(--heading);
  font-size: clamp(48px, 6.4vw, 79px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1.14;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
  margin-top: 6px;
  background: linear-gradient(100deg, #f8fdff 0%, #73e7ff 38%, #0aa0c2 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 28px rgba(53, 212, 245, 0.17));
}

.hero-copy > p {
  max-width: 635px;
  margin-top: 24px;
  color: #a4b7bc;
  font-size: 14.5px;
  line-height: 2.05;
}

.hero-actions {
  margin-top: 31px;
}

.hero-stats {
  gap: 15px;
  margin-top: 34px;
  border: 0;
  padding-top: 0;
}

.hero-stat {
  min-width: 110px;
  border: 1px solid rgba(156, 225, 239, 0.13);
  border-radius: 16px 21px 16px 21px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.065);
  padding: 12px 14px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  color: var(--heading);
  font-size: 18px;
}

.hero-stat small {
  color: var(--muted);
  font-size: 9px;
}

.hero-showcase {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  width: 100%;
  max-width: 650px;
  animation: floating-showcase 7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.hero-showcase::before,
.hero-showcase::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 45% 55% 62% 38% / 46% 37% 63% 54%;
}

.hero-showcase::before {
  inset: 4% -7% -5% 9%;
  border: 1px solid rgba(115, 231, 255, 0.13);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(10, 145, 178, 0.19), rgba(255, 255, 255, 0.025));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: rotate(-4deg) translateZ(-10px);
}

.hero-showcase::after {
  top: -30px;
  left: -24px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(115, 231, 255, 0.2);
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), rgba(53, 212, 245, 0.07) 45%, transparent 72%);
  box-shadow: inset 0 1px 16px rgba(255, 255, 255, 0.08);
  animation: liquid-blob 9s ease-in-out infinite alternate;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(143, 225, 242, 0.2);
  border-radius: 34px 48px 35px 45px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025) 46%, rgba(6, 127, 156, 0.06)),
    rgba(5, 20, 25, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    inset -1px -1px 0 rgba(0, 0, 0, 0.24),
    var(--shadow-lg),
    0 0 70px rgba(6, 127, 156, 0.12);
  padding: 10px;
  -webkit-backdrop-filter: blur(26px) saturate(150%);
  backdrop-filter: blur(26px) saturate(150%);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 260ms ease, border-color 260ms ease;
}

.hero-panel::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: -70%;
  left: -15%;
  width: 28%;
  height: 220%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(28deg);
  animation: glass-sheen 9s ease-in-out infinite;
}

.hero-art {
  aspect-ratio: 16 / 10.2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 27px 38px 28px 37px;
  background:
    radial-gradient(circle at 20% 15%, rgba(115, 231, 255, 0.3), transparent 27%),
    linear-gradient(145deg, #0b8dac, #043d4c 64%, #061a20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-art::after {
  background:
    linear-gradient(to top, rgba(1, 8, 11, 0.92), rgba(2, 13, 17, 0.14) 62%),
    linear-gradient(135deg, rgba(53, 212, 245, 0.11), transparent 50%);
}

.hero-art-content {
  padding: 30px;
}

.hero-art-content h2 {
  color: #fff;
  font-size: clamp(27px, 4vw, 42px);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.46);
}

.hero-art-content p,
.hero-art-content small {
  color: rgba(232, 248, 251, 0.75);
}

.content-pill,
.showcase-type {
  border: 1px solid rgba(190, 242, 252, 0.24);
  border-radius: 12px 16px 12px 16px;
  background: rgba(3, 17, 22, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #e9faff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-mini-grid {
  gap: 8px;
  margin-top: 8px;
}

.hero-mini {
  min-height: 62px;
  border: 1px solid rgba(145, 220, 235, 0.13);
  border-radius: 17px 22px 17px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)) !important;
  color: #bcd1d6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-mini:hover {
  border-color: rgba(115, 231, 255, 0.34);
  background: rgba(53, 212, 245, 0.1) !important;
  box-shadow: 0 13px 36px rgba(0, 0, 0, 0.22);
  color: #fff;
  transform: translateY(-3px);
}

.hero-floating-note {
  right: -17px;
  bottom: -24px;
  border: 1px solid rgba(153, 228, 243, 0.21);
  border-radius: 18px 25px 18px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(7, 24, 29, 0.73);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 21px 55px rgba(0, 0, 0, 0.35);
  color: var(--text);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  animation: floating-note 5s ease-in-out infinite;
}

.hero-floating-note > span:first-child {
  background: rgba(53, 212, 245, 0.14);
  color: var(--brand-bright);
}

.hero-floating-note strong {
  color: #fff;
}

.hero-floating-note small {
  color: var(--muted);
}

/* Full-width recent-upload slideshow */
.showcase-section {
  position: relative;
  border-bottom: 1px solid rgba(166, 227, 239, 0.08);
  background:
    radial-gradient(circle at 9% 18%, rgba(6, 127, 156, 0.1), transparent 27rem),
    rgba(255, 255, 255, 0.014);
  padding-block: 86px;
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 28px;
}

.showcase-heading > div:first-child {
  max-width: 760px;
}

.showcase-heading h2 {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: clamp(29px, 4vw, 44px);
  font-weight: 930;
  letter-spacing: -0.05em;
  line-height: 1.35;
}

.showcase-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.showcase-controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.showcase-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(156, 225, 239, 0.17);
  border-radius: 15px 19px 15px 19px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #c3d8dc;
  cursor: pointer;
  font-size: 18px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease,
    transform 180ms ease, box-shadow 180ms ease;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.showcase-controls button:hover {
  border-color: rgba(115, 231, 255, 0.5);
  background: rgba(53, 212, 245, 0.13);
  box-shadow: 0 0 28px rgba(53, 212, 245, 0.13);
  color: #fff;
  transform: translateY(-2px);
}

.showcase-count {
  display: inline-flex;
  min-width: 75px;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  direction: ltr;
  color: #657b81;
  font-size: 10px;
}

.showcase-count b {
  color: var(--brand-bright);
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(53, 212, 245, 0.34);
}

.showcase-count i {
  font-style: normal;
}

.showcase-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 226, 240, 0.16);
  border-radius: 31px 43px 32px 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02) 52%, rgba(6, 127, 156, 0.05)),
    rgba(5, 18, 22, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset -1px -1px 0 rgba(0, 0, 0, 0.22),
    var(--shadow-lg),
    0 0 80px rgba(6, 127, 156, 0.08);
  -webkit-backdrop-filter: blur(26px) saturate(145%);
  backdrop-filter: blur(26px) saturate(145%);
}

.showcase-slider::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  right: 8%;
  width: 38%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(115, 231, 255, 0.62), transparent);
}

.showcase-window {
  overflow: hidden;
  direction: ltr;
  touch-action: pan-y;
}

.showcase-track {
  display: flex;
  direction: ltr;
  will-change: transform;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.2, 0.78, 0.2, 1);
}

.showcase-slide {
  display: grid;
  width: 100%;
  min-width: 100%;
  flex: 0 0 100%;
  direction: rtl;
  grid-template-columns: 58% 42%;
  background: transparent;
}

.showcase-slide__visual {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  border-left: 1px solid rgba(158, 226, 240, 0.11);
  background:
    radial-gradient(circle at 25% 18%, rgba(115, 231, 255, 0.28), transparent 30%),
    linear-gradient(145deg, #0a8aaa, #043743 72%);
  background-position: center;
  background-size: cover;
  color: white;
}

.showcase-slide__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2, 9, 12, 0.66), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 48%);
}

.showcase-slide--rose .showcase-slide__visual {
  background: linear-gradient(145deg, #a54f73, #341d35 72%);
}

.showcase-slide--purple .showcase-slide__visual {
  background: linear-gradient(145deg, #695c9c, #28223e 72%);
}

.showcase-slide--teal .showcase-slide__visual {
  background: linear-gradient(145deg, #238f82, #123e3b 72%);
}

.showcase-slide--slate .showcase-slide__visual {
  background: linear-gradient(145deg, #4c6670, #1a2d34 72%);
}

.showcase-slide--gold .showcase-slide__visual {
  background: linear-gradient(145deg, #9e7733, #3b2d19 72%);
}

.showcase-letter {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 950;
  text-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.showcase-type {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 22px;
  font-size: 9px;
  font-weight: 850;
  padding: 6px 11px;
}

.showcase-slide__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 212, 245, 0.08), transparent 18rem),
    rgba(4, 17, 21, 0.36);
  padding: clamp(34px, 5vw, 68px);
}

.showcase-slide__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: var(--brand-bright);
  font-size: 9.5px;
  font-weight: 850;
}

.showcase-slide__topline time {
  flex: 0 0 auto;
  color: #71878d;
  font-weight: 550;
}

.showcase-slide h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 940;
  letter-spacing: -0.055em;
  line-height: 1.29;
}

.showcase-slide__content > p {
  margin: 14px 0 0;
  color: #9db1b6;
  font-size: 13px;
  line-height: 1.95;
}

.showcase-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.showcase-facts span,
.meta-chip {
  border: 1px solid rgba(153, 222, 236, 0.13);
  border-radius: 11px 15px 11px 15px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: #a9bec3;
  font-size: 9px;
  padding: 6px 10px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.showcase-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  margin-top: 27px;
  color: var(--brand-bright);
  font-size: 11px;
  font-weight: 900;
}

.showcase-link span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(115, 231, 255, 0.2);
  border-radius: 12px 15px 12px 15px;
  background: rgba(53, 212, 245, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.showcase-link:hover {
  gap: 15px;
  color: #fff;
  text-shadow: 0 0 18px rgba(53, 212, 245, 0.42);
}

.showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid rgba(158, 226, 240, 0.1);
  background: rgba(255, 255, 255, 0.018);
  padding: 17px;
}

.showcase-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 99px;
  background: #40545a;
  cursor: pointer;
  padding: 0;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.showcase-dots button[aria-selected="true"] {
  width: 29px;
  background: var(--brand-light);
  box-shadow: 0 0 17px rgba(53, 212, 245, 0.48);
}

.showcase-slide--empty {
  display: block;
}

.showcase-empty {
  display: grid;
  min-height: 350px;
  place-items: center;
  align-content: center;
  padding: 40px;
  text-align: center;
}

.showcase-empty > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(115, 231, 255, 0.19);
  border-radius: 18px 23px 18px 22px;
  background: rgba(53, 212, 245, 0.09);
  color: var(--brand-bright);
  font-size: 25px;
}

.showcase-empty h3 {
  margin-top: 16px;
  font-size: 25px;
}

.showcase-empty p {
  max-width: 550px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* Content and service cards */
.content-grid {
  gap: 20px;
}

.content-card {
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 220, 235, 0.14);
  border-radius: 24px 31px 24px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 52%, rgba(6, 127, 156, 0.04)),
    rgba(7, 23, 28, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    var(--shadow-sm);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  backdrop-filter: blur(20px) saturate(135%);
  transform: perspective(900px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
  transform-style: preserve-3d;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.content-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 42%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.content-card:hover {
  border-color: rgba(115, 231, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 28px 72px rgba(0, 0, 0, 0.36),
    0 0 42px rgba(6, 127, 156, 0.11);
  transform: perspective(900px) translateY(-9px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
}

.card-art {
  aspect-ratio: 16 / 10.2;
  border-bottom: 1px solid rgba(158, 226, 240, 0.1);
  background: linear-gradient(145deg, #0a8aaa, #043743 72%);
}

.card-art::after {
  background:
    linear-gradient(to top, rgba(2, 10, 13, 0.55), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 50%);
}

.card-art__arrow {
  border: 1px solid rgba(196, 241, 250, 0.2);
  background: rgba(3, 17, 22, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.content-card__body {
  padding: 21px;
  transform: translateZ(12px);
}

.content-card__eyebrow {
  color: var(--brand-bright);
  font-size: 9.5px;
}

.content-card h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
}

.content-card__excerpt {
  color: #8fa4aa;
  font-size: 11px;
}

.content-card__meta {
  border-top-color: rgba(158, 226, 240, 0.09);
  color: #6f858b;
}

.service-grid {
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 220, 235, 0.14);
  border-radius: 24px 32px 24px 31px;
  background:
    radial-gradient(circle at 100% 0%, rgba(53, 212, 245, 0.09), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(7, 23, 28, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    var(--shadow-sm);
  padding: 26px;
  -webkit-backdrop-filter: blur(21px) saturate(135%);
  backdrop-filter: blur(21px) saturate(135%);
}

.service-card::after {
  display: block;
  right: auto;
  top: -35%;
  left: -30%;
  width: 55%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  transform: rotate(24deg);
  transition: left 600ms ease;
}

.service-card:hover::after {
  left: 110%;
}

.service-card:hover {
  border-color: rgba(115, 231, 255, 0.31);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 28px 68px rgba(0, 0, 0, 0.34),
    0 0 38px rgba(6, 127, 156, 0.09);
  transform: translateY(-8px);
}

.service-icon {
  width: 47px;
  height: 47px;
  border: 1px solid rgba(115, 231, 255, 0.18);
  border-radius: 16px 21px 16px 20px;
  background:
    linear-gradient(135deg, rgba(53, 212, 245, 0.15), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 12px 28px rgba(0, 0, 0, 0.2);
  color: var(--brand-bright);
}

.service-card h3 {
  color: #fff;
  font-size: 17px;
}

.service-card p {
  color: #879da3;
  font-size: 10.5px;
}

.home-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(151, 220, 235, 0.17);
  border-radius: 31px 43px 31px 42px;
  background:
    radial-gradient(circle at 86% 20%, rgba(53, 212, 245, 0.17), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 29, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    var(--shadow-lg);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.home-cta::after {
  width: 250px;
  height: 250px;
  background: rgba(53, 212, 245, 0.1);
  filter: blur(30px);
}

.home-cta h2 {
  color: #fff;
}

.home-cta p {
  color: #99adb2;
}

/* Archives and internal pages */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(158, 226, 240, 0.09);
  background:
    radial-gradient(circle at 82% 10%, rgba(53, 212, 245, 0.16), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 50%);
  padding-block: 94px 76px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -35%;
  right: 8%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(115, 231, 255, 0.12);
  border-radius: 40% 60% 57% 43% / 51% 38% 62% 49%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(53, 212, 245, 0.025));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  animation: liquid-blob 12s ease-in-out infinite alternate;
}

.page-hero::after {
  width: 350px;
  height: 350px;
  background: rgba(6, 127, 156, 0.1);
  filter: blur(40px);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 940;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 720px;
  color: #91a6ac;
  font-size: 13px;
}

.archive-tools {
  border: 1px solid rgba(151, 220, 235, 0.14);
  border-radius: 20px 27px 20px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(6, 22, 27, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    var(--shadow-sm);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.archive-search input,
.bartar-form input,
.bartar-form textarea,
.bartar-form select,
.search-form input[type="search"] {
  border: 1px solid rgba(151, 220, 235, 0.13);
  border-radius: 14px 18px 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  color: #e5f2f5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.archive-search input::placeholder,
.bartar-form input::placeholder,
.bartar-form textarea::placeholder,
.search-form input[type="search"]::placeholder {
  color: #667d83;
}

.archive-search input:focus,
.bartar-form input:focus,
.bartar-form textarea:focus,
.bartar-form select:focus,
.search-form input[type="search"]:focus {
  border-color: rgba(115, 231, 255, 0.46);
  background: rgba(53, 212, 245, 0.055);
  box-shadow: 0 0 0 4px rgba(53, 212, 245, 0.07);
  outline: none;
}

.archive-count {
  border: 1px solid rgba(115, 231, 255, 0.12);
  border-radius: 12px 16px 12px 16px;
  background: rgba(53, 212, 245, 0.075);
  color: #b9d9df;
}

.navigation.pagination .page-numbers {
  border-color: rgba(151, 220, 235, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #a9bdc2;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
  border-color: rgba(115, 231, 255, 0.4);
  background: rgba(53, 212, 245, 0.12);
  color: #fff;
}

.empty-content {
  border: 1px dashed rgba(151, 220, 235, 0.2);
  border-radius: 22px 30px 22px 29px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
}

.empty-content strong {
  color: #e8f5f8;
}

.entry-shell {
  padding-block: 76px;
}

.entry-shell > *,
.entry-content {
  color: #b3c4c8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content strong {
  color: #fff;
}

.entry-content a {
  color: var(--brand-bright);
}

.entry-content blockquote {
  border-color: var(--brand-light);
  background: rgba(53, 212, 245, 0.055);
  color: #d8e7ea;
}

.single-top {
  position: relative;
  background: transparent;
  padding-block: 88px 82px;
}

.single-grid {
  gap: 66px;
}

.single-visual {
  border: 1px solid rgba(151, 220, 235, 0.16);
  border-radius: 31px 44px 31px 43px;
  background-color: #08242c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--shadow-lg),
    0 0 70px rgba(6, 127, 156, 0.11);
}

.single-visual::after {
  background: linear-gradient(to top, rgba(2, 9, 12, 0.58), transparent 57%);
}

.single-copy {
  position: relative;
  border: 1px solid rgba(151, 220, 235, 0.13);
  border-radius: 27px 38px 27px 37px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(6, 22, 27, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    var(--shadow-sm);
  padding: clamp(27px, 4vw, 48px);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.single-copy h1 {
  color: #fff;
  font-weight: 940;
}

.single-copy__summary {
  color: #9dafb4;
}

.single-details {
  border-block: 1px solid rgba(158, 226, 240, 0.09);
  background:
    radial-gradient(circle at 12% 15%, rgba(6, 127, 156, 0.11), transparent 22rem),
    rgba(255, 255, 255, 0.016);
}

.single-details h2 {
  color: #fff;
}

.single-details p {
  color: #93a8ad;
}

.detail-item {
  border: 1px solid rgba(151, 220, 235, 0.13);
  border-radius: 17px 22px 17px 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.017));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.detail-item small {
  color: #71868c;
}

.detail-item strong {
  color: #e8f4f7;
}

.video-section {
  background: transparent;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(151, 220, 235, 0.16);
  border-radius: 29px 40px 29px 39px;
  background: #020609;
  box-shadow: var(--shadow-lg);
}

.contact-card,
.bartar-form {
  border: 1px solid rgba(151, 220, 235, 0.14);
  border-radius: 25px 34px 25px 33px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(6, 22, 27, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    var(--shadow-sm);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.contact-card h3,
.bartar-form label {
  color: #edf9fb;
}

.contact-card p,
.bartar-form p {
  color: #8fa3a9;
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: 1px solid rgba(158, 226, 240, 0.1);
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 212, 245, 0.1), transparent 25rem),
    linear-gradient(155deg, #051217, #02080b 72%);
  color: #a8bbc0;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 8%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(115, 231, 255, 0.09);
  border-radius: 44% 56% 58% 42% / 53% 42% 58% 47%;
  background: rgba(255, 255, 255, 0.018);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.footer-grid {
  position: relative;
  z-index: 1;
}

.site-footer .site-brand__text strong,
.site-footer h3 {
  color: #fff;
}

.site-footer .site-brand__mark,
.site-footer .site-brand__custom {
  border-color: rgba(115, 231, 255, 0.17);
  background-color: rgba(255, 255, 255, 0.92);
}

.footer-brand p,
.footer-menu,
.footer-contact {
  color: #7f959b;
}

.footer-menu a:hover,
.footer-contact a:hover {
  color: var(--brand-bright);
}

.footer-bottom {
  border-top-color: rgba(158, 226, 240, 0.08);
  background: rgba(0, 0, 0, 0.16);
  color: #62787e;
}

.social-links a {
  border: 1px solid rgba(151, 220, 235, 0.13);
  border-radius: 13px 17px 13px 17px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  color: #95aab0;
}

.social-links a:hover {
  border-color: rgba(115, 231, 255, 0.34);
  background: rgba(53, 212, 245, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* Reveal and liquid motion */
.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.content-card.reveal {
  transform: perspective(900px) translateY(22px) scale(0.985)
    rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y));
}

.content-card.reveal.is-visible {
  transform: perspective(900px) translateY(0) scale(1) rotateX(var(--card-tilt-x))
    rotateY(var(--card-tilt-y));
}

.content-card.reveal.is-visible:hover {
  transform: perspective(900px) translateY(-9px) rotateX(var(--card-tilt-x))
    rotateY(var(--card-tilt-y));
}

.service-card.reveal.is-visible:hover {
  transform: translateY(-8px);
}

@keyframes floating-showcase {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes floating-note {
  0%,
  100% {
    transform: translate3d(0, 0, 30px) rotate(0deg);
  }
  50% {
    transform: translate3d(-4px, -9px, 30px) rotate(-1deg);
  }
}

@keyframes liquid-blob {
  0% {
    border-radius: 45% 55% 62% 38% / 46% 37% 63% 54%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    border-radius: 58% 42% 38% 62% / 37% 60% 40% 63%;
    transform: translate3d(8px, -10px, 0) rotate(8deg);
  }
}

@keyframes liquid-orbit {
  0% {
    border-radius: 42% 58% 61% 39% / 55% 39% 61% 45%;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    border-radius: 61% 39% 43% 57% / 40% 57% 43% 60%;
    transform: translate3d(-45px, 25px, 0) rotate(16deg);
  }
}

@keyframes glass-sheen {
  0%,
  62% {
    left: -40%;
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  90%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1120px) {
  .site-header {
    top: 9px;
  }

  .main-navigation {
    top: 88px;
    right: 15px;
    left: 15px;
    overflow: hidden;
    border: 1px solid rgba(151, 220, 235, 0.16);
    border-radius: 23px 30px 23px 29px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02)),
      rgba(3, 15, 19, 0.92);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 28px 70px rgba(0, 0, 0, 0.48);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    backdrop-filter: blur(28px) saturate(140%);
  }

  .admin-bar .main-navigation {
    top: 120px;
  }

  .primary-menu {
    gap: 7px;
  }

  .primary-menu a {
    border-color: rgba(151, 220, 235, 0.08);
    background: rgba(255, 255, 255, 0.025);
    padding: 12px 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.94fr;
    gap: 46px;
  }

  .showcase-slide {
    grid-template-columns: 53% 47%;
  }
}

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

  .hero-grid {
    padding-top: 82px;
  }

  .hero-copy {
    text-align: right;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-stats {
    justify-content: flex-start;
  }

  .hero-showcase {
    max-width: 680px;
    margin-inline: auto;
  }

  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .showcase-slide__visual {
    min-height: 370px;
    border-left: 0;
    border-bottom: 1px solid rgba(158, 226, 240, 0.1);
  }

  .showcase-slide__content {
    min-height: 340px;
  }

  .single-copy {
    margin-top: -22px;
  }
}

@media (max-width: 620px) {
  .container,
  .entry-shell,
  .entry-shell--wide {
    width: min(100% - 22px, 1280px);
  }

  .site-header {
    top: 7px;
    width: calc(100% - 14px);
    border-radius: 19px 23px 19px 22px;
  }

  .admin-bar .site-header {
    top: 53px;
  }

  .header-inner {
    min-height: 67px;
    padding-inline: 8px;
  }

  .site-brand__mark,
  .site-brand__custom {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 14px 18px 14px 17px;
  }

  .site-brand__text strong {
    font-size: 14px;
  }

  .site-brand__text small {
    font-size: 7px;
  }

  .main-navigation {
    top: 75px;
    right: 7px;
    left: 7px;
  }

  .admin-bar .main-navigation {
    top: 121px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 72px 73px;
  }

  .hero-copy h1 {
    font-size: 41px;
    letter-spacing: -0.06em;
  }

  .hero-copy > p {
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-stat {
    min-width: 0;
    padding: 10px 8px;
  }

  .hero-panel {
    border-radius: 24px 31px 24px 30px;
    padding: 7px;
  }

  .hero-art {
    border-radius: 20px 26px 20px 25px;
  }

  .hero-art-content {
    padding: 20px;
  }

  .hero-floating-note {
    right: 4px;
    bottom: -35px;
  }

  .showcase-section {
    padding-block: 60px;
  }

  .showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .showcase-controls {
    width: 100%;
  }

  .showcase-count {
    margin-left: auto;
  }

  .showcase-slider {
    border-radius: 23px 30px 23px 29px;
  }

  .showcase-slide__visual {
    min-height: 260px;
  }

  .showcase-slide__content {
    min-height: 310px;
    padding: 25px 20px 29px;
  }

  .showcase-slide h3 {
    font-size: 29px;
  }

  .showcase-slide__content > p {
    font-size: 11.5px;
  }

  .showcase-slide__topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .showcase-dots {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .section {
    padding-block: 66px;
  }

  .page-hero {
    padding-block: 75px 54px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .content-card,
  .service-card,
  .home-cta,
  .archive-tools,
  .contact-card,
  .bartar-form,
  .single-copy,
  .single-visual,
  .video-frame {
    border-radius: 20px 26px 20px 25px;
  }

  .footer-grid {
    gap: 31px;
  }
}

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

  .hero-panel,
  .content-card,
  .content-card:hover {
    transform: none !important;
  }
}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header,
  .hero-panel,
  .showcase-slider,
  .content-card,
  .service-card,
  .home-cta,
  .archive-tools,
  .single-copy,
  .contact-card,
  .bartar-form,
  .main-navigation {
    background-color: #07191f;
  }
}

/* ========================================================================
   Liquid Glass Wheel — V4 visual system
   The final layer deliberately unifies every public surface with the same
   dark glass, turquoise edge light and restrained silver ambience.
   ======================================================================== */

:root {
  --silver: #b8c2c7;
  --silver-bright: #eef3f5;
  --silver-muted: #88959b;
  --canvas: #020608;
  --canvas-elevated: #0a1115;
  --paper: rgba(18, 27, 32, 0.64);
  --text: #ced8dc;
  --heading: #f6f9fa;
  --muted: #87959b;
  --line: rgba(212, 225, 231, 0.13);
  --line-strong: rgba(174, 228, 240, 0.3);
  --glass: rgba(13, 23, 28, 0.61);
  --glass-heavy: rgba(7, 14, 18, 0.84);
  --glass-silver: rgba(205, 217, 223, 0.075);
  --glass-highlight: rgba(255, 255, 255, 0.19);
  --shadow-sm: 0 18px 48px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 38px 110px rgba(0, 0, 0, 0.54);
}

body {
  background:
    radial-gradient(circle at 88% -8%, rgba(42, 198, 231, 0.16), transparent 31rem),
    radial-gradient(circle at 13% 22%, rgba(199, 211, 217, 0.085), transparent 29rem),
    radial-gradient(circle at 70% 82%, rgba(137, 151, 158, 0.055), transparent 34rem),
    linear-gradient(148deg, #010406 0%, #071015 48%, #020608 100%);
  color: var(--text);
}

body::before {
  background: rgba(38, 200, 233, 0.19);
  opacity: 0.3;
}

body::after {
  right: -10rem;
  bottom: -13rem;
  width: 40rem;
  height: 40rem;
  background: rgba(204, 215, 220, 0.105);
  opacity: 0.34;
}

.site-main::before {
  opacity: 0.8;
  background-image:
    linear-gradient(rgba(224, 234, 238, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 234, 238, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
}

.site-main::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 16%, rgba(233, 240, 243, 0.025) 36%, transparent 51%),
    linear-gradient(300deg, transparent 58%, rgba(190, 203, 209, 0.02) 70%, transparent 82%);
}

body,
input,
textarea,
select,
button {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
li,
dd,
figcaption,
.entry-content,
.content-card__excerpt,
.showcase-slide__content > p {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title,
.single-copy h1,
.showcase-slide h3,
.content-card h3,
.service-card h3 {
  background: linear-gradient(112deg, #ffffff 0%, #e2e9ec 46%, #aebbc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.site-header {
  border-color: rgba(214, 228, 234, 0.16);
  background:
    radial-gradient(circle at 16% -25%, rgba(233, 240, 243, 0.13), transparent 18rem),
    linear-gradient(132deg, rgba(224, 233, 237, 0.105), rgba(255, 255, 255, 0.018) 44%, rgba(10, 145, 178, 0.06)),
    rgba(5, 12, 16, 0.71);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 24px 70px rgba(0, 0, 0, 0.36),
    0 0 55px rgba(173, 190, 198, 0.025);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  backdrop-filter: blur(30px) saturate(150%);
}

.site-header.is-scrolled {
  border-color: rgba(203, 221, 228, 0.22);
  background:
    linear-gradient(135deg, rgba(226, 235, 239, 0.09), transparent 46%),
    rgba(3, 9, 12, 0.88);
}

.primary-menu a,
.header-search,
.menu-toggle,
.social-links a,
.navigation.pagination .page-numbers {
  border-color: rgba(203, 218, 225, 0.12);
  background:
    linear-gradient(135deg, rgba(226, 234, 238, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(9, 18, 23, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.095);
  color: #c4d0d5;
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  backdrop-filter: blur(16px) saturate(130%);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.header-search:hover,
.menu-toggle:hover,
.social-links a:hover,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
  border-color: rgba(108, 221, 244, 0.4);
  background:
    linear-gradient(135deg, rgba(207, 225, 232, 0.13), rgba(53, 212, 245, 0.055)),
    rgba(7, 20, 25, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.17),
    0 12px 30px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(53, 212, 245, 0.08);
  color: #fff;
}

.button,
.wp-element-button,
button[type="submit"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(148, 231, 248, 0.38);
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.28), transparent 48%),
    linear-gradient(135deg, rgba(21, 177, 210, 0.76), rgba(5, 91, 112, 0.68)),
    rgba(8, 35, 43, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.31),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 17px 42px rgba(0, 0, 0, 0.31),
    0 0 30px rgba(16, 170, 202, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
}

.button::after,
.wp-element-button::after,
button[type="submit"]::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -90%;
  left: -35%;
  width: 34%;
  height: 280%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(24deg);
  transition: left 600ms ease;
}

.button:hover::after,
.wp-element-button:hover::after,
button[type="submit"]:hover::after {
  left: 125%;
}

.button--outline {
  border-color: rgba(205, 219, 226, 0.2);
  background:
    linear-gradient(135deg, rgba(224, 234, 238, 0.115), rgba(255, 255, 255, 0.025)),
    rgba(9, 18, 23, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.24);
}

/* Homepage: the second visual panel is now an editable wheel slideshow. */
.home-hero {
  border-bottom-color: rgba(207, 222, 228, 0.08);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 213, 219, 0.065), transparent 25rem),
    radial-gradient(circle at 83% 18%, rgba(22, 177, 209, 0.08), transparent 28rem),
    transparent;
}

.hero-grid {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 70px;
  padding-block: 108px 94px;
}

.hero-copy h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.hero-copy h1 span {
  background: linear-gradient(102deg, #f5f8fa 0%, #99eafd 42%, #0a9fc1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy > p {
  color: #aebcc1;
}

.hero-stat {
  border-color: rgba(205, 220, 227, 0.13);
  background:
    linear-gradient(135deg, rgba(222, 231, 235, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(8, 17, 22, 0.5);
}

.hero-showcase {
  max-width: 700px;
}

.hero-showcase::before {
  inset: 1% -6% -4% 8%;
  border-color: rgba(205, 221, 227, 0.12);
  background:
    radial-gradient(circle at 22% 14%, rgba(229, 237, 240, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(178, 193, 201, 0.09), rgba(10, 145, 178, 0.09));
}

.hero-showcase::after {
  border-color: rgba(209, 223, 229, 0.19);
  background: radial-gradient(circle at 35% 28%, rgba(244, 248, 250, 0.2), rgba(175, 191, 198, 0.07) 47%, transparent 73%);
}

.hero-panel {
  overflow: visible;
  border-color: rgba(210, 224, 230, 0.18);
  border-radius: 38px 52px 39px 51px;
  background:
    radial-gradient(circle at 18% -12%, rgba(234, 241, 244, 0.15), transparent 23rem),
    linear-gradient(135deg, rgba(213, 224, 229, 0.105), rgba(255, 255, 255, 0.02) 48%, rgba(10, 145, 178, 0.055)),
    rgba(5, 13, 17, 0.71);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 42px 115px rgba(0, 0, 0, 0.54),
    0 0 70px rgba(182, 197, 204, 0.04);
  padding: 12px;
  -webkit-backdrop-filter: blur(32px) saturate(150%);
  backdrop-filter: blur(32px) saturate(150%);
}

.liquid-wheel {
  --wheel-card-width: min(340px, 73vw);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(212, 226, 232, 0.13);
  border-radius: 29px 41px 30px 40px;
  background:
    radial-gradient(circle at 82% 5%, rgba(42, 204, 237, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(217, 228, 233, 0.075), rgba(255, 255, 255, 0.012) 52%),
    rgba(3, 9, 12, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -1px 0 rgba(255, 255, 255, 0.025),
    0 24px 65px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(26px) saturate(155%);
  backdrop-filter: blur(26px) saturate(155%);
}

.liquid-wheel::before,
.liquid-wheel::after {
  content: "";
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.liquid-wheel::before {
  top: 0;
  right: 13%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 242, 245, 0.62), transparent);
}

.liquid-wheel::after {
  top: -7rem;
  left: -6rem;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgba(218, 230, 235, 0.08);
  border-radius: 50%;
  background: rgba(203, 215, 221, 0.025);
  filter: blur(1px);
}

.liquid-wheel__header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(205, 220, 226, 0.09);
  background: linear-gradient(90deg, rgba(222, 231, 235, 0.055), transparent);
  padding: 18px 20px 15px;
}

.liquid-wheel__header > div:first-child {
  display: grid;
  gap: 5px;
}

.liquid-wheel__eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #95e8fa;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.liquid-wheel__eyebrow i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, #60daf3, transparent);
  box-shadow: 0 0 10px rgba(53, 212, 245, 0.35);
}

.liquid-wheel__header strong {
  color: var(--silver-bright);
  font-size: 13px;
  font-weight: 900;
}

.liquid-wheel__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.liquid-wheel__controls button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(207, 223, 230, 0.15);
  border-radius: 12px 16px 12px 15px;
  background:
    linear-gradient(135deg, rgba(226, 235, 239, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(9, 18, 22, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11);
  color: #dbe5e8;
  cursor: pointer;
  transition: 180ms ease;
}

.liquid-wheel__controls button:hover:not(:disabled) {
  border-color: rgba(102, 220, 245, 0.42);
  background: rgba(34, 171, 201, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.liquid-wheel__controls button:disabled {
  cursor: default;
  opacity: 0.3;
}

.liquid-wheel__count {
  display: inline-flex;
  min-width: 58px;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  direction: ltr;
  color: #66767d;
  font-size: 8px;
}

.liquid-wheel__count b {
  color: #9beeff;
  font-size: 15px;
  text-shadow: 0 0 14px rgba(53, 212, 245, 0.35);
}

.liquid-wheel__count i {
  font-style: normal;
}

.liquid-wheel__viewport {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  overflow-y: hidden;
  direction: ltr;
  cursor: grab;
  padding: 18px max(18px, calc(50% - (var(--wheel-card-width) / 2))) 25px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.liquid-wheel__viewport::-webkit-scrollbar {
  display: none;
}

.liquid-wheel__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.liquid-wheel__track {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 13px;
  perspective: 1200px;
}

.liquid-wheel__card {
  position: relative;
  width: var(--wheel-card-width);
  flex: 0 0 var(--wheel-card-width);
  overflow: hidden;
  direction: rtl;
  scroll-snap-align: center;
  border: 1px solid rgba(206, 221, 227, 0.12);
  border-radius: 22px 30px 22px 29px;
  background:
    linear-gradient(140deg, rgba(220, 230, 234, 0.085), rgba(255, 255, 255, 0.014)),
    rgba(8, 17, 21, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0.48;
  transform: perspective(900px) rotateY(14deg) scale(0.89) translateZ(-24px);
  transform-origin: center;
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.78, 0.2, 1), border-color 320ms ease, box-shadow 320ms ease;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.liquid-wheel__card.is-before {
  transform: perspective(900px) rotateY(-15deg) scale(0.89) translateZ(-24px);
}

.liquid-wheel__card.is-after {
  transform: perspective(900px) rotateY(15deg) scale(0.89) translateZ(-24px);
}

.liquid-wheel__card.is-active {
  z-index: 2;
  border-color: rgba(132, 226, 246, 0.31);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 25px 65px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(42, 198, 231, 0.09);
  opacity: 1;
  transform: perspective(900px) rotateY(0) scale(1) translateZ(0);
}

.liquid-wheel__card > a {
  display: grid;
  height: 100%;
  grid-template-rows: 168px 1fr;
  color: inherit;
}

.liquid-wheel__media {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(210, 224, 230, 0.1);
  background:
    radial-gradient(circle at 30% 18%, rgba(234, 241, 244, 0.25), transparent 28%),
    radial-gradient(circle at 74% 68%, rgba(48, 201, 233, 0.3), transparent 38%),
    linear-gradient(145deg, #26353c, #09252d 65%, #031116);
  background-position: center;
  background-size: cover;
}

.liquid-wheel__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(2, 7, 10, 0.58), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 42%);
}

.liquid-wheel__orb {
  position: absolute;
  z-index: 1;
  left: 13%;
  bottom: 15%;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(231, 239, 242, 0.16);
  border-radius: 45% 55% 58% 42% / 54% 42% 58% 46%;
  background: rgba(210, 222, 228, 0.07);
  box-shadow: inset 7px 8px 20px rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
  animation: liquid-blob 7s ease-in-out infinite alternate;
}

.liquid-wheel__badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  border: 1px solid rgba(218, 231, 236, 0.2);
  border-radius: 10px 14px 10px 13px;
  background:
    linear-gradient(135deg, rgba(225, 235, 239, 0.15), rgba(255, 255, 255, 0.02)),
    rgba(4, 13, 17, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
  color: #edf5f7;
  font-size: 8px;
  font-weight: 850;
  padding: 5px 9px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.liquid-wheel__letter {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #fff, #9eb0b8 62%, #5fcfe7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 72px;
  font-weight: 950;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.liquid-wheel__body {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  padding: 17px 18px 18px;
}

.liquid-wheel__body > strong {
  overflow: hidden;
  color: #f6fafb;
  font-size: 16px;
  font-weight: 930;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.liquid-wheel__body > small {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  margin-top: 5px;
  color: #93a2a8;
  font-size: 10px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.liquid-wheel__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: #8ee8fb;
  font-size: 9px;
  font-weight: 850;
}

.liquid-wheel__link b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(128, 226, 247, 0.18);
  border-radius: 10px 13px 10px 12px;
  background: rgba(33, 172, 202, 0.09);
}

.liquid-wheel__footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(205, 220, 226, 0.08);
  background: rgba(221, 231, 235, 0.025);
  padding: 12px 19px;
}

.liquid-wheel__footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #718087;
  font-size: 8px;
}

.liquid-wheel__footer > span:first-child i {
  color: #8ee9fc;
  font-style: normal;
}

.liquid-wheel__progress {
  width: 82px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(211, 225, 231, 0.1);
}

.liquid-wheel__progress i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #bac7cc, #43d5f3);
  box-shadow: 0 0 10px rgba(53, 212, 245, 0.36);
  transition: width 320ms ease;
}

.hero-floating-note {
  right: -18px;
  bottom: -27px;
  border-color: rgba(211, 226, 232, 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 243, 246, 0.16), transparent 8rem),
    linear-gradient(135deg, rgba(219, 230, 234, 0.11), rgba(255, 255, 255, 0.018)),
    rgba(6, 15, 19, 0.8);
}

/* One material language across cards, forms, sliders and content surfaces. */
.showcase-slider,
.content-card,
.service-card,
.home-cta,
.archive-tools,
.single-copy,
.single-visual,
.detail-item,
.video-frame,
.contact-card,
.bartar-form,
.entry-content,
.wp-block-table,
.wp-block-image,
.wp-block-quote,
pre,
table {
  border-color: rgba(207, 222, 228, 0.14);
  background:
    radial-gradient(circle at 14% -10%, rgba(232, 240, 243, 0.095), transparent 16rem),
    linear-gradient(135deg, rgba(211, 224, 229, 0.075), rgba(255, 255, 255, 0.014) 52%, rgba(10, 145, 178, 0.035)),
    rgba(6, 14, 18, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02),
    0 22px 58px rgba(0, 0, 0, 0.29);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.content-card:hover,
.service-card:hover {
  border-color: rgba(128, 225, 246, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 32px 80px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(35, 184, 215, 0.08);
}

.card-art,
.single-visual,
.showcase-slide__visual {
  background-color: #101a1f;
}

.showcase-section,
.section--soft,
.single-details,
.page-hero {
  border-color: rgba(204, 220, 227, 0.08);
  background:
    radial-gradient(circle at 86% 8%, rgba(30, 184, 216, 0.07), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(202, 214, 220, 0.045), transparent 22rem),
    rgba(225, 233, 237, 0.012);
}

.page-hero .container {
  position: relative;
  border: 1px solid rgba(207, 222, 228, 0.13);
  border-radius: 28px 39px 28px 38px;
  background:
    linear-gradient(135deg, rgba(222, 232, 236, 0.07), rgba(255, 255, 255, 0.012)),
    rgba(7, 15, 19, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 24px 65px rgba(0, 0, 0, 0.24);
  padding: clamp(25px, 5vw, 54px);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
}

.entry-content {
  border: 1px solid rgba(207, 222, 228, 0.13);
  border-radius: 25px 35px 25px 34px;
  padding: clamp(24px, 5vw, 52px);
}

.entry-content img,
.wp-block-image img {
  border: 1px solid rgba(213, 227, 233, 0.13);
  border-radius: 18px 25px 18px 24px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.entry-content code,
.entry-content kbd,
.entry-content pre {
  border-color: rgba(205, 221, 227, 0.13);
  background: rgba(1, 6, 8, 0.64);
  color: #b8ecf6;
}

.archive-search input,
.bartar-form input,
.bartar-form textarea,
.bartar-form select,
.search-form input[type="search"] {
  border-color: rgba(207, 222, 228, 0.14);
  background:
    linear-gradient(135deg, rgba(219, 230, 234, 0.055), rgba(255, 255, 255, 0.01)),
    rgba(3, 10, 13, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 24px rgba(0, 0, 0, 0.16);
  color: #edf4f6;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.archive-search input:focus,
.bartar-form input:focus,
.bartar-form textarea:focus,
.bartar-form select:focus,
.search-form input[type="search"]:focus {
  border-color: rgba(116, 225, 247, 0.43);
  background: rgba(17, 39, 47, 0.7);
  box-shadow:
    0 0 0 4px rgba(53, 212, 245, 0.055),
    0 15px 36px rgba(0, 0, 0, 0.2);
}

.site-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(31, 184, 216, 0.075), transparent 26rem),
    radial-gradient(circle at 10% 90%, rgba(207, 218, 223, 0.045), transparent 24rem),
    linear-gradient(155deg, #071015, #010406 72%);
}

.footer-grid {
  margin-block: 58px 35px;
  border: 1px solid rgba(205, 220, 227, 0.12);
  border-radius: 28px 39px 28px 38px;
  background:
    linear-gradient(135deg, rgba(219, 229, 234, 0.065), rgba(255, 255, 255, 0.012)),
    rgba(6, 14, 18, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 25px 65px rgba(0, 0, 0, 0.26);
  padding: clamp(24px, 4vw, 44px);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: min(100%, 700px);
  }
}

@media (max-width: 620px) {
  .hero-grid {
    padding-block: 84px 74px;
  }

  .hero-panel {
    border-radius: 25px 32px 25px 31px;
    padding: 7px;
  }

  .liquid-wheel {
    --wheel-card-width: min(286px, 76vw);
    border-radius: 20px 27px 20px 26px;
  }

  .liquid-wheel__header {
    align-items: flex-start;
    padding: 15px 14px 13px;
  }

  .liquid-wheel__header strong {
    font-size: 11px;
  }

  .liquid-wheel__count {
    display: none;
  }

  .liquid-wheel__controls button {
    width: 33px;
    height: 33px;
  }

  .liquid-wheel__viewport {
    padding-block: 14px 20px;
  }

  .liquid-wheel__card > a {
    grid-template-rows: 145px 1fr;
  }

  .liquid-wheel__body {
    min-height: 137px;
    padding: 14px 15px 16px;
  }

  .liquid-wheel__footer > span:first-child {
    max-width: 180px;
    line-height: 1.6;
  }

  .hero-floating-note {
    right: 5px;
    bottom: -40px;
  }

  .page-hero .container,
  .entry-content,
  .footer-grid {
    border-radius: 20px 27px 20px 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .liquid-wheel__card,
  .liquid-wheel__card.is-before,
  .liquid-wheel__card.is-after,
  .liquid-wheel__card.is-active {
    transform: none !important;
  }
}

@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .liquid-wheel,
  .liquid-wheel__card,
  .page-hero .container,
  .entry-content,
  .footer-grid {
    background-color: #091318;
  }
}
