:root {
  --bg-0: #f2f6ff;
  --bg-1: #edf3ff;
  --bg-2: #fcfdff;
  --line: rgba(36, 87, 168, 0.18);
  --text: #1d2b45;
  --muted: #516792;
  --brand: #1f5da8;
  --brand-2: #0787a8;
  --card: rgba(255, 255, 255, 0.9);
  --card-2: rgba(241, 247, 255, 0.92);
  --glow-a: rgba(255, 206, 145, 0.22);
  --glow-b: rgba(140, 224, 209, 0.18);
}

body[data-theme="dark"] {
  --bg-0: #12130f;
  --bg-1: #191b15;
  --bg-2: #20231b;
  --line: rgba(178, 164, 124, 0.24);
  --text: #ece9dc;
  --muted: #b4ad98;
  --brand: #d4a85a;
  --brand-2: #86b88e;
  --card: rgba(36, 36, 29, 0.82);
  --card-2: rgba(29, 29, 24, 0.84);
  --glow-a: rgba(214, 161, 84, 0.2);
  --glow-b: rgba(114, 154, 118, 0.17);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  font-family: "Noto Sans Georgian", sans-serif;
  background:
    radial-gradient(circle at 16% 14%, var(--glow-a), transparent 36%),
    radial-gradient(circle at 84% 9%, var(--glow-b), transparent 30%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1) 42%, var(--bg-0));
  min-height: 100vh;
}

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(7, 16, 36, 0.72);
  border-bottom: 1px solid rgba(141, 182, 255, 0.16);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  color: #f4f8ff;
  text-decoration: none;
  font: 700 1.2rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  justify-self: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.97rem;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
}

.nav .auth-btn {
  border-radius: 999px;
  padding: 8px 14px;
  font: 700 0.82rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav .auth-login {
  color: #f0f5ff;
  border: 1px solid rgba(160, 204, 255, 0.56);
  background: rgba(22, 46, 87, 0.62);
}

.nav .auth-register {
  color: #0a1222;
  border: 1px solid rgba(206, 232, 255, 0.86);
  background: #f2f8ff;
}

.nav .auth-login:hover {
  color: #ffffff;
  border-color: rgba(199, 225, 255, 0.9);
  background: rgba(39, 68, 118, 0.72);
  transform: translateY(-1px);
}

.nav .auth-register:hover {
  color: #070d19;
  border-color: rgba(225, 242, 255, 0.95);
  background: #ffffff;
  transform: translateY(-1px);
}

.nav .panel-cta {
  color: #eaf4ff;
  border: 1px solid rgba(130, 205, 255, 0.64);
  background: linear-gradient(120deg, rgba(39, 118, 230, 0.9), rgba(33, 197, 247, 0.86));
  box-shadow: 0 10px 18px rgba(8, 25, 61, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font: 700 0.8rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav .panel-cta:hover {
  color: #ffffff;
  border-color: rgba(188, 232, 255, 0.84);
  background: linear-gradient(120deg, rgba(51, 130, 238, 0.95), rgba(49, 215, 255, 0.9));
  transform: translateY(-1px);
}

.theme-toggle {
  border: 1px solid rgba(96, 139, 212, 0.45);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(239, 246, 255, 0.85);
  color: #1c365f;
  font: 700 0.76rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(52, 107, 193, 0.56);
  background: rgba(226, 239, 255, 0.95);
}

.nav-group {
  min-width: 0;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.hero {
  padding: 92px 0 64px;
}

.hero-wrap {
  text-align: center;
  max-width: 940px;
  margin: 0 auto;
  animation: reveal-up 0.7s ease both;
}

.hero-carousel {
  position: relative;
  overflow: visible;
}

.hero-slides {
  position: relative;
  min-height: 340px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--brand);
  background: rgba(30, 74, 163, 0.28);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.95rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  box-shadow: 0 0 14px var(--brand-2);
}

h1 {
  margin: 24px 0 16px;
  font-size: clamp(2.05rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
}

.hero-highlight {
  background: linear-gradient(100deg, #56a7ff, #63e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0 auto;
  max-width: 690px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 14px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #081533;
  background: linear-gradient(120deg, #66b3ff, #69e3ff);
}

.btn-secondary {
  color: #d7e7ff;
  border-color: rgba(157, 192, 255, 0.28);
  background: rgba(31, 53, 96, 0.6);
}

.tech-tags {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tech-tags span {
  border: 1px solid var(--line);
  color: #bfd1f0;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 0.84rem;
  background: rgba(24, 47, 88, 0.4);
}

.hero-controls {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(142, 191, 255, 0.36);
  background: rgba(30, 58, 110, 0.56);
  color: #dcedff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-nav:hover {
  transform: translateY(-1px);
  background: rgba(55, 93, 161, 0.62);
  border-color: rgba(183, 218, 255, 0.56);
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(145, 183, 238, 0.5);
  padding: 0;
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #69b4ff, #54e3ff);
}

.section {
  padding: 52px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.section p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(127, 169, 255, 0.2);
  background: linear-gradient(140deg, var(--card), var(--card-2));
  border-radius: 20px;
  padding: 22px;
}

.card h3 {
  margin: 0;
  font-size: 1.16rem;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card-meta {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #78aef7;
}

.card-link {
  color: #ecf4ff;
  text-decoration: none;
}

.card-link:hover {
  color: #8cc0ff;
}

.section-link-wrap {
  margin: 18px 0 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 12px;
  padding: 0 14px;
  border: 1px solid rgba(137, 182, 255, 0.34);
  background: rgba(36, 63, 112, 0.35);
  color: #d8e7ff;
  text-decoration: none;
  font-weight: 700;
}

.section-link:hover {
  background: rgba(62, 93, 153, 0.38);
  color: #ffffff;
}

.section-head-services {
  align-items: center;
}

.section-link-services {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.9rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 176, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% -10%, rgba(90, 164, 255, 0.24), transparent 46%),
    linear-gradient(145deg, rgba(13, 33, 71, 0.88), rgba(8, 20, 45, 0.92));
  padding: 20px;
  min-height: 220px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(2, 9, 23, 0.34);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(96, 176, 255, 0.88), rgba(70, 228, 255, 0.72));
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(156, 197, 255, 0.46);
  box-shadow: 0 22px 36px rgba(2, 8, 22, 0.46);
}

.service-index {
  margin: 0;
  width: fit-content;
  font: 700 0.74rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  color: #8fc4ff;
  border: 1px solid rgba(138, 188, 255, 0.32);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(41, 84, 156, 0.28);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.35;
}

.service-link {
  color: #eef5ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-link:hover {
  color: #a8d2ff;
}

.service-summary {
  margin: 0;
  color: #b3caea;
  line-height: 1.62;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.service-cta {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #d8e8ff;
  font-weight: 700;
  border-bottom: 1px solid rgba(168, 207, 255, 0.5);
  padding-bottom: 2px;
}

.service-cta::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.service-cta:hover {
  color: #ffffff;
  border-bottom-color: rgba(213, 231, 255, 0.88);
}

.service-cta:hover::after {
  transform: translateX(3px);
}

.service-empty {
  justify-content: center;
}

.insight-screen {
  padding-top: 18px;
}

.insight-head {
  text-align: center;
  margin: 0 auto 22px;
  max-width: 840px;
}

.insight-kicker {
  margin: 0 auto 10px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(162, 218, 255, 0.35);
  background: rgba(35, 88, 140, 0.28);
  color: #8fd5ff;
  padding: 6px 11px;
  font: 700 0.73rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.insight-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.7vw, 2.4rem);
  line-height: 1.25;
}

.insight-shell {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.insight-points {
  border: 1px solid rgba(120, 174, 255, 0.24);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% -20%, rgba(84, 155, 255, 0.2), transparent 46%),
    linear-gradient(148deg, rgba(9, 25, 53, 0.9), rgba(6, 16, 38, 0.93));
  box-shadow: 0 18px 34px rgba(3, 10, 24, 0.34);
}

.insight-point {
  padding: 19px 21px;
  border-bottom: 1px solid rgba(125, 175, 255, 0.2);
}

.insight-point:last-child {
  border-bottom: 0;
}

.insight-point h3 {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.34;
  color: #eff6ff;
}

.insight-point p {
  margin: 9px 0 0;
  color: #b4caea;
  line-height: 1.62;
}

.insight-visual {
  border: 1px solid rgba(103, 183, 209, 0.3);
  border-radius: 22px;
  padding: 14px;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 131, 138, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(4, 53, 63, 0.84), rgba(36, 29, 55, 0.8));
  box-shadow: 0 18px 34px rgba(2, 9, 21, 0.38);
}

.insight-stage {
  position: relative;
  border-radius: 14px;
  min-height: 360px;
  border: 1px solid rgba(129, 211, 225, 0.22);
  background:
    radial-gradient(circle at 90% 90%, rgba(152, 138, 168, 0.36), transparent 42%),
    linear-gradient(180deg, rgba(7, 52, 60, 0.88), rgba(74, 67, 98, 0.64));
  overflow: hidden;
}

.insight-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(101, 229, 229, 0.22) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
}

.insight-stage::after {
  content: "";
  position: absolute;
  inset: auto 20px 12px;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    rgba(144, 224, 235, 0.36) 0 2px,
    transparent 2px 20px
  );
  opacity: 0.46;
}

.insight-frame,
.insight-ring {
  position: absolute;
  pointer-events: none;
}

.insight-frame {
  border: 1px solid rgba(104, 212, 224, 0.52);
}

.insight-frame-a {
  inset: 15% 12% 23% 10%;
}

.insight-frame-b {
  inset: 15% 28% 23% 29%;
}

.insight-frame-c {
  inset: 15% 20% 23% 18%;
}

.insight-ring {
  border-radius: 50%;
}

.insight-ring-a {
  width: 45%;
  height: 57%;
  left: 23%;
  top: 20%;
  border: 2px solid rgba(202, 87, 58, 0.72);
}

.insight-ring-b {
  width: 45%;
  height: 57%;
  left: 33%;
  top: 20%;
  border: 2px solid rgba(177, 219, 227, 0.64);
}

.insight-ring-c {
  width: 45%;
  height: 57%;
  left: 27%;
  top: 20%;
  border: 2px solid rgba(36, 31, 30, 0.58);
}

.section-head-news {
  align-items: center;
  margin-bottom: 16px;
}

.section-link-news {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.9rem;
}

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

.news-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(127, 169, 255, 0.24);
  background:
    radial-gradient(circle at 90% -20%, rgba(88, 158, 255, 0.26), transparent 44%),
    radial-gradient(circle at 0% 120%, rgba(75, 122, 222, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(10, 27, 59, 0.88), rgba(8, 19, 44, 0.92));
  border-radius: 18px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
  min-height: 208px;
  box-shadow: 0 14px 26px rgba(3, 10, 24, 0.34);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(102, 179, 255, 0.85), rgba(70, 230, 255, 0.7));
  opacity: 0.72;
  z-index: 0;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 192, 255, 0.45);
  box-shadow: 0 20px 34px rgba(2, 8, 22, 0.48);
}

.news-meta {
  width: fit-content;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(129, 187, 255, 0.32);
  background: rgba(46, 90, 168, 0.26);
  color: #a8d4ff;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.35;
}

.news-link {
  color: #eef5ff;
  text-decoration: none;
  transition: color 0.22s ease;
}

.news-link:hover {
  color: #b3d8ff;
}

.news-excerpt {
  margin: 0;
  color: #b4caea;
  line-height: 1.64;
  font-size: 0.94rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-read {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #deebff;
  font-weight: 700;
  border-bottom: 1px solid rgba(166, 206, 255, 0.5);
  padding-bottom: 2px;
}

.news-read::after {
  content: "\2192";
  font-size: 0.95em;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.news-read:hover {
  color: #ffffff;
  border-bottom-color: rgba(212, 231, 255, 0.9);
}

.news-read:hover::after {
  transform: translateX(3px);
}

.news-empty {
  justify-content: center;
}

.news-empty p {
  margin: 4px 0 0;
}

.cta-spotlight {
  padding-top: 12px;
}

.cta-spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 320px;
  background:
    radial-gradient(circle at 50% 112%, rgba(188, 121, 196, 0.74), rgba(103, 160, 212, 0.44) 38%, rgba(24, 57, 66, 0.3) 62%, rgba(0, 0, 0, 0.98) 84%),
    linear-gradient(180deg, rgba(3, 43, 43, 0.86), rgba(1, 15, 20, 0.98));
  display: grid;
  place-items: center;
  padding: 42px 24px;
}

.cta-spotlight-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-spotlight-arc {
  position: absolute;
  top: -16%;
  width: 300px;
  height: 140%;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.26);
  opacity: 0.5;
  pointer-events: none;
}

.cta-spotlight-arc-left {
  left: -170px;
}

.cta-spotlight-arc-right {
  right: -170px;
}

.cta-spotlight-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  display: grid;
  gap: 16px;
}

.cta-spotlight-content h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  color: #ffffff;
}

.cta-spotlight-content p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cta-spotlight-btn {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font: 700 1.04rem/1 "Space Grotesk", sans-serif;
  color: #0d0d0d;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-spotlight-btn:hover {
  transform: translateY(-2px);
  background: #ececec;
}

.help-center {
  display: grid;
  gap: 24px;
}

.help-center-head {
  display: grid;
  gap: 10px;
}

.help-center-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(136, 190, 255, 0.33);
  background: rgba(37, 77, 149, 0.28);
  color: #97caff;
  padding: 6px 10px;
  font: 700 0.73rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.help-center-head h1 {
  margin: 0;
}

.help-center-lead {
  margin: 0;
  max-width: 860px;
  color: #bfd4f3;
}

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

.help-category-card {
  border: 1px solid rgba(129, 177, 255, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% -16%, rgba(80, 152, 255, 0.24), transparent 50%),
    linear-gradient(148deg, rgba(12, 31, 67, 0.86), rgba(8, 19, 44, 0.92));
  padding: 16px;
  display: grid;
  gap: 10px;
  min-height: 176px;
  box-shadow: 0 14px 26px rgba(2, 9, 23, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.help-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(153, 197, 255, 0.42);
  box-shadow: 0 18px 30px rgba(2, 8, 22, 0.42);
}

.help-category-count {
  margin: 0;
  width: fit-content;
  color: #94c8ff;
  border: 1px solid rgba(137, 189, 255, 0.32);
  border-radius: 999px;
  padding: 4px 9px;
  font: 700 0.72rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.07em;
  background: rgba(43, 86, 159, 0.28);
}

.help-category-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.help-category-card p {
  margin: 0;
  color: #b6cdef;
  line-height: 1.58;
}

.help-category-link {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #d9e8ff;
  font-weight: 700;
  border-bottom: 1px solid rgba(168, 207, 255, 0.5);
  padding-bottom: 2px;
}

.help-category-link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.help-category-link:hover {
  color: #ffffff;
  border-bottom-color: rgba(213, 231, 255, 0.88);
}

.help-category-link:hover::after {
  transform: translateX(3px);
}

.help-topic-list {
  display: grid;
  gap: 18px;
}

.help-topic-section {
  border: 1px solid rgba(123, 169, 247, 0.2);
  border-radius: 18px;
  background: rgba(10, 24, 53, 0.42);
  padding: 16px;
  scroll-margin-top: 90px;
}

.help-topic-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.help-topic-head h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.help-topic-head span {
  color: #a7c5eb;
  font-size: 0.9rem;
}

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

.help-topic-card {
  border: 1px solid rgba(123, 169, 247, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(14, 32, 68, 0.84), rgba(10, 23, 51, 0.9));
  padding: 14px;
  display: grid;
  gap: 10px;
}

.help-topic-card h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.34;
}

.help-topic-link {
  color: #ebf4ff;
  text-decoration: none;
}

.help-topic-link:hover {
  color: #9ed0ff;
}

.help-topic-card p {
  margin: 0;
  color: #b4caea;
  line-height: 1.62;
}

.help-topic-cta {
  margin-top: auto;
  width: fit-content;
  text-decoration: none;
  color: #d8e8ff;
  font-weight: 700;
  border-bottom: 1px solid rgba(168, 207, 255, 0.5);
  padding-bottom: 2px;
}

.help-topic-cta:hover {
  color: #ffffff;
  border-bottom-color: rgba(213, 231, 255, 0.88);
}

.help-empty {
  justify-content: center;
}

.footer {
  margin-top: 44px;
  border-top: 1px solid rgba(101, 146, 238, 0.22);
  background: linear-gradient(180deg, rgba(4, 12, 34, 0.88), rgba(3, 9, 24, 0.96));
  padding: 40px 0 0;
}

.footer-shell {
  border-top: 1px solid rgba(116, 160, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.6fr) 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 34px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(82, 141, 255, 0.26), rgba(45, 125, 255, 0.58));
  border: 1px solid rgba(137, 186, 255, 0.36);
  position: relative;
  box-shadow: 0 10px 20px rgba(8, 24, 52, 0.45);
}

.footer-brand-icon::before,
.footer-brand-icon::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  border-radius: 999px;
  border: 1px solid rgba(225, 239, 255, 0.9);
}

.footer-brand-icon::before {
  top: 12px;
  height: 5px;
}

.footer-brand-icon::after {
  top: 22px;
  height: 5px;
}

.footer-brand-title {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.01em;
  color: #f4f8ff;
}

.footer-brand-subtitle {
  margin: 2px 0 0;
  color: #5ba2ff;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-about {
  margin: 18px 0 12px;
  color: #d7e7ff;
  max-width: 560px;
  line-height: 1.86;
  font-size: 0.98rem;
  letter-spacing: 0.003em;
  background: linear-gradient(160deg, rgba(30, 62, 120, 0.28), rgba(11, 27, 58, 0.32));
  border: 1px solid rgba(140, 184, 255, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  text-wrap: pretty;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-contact-list li {
  color: #d4e3fb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  border: 1px solid rgba(129, 176, 255, 0.3);
  background: rgba(55, 92, 158, 0.24);
  color: #7ab7ff;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
}

.footer-links-block h3 {
  margin: 0 0 14px;
  font-size: 1.33rem;
  color: #f2f7ff;
}

.footer-links-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links-block a {
  text-decoration: none;
  color: #b9cff2;
  transition: color 0.2s ease;
}

.footer-links-block a:hover {
  color: #ffffff;
}

.footer-hours-title {
  margin-top: 28px;
}

.footer-hours-block h3 {
  margin: 0 0 14px;
  font-size: 1.33rem;
  color: #f2f7ff;
}

.footer-hours {
  margin: 0 0 6px;
  color: #b8cdf0;
}

.footer-hours a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(173, 201, 239, 0.34);
}

.footer-hours a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.footer-emergency {
  color: #6daeff;
  font-weight: 700;
}

.footer-bottom-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 24px;
  border-top: 1px solid rgba(104, 149, 240, 0.22);
  color: #7d97c0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom-links a {
  color: #9db7de;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #e0ecff;
}

.page-shell {
  min-height: calc(100vh - 170px);
}

.page-section {
  padding: 56px 0 42px;
}

.page-wrap {
  max-width: 1020px;
}

.page-wrap-wide {
  max-width: 1240px;
}

.page-card {
  border: 1px solid rgba(127, 169, 255, 0.2);
  background: linear-gradient(145deg, rgba(12, 30, 65, 0.84), rgba(11, 24, 52, 0.88));
  border-radius: 24px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: 0 20px 40px rgba(4, 12, 28, 0.35);
  animation: reveal-up 0.6s ease both;
}

.post-shell {
  min-height: calc(100vh - 150px);
}

.post-wrap {
  max-width: 1120px;
}

.post-card {
  position: relative;
  overflow: hidden;
}

.post-card::before {
  content: "";
  position: absolute;
  inset: -120px auto auto -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 145, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.post-kicker {
  margin: 0 0 10px;
  color: #71b0ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
}

.post-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  color: #8fb1dd;
  font-size: 0.93rem;
}

.post-dot {
  color: #6eaaf4;
}

.post-card pre {
  margin: 16px 0;
  border: 1px solid rgba(126, 168, 243, 0.26);
  border-radius: 12px;
  padding: 14px;
  background: rgba(3, 12, 32, 0.72);
  overflow-x: auto;
}

.post-card code {
  font-size: 0.92em;
}

.post-endcap {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.not-found {
  display: grid;
  place-items: center;
  min-height: min(72vh, 760px);
}

.not-found-shell {
  position: relative;
  width: min(920px, 100%);
  text-align: center;
  border: 1px solid rgba(126, 168, 243, 0.24);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 50% 110%, rgba(140, 109, 184, 0.26), transparent 40%),
    linear-gradient(165deg, rgba(12, 30, 65, 0.88), rgba(8, 19, 44, 0.94));
  overflow: hidden;
}

.not-found-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(154, 202, 255, 0.26) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.3;
  pointer-events: none;
}

.not-found-code {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  font: 800 clamp(3.1rem, 10vw, 7.2rem)/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
  color: rgba(244, 251, 255, 0.94);
}

.not-found h1 {
  position: relative;
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
}

.not-found p {
  position: relative;
  margin: 14px auto 0;
  max-width: 660px;
  color: #c3d6f2;
  font-size: clamp(1rem, 1.9vw, 1.16rem);
  line-height: 1.7;
}

.not-found-actions {
  position: relative;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.services-page {
  display: grid;
  gap: 22px;
}

.services-page-head {
  display: grid;
  gap: 10px;
}

.services-page-kicker {
  margin: 0;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(135, 187, 255, 0.32);
  background: rgba(35, 74, 144, 0.28);
  color: #94c9ff;
  padding: 6px 10px;
  font: 700 0.73rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
}

.services-page-head h1 {
  margin: 0;
}

.services-page-lead {
  margin: 0;
  max-width: 860px;
  color: #bdd2f1;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 176, 255, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 94% -16%, rgba(90, 164, 255, 0.26), transparent 48%),
    linear-gradient(148deg, rgba(13, 33, 71, 0.9), rgba(8, 19, 43, 0.94));
  padding: 20px;
  min-height: 230px;
  display: grid;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(2, 9, 23, 0.34);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.services-page-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(96, 176, 255, 0.88), rgba(70, 228, 255, 0.72));
}

.services-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 198, 255, 0.46);
  box-shadow: 0 22px 36px rgba(2, 8, 22, 0.48);
}

.services-page-index {
  margin: 0;
  width: fit-content;
  font: 700 0.74rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  color: #8fc4ff;
  border: 1px solid rgba(138, 188, 255, 0.32);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(41, 84, 156, 0.28);
}

.services-page-card h3 {
  margin: 0;
  font-size: clamp(1.06rem, 1.8vw, 1.24rem);
  line-height: 1.35;
}

.services-page-link {
  color: #eef5ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.services-page-link:hover {
  color: #abd4ff;
}

.services-page-summary {
  margin: 0;
  color: #b3caea;
  line-height: 1.62;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.services-page-cta {
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #d8e8ff;
  font-weight: 700;
  border-bottom: 1px solid rgba(168, 207, 255, 0.5);
  padding-bottom: 2px;
}

.services-page-cta::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.services-page-cta:hover {
  color: #ffffff;
  border-bottom-color: rgba(213, 231, 255, 0.88);
}

.services-page-cta:hover::after {
  transform: translateX(3px);
}

.services-page-empty {
  justify-content: center;
}

.services-page-empty p {
  margin: 0;
}

.markdown-body h1,
.markdown-body h2,
.markdown-body h3 {
  margin-top: 0;
  line-height: 1.22;
}

.markdown-body h1 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.markdown-body h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  color: #cfe3ff;
}

.markdown-body p,
.markdown-body li {
  color: #bed0ef;
  line-height: 1.75;
  font-size: 1.04rem;
}

.markdown-body ol,
.markdown-body ul {
  margin: 10px 0 16px;
  padding-left: 22px;
}

.markdown-body li + li {
  margin-top: 8px;
}

.markdown-body strong {
  color: #e5f1ff;
}

.markdown-body table {
  width: 100%;
  margin: 16px 0 18px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(122, 167, 244, 0.3);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(9, 22, 49, 0.62);
}

.markdown-body thead th {
  background: rgba(39, 74, 136, 0.55);
  color: #e9f3ff;
  font-weight: 700;
  font-size: 0.94rem;
}

.markdown-body th,
.markdown-body td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(122, 167, 244, 0.2);
}

.markdown-body tbody tr:last-child td {
  border-bottom: 0;
}

.markdown-body tbody tr:nth-child(even) {
  background: rgba(24, 45, 86, 0.42);
}

.markdown-body td {
  color: #c5d8f6;
}

body[data-theme="light"] {
  color-scheme: light;
}

body[data-theme="light"] .header {
  background: rgba(252, 254, 255, 0.9);
  border-bottom-color: rgba(130, 165, 221, 0.36);
}

body[data-theme="light"] .brand {
  color: #123463;
}

body[data-theme="light"] .nav a {
  color: #4b648f;
}

body[data-theme="light"] .nav a:hover {
  color: #143f74;
}

body[data-theme="light"] .nav .panel-cta {
  color: #ffffff;
  border-color: rgba(77, 133, 224, 0.58);
  background: linear-gradient(120deg, #2d73d3, #289bc6);
  box-shadow: 0 8px 16px rgba(42, 84, 150, 0.24);
}

body[data-theme="light"] .badge {
  color: #1f5da8;
  background: rgba(220, 234, 255, 0.64);
  border-color: rgba(108, 151, 222, 0.46);
}

body[data-theme="light"] .btn-primary {
  color: #0a2342;
  background: linear-gradient(120deg, #61a6ff, #41c4e1);
}

body[data-theme="light"] .btn-secondary {
  color: #214a84;
  border-color: rgba(119, 159, 224, 0.45);
  background: rgba(236, 245, 255, 0.94);
}

body[data-theme="light"] .tech-tags span,
body[data-theme="light"] .service-index,
body[data-theme="light"] .news-meta,
body[data-theme="light"] .insight-kicker,
body[data-theme="light"] .help-center-kicker,
body[data-theme="light"] .help-category-count,
body[data-theme="light"] .services-page-kicker,
body[data-theme="light"] .post-kicker {
  color: #28598f;
  background: rgba(221, 236, 255, 0.72);
  border-color: rgba(104, 149, 221, 0.4);
}

body[data-theme="light"] .service-card,
body[data-theme="light"] .news-card,
body[data-theme="light"] .insight-points,
body[data-theme="light"] .help-category-card,
body[data-theme="light"] .help-topic-section,
body[data-theme="light"] .help-topic-card,
body[data-theme="light"] .page-card,
body[data-theme="light"] .services-page-card {
  border-color: rgba(129, 165, 220, 0.38);
  background:
    radial-gradient(circle at 90% -10%, rgba(145, 191, 255, 0.34), transparent 50%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 255, 0.95));
  box-shadow: 0 14px 24px rgba(56, 88, 144, 0.14);
}

body[data-theme="light"] .service-card::before,
body[data-theme="light"] .news-card::before,
body[data-theme="light"] .services-page-card::before {
  background: linear-gradient(90deg, rgba(70, 133, 214, 0.72), rgba(42, 168, 199, 0.62));
}

body[data-theme="light"] .insight-visual {
  border-color: rgba(114, 180, 216, 0.42);
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 172, 185, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(221, 243, 248, 0.95), rgba(223, 228, 243, 0.94));
  box-shadow: 0 14px 24px rgba(56, 88, 144, 0.14);
}

body[data-theme="light"] .insight-stage {
  border-color: rgba(109, 182, 209, 0.34);
  background:
    radial-gradient(circle at 90% 90%, rgba(158, 151, 190, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(204, 235, 238, 0.94), rgba(202, 196, 220, 0.9));
}

body[data-theme="light"] .insight-stage::before {
  background-image: radial-gradient(circle at center, rgba(58, 151, 167, 0.24) 1px, transparent 1px);
}

body[data-theme="light"] .insight-frame {
  border-color: rgba(80, 165, 189, 0.52);
}

body[data-theme="light"] .insight-point h3 {
  color: #1d3358;
}

body[data-theme="light"] .insight-point p {
  color: #4a6188;
}

body[data-theme="light"] .card-link,
body[data-theme="light"] .service-link,
body[data-theme="light"] .news-link,
body[data-theme="light"] .help-topic-link,
body[data-theme="light"] .services-page-link,
body[data-theme="light"] .footer-brand-title,
body[data-theme="light"] .footer-links-block h3,
body[data-theme="light"] .footer-hours-block h3 {
  color: #1d3358;
}

body[data-theme="light"] .service-summary,
body[data-theme="light"] .news-excerpt,
body[data-theme="light"] .help-category-card p,
body[data-theme="light"] .help-topic-card p,
body[data-theme="light"] .services-page-summary,
body[data-theme="light"] .markdown-body p,
body[data-theme="light"] .markdown-body li,
body[data-theme="light"] .markdown-body td,
body[data-theme="light"] .footer-about,
body[data-theme="light"] .footer-contact-list li,
body[data-theme="light"] .footer-hours,
body[data-theme="light"] .footer-bottom-line,
body[data-theme="light"] .footer-bottom-links a {
  color: #4a6188;
}

body[data-theme="light"] .service-cta,
body[data-theme="light"] .news-read,
body[data-theme="light"] .help-category-link,
body[data-theme="light"] .help-topic-cta,
body[data-theme="light"] .services-page-cta,
body[data-theme="light"] .section-link {
  color: #1e538e;
  border-bottom-color: rgba(99, 142, 212, 0.5);
}

body[data-theme="light"] .section-link,
body[data-theme="light"] .post-card pre {
  border-color: rgba(126, 166, 227, 0.42);
  background: rgba(236, 245, 255, 0.9);
}

body[data-theme="light"] .help-topic-head span,
body[data-theme="light"] .post-meta-row,
body[data-theme="light"] .post-dot {
  color: #5d749c;
}

body[data-theme="light"] .footer {
  border-top-color: rgba(132, 167, 223, 0.34);
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.95), rgba(232, 241, 255, 0.98));
}

body[data-theme="light"] .footer-shell {
  border-top-color: rgba(132, 167, 223, 0.2);
}

body[data-theme="light"] .footer-about {
  background: rgba(234, 245, 255, 0.8);
  border-color: rgba(135, 171, 226, 0.3);
}

body[data-theme="light"] .footer-icon {
  border-color: rgba(127, 166, 222, 0.4);
  background: rgba(220, 236, 255, 0.74);
  color: #2f659f;
}

body[data-theme="light"] .footer-bottom-line {
  border-top-color: rgba(132, 167, 223, 0.34);
}

body[data-theme="dark"] .theme-toggle {
  border-color: rgba(188, 168, 124, 0.36);
  background: rgba(82, 69, 42, 0.34);
  color: #f0e5cf;
}

body[data-theme="dark"] .header {
  background: rgba(28, 29, 23, 0.84);
  border-bottom-color: rgba(162, 145, 109, 0.28);
}

body[data-theme="dark"] .brand,
body[data-theme="dark"] .nav a:hover,
body[data-theme="dark"] .card-link,
body[data-theme="dark"] .service-link,
body[data-theme="dark"] .news-link,
body[data-theme="dark"] .help-topic-link,
body[data-theme="dark"] .services-page-link,
body[data-theme="dark"] .footer-brand-title,
body[data-theme="dark"] .footer-links-block h3,
body[data-theme="dark"] .footer-hours-block h3 {
  color: #f1ead7;
}

body[data-theme="dark"] .nav a,
body[data-theme="dark"] .service-summary,
body[data-theme="dark"] .news-excerpt,
body[data-theme="dark"] .help-category-card p,
body[data-theme="dark"] .help-topic-card p,
body[data-theme="dark"] .services-page-summary,
body[data-theme="dark"] .markdown-body p,
body[data-theme="dark"] .markdown-body li,
body[data-theme="dark"] .markdown-body td,
body[data-theme="dark"] .footer-about,
body[data-theme="dark"] .footer-contact-list li,
body[data-theme="dark"] .footer-hours,
body[data-theme="dark"] .footer-bottom-line,
body[data-theme="dark"] .footer-bottom-links a,
body[data-theme="dark"] .help-topic-head span,
body[data-theme="dark"] .post-meta-row,
body[data-theme="dark"] .post-dot {
  color: #beb5a0;
}

body[data-theme="dark"] .nav .panel-cta {
  color: #1f1e18;
  border-color: rgba(200, 177, 128, 0.62);
  background: linear-gradient(120deg, rgba(216, 173, 92, 0.95), rgba(137, 180, 132, 0.88));
  box-shadow: 0 10px 18px rgba(10, 11, 8, 0.4);
}

body[data-theme="dark"] .badge,
body[data-theme="dark"] .tech-tags span,
body[data-theme="dark"] .service-index,
body[data-theme="dark"] .news-meta,
body[data-theme="dark"] .help-center-kicker,
body[data-theme="dark"] .help-category-count,
body[data-theme="dark"] .services-page-kicker,
body[data-theme="dark"] .post-kicker {
  color: #e3c88c;
  background: rgba(78, 66, 42, 0.42);
  border-color: rgba(170, 149, 108, 0.4);
}

body[data-theme="dark"] .service-card,
body[data-theme="dark"] .news-card,
body[data-theme="dark"] .help-category-card,
body[data-theme="dark"] .help-topic-section,
body[data-theme="dark"] .help-topic-card,
body[data-theme="dark"] .page-card,
body[data-theme="dark"] .services-page-card {
  border-color: rgba(161, 145, 109, 0.34);
  background:
    radial-gradient(circle at 90% -10%, rgba(153, 126, 79, 0.24), transparent 52%),
    linear-gradient(148deg, rgba(40, 39, 31, 0.88), rgba(28, 29, 23, 0.92));
  box-shadow: 0 16px 28px rgba(7, 8, 6, 0.42);
}

body[data-theme="dark"] .service-card::before,
body[data-theme="dark"] .news-card::before,
body[data-theme="dark"] .services-page-card::before {
  background: linear-gradient(90deg, rgba(214, 171, 92, 0.78), rgba(121, 168, 121, 0.66));
}

body[data-theme="dark"] .hero-highlight {
  background: linear-gradient(100deg, #ddb870, #8ec79b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body[data-theme="dark"] .btn-primary {
  color: #1f1d16;
  background: linear-gradient(120deg, #d9ae62, #8fbe90);
}

body[data-theme="dark"] .btn-secondary {
  color: #e8dcc0;
  border-color: rgba(169, 147, 106, 0.4);
  background: rgba(58, 54, 42, 0.56);
}

body[data-theme="dark"] .section-link,
body[data-theme="dark"] .post-card pre {
  border-color: rgba(166, 146, 110, 0.42);
  background: rgba(47, 45, 35, 0.72);
}

body[data-theme="dark"] .section-link,
body[data-theme="dark"] .service-cta,
body[data-theme="dark"] .news-read,
body[data-theme="dark"] .help-category-link,
body[data-theme="dark"] .help-topic-cta,
body[data-theme="dark"] .services-page-cta {
  color: #e6d8b7;
  border-bottom-color: rgba(190, 166, 120, 0.54);
}

body[data-theme="dark"] .footer {
  border-top-color: rgba(153, 136, 101, 0.3);
  background: linear-gradient(180deg, rgba(21, 22, 17, 0.88), rgba(14, 15, 12, 0.95));
}

body[data-theme="dark"] .footer-shell {
  border-top-color: rgba(153, 136, 101, 0.14);
}

body[data-theme="dark"] .footer-about {
  background: linear-gradient(160deg, rgba(72, 63, 45, 0.3), rgba(35, 35, 28, 0.34));
  border-color: rgba(161, 145, 109, 0.24);
}

body[data-theme="dark"] .footer-icon {
  border-color: rgba(161, 145, 109, 0.34);
  background: rgba(79, 67, 43, 0.28);
  color: #d7be88;
}

body[data-theme="dark"] .footer-bottom-line {
  border-top-color: rgba(153, 136, 101, 0.26);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-slides {
    min-height: 392px;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-head-services {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-head-news {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .cta-spotlight-card {
    min-height: 270px;
    padding: 34px 20px;
  }

  .cta-spotlight-arc {
    width: 220px;
  }

  .cta-spotlight-arc-left {
    left: -140px;
  }

  .cta-spotlight-arc-right {
    right: -140px;
  }

  .cta-spotlight-content {
    gap: 12px;
  }

  .insight-shell {
    grid-template-columns: 1fr;
  }

  .insight-stage {
    min-height: 320px;
  }

  .hero {
    padding-top: 74px;
  }

  .header-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 12px 0;
    gap: 10px;
  }

  .brand {
    order: -1;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav .auth-btn {
    padding: 8px 12px;
    font-size: 0.76rem;
  }

  .page-section {
    padding-top: 28px;
  }

  .not-found-shell {
    border-radius: 18px;
    padding: 28px 18px;
  }

  .not-found-actions {
    justify-content: stretch;
  }

  .not-found-actions .btn,
  .not-found-actions .section-link {
    width: 100%;
    justify-content: center;
  }

  .post-endcap {
    margin-top: 24px;
  }

  .markdown-body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .help-category-grid {
    grid-template-columns: 1fr;
  }

  .help-topic-grid {
    grid-template-columns: 1fr;
  }

  .help-topic-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-about {
    font-size: 0.95rem;
    line-height: 1.78;
    padding: 12px 13px;
  }

  .footer-bottom-line {
    padding-top: 18px;
  }

  .footer-bottom-links {
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* Monochrome override: force white text on black across the site */
body[data-theme="mono"] {
  color-scheme: dark;
  --bg-0: #000000;
  --bg-1: #000000;
  --bg-2: #000000;
  --line: rgba(255, 255, 255, 0.24);
  --text: #ffffff;
  --muted: #d1d1d1;
  --brand: #ffffff;
  --brand-2: #ffffff;
  --card: #000000;
  --card-2: #000000;
  --glow-a: transparent;
  --glow-b: transparent;
  background: #000000;
}

body[data-theme="mono"] .header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-theme="mono"] .brand,
body[data-theme="mono"] .nav a,
body[data-theme="mono"] .nav a:hover,
body[data-theme="mono"] .hero-highlight,
body[data-theme="mono"] .btn-primary,
body[data-theme="mono"] .btn-secondary,
body[data-theme="mono"] .card-link,
body[data-theme="mono"] .service-link,
body[data-theme="mono"] .news-link,
body[data-theme="mono"] .help-topic-link,
body[data-theme="mono"] .services-page-link,
body[data-theme="mono"] .footer-brand-title,
body[data-theme="mono"] .footer-links-block h3,
body[data-theme="mono"] .footer-hours-block h3,
body[data-theme="mono"] .service-cta,
body[data-theme="mono"] .news-read,
body[data-theme="mono"] .help-category-link,
body[data-theme="mono"] .help-topic-cta,
body[data-theme="mono"] .services-page-cta,
body[data-theme="mono"] .section-link,
body[data-theme="mono"] .footer-bottom-links a,
body[data-theme="mono"] .footer-brand-subtitle,
body[data-theme="mono"] .footer-emergency,
body[data-theme="mono"] .card-meta {
  color: #ffffff;
}

body[data-theme="mono"] .hero-highlight {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}

body[data-theme="mono"] .nav .panel-cta,
body[data-theme="mono"] .badge,
body[data-theme="mono"] .tech-tags span,
body[data-theme="mono"] .service-index,
body[data-theme="mono"] .news-meta,
body[data-theme="mono"] .help-center-kicker,
body[data-theme="mono"] .help-category-count,
body[data-theme="mono"] .services-page-kicker,
body[data-theme="mono"] .post-kicker,
body[data-theme="mono"] .insight-kicker,
body[data-theme="mono"] .btn,
body[data-theme="mono"] .section-link,
body[data-theme="mono"] .footer-icon,
body[data-theme="mono"] .post-card pre {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

body[data-theme="mono"] .nav .auth-login {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

body[data-theme="mono"] .nav .auth-register {
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: #ffffff;
}

body[data-theme="mono"] .nav .auth-login:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.72);
}

body[data-theme="mono"] .nav .auth-register:hover {
  background: #eaeaea;
}

body[data-theme="mono"] .service-card,
body[data-theme="mono"] .news-card,
body[data-theme="mono"] .insight-points,
body[data-theme="mono"] .cta-spotlight-card,
body[data-theme="mono"] .not-found-shell,
body[data-theme="mono"] .insight-visual,
body[data-theme="mono"] .insight-stage,
body[data-theme="mono"] .help-category-card,
body[data-theme="mono"] .help-topic-section,
body[data-theme="mono"] .help-topic-card,
body[data-theme="mono"] .page-card,
body[data-theme="mono"] .services-page-card,
body[data-theme="mono"] .footer,
body[data-theme="mono"] .footer-about {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

body[data-theme="mono"] .service-card::before,
body[data-theme="mono"] .news-card::before,
body[data-theme="mono"] .services-page-card::before,
body[data-theme="mono"] .insight-stage::before,
body[data-theme="mono"] .insight-stage::after,
body[data-theme="mono"] .cta-spotlight-grid {
  background: none;
  opacity: 0;
}

body[data-theme="mono"] .cta-spotlight-card {
  background: #000000;
}

body[data-theme="mono"] .cta-spotlight-arc {
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-theme="mono"] .not-found-shell::before {
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  opacity: 0.28;
}

body[data-theme="mono"] .not-found-code,
body[data-theme="mono"] .not-found h1 {
  color: #ffffff;
}

body[data-theme="mono"] .not-found p {
  color: #d1d1d1;
}

body[data-theme="mono"] .cta-spotlight-content p {
  color: #d1d1d1;
}

body[data-theme="mono"] .cta-spotlight-btn {
  color: #000000;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
}

body[data-theme="mono"] .service-summary,
body[data-theme="mono"] .news-excerpt,
body[data-theme="mono"] .help-category-card p,
body[data-theme="mono"] .help-topic-card p,
body[data-theme="mono"] .services-page-summary,
body[data-theme="mono"] .markdown-body p,
body[data-theme="mono"] .markdown-body li,
body[data-theme="mono"] .markdown-body td,
body[data-theme="mono"] .footer-about,
body[data-theme="mono"] .footer-contact-list li,
body[data-theme="mono"] .footer-hours,
body[data-theme="mono"] .footer-bottom-line,
body[data-theme="mono"] .help-topic-head span,
body[data-theme="mono"] .post-meta-row,
body[data-theme="mono"] .post-dot,
body[data-theme="mono"] .insight-point p,
body[data-theme="mono"] .hero p,
body[data-theme="mono"] .section p {
  color: #d1d1d1;
}

body[data-theme="mono"] .insight-point h3,
body[data-theme="mono"] .section h2,
body[data-theme="mono"] .card h3,
body[data-theme="mono"] .news-card h3,
body[data-theme="mono"] .service-card h3,
body[data-theme="mono"] .help-topic-card h3 {
  color: #ffffff;
}

body[data-theme="mono"] .insight-frame {
  border-color: rgba(255, 255, 255, 0.34);
}

body[data-theme="mono"] .insight-ring-a,
body[data-theme="mono"] .insight-ring-b,
body[data-theme="mono"] .insight-ring-c {
  border-color: rgba(255, 255, 255, 0.45);
}

body[data-theme="mono"] .footer,
body[data-theme="mono"] .footer-shell,
body[data-theme="mono"] .footer-bottom-line {
  border-top-color: rgba(255, 255, 255, 0.2);
}

body[data-theme="mono"] .markdown-body table,
body[data-theme="mono"] .markdown-body thead th,
body[data-theme="mono"] .markdown-body tbody tr:nth-child(even) {
  background: #000000;
}

body[data-theme="mono"] .markdown-body table,
body[data-theme="mono"] .markdown-body th,
body[data-theme="mono"] .markdown-body td {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
