:root {
  --bg: #f5efeb;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #1c1b1f;
  --muted: #5f5b58;
  --accent: #111111;
  --accent-2: #2e9b72;
  --border: rgba(28, 27, 31, 0.12);
  --shadow: 0 16px 40px rgba(31, 26, 23, 0.12);
  --radius-pill: 999px;
  --max-width: 1120px;
}

.dashboard-support-pin {
  display: inline-flex;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: #111111;
}

.dashboard-showcase-section .container {
  width: min(1240px, 92vw);
}

.dashboard-showcase {
  background: radial-gradient(980px 360px at 52% -20%, rgba(159, 42, 77, 0.24), transparent 70%), #06080d;
  border-radius: 24px;
  padding: 12px;
}

.api-manager-mock {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #090b10, #0a0d13);
  color: #edf1fa;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 8, 14, 0.5);
}

.api-manager-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.api-head-left {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.api-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  font-weight: 600;
}

.api-brand span {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #2f74ea, #3aa6f4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
}

.api-crumbs {
  font-size: 0.88rem;
  color: rgba(201, 207, 220, 0.9);
}

.api-head-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.api-head-search {
  min-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.83rem;
  color: #eaf0ff;
  background: #11151f;
}

.api-head-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #52ce8f;
}

.api-head-dot.is-red {
  background: #ff636f;
}

.api-head-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, #dac9af, #ae9777);
}

.api-manager-body {
  display: grid;
  grid-template-columns: 208px 1fr;
  min-height: 620px;
}

.api-side-col {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px 10px;
  display: grid;
  align-content: start;
  gap: 4px;
  background: #090b10;
}

.api-side-col .api-side-title {
  margin: 2px 0;
  color: rgba(198, 207, 229, 0.8);
  font-size: 0.78rem;
}

.api-side-col .api-side-title.top-gap {
  margin-top: 10px;
}

.api-side-col a {
  color: #c8d0e4;
  text-decoration: none;
  font-size: 0.86rem;
  border-radius: 8px;
  padding: 6px 8px;
}

.api-side-col a.is-active,
.api-side-col a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.api-main-col {
  padding: 12px;
  display: grid;
  gap: 10px;
}

.api-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.api-main-head h3 {
  margin: 0;
  font-size: 2.3rem;
  color: #f7fbff;
  line-height: 1.1;
}

.api-main-head button {
  border: 0;
  border-radius: 9px;
  padding: 9px 16px;
  font-family: inherit;
  font-weight: 600;
  color: #ffffff;
  background: #2f75eb;
}

.api-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.api-stat-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #11151f, #0f131b);
  padding: 10px 12px;
}

.api-stat-card span {
  display: block;
  color: rgba(205, 214, 232, 0.9);
  font-size: 0.82rem;
}

.api-stat-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
}

.api-traffic-card,
.api-bars-card,
.api-top-card,
.api-table-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #0f131b, #0d1118);
  padding: 10px 12px;
}

.api-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(204, 214, 234, 0.86);
}

.api-card-head span:first-child {
  color: #eff4ff;
  font-size: 0.96rem;
}

.api-line-chart {
  width: 100%;
  height: 130px;
  margin-top: 8px;
}

.api-line-chart path {
  fill: none;
  stroke: #63db9e;
  stroke-width: 2.4;
  filter: drop-shadow(0 0 8px rgba(99, 219, 158, 0.4));
}

.api-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 10px;
}

.api-bars {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 5px;
  align-items: end;
  min-height: 92px;
}

.api-bars span {
  display: block;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #48cb8e, #1e7f56);
  height: 58%;
}

.api-bars span:nth-child(2n) {
  height: 74%;
}

.api-bars span:nth-child(3n) {
  height: 82%;
}

.api-top-list {
  margin-top: 10px;
  display: grid;
  gap: 9px;
}

.api-top-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.api-top-list b {
  color: #f4f8ff;
  font-weight: 500;
}

.api-top-list em {
  color: #57d594;
  font-style: normal;
  font-weight: 600;
}

.api-table-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.api-table-card th,
.api-table-card td {
  text-align: left;
  padding: 7px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.8rem;
  color: rgba(225, 232, 246, 0.94);
}

.api-table-card th {
  color: rgba(198, 207, 224, 0.86);
  font-weight: 500;
}

.admin-sidebar {
  align-content: start;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.admin-tab {
  justify-content: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
}

.admin-tab.is-active {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.admin-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 14px;
}

.admin-main {
  display: grid;
  gap: 14px;
}

.admin-panel {
  display: none;
  gap: 12px;
}

.admin-panel.is-active {
  display: grid;
}

.admin-item {
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.admin-users-head,
.admin-form-card,
.admin-users-table-wrap {
  border-radius: 16px;
}

.admin-users-table td code {
  font-size: 0.72rem;
}

.admin-users-table td,
.admin-users-table th {
  vertical-align: top;
}

.admin-expanded {
  gap: 16px;
}

.admin-item .button {
  margin-right: 8px;
}

.help-contact-form select,
.admin-grid-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #fbf8f5);
  appearance: none;
}

.subject-picker-trigger {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f9f5f1);
  font-weight: 500;
  min-height: 48px;
}

.subject-picker-menu {
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.15);
  overflow: hidden;
}

.subject-picker-menu button {
  padding: 11px 13px;
}

.help-tech-fields[hidden] {
  display: none !important;
}

.help-tech-fields {
  margin-top: 4px;
}

.help-contact-visual {
  background: radial-gradient(520px 220px at 65% -20%, rgba(34, 34, 34, 0.12), transparent 70%);
  border-radius: 18px;
}

.plugin-horizontal-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.plugin-horizontal-card {
  min-height: 128px;
  padding: 16px 20px 16px 176px;
  border-radius: 20px;
}

.plugin-orbit-shell {
  width: 172px;
  height: 172px;
  left: -44px;
  top: -48px;
}

.plugin-main-thumb {
  width: 104px;
  height: 104px;
  left: 52px;
  top: 56px;
  transform: none;
}

.plugin-orbit-ring {
  border-color: rgba(255, 255, 255, 0.24);
}

.plugin-orbit-ring.ring-two {
  inset: 24px;
}

.plugin-type-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(196, 207, 236, 0.9);
}

.account-card .license-history-card {
  margin-top: 14px;
}

.account-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.account-form-card .button {
  margin-top: 6px;
}

@media (max-width: 1200px) {
  .api-manager-body {
    grid-template-columns: 1fr;
  }

  .api-side-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    gap: 6px 8px;
  }

  .api-side-col .api-side-title {
    grid-column: span 2;
  }

  .api-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .api-bottom-grid {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .api-head-right {
    display: none;
  }

  .api-main-head h3 {
    font-size: 1.55rem;
  }

  .plugin-horizontal-card {
    padding-left: 138px;
  }

  .plugin-orbit-shell {
    width: 138px;
    height: 138px;
    left: -28px;
    top: -36px;
  }

  .plugin-main-thumb {
    width: 86px;
    height: 86px;
    left: 42px;
    top: 46px;
  }

  .account-edit-grid {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1000px 700px at 90% 10%, rgba(235, 225, 217, 0.7), transparent 60%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

body[data-page="home"] {
  background:
    radial-gradient(140% 72% at 50% -14%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.45) 44%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(120% 90% at 50% 26%, rgba(245, 239, 235, 0.95) 0%, rgba(245, 239, 235, 0.68) 50%, rgba(245, 239, 235, 0.15) 80%, rgba(245, 239, 235, 0) 100%),
    linear-gradient(180deg, #ffffff 0%, #faf6f2 36%, #f4ede7 72%, #f2ebe6 100%);
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font-family: "Outfit", sans-serif;
}

.dashboard-body {
  background: #f5efeb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #ffffff;
  color: #0b0b0d;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 200;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
}

.nav-pill {
  margin: 14px auto 0;
  width: min(1400px, 96vw);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 34px;
  width: auto;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 4px;
}

.menu-icon span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-list > li + li {
  position: relative;
  margin-left: 2px;
  padding-left: 12px;
}

.nav-list > li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(28, 27, 31, 0.15);
  transform: translateY(-50%);
}

.nav-link,
.nav-trigger {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--text);
  opacity: 0.88;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  position: relative;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
}

.nav-trigger {
  display: inline-flex;
}

.nav-link:hover,
.nav-trigger:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.2);
  transform: translateY(-1px) scale(1.01);
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
  z-index: -1;
}

.nav-link:hover::after,
.nav-trigger:hover::after {
  transform: translateX(120%);
}

.nav-list > .nav-item > .nav-link::before,
.nav-list > .nav-item > .nav-trigger::before {
  content: none;
}

.nav-list > .nav-item > .nav-link:hover::before,
.nav-list > .nav-item > .nav-trigger:hover::before {
  opacity: 0;
  animation: none;
}

.nav-link.is-active,
.nav-trigger.is-active,
.dropdown a.is-active {
  opacity: 1;
  color: var(--text);
  font-weight: 600;
}

.nav-link.is-active,
.nav-trigger.is-active {
  position: relative;
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(17, 17, 17, 0.04);
}

.nav-link.is-active::after,
.nav-trigger.is-active::after {
  content: none;
}

.dropdown a.is-active {
  background: rgba(17, 17, 17, 0.08);
}

.dropdown .nav-link::after {
  content: none;
}

.nav-item.has-menu {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-list > li {
  display: flex;
  align-items: center;
}

.nav-trigger {
  background: transparent;
  border: 1px solid transparent;
  padding: 7px 12px;
  font: inherit;
  cursor: pointer;
}

.nav-trigger:not(.is-active)::after {
  content: none !important;
}

.nav-item.has-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 235, 0.96));
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 12px;
  min-width: 186px;
  max-width: 214px;
  display: none;
  gap: 6px;
  box-shadow: 0 18px 40px rgba(18, 16, 15, 0.18);
  backdrop-filter: blur(12px);
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0.85;
  padding: 8px 12px;
  border-radius: 12px;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown a:hover {
  opacity: 1;
  background: rgba(17, 17, 17, 0.06);
}

.nav-item.has-menu:hover .dropdown,
.nav-item.has-menu:focus-within .dropdown,
.nav-item.has-menu.is-open .dropdown {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.nav-item.has-menu:hover > .nav-trigger,
.nav-item.has-menu:focus-within > .nav-trigger,
.nav-item.has-menu.is-open > .nav-trigger {
  opacity: 1;
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(34, 34, 34, 0.96));
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  position: relative;
}

.currency-flag {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.currency-switcher[data-currency="USD"] > .currency-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23b22234'/%3E%3Cg fill='%23ffffff'%3E%3Crect y='2' width='28' height='2'/%3E%3Crect y='6' width='28' height='2'/%3E%3Crect y='10' width='28' height='2'/%3E%3Crect y='14' width='28' height='2'/%3E%3C/g%3E%3Crect width='12' height='8' fill='%233c3b6e'/%3E%3C/svg%3E");
}

.currency-switcher[data-currency="AED"] > .currency-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23ffffff'/%3E%3Crect width='7' height='18' fill='%23d32f2f'/%3E%3Crect x='7' width='21' height='6' fill='%232e7d32'/%3E%3Crect x='7' y='12' width='21' height='6' fill='%23000000'/%3E%3C/svg%3E");
}

.currency-switcher[data-currency="GBP"] > .currency-flag {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23012169'/%3E%3Crect x='12' width='4' height='18' fill='%23ffffff'/%3E%3Crect y='7' width='28' height='4' fill='%23ffffff'/%3E%3Crect x='13' width='2' height='18' fill='%23c8102e'/%3E%3Crect y='8' width='28' height='2' fill='%23c8102e'/%3E%3C/svg%3E");
}

.currency-menu .currency-flag[data-currency="USD"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23b22234'/%3E%3Cg fill='%23ffffff'%3E%3Crect y='2' width='28' height='2'/%3E%3Crect y='6' width='28' height='2'/%3E%3Crect y='10' width='28' height='2'/%3E%3Crect y='14' width='28' height='2'/%3E%3C/g%3E%3Crect width='12' height='8' fill='%233c3b6e'/%3E%3C/svg%3E");
}

.currency-menu .currency-flag[data-currency="AED"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23ffffff'/%3E%3Crect width='7' height='18' fill='%23d32f2f'/%3E%3Crect x='7' width='21' height='6' fill='%232e7d32'/%3E%3Crect x='7' y='12' width='21' height='6' fill='%23000000'/%3E%3C/svg%3E");
}

.currency-menu .currency-flag[data-currency="GBP"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='18' viewBox='0 0 28 18'%3E%3Crect width='28' height='18' fill='%23012169'/%3E%3Crect x='12' width='4' height='18' fill='%23ffffff'/%3E%3Crect y='7' width='28' height='4' fill='%23ffffff'/%3E%3Crect x='13' width='2' height='18' fill='%23c8102e'/%3E%3Crect y='8' width='28' height='2' fill='%23c8102e'/%3E%3C/svg%3E");
}

.currency-current {
  appearance: none;
  background: transparent;
  color: #f5f6f8;
  border: 0;
  padding: 3px 4px 3px 0;
  font-size: 0.8rem;
  font-family: "Outfit", "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  cursor: pointer;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.currency-caret {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c5c9d3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.currency-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #111111;
  border-radius: 12px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 92px;
  z-index: 40;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.currency-switcher.is-open .currency-menu {
  display: flex;
}

.currency-menu button {
  background: transparent;
  border: 1px solid transparent;
  color: #f5f6f8;
  padding: 6px 7px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  width: 100%;
}

.currency-menu button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-button {
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.nav-button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  padding: 60px 0 80px;
}

.hero {
  padding: 90px 0 40px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  font-family: inherit;
}

.button.cta-button,
.button.detail-button {
  position: relative;
}

.button.cta-button::after,
.button.detail-button::after {
  content: "\2192";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.button.cta-button:hover::after,
.button.detail-button:hover::after {
  transform: translateX(3px);
}

.button.primary {
  background: #111111;
  color: #ffffff;
  border-color: transparent;
}

.button.ghost {
  background: transparent;
  color: var(--text);
}

.hero-grid,
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.testimonial-grid {
  margin-top: 20px;
}

.testimonial-grid--enhanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card h3 {
  margin-bottom: 8px;
}

.testimonial-card--enhanced {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.testimonial-card--enhanced::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(182, 201, 240, 0.22), transparent 72%);
  pointer-events: none;
}

.testimonial-card--enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(34, 53, 94, 0.12);
  border-color: rgba(111, 145, 205, 0.3);
}

.testimonial-stars {
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  color: #1b8ff5;
}

.testimonial-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
  color: var(--text);
}

.testimonial-live-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b8ff5;
  box-shadow: 0 0 0 0 rgba(27, 143, 245, 0.45);
  animation: testimonialPulse 1.7s ease-out infinite;
}

@keyframes testimonialPulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 143, 245, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(27, 143, 245, 0); }
  100% { box-shadow: 0 0 0 0 rgba(27, 143, 245, 0); }
}

.testimonial-metrics {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial-metrics div {
  min-width: 160px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 14px;
  display: grid;
  gap: 3px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.testimonial-metrics strong {
  font-size: 1.2rem;
  line-height: 1;
}

.testimonial-metrics span {
  color: var(--muted);
  font-size: 0.83rem;
}

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.12);
  margin-bottom: 10px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: none !important;
  stroke: var(--text) !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 50px 0;
}

.text-center {
  text-align: center;
}

.about-hero {
  padding: 22px 0 34px;
}

.about-hero-card {
  background: transparent;
  color: #0f1724;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  text-align: center;
  box-shadow: none;
}

.about-top-dot {
  display: none;
}

.about-top-dot::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9abbfe;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-hero-card h1 {
  margin: 0 auto 2px;
  width: min(1260px, 100%);
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #000000;
  font-weight: 400;
  white-space: nowrap;
}

.about-hero-card .lead {
  color: #6f7c8c;
  margin: -4px auto 4px;
  width: min(1260px, 100%);
  font-size: clamp(0.94rem, 0.9rem + 0.28vw, 1.08rem);
}

.about-team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1260px;
  margin: 0 auto;
}

.avatar-card {
  border-radius: 12px;
  border: 1px solid rgba(155, 181, 214, 0.45);
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.avatar-card img {
  width: min(100%, 390px);
  height: auto;
  object-fit: contain;
  display: block;
}

.avatar-one {
  background: #f1eab9;
}

.avatar-two {
  background: #f6cd6e;
}

.avatar-three {
  background: #a8cd87;
}

.about-story {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.about-label {
  color: #111111;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.22rem;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.about-label::before {
  content: "";
  width: 18px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(165, 187, 219, 0.56);
  background: #f2f6ff;
}

.about-story p {
  margin: 0;
  color: #101827;
  font-size: clamp(1.08rem, 0.98rem + 0.5vw, 1.36rem);
  line-height: 1.34;
}

@media (max-width: 980px) {
  .about-hero {
    padding-top: 18px;
  }

  .about-hero-card h1 {
    white-space: normal;
  }

  .about-team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
  }

  .about-label {
    font-size: 1.12rem;
  }
}

@media (max-width: 640px) {
  .about-team {
    grid-template-columns: 1fr;
  }

  .avatar-card {
    min-height: 320px;
  }
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.milestone-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.milestone-card h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
}

.milestone-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.about-logos img {
  height: 26px;
  opacity: 0.7;
  filter: grayscale(100%);
}
.logo-strip {
  padding-top: 10px;
}

.logo-slider {
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logo-scroll 22s linear infinite;
}

.logo-item {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.logo-item img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%) brightness(1.1);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.integration-panel {
  background: radial-gradient(circle at 10% 20%, rgba(255, 140, 90, 0.25), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 200, 120, 0.25), transparent 45%),
    #20140f;
  color: #f9f7f5;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(32, 20, 15, 0.35);
}

.integration-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
}

.integration-content .eyebrow {
  color: #ffb485;
}

.integration-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin: 0 0 16px;
  line-height: 1.15;
}

.integration-content .lead {
  color: rgba(255, 255, 255, 0.78);
}

.integration-panel .button.primary {
  background: #ff7a2d;
  color: #1f130f;
}

.integration-visual {
  display: flex;
  justify-content: center;
}

.integration-wheel {
  position: relative;
  width: min(320px, 70vw);
  height: min(320px, 70vw);
  display: grid;
  place-items: center;
  animation: float 6s ease-in-out infinite;
}

.wheel-ring {
  position: absolute;
  border-radius: 50%;
  inset: 0;
}

.wheel-ring-outer {
  background: conic-gradient(from 0deg, #ff7a2d, #ffb34d, #ffd07a, #ff7a2d);
  mask: radial-gradient(circle at center, transparent 52%, #000 53%);
  animation: spin 18s linear infinite;
}

.wheel-ring-middle {
  inset: 18px;
  background: conic-gradient(from 120deg, #f26922, #ff9d5c, #f26922);
  mask: radial-gradient(circle at center, transparent 50%, #000 51%);
  animation: spinReverse 14s linear infinite;
  opacity: 0.9;
}

.wheel-ring-inner {
  inset: 44px;
  background: conic-gradient(from 260deg, #ffb063, #ff7a2d, #ffb063);
  mask: radial-gradient(circle at center, transparent 46%, #000 47%);
  animation: spin 10s linear infinite;
}

.wheel-core {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ff7a2d;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #1f130f;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.2);
}

.wheel-badge {
  position: absolute;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  color: #fff0e6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
  animation: pulse 2.4s ease-in-out infinite;
}

.badge-1 { top: -12px; right: 30%; }
.badge-2 { right: -18px; top: 30%; animation-delay: 0.2s; }
.badge-3 { bottom: 10%; right: -16px; animation-delay: 0.4s; }
.badge-4 { bottom: -12px; left: 30%; animation-delay: 0.6s; }
.badge-5 { left: -18px; bottom: 32%; animation-delay: 0.8s; }
.badge-6 { left: -12px; top: 24%; animation-delay: 1s; }

.integration-panel:hover .wheel-ring-outer,
.integration-panel:hover .wheel-ring-middle,
.integration-panel:hover .wheel-ring-inner {
  animation-duration: 6s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes navBorderSweep {
  to {
    background-position: -210% 0;
  }
}

@keyframes roleFlip {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDotWave {
  0% {
    opacity: 0.7;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes typingCaret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.dashboard-shell {
  background: linear-gradient(180deg, #0c0d10, #101114);
  color: #f5f6f8;
  border-radius: 26px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(15, 16, 18, 0.28);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-sidebar {
  background: rgba(18, 19, 22, 0.9);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.dashboard-brand span {
  background: #276ef1;
  color: #ffffff;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.75rem;
}

.dashboard-nav {
  display: grid;
  gap: 6px;
}

.dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #c7c9d1;
  background: transparent;
  font-size: 0.9rem;
}

.dashboard-nav a.is-active,
.dashboard-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dashboard-main {
  display: grid;
  gap: 10px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-search {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;
  padding: 7px 11px;
  font-size: 0.9rem;
}

.dashboard-button {
  background: #2b6de8;
  color: #ffffff;
  border: none;
  padding: 7px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-ticker {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(18, 19, 22, 0.9);
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
}

.dashboard-ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-ticker-track span {
  color: rgba(245, 246, 248, 0.86);
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 3px 8px;
}

@keyframes tickerMove {
  from { transform: none; }
  to { transform: none; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.stat-card {
  background: rgba(18, 19, 22, 0.9);
  border-radius: 12px;
  padding: 11px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.stat-title {
  color: #b9bbc6;
  font-size: 0.78rem;
}

.stat-value {
  font-size: 1.22rem;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}

.dashboard-interactive {
  margin: 8px 0;
}

.dashboard-panel {
  display: none;
  background: rgba(18, 19, 22, 0.92);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f4f4f6;
}

.dashboard-panel.is-active {
  display: grid;
  gap: 8px;
}

.dashboard-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dashboard-mini-grid span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-mini-grid strong {
  font-size: 1rem;
}
.chart-card {
  background: rgba(18, 19, 22, 0.9);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: #c7c9d1;
}

.chart-line {
  width: 100%;
  height: 92px;
}

.chart-line path {
  fill: none;
  stroke: #48c78e;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dash 2.6s ease forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.uptime-bars {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 4px;
  margin-top: 10px;
}

.uptime-bars span {
  height: 24px;
  border-radius: 6px;
  background: rgba(72, 199, 142, 0.25);
  position: relative;
  overflow: hidden;
}

.uptime-bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(72, 199, 142, 0.8), rgba(72, 199, 142, 0.2));
  transform: translateY(100%);
  animation: bars 2.2s ease forwards;
}

@keyframes bars {
  to {
    transform: translateY(0%);
  }
}

.api-list {
  display: grid;
  gap: 8px;
}

.api-item {
  display: grid;
  gap: 6px;
  background: rgba(18, 19, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px;
  font-size: 0.78rem;
}

.api-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.api-bar span {
  display: block;
  height: 100%;
  background: #48c78e;
  width: 0%;
  animation: fill 4.2s ease-in-out infinite alternate;
}

@keyframes fill {
  from {
    width: 38%;
  }
  to {
    width: var(--bar, 60%);
  }
}

.dashboard-table {
  display: grid;
  gap: 16px;
  font-size: 0.9rem;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px 80px;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(18, 19, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard-row span:last-child {
  text-align: right;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.section-text {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 24px;
}

.section-text.text-center {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  padding: 80px 0 30px;
}

.home-hero {
  padding: 50px 0 22px;
  background: transparent;
}

.home-hero-content {
  display: grid;
  gap: 18px;
  text-align: center;
  padding: 20px 12px 28px;
  border-radius: 0;
  max-width: 1140px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.home-hero-content h1 {
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  margin: 0;
  color: #111111;
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
  font-weight: 600;
  white-space: nowrap;
}

.hero-role-line {
  margin: -2px 0 0;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  font-weight: 600;
  line-height: 1.1;
  color: #121214;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.42em;
  width: 100%;
  text-align: center;
}

.hero-role-prefix {
  display: inline-block;
  font-weight: 600;
}

.hero-role-line .hero-under {
  text-decoration: none;
  display: inline-block;
  min-width: 0;
  position: relative;
  text-align: center;
}

.hero-under.is-changing {
  animation: roleFlip 0.36s ease;
}

.hero-under.is-typing::after {
  content: "";
  display: inline-block;
  width: 1.5px;
  height: 0.9em;
  margin-left: 2px;
  background: rgba(18, 18, 20, 0.85);
  vertical-align: -0.04em;
  animation: typingCaret 0.95s steps(1) infinite;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(28, 27, 31, 0.2);
  color: rgba(17, 17, 17, 0.9);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  justify-self: center;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111111;
  position: relative;
  flex-shrink: 0;
}

.hero-pill-dot::before,
.hero-pill-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.28);
  animation: heroDotWave 2.2s ease-out infinite;
}

.hero-pill-dot::after {
  animation-delay: 0.8s;
}

.home-hero-content .lead {
  margin: 2px auto 0;
  max-width: 860px;
  color: rgba(23, 22, 24, 0.75);
  font-size: 1.02rem;
  line-height: 1.45;
}

.home-hero .hero-actions {
  margin-bottom: 0;
  margin-top: 8px;
}

.button.hero-cta {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.45);
  border-radius: 16px;
  padding: 14px 30px;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button.hero-cta:hover {
  transform: translateY(-1px);
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.button.hero-cta::after {
  content: none;
}

.dashboard-showcase {
  background:
    radial-gradient(1200px 480px at 56% -34%, rgba(121, 38, 62, 0.32), transparent 74%),
    linear-gradient(180deg, #06080d, #090b10);
  border-radius: 28px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 60px rgba(8, 10, 16, 0.48);
}

.dashboard-showcase-section {
  padding: 20px 0 28px;
}

.dashboard-showcase-section .container {
  width: min(1500px, 96vw);
}

.api-manager-shell {
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 0;
  min-height: 860px;
  border-radius: 20px;
  background: linear-gradient(180deg, #090b10, #0b0d12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e9edf7;
  overflow: hidden;
}

.api-manager-sidebar {
  padding: 14px 12px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
  background:
    radial-gradient(300px 160px at 2% -12%, rgba(72, 86, 142, 0.22), transparent 80%),
    linear-gradient(180deg, #080a0f, #0a0c12);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.api-manager-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.api-manager-brand strong {
  font-size: 1.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.api-manager-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, #2c73f2, #389ef4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
}

.api-manager-side-title {
  margin: 2px 0 2px;
  color: rgba(204, 211, 226, 0.78);
  font-size: 0.82rem;
}

.api-manager-nav {
  display: grid;
  gap: 4px;
}

.api-manager-nav a {
  text-decoration: none;
  color: #c9d0e2;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: background 0.2s ease, color 0.2s ease;
}

.api-manager-nav a.is-active,
.api-manager-nav a:hover {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-glyph {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.9;
}

.api-manager-side-group {
  display: grid;
  gap: 4px;
  margin-top: 4px;
}

.api-manager-side-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.api-manager-side-group-head p {
  margin: 0;
  color: rgba(201, 207, 220, 0.84);
  font-size: 0.82rem;
}

.api-manager-side-group-head span {
  color: rgba(220, 227, 241, 0.84);
  font-weight: 600;
}

.api-manager-side-group a {
  text-decoration: none;
  color: #b8c1da;
  font-size: 0.9rem;
  padding: 5px 2px 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.api-manager-side-log {
  margin-top: 2px;
  text-decoration: none;
  color: rgba(197, 206, 227, 0.92);
  font-size: 0.88rem;
}

.api-manager-shell .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.api-manager-shell .dot.dot-green {
  background: #3fd08f;
}

.api-manager-shell .dot.dot-red {
  background: #ff5e66;
}

.api-manager-shell .dot.dot-yellow {
  background: #f1c15f;
}

.api-manager-shell .dot.dot-blue {
  background: #42a8f5;
}

.api-manager-shell .dot.dot-indigo {
  background: #6b7eff;
}

.api-manager-shell .dot.dot-gray {
  background: #95a1bc;
}

.api-manager-main {
  padding: 11px 12px 13px;
  display: grid;
  gap: 9px;
}

.api-manager-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.api-manager-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(198, 207, 227, 0.9);
  font-size: 0.83rem;
}

.api-manager-breadcrumbs em {
  opacity: 0.55;
  font-style: normal;
}

.api-manager-tools {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.api-manager-search {
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 6px 10px 6px 30px;
  font-size: 0.8rem;
  color: rgba(202, 211, 229, 0.78);
  background: rgba(16, 18, 26, 0.96);
  position: relative;
}

.api-manager-search::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(202, 211, 229, 0.78);
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.api-manager-search::after {
  content: "";
  position: absolute;
  left: 20px;
  top: calc(50% + 4px);
  width: 6px;
  height: 2px;
  background: rgba(202, 211, 229, 0.78);
  transform: rotate(45deg);
  border-radius: 2px;
}

.tool-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.tool-dot.red {
  background: #fb6673;
}

.tool-dot.muted {
  background: rgba(215, 223, 241, 0.8);
}

.tool-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d7c8b2, #b59f82);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.api-manager-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.api-manager-headline h3 {
  margin: 0;
  color: #f8fbff;
  font-size: 2.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.api-manager-headline button {
  border: none;
  border-radius: 9px;
  background: #2e75ea;
  color: #ffffff;
  padding: 9px 18px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.api-manager-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.api-manager-metric-card {
  background: linear-gradient(170deg, rgba(20, 23, 31, 0.96), rgba(14, 16, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 9px 11px;
  display: grid;
  gap: 5px;
  min-height: 96px;
}

.metric-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.metric-badge {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08) inset;
}

.metric-badge.metric-blue {
  background: #3a7cff;
}

.metric-badge.metric-green {
  background: #36be82;
}

.metric-badge.metric-yellow {
  background: #efbf62;
}

.metric-badge.metric-red {
  background: #ef5965;
}

.api-manager-metric-card p {
  margin: 0;
  color: rgba(195, 203, 222, 0.9);
  font-size: 0.89rem;
}

.api-manager-metric-card strong {
  font-size: 2.05rem;
  color: #f4f7ff;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.015em;
}

.api-manager-metric-card strong span {
  font-size: 0.58em;
  margin-left: 2px;
}

.api-manager-metric-card small {
  font-size: 0.76rem;
}

.api-manager-metric-card small.positive {
  color: #56d59b;
}

.api-manager-panel {
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(15, 18, 26, 0.96), rgba(11, 13, 19, 0.96));
  padding: 9px 11px;
}

.api-manager-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 0.93rem;
  color: #d8dff0;
}

.api-manager-panel .legend {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  color: rgba(192, 201, 220, 0.88);
}

.api-manager-panel .legend em {
  font-style: normal;
  color: #51d69d;
}

.api-manager-panel-traffic svg {
  width: 100%;
  height: 182px;
  display: block;
}

.traffic-fill {
  fill: url(#apiTrafficFill);
}

.traffic-line {
  fill: none;
  stroke: #4bd098;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.error-line {
  fill: none;
  stroke: #e86474;
  stroke-width: 1.8;
  stroke-dasharray: 7 8;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(174, 182, 201, 0.74);
  font-size: 0.76rem;
  margin-top: 6px;
}

.api-manager-mid-grid {
  display: grid;
  grid-template-columns: 1.48fr 1fr;
  gap: 7px;
}

.uptime-grid {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: 3px;
}

.uptime-grid span {
  height: 64px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(89, 226, 154, 0.9), rgba(39, 162, 109, 0.55));
}

.uptime-grid span.is-warn {
  background: linear-gradient(180deg, rgba(241, 193, 95, 0.95), rgba(172, 133, 56, 0.58));
}

.uptime-grid span.is-error {
  background: linear-gradient(180deg, rgba(255, 94, 102, 0.95), rgba(157, 55, 60, 0.56));
}

.api-manager-top-list {
  display: grid;
  gap: 7px;
}

.api-manager-top-list div {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  color: rgba(215, 223, 241, 0.9);
  font-size: 0.85rem;
}

.api-manager-top-list .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.api-manager-top-list .bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #35b47b, #50e2a7);
}

.api-manager-top-list em {
  font-style: normal;
  color: #d9e2f7;
  white-space: nowrap;
}

.api-manager-top-list em small {
  font-style: normal;
  margin-left: 3px;
}

.trend-up {
  color: #4fd49a !important;
}

.trend-down {
  color: #eb727f !important;
}

.api-manager-bottom-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.1fr 1.18fr;
  gap: 7px;
}

.api-manager-bottom-grid h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #f0f4ff;
}

.status-panel ul,
.alerts-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.status-panel li,
.alerts-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: rgba(206, 214, 232, 0.88);
  font-size: 0.84rem;
}

.alerts-panel li {
  justify-content: flex-start;
}

.alerts-panel strong {
  color: #ffd5da;
  border: 1px solid rgba(255, 137, 151, 0.28);
  background: rgba(255, 103, 121, 0.2);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.status-panel li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 2px 8px;
  font-size: 0.74rem;
}

.status-panel li:nth-child(1) span {
  color: #8de9ba;
  border-color: rgba(89, 221, 160, 0.4);
  background: rgba(72, 195, 140, 0.2);
}

.status-panel li:nth-child(2) span {
  color: #f5d285;
  border-color: rgba(245, 210, 133, 0.42);
  background: rgba(207, 162, 73, 0.2);
}

.status-panel li:nth-child(3) span {
  color: #ffb2ba;
  border-color: rgba(255, 109, 128, 0.42);
  background: rgba(210, 84, 100, 0.2);
}

.table-panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.table-panel th {
  text-align: left;
  color: rgba(183, 191, 211, 0.88);
  font-weight: 500;
  padding: 0 7px 7px 0;
}

.table-panel td {
  color: rgba(219, 226, 242, 0.93);
  padding: 7px 7px 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.table-panel td:last-child,
.api-manager-performance td:nth-child(8) {
  color: #5bd6a1;
}

.api-manager-panel-traffic svg defs {
  display: none;
}

.api-manager-panel-traffic {
  position: relative;
}

.api-manager-panel-traffic::after {
  content: "";
  position: absolute;
  inset: 34px 8px 10px;
  border-radius: 8px;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(900px 220px at 65% 20%, rgba(75, 208, 152, 0.14), transparent 68%);
  background-size: 100% 34px, 100% 100%;
}

.api-manager-panel-traffic .traffic-fill {
  fill: rgba(74, 214, 151, 0.12);
}

.api-manager-panel-traffic svg path {
  position: relative;
  z-index: 2;
}

.api-manager-performance {
  margin-top: 2px;
}

.api-manager-performance table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.api-manager-performance th {
  text-align: left;
  color: rgba(179, 188, 210, 0.85);
  font-weight: 500;
  padding: 0 7px 7px 0;
}

.api-manager-performance td {
  color: rgba(224, 230, 244, 0.93);
  padding: 7px 7px 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.api-manager-performance td:nth-child(5),
.api-manager-performance td:nth-child(6),
.api-manager-performance td:nth-child(8) {
  color: #56d69e;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid transparent;
}

.status-chip.status-ok {
  color: #8aefbb;
  background: rgba(76, 208, 146, 0.15);
  border-color: rgba(76, 208, 146, 0.35);
}

.status-chip.status-error {
  color: #ffb5bc;
  background: rgba(239, 89, 101, 0.18);
  border-color: rgba(239, 89, 101, 0.36);
}

.admin-kpi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-kpi-card {
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  background:
    radial-gradient(220px 120px at 100% 0, rgba(118, 141, 202, 0.16), transparent 72%),
    linear-gradient(180deg, #ffffff, #f7f2ed);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.admin-kpi-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.admin-kpi-card strong {
  font-size: 1.55rem;
  line-height: 1.06;
}

.admin-kpi-card small {
  color: var(--muted);
  font-size: 0.79rem;
}

.admin-sidebar {
  background: linear-gradient(180deg, #ffffff, #f7f2ed);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-tab:hover {
  border-color: rgba(17, 17, 17, 0.24);
  transform: translateY(-1px);
}

.admin-tab-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  font-size: 0;
  background: rgba(17, 17, 17, 0.24);
}

.admin-tab.is-active .admin-tab-icon {
  background: #ffffff;
}

.admin-panel {
  padding: 0;
}

.admin-form-card,
.admin-users-head,
.admin-users-table-wrap,
.admin-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: linear-gradient(180deg, #ffffff, #f9f4ef);
}

.admin-users-table th {
  background: rgba(17, 17, 17, 0.04);
}

@media (max-width: 1280px) {
  .api-manager-shell {
    grid-template-columns: 220px 1fr;
  }

  .api-manager-headline h3 {
    font-size: 2.25rem;
  }

  .api-manager-bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .table-panel {
    grid-column: 1 / -1;
  }

  .api-manager-performance {
    overflow-x: auto;
  }

  .api-manager-performance table {
    min-width: 900px;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.milestone-strip {
  padding-top: 12px;
}

body[data-page="about"] .milestone-strip {
  margin-top: 28px;
}

.milestone-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: clamp(24px, 3vw, 34px) clamp(20px, 3vw, 34px);
  border-radius: 20px;
  border: 1px solid rgba(165, 187, 214, 0.5);
  background: linear-gradient(90deg, #f7f9fc 0%, #e8f2fc 52%, #f7f9fc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 30px rgba(106, 132, 171, 0.14);
  text-align: left;
}

.milestone-row > div {
  padding: 8px clamp(10px, 1.2vw, 18px);
}

.milestone-row > div + div {
  border-left: 1px solid rgba(88, 124, 180, 0.2);
}

.milestone-row h3 {
  margin: 0 0 7px;
  font-size: clamp(2.25rem, 2.55vw, 3.15rem);
  letter-spacing: -0.02em;
  color: #0f1724;
  line-height: 1;
}

.milestone-row p {
  margin: 0;
  color: #7a8593;
  font-size: clamp(0.82rem, 0.76rem + 0.24vw, 0.98rem);
  font-weight: 400;
}

.feature-band {
  background: #e9dccf;
  border-radius: 0;
  padding: 40px 0;
}

.feature-band .section-title {
  font-size: clamp(2.15rem, 2.4vw, 2.55rem);
}

.feature-rotate-title {
  font-size: clamp(1.38rem, 4.2vw, 3rem);
  letter-spacing: 0.03em;
  white-space: nowrap;
  line-height: 1.12;
}

.feature-rotate-title .feature-rotate-title-track {
  --feature-rotate-line: 1.12em;
  position: relative;
  display: inline-grid;
  align-items: center;
  justify-items: center;
  min-height: var(--feature-rotate-line);
  line-height: var(--feature-rotate-line);
  overflow: hidden;
  white-space: nowrap;
  will-change: transform, opacity;
}

.feature-rotate-title .feature-rotate-title-track > span {
  grid-area: 1 / 1;
  display: block;
  text-transform: uppercase;
  line-height: var(--feature-rotate-line);
  white-space: nowrap;
  will-change: transform, opacity;
}

.feature-rotate-title .feature-rotate-title-track > span:first-child {
  animation: featureRotateLineOne 4.8s cubic-bezier(0.35, 0, 0.2, 1) infinite;
}

.feature-rotate-title .feature-rotate-title-track > span:last-child {
  animation: featureRotateLineTwo 4.8s cubic-bezier(0.35, 0, 0.2, 1) infinite;
}

@keyframes featureRotateLineOne {
  0%,
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  92% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes featureRotateLineTwo {
  0%,
  42% {
    opacity: 0;
    transform: translateY(100%);
  }
  50%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

.feature-grid {
  margin-top: 24px;
}

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

.feature-band .feature-card {
  grid-column: span 4;
  min-height: 232px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.34) !important;
  background: linear-gradient(180deg, #9abbfe 0%, #cddfff 54%, #f5f9ff 100%) !important;
  box-shadow: none !important;
  color: #0f1724;
}

.feature-band .feature-card h3 {
  margin: 0 0 7px;
  font-size: 1.2rem;
  line-height: 1.24;
  color: #000000 !important;
}

.feature-band .feature-card p {
  margin: 0;
  color: #000000 !important;
  line-height: 1.4;
}

.feature-band .feature-card--panel {
  grid-column: span 4;
  min-height: 296px;
  padding: 16px 18px 16px;
}

.feature-band .feature-panel-shot {
  min-height: 156px;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-band .feature-panel-shot img {
  width: min(315px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(18, 32, 52, 0.16));
}

.feature-band .feature-card--realtime {
  grid-column: span 8;
  min-height: 314px;
  padding: 16px 18px 16px;
}

.feature-band .feature-rt-visual {
  display: block;
  min-height: 217px;
  margin: 0 0 -47px;
}

.feature-band .feature-rt-chip {
  display: none !important;
}

.feature-band .feature-rt-connector {
  display: none !important;
}

.feature-band .feature-rt-panel {
  width: 100%;
  min-height: 217px;
  height: 217px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
  overflow: hidden;
}

.feature-band .feature-rt-panel img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
  filter: none;
  transform: scale(1.08);
  transform-origin: left center;
}

.feature-band .feature-card--realtime h3,
.feature-band .feature-card--realtime p {
  margin-left: 28px;
}

@media (max-width: 1160px) {
  .feature-band .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band .feature-card,
  .feature-band .feature-card--panel,
  .feature-band .feature-card--realtime {
    grid-column: span 1;
  }

  .feature-band .feature-card--realtime .feature-rt-visual {
    min-height: 156px;
    margin: 0 0 14px;
  }

  .feature-band .feature-card--realtime .feature-rt-panel {
    width: 100%;
    min-height: 172px;
    height: 172px;
  }
}

@media (max-width: 760px) {
  .feature-band .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-band .feature-card,
  .feature-band .feature-card--panel,
  .feature-band .feature-card--realtime {
    grid-column: span 1;
    min-height: auto;
  }

  .feature-band .feature-rt-visual {
    min-height: auto;
  }

  .feature-band .feature-card--realtime .feature-rt-panel {
    width: 100%;
    min-height: 162px;
    height: 162px;
  }
}

.feature-card {
  background: #111111;
  color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  min-height: 150px;
}

.feature-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.feature-card-icon.workflow-icon img {
  filter: brightness(0) saturate(100%);
}

.feature-band .feature-card--support {
  min-height: 296px;
  padding: 16px 18px 16px;
  text-align: center;
}

.feature-band .feature-card--support .feature-card-icon {
  width: 100%;
  height: 146px;
  margin: 0 auto 14px;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0;
  justify-content: center;
}

.feature-band .feature-card--support .feature-card-icon img {
  width: min(95%, 290px);
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.feature-band .feature-card--security .feature-card-icon img {
  width: min(95%, 272px);
}

.feature-band .feature-card--workflow .feature-card-icon img {
  width: min(95%, 248px);
  opacity: 0.92;
  filter: brightness(0) saturate(100%);
}

.feature-band .feature-card--dashboard .feature-card-icon img {
  width: min(95%, 282px);
}

.feature-band .feature-card--support h3,
.feature-band .feature-card--support p {
  text-align: center !important;
}

.feature-band .feature-card--support p {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.75);
}

.persona-section {
  background: #0f0f12;
  color: #ffffff;
  border-radius: 24px;
  padding: 40px 0;
}

.persona-section .section-title {
  color: #ffffff;
}

.persona-grid {
  margin-top: 24px;
}

.persona-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
}

.persona-card p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-strip {
  text-align: center;
  padding: 30px 0 40px;
}

.testimonial-quote {
  font-size: 1.2rem;
  max-width: 760px;
  margin: 0 auto 12px;
}

.testimonial-author {
  color: var(--muted);
  font-size: 0.9rem;
}

.pricing-band {
  background: #e9dccf;
  border-radius: 24px;
  padding: 40px 0;
}

.pricing-grid {
  margin-top: 24px;
}

.pricing-card {
  background: #111111;
  color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-card .price {
  font-size: 1.6rem;
  margin: 0;
}

.pricing-card .price span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card.featured {
  background: #3a1a16;
}

.pricing-card .button.primary {
  background: #f0c8a8;
  color: #1f130f;
}

.changelog-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.changelog-summary {
  display: grid;
  gap: 12px;
}

.changelog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.changelog-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 0.8rem;
  color: var(--muted);
}

.changelog-timeline {
  display: grid;
  gap: 18px;
  position: relative;
}

.changelog-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}

.changelog-date {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 12px;
}

.changelog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.changelog-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.changelog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.changelog-badge {
  background: #111111;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.changelog-badge.neutral {
  background: #efe2d6;
  color: #3a1a16;
}

.help-hero {
  padding: 70px 0 40px;
  text-align: center;
}

.help-hero h1 {
  margin: 0 0 6px;
  font-size: clamp(2.4rem, 5.8vw, 4.1rem);
  line-height: 1.04;
}

.help-subtitle {
  color: var(--muted);
  margin: 0 0 12px;
}

.help-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  width: min(520px, 90vw);
  margin: 12px auto 12px;
}

.help-search input {
  border: none;
  outline: none;
  flex: 1;
  font-family: inherit;
  font-size: 0.95rem;
  background: transparent;
}

.help-search button {
  border: none;
  background: #111111;
  color: #ffffff;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.help-search button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-search-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(18, 16, 15, 0.14);
  max-height: 320px;
  overflow: auto;
  z-index: 40;
  text-align: left;
  padding: 8px;
}

.help-search-dropdown a {
  display: block;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.help-search-dropdown a:hover {
  background: rgba(17, 17, 17, 0.06);
}

.help-search-dropdown strong {
  display: block;
  font-size: 0.94rem;
}

.help-search-dropdown span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.help-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.help-cards--ten {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.help-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  text-align: left;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.help-card:hover {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.1);
}

.help-card h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.28;
}

.help-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.help-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #111111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-question {
  padding: 40px 0;
  text-align: center;
}

.help-question-inner h2 {
  margin-bottom: 16px;
}

.help-question-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.help-contact {
  padding: 40px 0;
}

.help-contact-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: stretch;
}

.help-contact h2 {
  margin: 0 0 2px;
}

.help-contact .help-subtitle {
  margin-top: 0;
  margin-bottom: 12px;
}

.help-contact-info {
  background: linear-gradient(180deg, #ffffff, #f8f2ec);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 16px;
}

.help-info-card {
  background: #111111;
  color: #ffffff;
  border-radius: 14px;
  padding: 16px;
}

.help-info-card h3 {
  margin: 0 0 4px;
}

.help-info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.help-info-points {
  display: grid;
  gap: 10px;
}

.help-info-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--text);
}

.help-contact-card {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.help-contact-top {
  text-align: center;
  display: grid;
  gap: 6px;
}

.help-contact-top .help-subtitle {
  margin: 0;
}

.help-contact-visual {
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    radial-gradient(500px 220px at 22% 110%, rgba(120, 48, 74, 0.2), transparent 70%),
    linear-gradient(160deg, #0b0c11, #121420 72%);
  padding: 14px;
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.help-code-window {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(9, 10, 14, 0.74);
  padding: 12px;
}

.help-code-head {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 10px;
}

.help-code-head span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.help-code-lines {
  display: grid;
  gap: 8px;
}

.help-code-lines span {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(235, 242, 255, 0.8), rgba(93, 117, 255, 0.25));
  width: 72%;
  animation: helpCodeSweep 3.1s ease-in-out infinite;
}

.help-code-lines span:nth-child(2) {
  width: 64%;
  animation-delay: 0.2s;
}

.help-code-lines span:nth-child(3) {
  width: 82%;
  animation-delay: 0.4s;
}

.help-code-lines span:nth-child(4) {
  width: 58%;
  animation-delay: 0.6s;
}

.help-code-lines span:nth-child(5) {
  width: 70%;
  animation-delay: 0.8s;
}

.help-code-lines span:nth-child(6) {
  width: 50%;
  animation-delay: 1s;
}

.help-code-pulse {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -42px;
  bottom: -64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 98, 136, 0.45), rgba(245, 98, 136, 0.02) 70%);
  filter: blur(1px);
  animation: helpPulseFloat 3.8s ease-in-out infinite;
}

@keyframes helpCodeSweep {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: translateX(8px);
    opacity: 0.6;
  }
}

@keyframes helpPulseFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.help-contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.help-contact-form textarea {
  min-height: 120px;
}

.help-contact-form select {
  appearance: none;
  background:
    linear-gradient(180deg, #ffffff, #f8f2ec),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center / 14px 14px;
  padding-right: 38px;
  cursor: pointer;
}

.subject-picker {
  position: relative;
}

.subject-picker-trigger {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8f2ec);
  min-height: 44px;
  padding: 10px 14px;
  text-align: left;
  font: inherit;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.subject-picker-trigger:hover,
.subject-picker-trigger[aria-expanded="true"] {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

.subject-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.75;
  transition: transform 0.18s ease;
}

.subject-picker-trigger[aria-expanded="true"] .subject-caret {
  transform: rotate(225deg) translateY(-1px);
}

.subject-picker-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.14);
  padding: 6px;
  z-index: 45;
  display: grid;
  gap: 4px;
}

.subject-picker-menu button {
  border: none;
  background: transparent;
  font: inherit;
  color: var(--text);
  text-align: left;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.subject-picker-menu button:hover {
  background: rgba(17, 17, 17, 0.08);
}

.subject-picker-menu button.is-selected {
  background: rgba(17, 17, 17, 0.12);
  font-weight: 500;
}

.help-tech-fields select[data-tech-product] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 48px;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #f9f5f1);
  appearance: none;
}

.help-topic-card {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.help-topic-hero .container {
  text-align: center;
}

.help-topic-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  overflow: visible;
}

.help-topic-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.help-topic-head .help-card-icon,
.help-topic-section-head .help-card-icon {
  margin-bottom: 0;
  flex: 0 0 34px;
  align-self: center;
}

.help-topic-head > div {
  display: grid;
  gap: 2px;
  align-content: center;
}

.help-topic-meta {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.help-topic-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.help-topic-side {
  display: grid;
  gap: 14px;
  position: sticky !important;
  top: 106px;
  align-self: start;
  max-height: calc(100vh - 124px);
  overflow: auto;
}

.help-topic-side-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.help-topic-side-list a {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.help-topic-side-list a > span:last-child {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.help-topic-side-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f4b76;
  flex: 0 0 18px;
}

.help-topic-side-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-topic-side-list a:hover {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(17, 17, 17, 0.05);
  transform: translateY(-1px);
}

.help-topic-main {
  display: grid;
  gap: 14px;
}

.changelog-hero .lead {
  text-align: left;
}

.help-topic-section-card {
  display: grid;
  gap: 12px;
}

.help-topic-section-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
}

.help-topic-section-head h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
}

.help-topic-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text);
  list-style: none;
}

.help-topic-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 9px 10px;
  background: #ffffff;
}

.help-topic-bullet {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2e9b72;
}

.help-topic-bullet svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.help-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.help-radio label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-cta {
  padding: 40px 0 60px;
}

body[data-page="help-center"] .help-cta {
  padding-bottom: 0;
}

body[data-page="help-center"] .page {
  padding-bottom: 0;
}

.how-hero .container {
  text-align: center;
}

.how-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.how-card {
  display: grid;
  gap: 8px;
}

.how-summary {
  gap: 14px;
}

.how-summary h2 {
  margin: 0;
  text-align: center;
}

.changelog-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  justify-content: center;
}

.help-cta-card {
  background: #111111;
  color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.help-cta-label {
  color: rgba(255, 255, 255, 0.7);
}

.help-cta-list {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.help-cta-card .button.primary {
  background: #f0c8a8;
  color: #1f130f;
}

.dashboard-header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid var(--border);
  justify-content: center;
  justify-self: center;
  min-width: 420px;
}

.dashboard-tabs .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.dashboard-tabs .button svg {
  width: 16px;
  height: 16px;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dashboard-cards {
  margin-top: 20px;
}

.dashboard-cards .stat-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 18px;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(28, 27, 31, 0.08);
}

.dashboard-cards .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(28, 27, 31, 0.12);
}

.dashboard-cards .stat-card .card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-cards .stat-card h3 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.dashboard-cards .stat-value {
  font-size: 1.5rem;
  font-weight: 600;
}

.dashboard-summary {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.summary-card {
  display: flex;
  gap: 14px;
  align-items: center;
}

.purchase-card,
.product-card {
  position: relative;
  padding-top: 18px;
}

.purchase-card {
  display: grid;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.dashboard-live-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.dashboard-live {
  display: grid;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 18px 36px rgba(28, 27, 31, 0.08);
}

.dashboard-live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.dashboard-live-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: #f7f4f1;
  border-radius: 16px;
  padding: 12px;
}

.dashboard-live-metrics div {
  display: grid;
  gap: 4px;
}

.dashboard-live-metrics span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.dashboard-live-metrics strong {
  font-size: 1.1rem;
}

.chart-controls {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f2ece7;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: flex-start;
  width: max-content;
}

.chart-range {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
}

.chart-range.is-active {
  background: #111111;
  color: #ffffff;
}

.dashboard-chart {
  background: linear-gradient(180deg, #0f1016, #12131b);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.dashboard-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 31px, rgba(255, 255, 255, 0.04) 32px),
    linear-gradient(90deg, transparent 59px, rgba(255, 255, 255, 0.04) 60px);
  background-size: 100% 32px, 60px 100%;
  opacity: 0.6;
  pointer-events: none;
}

.dashboard-chart svg {
  width: 100%;
  height: 160px;
}

.dashboard-chart path {
  fill: none;
  stroke: #58d39a;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: d 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(88, 211, 154, 0.45));
}

.dashboard-chart .chart-area {
  fill: url(#trafficGradient);
  stroke: none;
}

.dashboard-chart .chart-line--error {
  stroke: #f05d5e;
  stroke-width: 2.2;
  opacity: 0.85;
  stroke-dasharray: 6 8;
  filter: drop-shadow(0 0 6px rgba(240, 93, 94, 0.4));
}

.dashboard-api-list h3 {
  margin-top: 0;
}

.api-overview {
  display: grid;
  gap: 12px;
}

.api-overview-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 8px;
  box-shadow: 0 10px 22px rgba(28, 27, 31, 0.06);
}

.api-overview-card h4 {
  margin: 0 0 4px;
}

.api-overview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.account-grid {
  margin-top: 20px;
}

.account-card {
  display: grid;
  gap: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 36px rgba(28, 27, 31, 0.08);
}

.account-view {
  display: grid;
  gap: 8px;
  background: #f7f4f1;
  border-radius: 16px;
  padding: 16px;
}

.account-avatar {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-app {
  padding: 18px 16px 60px;
}

.dashboard-appbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 8px 12px;
  box-shadow: var(--shadow);
  margin: 10px auto 24px;
  max-width: 1400px;
  width: min(1400px, 96vw);
  position: relative;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-brand strong {
  display: block;
  font-size: 1rem;
}

.dashboard-brand img {
  height: 64px;
  width: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.dashboard-brand span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #ffffff;
  background: #111111;
}

.dashboard-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: auto;
}

.dashboard-actions .button {
  width: auto;
  justify-content: center;
}

.dashboard-actions .button.icon-only {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 14px;
}

.dashboard-app .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-app .button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-content {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-message {
  padding: 12px 14px;
  border-radius: 12px;
  margin: 0 0 18px;
  font-weight: 500;
}

.dashboard-message.success {
  background: rgba(46, 155, 114, 0.12);
  color: #1b3a2f;
  border: 1px solid rgba(46, 155, 114, 0.3);
}

.dashboard-message.error {
  background: rgba(240, 93, 94, 0.12);
  color: #6e1f1f;
  border: 1px solid rgba(240, 93, 94, 0.3);
}

.dashboard-cta-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}

.intro-restart {
  gap: 6px;
}

.account-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--text);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-edit {
  display: none;
  gap: 16px;
  grid-template-columns: 1fr;
}

.account-card.is-editing .account-edit {
  display: grid;
}

.account-card.is-editing .account-view {
  display: none;
}

.account-form {
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.account-form h4 {
  margin: 0;
}

.account-form + .account-form {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.account-form .button {
  width: 100%;
  justify-content: center;
}

.password-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.password-wrap input {
  display: block;
  width: 100%;
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.password-toggle:hover {
  background: rgba(17, 17, 17, 0.08);
  color: var(--text);
}

.password-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-purchases {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.dashboard-products {
  margin-top: 18px;
}

.dashboard-products .product-card {
  display: grid;
  gap: 12px;
}

.dashboard-products .product-price {
  font-size: 1.35rem;
}

.admin-dashboard-page .dashboard-content {
  max-width: 1380px;
}

.admin-appbar {
  position: static;
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
}

.admin-sidebar {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 18px;
  padding: 14px;
}

.admin-tab {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}

.admin-tab.is-active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.admin-main {
  display: grid;
  gap: 18px;
}

.admin-panel {
  display: none;
  gap: 16px;
}

.admin-panel.is-active {
  display: grid;
}

.admin-form-card {
  display: grid;
  gap: 16px;
}

.admin-form-card h2 {
  margin: 0;
}

.admin-grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.admin-grid-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-grid-form input,
.admin-grid-form select,
.admin-grid-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
}

.admin-grid-form textarea {
  resize: vertical;
}

.admin-grid-form .span-2 {
  grid-column: 1 / -1;
}

.admin-row-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: grid;
  gap: 14px;
}

.admin-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-user-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user-meta img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.admin-user-meta h3 {
  margin: 0;
}

.admin-user-meta p {
  margin: 2px 0 0;
}

.admin-delete-form {
  display: inline-flex;
}

.admin-product-preview {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.admin-users-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.admin-users-head h2 {
  margin: 0 0 2px;
}

.admin-users-head p {
  margin: 0;
}

.admin-total-users {
  min-width: 140px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  background: #f8f4ef;
}

.admin-total-users span {
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-total-users strong {
  font-size: 1.4rem;
}

.admin-users-table-wrap {
  overflow-x: auto;
}

.admin-users-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 920px;
}

.admin-users-table th,
.admin-users-table td {
  padding: 10px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.admin-users-table th {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.admin-user-cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admin-user-cell img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.admin-view-btn {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.admin-user-details-row td {
  background: #f8f4ef;
}

.admin-expanded {
  display: grid;
  gap: 14px;
  padding: 8px 6px;
}

.admin-expanded-meta {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.admin-expanded-meta p {
  margin: 0;
}

.admin-expanded-history h4 {
  margin: 0 0 8px;
}

.admin-history {
  display: grid;
  gap: 8px;
}

.admin-history div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: grid;
  gap: 2px;
}

.hash-cell {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  display: inline-block;
  word-break: break-all;
  letter-spacing: 0.01em;
}

.plain-pass {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.onboarding-focus {
  position: relative;
  z-index: 2900;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.9);
  border-radius: 16px;
}

.onboarding {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.14);
  display: block;
  z-index: 3000;
  pointer-events: none;
}

.onboarding.is-hidden {
  display: none;
}

.onboarding-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  width: min(330px, 92vw);
  display: grid;
  gap: 6px;
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 3002;
  pointer-events: auto;
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.onboarding-step {
  font-size: 0.74rem;
  color: var(--muted);
  margin: 0;
}

.onboarding-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.onboarding-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.onboarding-card p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.onboarding-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 4px;
}

.onboarding-actions .button {
  font-size: 0.82rem;
  padding: 8px 14px;
}

.custom-hero .container {
  text-align: center;
}

.custom-hero .lead {
  margin: 0 auto;
  max-width: 860px;
}

.plugins-hero {
  padding: 60px 0 14px;
}

.plugins-hero--compact .container {
  text-align: center;
}

.plugins-hero--compact {
  padding: 34px 0 12px;
}

.plugins-hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 8px;
}

.plugins-hero .lead {
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

.plugins-hero .plugins-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto clamp(30px, 4vw, 54px);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(88, 124, 180, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.95));
  box-shadow: 0 10px 20px rgba(27, 58, 95, 0.1);
  color: #1b3a5c;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.008em;
  line-height: 1.25;
  backdrop-filter: blur(2px);
  width: fit-content;
  max-width: min(92vw, 760px);
}

.plugin-horizontal-section {
  padding-top: 6px;
}

.plugin-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plugin-horizontal-card {
  position: relative;
  display: block;
  min-height: 132px;
  overflow: visible;
  padding: 14px 16px 14px 126px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(7, 8, 12, 0.92), rgba(10, 12, 18, 0.94)),
    radial-gradient(500px 220px at 82% -18%, rgba(191, 61, 99, 0.28), transparent 72%),
    var(--plugin-cover) center center / cover no-repeat,
    radial-gradient(560px 240px at 85% -10%, rgba(191, 61, 99, 0.2), transparent 70%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 8px),
    linear-gradient(160deg, #0a0b10, #11131a 70%);
  box-shadow: 0 16px 36px rgba(7, 8, 12, 0.28);
}

.plugin-orbit-visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 3;
  pointer-events: none;
}

.plugin-orbit-shell {
  width: 150px;
  height: 150px;
  position: absolute;
  left: -52px;
  top: -50px;
}

.plugin-main-thumb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.18);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f7f1eb;
  z-index: 3;
  animation: pluginMainFloat 4.4s ease-in-out infinite;
}

.plugin-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  animation: pluginOrbitSpin 14s linear infinite;
}

.plugin-orbit-ring.ring-two {
  inset: 20px;
  border-color: rgba(255, 255, 255, 0.14);
  animation-direction: reverse;
  animation-duration: 18s;
}

.plugin-orbit-logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.16);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.15);
  position: absolute;
  left: 50%;
  top: 50%;
}

.plugin-orbit-logo.orbit-one { transform: translate(-50%, -50%) rotate(0deg) translateY(-73px) rotate(0deg); }
.plugin-orbit-logo.orbit-two { transform: translate(-50%, -50%) rotate(90deg) translateY(-73px) rotate(-90deg); }
.plugin-orbit-logo.orbit-three { transform: translate(-50%, -50%) rotate(180deg) translateY(-73px) rotate(-180deg); }
.plugin-orbit-logo.orbit-four { transform: translate(-50%, -50%) rotate(270deg) translateY(-73px) rotate(-270deg); }

.plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-two { transform: translate(-50%, -50%) rotate(90deg) translateY(-53px) rotate(-90deg); }
.plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-four { transform: translate(-50%, -50%) rotate(270deg) translateY(-53px) rotate(-270deg); }

@keyframes pluginOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pluginMainFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-7px);
  }
}

.plugin-horizontal-card:nth-child(odd) {
  padding-left: 16px;
  padding-right: 126px;
}

.plugin-horizontal-card:nth-child(odd) .plugin-orbit-shell {
  left: auto;
  right: -52px;
}

.plugin-horizontal-card:nth-child(even) {
  padding-left: 126px;
  padding-right: 16px;
}

.plugin-horizontal-content h3 {
  margin: 0 0 5px;
  font-size: 1.14rem;
  color: #ffffff;
}

.plugin-horizontal-content p {
  margin: 0 0 10px;
  color: rgba(241, 243, 247, 0.78);
  font-size: 0.89rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plugin-horizontal-content .button {
  border-color: rgba(255, 255, 255, 0.25);
  color: #f6f7fb;
}

.plugin-horizontal-content .button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.page-hero h1 + .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 + p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.product-grid {
  margin-top: 24px;
  gap: 20px;
}

.product-card {
  display: grid;
  gap: 10px;
}

.product-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f1ebe5;
}

.product-card .button {
  width: 100%;
  justify-content: center;
}

.product-card form {
  margin: 0;
}

.product-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 600;
}

.plugin-detail-grid,
.product-detail-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.plugin-detail-card,
.product-detail-card {
  display: grid;
  gap: 14px;
}

.plugin-detail-card--pricing {
  align-content: start;
  position: sticky;
  top: 112px;
  border: 1px solid rgba(88, 124, 180, 0.24);
  background: linear-gradient(180deg, #ffffff, #f3f7ff);
  box-shadow: 0 16px 32px rgba(110, 139, 185, 0.16);
}

.plugin-detail-hero {
  padding: 34px 0 40px;
}

.plugin-detail-wrap {
  display: grid;
  gap: 18px;
}

.plugin-detail-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
  background: linear-gradient(140deg, #ffffff, #edf4ff);
  color: var(--text);
  border-color: rgba(88, 124, 180, 0.24);
  box-shadow: 0 22px 44px rgba(101, 129, 173, 0.16);
  position: relative;
  overflow: hidden;
}

.plugin-detail-main::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 201, 240, 0.45), rgba(182, 201, 240, 0));
  pointer-events: none;
}

.plugin-detail-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.1;
  color: var(--text);
}

.plugin-detail-copy .lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.plugin-detail-copy {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.plugin-detail-main--improved {
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 20px 38px rgba(99, 129, 181, 0.16);
}

.plugin-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.plugin-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(88, 124, 180, 0.24);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(182, 201, 240, 0.22);
  color: var(--text);
  font-size: 0.82rem;
}

.plugin-meta-row strong {
  font-weight: 700;
}

.plugin-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.plugin-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(88, 124, 180, 0.24);
  background: rgba(182, 201, 240, 0.16);
  color: #1d2430;
  font-size: 0.82rem;
  padding: 6px 12px;
}

.plugin-badge.status-active {
  border-color: rgba(82, 122, 196, 0.42);
  background: rgba(182, 201, 240, 0.26);
}

.plugin-quick-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.plugin-quick-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(88, 124, 180, 0.24);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plugin-quick-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(88, 124, 180, 0.2);
}

.plugin-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.plugin-actions form {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.plugin-actions .button {
  min-height: 40px;
}

.plugin-actions .field.compact {
  margin: 0;
  flex: 1 1 220px;
  max-width: 280px;
}

.plugin-actions .field.compact input {
  min-height: 38px;
}

.plugin-detail-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(88, 124, 180, 0.22);
  background: linear-gradient(180deg, #f6f9ff, #ebf1fb);
  min-height: 260px;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.plugin-detail-media img {
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.plugin-not-found {
  text-align: center;
  display: grid;
  gap: 12px;
}

.product-detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.plugin-detail-card--guide {
  gap: 18px;
  border: 1px solid rgba(88, 124, 180, 0.2);
  background: linear-gradient(180deg, #ffffff, #f7faff);
}

.plugin-detail-card--guide h3,
.plugin-detail-card--pricing h3 {
  margin: 0;
  font-size: 1.2rem;
}

.plugin-price-stack {
  display: grid;
  gap: 4px;
  margin: 2px 0 4px;
}

.plugin-price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.plugin-price-highlights {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.plugin-price-highlights li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.plugin-price-highlights li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(88, 124, 180, 0.32);
  background: radial-gradient(circle at 50% 50%, rgba(88, 124, 180, 0.75) 0 38%, rgba(88, 124, 180, 0) 39%);
  margin-top: 1px;
}

.product-detail-intro {
  margin: 0;
  color: var(--muted);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-feature-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
}

.feature-icon-badge,
.guide-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 201, 240, 0.22);
  border: 1px solid rgba(82, 122, 196, 0.25);
}

.feature-icon-badge svg,
.guide-step-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #1c1b1f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-feature-item h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.product-feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plugin-guide-steps {
  display: grid;
  gap: 10px;
}

.plugin-guide-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px dashed rgba(28, 27, 31, 0.24);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.84);
}

.plugin-guide-step h5 {
  margin: 0 0 3px;
  font-size: 0.95rem;
}

.plugin-guide-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.space-plan-card {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
}

.space-plan-card h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.space-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.space-plan-option {
  border: 1px solid rgba(88, 124, 180, 0.25);
  border-radius: 12px;
  padding: 10px;
  background: rgba(182, 201, 240, 0.16);
}

.space-plan-option h5 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.space-plan-option p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
}

.compatibility-hero .container {
  text-align: center;
}

.compatibility-hero .lead {
  margin: 0 auto 20px;
  max-width: 820px;
}

.compatibility-orbit {
  --compat-orbit-size: min(304px, 90vw);
  --compat-ring-inset: 34px;
  --compat-ring-stroke: 1px;
  --compat-logo-track-nudge: 1.5px;
  --compat-outer-radius: calc((var(--compat-orbit-size) / 2) - (var(--compat-ring-stroke) / 2) - var(--compat-logo-track-nudge));
  --compat-inner-radius: calc((var(--compat-orbit-size) / 2) - var(--compat-ring-inset) - (var(--compat-ring-stroke) / 2) - var(--compat-logo-track-nudge));
  width: var(--compat-orbit-size);
  height: var(--compat-orbit-size);
  margin: 0 auto;
  position: relative;
}

.compat-center-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compat-center-logo img {
  width: min(128px, 42vw);
  height: auto;
}

.compat-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(17, 17, 17, 0.22);
  animation: compatSpin 16s linear infinite;
}

.compat-orbit-ring.ring-two {
  inset: var(--compat-ring-inset);
  animation-direction: reverse;
  animation-duration: 20s;
}

.compat-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compat-logo img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.compat-logo.orbit-a { transform: translate(-50%, -50%) rotate(0deg) translateY(calc(-1 * var(--compat-outer-radius))) rotate(0deg); }
.compat-logo.orbit-b { transform: translate(-50%, -50%) rotate(72deg) translateY(calc(-1 * var(--compat-outer-radius))) rotate(-72deg); }
.compat-logo.orbit-c { transform: translate(-50%, -50%) rotate(144deg) translateY(calc(-1 * var(--compat-outer-radius))) rotate(-144deg); }
.compat-logo.orbit-d { transform: translate(-50%, -50%) rotate(216deg) translateY(calc(-1 * var(--compat-outer-radius))) rotate(-216deg); }
.compat-logo.orbit-e { transform: translate(-50%, -50%) rotate(288deg) translateY(calc(-1 * var(--compat-outer-radius))) rotate(-288deg); }

.compat-logo.orbit-f { transform: translate(-50%, -50%) rotate(36deg) translateY(calc(-1 * var(--compat-inner-radius))) rotate(-36deg); }
.compat-logo.orbit-g { transform: translate(-50%, -50%) rotate(108deg) translateY(calc(-1 * var(--compat-inner-radius))) rotate(-108deg); }
.compat-logo.orbit-h { transform: translate(-50%, -50%) rotate(180deg) translateY(calc(-1 * var(--compat-inner-radius))) rotate(-180deg); }
.compat-logo.orbit-i { transform: translate(-50%, -50%) rotate(252deg) translateY(calc(-1 * var(--compat-inner-radius))) rotate(-252deg); }
.compat-logo.orbit-j { transform: translate(-50%, -50%) rotate(324deg) translateY(calc(-1 * var(--compat-inner-radius))) rotate(-324deg); }

@keyframes compatSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.compatibility-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.compatibility-card {
  display: grid;
  gap: 12px;
}

.compatibility-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.compatibility-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #ffffff, #f8f2ec);
}

.compatibility-list img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.compatibility-mini-list {
  gap: 8px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(19, 21, 27, 0.7);
  border: 1px solid var(--border);
}

.form-card {
  max-width: 520px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}

.auth-card {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  text-align: center;
}

.auth-page .section {
  padding-top: 24px;
  padding-bottom: 30px;
}

.auth-modern {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(22, 20, 18, 0.1);
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(340px, 1fr);
  gap: 0;
}

.auth-modern-side {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px 26px 10px 12px;
}

.auth-modern-main {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 10px 12px 10px 26px;
  border-left: 1px solid rgba(28, 27, 31, 0.12);
}

.auth-modern-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.auth-modern-head img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 8px;
  border-radius: 18px;
  background: #f5efeb;
  padding: 10px;
}

.auth-modern-head img.simple-logo {
  width: 142px;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 6px;
}

.auth-modern-head h1 {
  margin: 0;
  font-size: clamp(1.95rem, 3.2vw, 2.5rem);
  line-height: 1.06;
}

.auth-modern-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.auth-modern .g_id_signin {
  margin: 0;
}

.auth-hidden-google {
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.auth-modern-google {
  width: 100%;
  margin: 2px auto 0;
  max-width: 420px;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.auth-modern-google img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.auth-modern-form {
  width: 100%;
  margin: 0;
}

.auth-inline-fields {
  margin-bottom: 0;
  align-items: start;
}

.auth-modern-form .field {
  margin-bottom: 12px;
}

.auth-inline-fields .field {
  margin-bottom: 4px;
}

.username-input-wrap {
  position: relative;
}

.username-input-wrap input {
  padding-right: 44px;
}

.username-status {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.username-status.is-checking {
  display: inline-flex;
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-top-color: #111111;
  animation: usernameSpin 0.75s linear infinite;
}

.username-status.is-available {
  display: inline-flex;
  color: #1d7d53;
  border: 1px solid rgba(29, 125, 83, 0.5);
  background: rgba(46, 155, 114, 0.12);
}

.username-status.is-unavailable {
  display: inline-flex;
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.5);
  background: rgba(180, 35, 24, 0.09);
}

.username-hint {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  min-height: 0;
  display: none;
}

.username-hint.is-visible {
  display: block;
}

@keyframes usernameSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.auth-modern-submit {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
}

.auth-terms {
  margin: 2px 0 0;
  width: 100%;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.auth-terms a {
  color: var(--text);
  text-decoration: none;
}

.auth-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: #111111;
}

.auth-links .auth-note {
  color: #111111;
  font-size: 0.9rem;
}

.auth-links .auth-note + .auth-note {
  border-left: 1px solid rgba(17, 17, 17, 0.22);
  margin-left: 12px;
  padding-left: 12px;
}

.auth-google {
  border: 1px solid var(--border);
}

.g_id_signin {
  margin: 0 auto;
}

.auth-divider {
  margin: 4px auto 2px;
  width: min(540px, 100%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #6e675f;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.auth-modern-main .auth-modern-google,
.auth-modern-main .auth-hidden-google {
  display: none;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(28, 27, 31, 0.15);
}

.auth-divider span {
  white-space: nowrap;
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.35;
}

.auth-note a {
  color: var(--text);
  text-decoration: none;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.field input[type="file"],
.admin-grid-form input[type="file"] {
  border-radius: 14px;
  border: 1px dashed rgba(28, 27, 31, 0.3);
  background: linear-gradient(180deg, #ffffff, #f6f1eb);
  padding: 9px 10px;
  cursor: pointer;
}

.field input[type="file"]::file-selector-button,
.admin-grid-form input[type="file"]::file-selector-button {
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  padding: 7px 12px;
  margin-right: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.field input[type="file"]::file-selector-button:hover,
.admin-grid-form input[type="file"]::file-selector-button:hover {
  background: #282828;
  transform: translateY(-1px);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(28, 27, 31, 0.08);
  margin-top: 60px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, 1fr);
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
}

.footer-lead {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-text {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 380px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-email {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(88, 124, 180, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f0f7ff);
  box-shadow: 0 8px 16px rgba(88, 124, 180, 0.12);
  color: #1b344f;
  font-size: 0.8rem;
  transition: none;
}

.footer-socials a::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, rgba(45, 167, 255, 0), rgba(45, 167, 255, 0.42), rgba(118, 192, 255, 0));
  opacity: 0;
  transform: rotate(0deg) scale(0.75);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.footer-socials a:hover {
  transform: none;
}

.footer-socials a:hover::before {
  opacity: 0;
  transform: rotate(0deg) scale(0.75);
}

.footer-socials a:focus-visible {
  outline: 2px solid rgba(27, 143, 245, 0.42);
  outline-offset: 2px;
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  fill: currentColor;
  transition: transform 0.22s ease;
}

.footer-socials a:hover svg {
  transform: scale(1.14);
}

@media (prefers-reduced-motion: reduce) {
  .footer-socials a,
  .footer-socials a::before,
  .footer-socials a svg {
    transition: none;
  }

  .footer-socials a:hover {
    transform: none;
  }

  .footer-socials a:hover svg {
    transform: none;
  }
}

.footer-links-group h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.footer-links-group a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links-group.pages {
  column-count: 2;
  column-gap: 28px;
}

.footer-links-group.pages h4 {
  column-span: all;
}

.footer-links-group a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 27, 31, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 27px;
}

.forgot-reset .form-card {
  text-align: left;
}

.footer-bottom-links a {
  text-decoration: none;
  color: inherit;
}

.footer-bottom-links a + a {
  border-left: 1px solid rgba(28, 27, 31, 0.2);
  padding-left: 16px;
  margin-left: 16px;
}

.footer-bottom-links a:hover {
  color: var(--text);
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
}

.calculator {
  padding: 50px 0 80px;
}

.calculator.full-width .calc-grid {
  grid-template-columns: 1fr;
}

.calculator.full-width .container {
  width: min(1320px, 96vw);
}

.calculator.full-width .calc-card,
.calculator.full-width .form-card {
  max-width: 100%;
  width: 100%;
}

.tab-buttons {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
  margin: 0 auto 22px;
  width: fit-content;
  justify-content: center;
}

.tab-buttons-single {
  width: max-content;
}

.tab-button {
  border: none;
  background: transparent;
  color: var(--text);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.tab-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tab-button.is-active {
  background: #111111;
  color: #ffffff;
}

.tab-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.tab-button:hover {
  background: rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
}

.tab-button:hover::after {
  transform: translateX(130%);
}

.tab-button.is-active:hover {
  background: #111111;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.2);
}

.calculator-header {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.calc-subpill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  gap: 24px;
}

.calc-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.calc-card h3 {
  margin-top: 0;
}

.calc-card--unified {
  padding: 24px;
}

.calc-unified-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.45fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.calc-unified-main {
  display: grid;
  gap: 14px;
}

.calc-block {
  display: grid;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.calc-unified-side {
  display: grid;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  position: sticky;
  top: 118px;
}

.calc-card--unified.is-details-mode .calc-unified-grid {
  grid-template-columns: 1fr;
}

.calc-card--unified.is-details-mode .calc-unified-main {
  display: none;
}

.calc-card--unified.is-details-mode .calc-unified-side {
  position: static;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(17, 17, 17, 0.08);
}

.project-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.project-toolbar.no-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.project-field {
  display: grid;
  gap: 8px;
}

.project-field > label {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
}

.project-checks {
  display: flex;
  align-items: center;
}

.calc-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 14px;
  font-size: 0.87rem;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.calc-check-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
}

.calc-check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calc-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.26);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background: #ffffff;
}

.calc-check-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calc-check-pill:has(input:checked) {
  background: rgba(46, 155, 114, 0.14);
  border-color: rgba(46, 155, 114, 0.5);
  color: #1b3a2f;
}

.calc-check-pill:has(input:checked) .calc-check-icon {
  color: #ffffff;
  background: #2e9b72;
  border-color: #2e9b72;
}

.calc-check-pill:has(input:disabled) {
  opacity: 0.45;
  pointer-events: none;
}

.calc-inline-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  cursor: pointer;
}

.calc-inline-check input {
  margin-top: 2px;
}

.calc-inline-check--dark {
  color: rgba(242, 244, 249, 0.9);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.plugin-compat-note {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.86rem;
  width: fit-content;
}

.calc-section {
  display: grid;
  gap: 10px;
}

.calc-section-title {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.calc-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.calc-section-text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.project-picker {
  position: relative;
}

.project-picker-toggle {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  cursor: pointer;
}

.project-picker-toggle span[data-project-label] {
  flex: 1;
  text-align: left;
  font-weight: 500;
}

.project-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #f5efeb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #111111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.project-picker-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  display: none;
  z-index: 40;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12);
}

.project-picker.is-open .project-picker-menu {
  display: grid;
  gap: 4px;
}

.project-option {
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}

.project-option:hover {
  background: rgba(17, 17, 17, 0.06);
}

.project-option.is-active {
  background: rgba(17, 17, 17, 0.1);
}

.calc-options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.calc-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.calc-output {
  display: grid;
  gap: 12px;
}

.calc-value {
  font-size: 1.8rem;
  font-weight: 600;
}

.calc-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.calc-savings {
  background: rgba(46, 155, 114, 0.08);
  border: 1px solid rgba(46, 155, 114, 0.3);
  border-radius: 16px;
  padding: 14px;
}

.calc-actions {
  margin-top: 0;
  display: grid;
  gap: 10px;
}

.calc-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.feature-pills--main {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.feature-pill-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
}

.feature-add {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.feature-add input {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.9rem;
}

.feature-add-inline {
  margin-top: 0;
  flex-wrap: nowrap;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 8px 10px;
  align-items: center;
}

.feature-add-inline input {
  min-width: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  height: 34px;
}

.feature-add-btn {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  min-width: 78px;
  height: 34px;
  padding: 6px 14px;
  font-size: 0.9rem;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.18);
}

.feature-pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  user-select: none;
  font-family: "Outfit", sans-serif;
  width: 100%;
  justify-content: flex-start;
  min-height: 42px;
}

.feature-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
  font-size: 0.87rem;
}

.feature-pill .pill-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #0b0b0d;
  opacity: 0;
}

.feature-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-pill.is-active {
  border-color: rgba(110, 242, 194, 0.8);
  background: rgba(46, 155, 114, 0.14);
  color: #1b3a2f;
}

.feature-pill.is-active .pill-check {
  background: #2e9b72;
  border-color: #2e9b72;
  opacity: 1;
}

.feature-info {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.feature-info svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-pill-wrap.is-active .feature-info {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.calc-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calc-recommended {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.calc-recommended .feature-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ecedf2;
  border-color: rgba(255, 255, 255, 0.22);
  width: 100%;
}

[data-plugin-note][hidden] {
  display: none !important;
}

.calc-recommended .feature-pill.is-active {
  border-color: rgba(110, 242, 194, 0.65);
  background: rgba(46, 155, 114, 0.26);
  color: #ffffff;
}

.calc-recommended .feature-icon svg {
  stroke: currentColor;
}

.calc-recommended-card {
  background: linear-gradient(160deg, #0f1014, #161821);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.calc-recommended-card .calc-note {
  margin: 0;
  color: #f3f4f8;
  font-weight: 600;
}

[data-request-default][hidden],
[data-request-panel][hidden] {
  display: none !important;
}

.calc-side-default,
.calc-side-request {
  display: grid;
  gap: 12px;
}

.calc-coupon-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: linear-gradient(180deg, #fdfefe, #f2f8ff);
}

.calc-coupon-box label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.calc-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.calc-coupon-row input {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: #ffffff;
  padding: 0 14px;
  font-family: inherit;
}

.calc-coupon-row .button {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 14px;
}

.calc-coupon-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.calc-coupon-note.is-success {
  color: #1d6a4a;
}

.calc-coupon-note.is-error {
  color: #b04053;
}

.calc-side-default [data-show-request] {
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.calc-side-default [data-show-request]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-130%);
  transition: transform 0.5s ease;
}

.calc-side-default [data-show-request]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.2);
}

.calc-side-default [data-show-request]:hover::after {
  transform: translateX(130%);
}

.calc-side-request .form-card.request-form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: 860px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.request-form .field-row {
  margin: 0;
}

.request-form .field {
  margin: 0;
}

.request-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.request-form-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  align-items: start;
}

.request-form-layout > .field {
  min-width: 0;
}

.request-form-layout .field-col-4 {
  grid-column: span 4;
}

.request-form-layout .field-col-3 {
  grid-column: span 3;
}

.request-form-layout .field-col-6 {
  grid-column: span 6;
}

.request-form-layout .field-col-12 {
  grid-column: 1 / -1;
}

.request-form-column {
  display: grid;
  gap: 10px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.request-form .field label {
  font-size: 0.82rem;
}

.request-form .field input,
.request-form .field textarea,
.request-form .field select {
  padding: 8px 11px;
  border-radius: 10px;
  font-size: 0.88rem;
  min-height: 40px;
  width: 100%;
  box-sizing: border-box;
}

.request-detail-stack {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.request-design-options {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.request-design-options > label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.radio-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 66px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.radio-item input {
  margin-top: 0;
  accent-color: #2e9b72;
  flex-shrink: 0;
}

.radio-item:last-child {
  grid-column: 1 / -1;
}

.radio-item:hover {
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  transform: translateY(-1px);
}

.radio-item.is-selected {
  border-color: rgba(46, 155, 114, 0.5);
  background: rgba(46, 155, 114, 0.12);
  box-shadow: 0 10px 20px rgba(46, 155, 114, 0.18);
}

.calc-inline-check--dark:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.calc-inline-check--dark input {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.calc-inline-check--dark input:checked {
  background: #2e9b72;
  border-color: #2e9b72;
}

.calc-inline-check--dark input:checked::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}

.field-row[data-design-upload] {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.field[data-idea-explain] {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.field[data-design-reference-wrap][hidden],
.field[data-design-upload-wrap][hidden],
.field[data-idea-explain][hidden] {
  display: none !important;
}

.calc-side-request .field textarea {
  min-height: 80px;
}

#req-basic,
#req-idea-explain {
  min-height: 74px;
}

.request-form input[type="file"] {
  width: 100%;
}

.calc-output-inline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f8f3ee);
}

.calc-output-inline > div {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  padding: 14px;
  min-height: 104px;
  display: grid;
  align-content: center;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.04);
}

.calc-output-inline .calc-value {
  font-size: 2rem;
  line-height: 1;
}

.calc-output-inline .calc-savings {
  padding: 12px;
  background: linear-gradient(180deg, rgba(46, 155, 114, 0.12), rgba(46, 155, 114, 0.05));
  border-color: rgba(46, 155, 114, 0.3);
}

.calc-output-inline .calc-meta {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.is-unknown-mode .feature-pill,
.is-unknown-mode .feature-info,
.is-unknown-mode #custom-feature-input,
.is-unknown-mode #add-feature-button,
.is-unknown-mode #select-basic-features {
  pointer-events: none;
  opacity: 0.45;
}

.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
}

.feature-modal[hidden] {
  display: none !important;
}

.feature-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 10, 12, 0.56);
  cursor: pointer;
}

.feature-modal-card {
  position: relative;
  width: min(620px, 92vw);
  max-height: 86vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(16, 16, 16, 0.22);
  padding: 18px;
}

.feature-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.feature-modal-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-modal-close {
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
}

.feature-modal-subtitle {
  margin: 8px 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-modal-list:empty::before {
  content: "Included items will be shown here.";
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 2px 2px 8px;
}

.feature-modal-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: rgba(245, 239, 235, 0.7);
}

.feature-modal-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-modal-item-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #111111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

input[type="file"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 10px;
  background: #ffffff;
  color: var(--muted);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
}

input[type="file"]::file-selector-button {
  border: none;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  padding: 8px 12px;
  margin-right: 10px;
  cursor: pointer;
}

.calc-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
  background: #ffffff;
}

.calc-logo img {
  height: 24px;
  width: auto;
  display: block;
}

.calc-button {
  position: relative;
  overflow: hidden;
}

.calc-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-120%);
  animation: shimmer 2.6s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  60% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.legal-text {
  color: var(--muted);
  max-width: 720px;
}

.legal-text a {
  text-decoration: none;
  color: inherit;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.policy-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--text);
  min-height: 160px;
}

.policy-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.policy-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(46, 155, 114, 0.12);
}

.policy-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #2e9b72;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-help {
  background: linear-gradient(135deg, rgba(46, 155, 114, 0.1), rgba(255, 255, 255, 0.95));
  border-color: rgba(46, 155, 114, 0.25);
}

.policy-help .policy-icon {
  background: rgba(46, 155, 114, 0.2);
}

.policy-help .legal-cta {
  margin-top: 8px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
  align-items: start;
}

.legal-layout .legal-text {
  max-width: none;
}

.legal-side {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  position: sticky;
  top: 120px;
}

.legal-side h3 {
  margin: 0;
}

.legal-side p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 2px;
}

@media (max-width: 920px) {
  .dashboard-appbar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dashboard-brand {
    justify-content: center;
  }

  .dashboard-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-pill {
    padding: 10px 14px;
    gap: 12px;
  }

  .logo img {
    height: 34px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 14px;
    right: 14px;
    background: var(--surface-strong);
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    display: none;
    gap: 18px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav-pill.is-open .nav-links {
    display: flex;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
  }

  .nav-list > li + li {
    margin-left: 0;
    padding-left: 0;
  }

  .nav-list > li + li::before {
    content: none;
  }

  .nav-item.has-menu {
    width: 100%;
  }

  .nav-list .nav-link,
  .nav-list .nav-trigger {
    display: block;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
    width: 100%;
  }

  .dropdown a {
    display: block;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
  }

  .dropdown {
    position: static;
    display: none;
    padding: 10px 0 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-actions {
    justify-content: space-between;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer-bottom-links {
    margin-right: 0;
  }

  .currency-switcher select {
    width: 100%;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }

  .calc-unified-grid {
    grid-template-columns: 1fr;
  }

  .feature-pills--main {
    grid-template-columns: 1fr;
  }

  .calc-recommended {
    grid-template-columns: 1fr;
  }

  .project-toolbar {
    grid-template-columns: 1fr;
  }

  .feature-add-inline {
    flex-wrap: wrap;
  }

  .request-form-layout {
    grid-template-columns: 1fr;
  }

  .request-form-layout .field-col-3,
  .request-form-layout .field-col-4,
  .request-form-layout .field-col-6,
  .request-form-layout .field-col-12 {
    grid-column: 1 / -1;
  }

  .calc-output-inline {
    grid-template-columns: 1fr;
  }

  .calc-inline-check--dark {
    display: grid;
    grid-template-columns: 16px 1fr;
    align-items: start;
  }

  .radio-stack {
    grid-template-columns: 1fr;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .api-manager-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .api-manager-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .api-manager-headline {
    flex-direction: column;
    align-items: flex-start;
  }

  .api-manager-headline h3 {
    font-size: 1.55rem;
  }

  .api-manager-tools {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .api-manager-search {
    min-width: 0;
    flex: 1;
  }

  .api-manager-metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .api-manager-mid-grid,
  .api-manager-bottom-grid {
    grid-template-columns: 1fr;
  }

  .api-manager-top-list div {
    grid-template-columns: 1fr;
  }

  .api-manager-performance table {
    min-width: 760px;
  }

  .admin-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-live-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-live-metrics {
    grid-template-columns: 1fr;
  }

  .plugin-detail-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .plugin-detail-card--pricing {
    position: static;
    top: auto;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .space-plan-grid {
    grid-template-columns: 1fr;
  }

  .plugin-horizontal-grid {
    grid-template-columns: 1fr;
  }

  .plugin-horizontal-card {
    text-align: left;
    min-height: 140px;
    padding: 14px 14px 14px 102px;
  }

  .plugin-orbit-visual {
    margin-left: 0;
  }

  .compatibility-layout {
    grid-template-columns: 1fr;
  }

  .help-topic-layout {
    grid-template-columns: 1fr;
  }

  .help-topic-side {
    position: static;
  }

  .help-contact-grid {
    grid-template-columns: 1fr;
  }

  .help-contact-visual {
    min-height: 220px;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid--enhanced {
    grid-template-columns: 1fr;
  }

  .plugin-detail-main {
    grid-template-columns: 1fr;
  }

  .dashboard-mini-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .integration-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .integration-content {
    text-align: center;
  }

  .integration-content .hero-actions,
  .integration-content .button {
    margin-left: auto;
    margin-right: auto;
  }

  .dashboard-row {
    grid-template-columns: 1fr 60px 60px;
  }

  .dashboard-row span:last-child {
    display: none;
  }

  .help-contact-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .help-cards--ten {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .changelog-hero {
    grid-template-columns: 1fr;
  }

  .changelog-item {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    padding: 0;
  }

  .home-hero-content {
    padding: 30px 18px 34px;
    border-radius: 0;
  }

  .dashboard-showcase {
    padding: 16px;
  }

  .home-hero-content h1 {
    white-space: normal;
    font-size: clamp(2.2rem, 9vw, 3.1rem);
  }

  .hero-role-line {
    font-size: clamp(1.55rem, 7vw, 2.3rem);
    padding-left: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .milestone-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 16px;
  }

  .milestone-row > div {
    padding: 10px;
  }

  .milestone-row > div + div {
    border-left: none;
  }

  .dashboard-ticker-track {
    gap: 12px;
  }

  .auth-modern {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px;
  }

  .auth-modern-side,
  .auth-modern-main {
    padding: 0;
  }

  .auth-modern-main {
    border-left: none;
    border-top: 1px solid rgba(28, 27, 31, 0.12);
    padding-top: 14px;
  }

  .auth-modern-main .auth-modern-google,
  .auth-modern-main .auth-hidden-google {
    display: block;
  }

  .auth-inline-fields {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .persona-section,
  .pricing-band {
    padding: 28px 0;
  }

  .plugins-hero-card {
    padding: 32px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-grid-form {
    grid-template-columns: 1fr;
  }

  .admin-users-table {
    min-width: 760px;
  }
}

@media (max-width: 600px) {
  .admin-kpi-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero .hero-actions {
    align-items: center;
    justify-content: center;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom-links {
    margin-right: 0;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .logo-slider {
    max-width: 520px;
  }

  .logo-track {
    gap: 40px;
  }

  .logo-item {
    flex-basis: 160px;
  }

  .footer-links-group {
    text-align: center;
  }

  .floating-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }

  .logo-item img {
    height: 26px;
  }

  .integration-wheel {
    width: 240px;
    height: 240px;
  }

  .wheel-core {
    width: 96px;
    height: 96px;
    font-size: 0.85rem;
  }

  .wheel-badge {
    font-size: 0.65rem;
  }

  .hero-pill {
    font-size: 0.78rem;
  }

  .auth-links {
    flex-wrap: wrap;
    border-radius: 14px;
    justify-content: center;
  }

  .auth-links .auth-note + .auth-note {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .help-cards--ten {
    grid-template-columns: 1fr;
  }

  .testimonial-quote {
    font-size: 1.05rem;
  }

  .tab-buttons {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-button {
    flex: 1 1 160px;
    justify-content: center;
  }

  .plugin-actions {
    flex-direction: column;
  }

  .plugin-actions form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .plugin-actions .button {
    width: 100%;
    justify-content: center;
  }

  .plugin-actions .field.compact {
    max-width: 100%;
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
  }

  .admin-item-head {
    align-items: flex-start;
  }

  .admin-row-actions {
    flex-wrap: wrap;
  }

  .onboarding {
    padding: 10px;
  }

  .onboarding-card {
    width: min(300px, 96vw);
  }
}

/* Final UI overrides */
.dashboard-showcase-section .container { width: min(1120px, 92vw) !important; }
.dashboard-showcase { border-radius: 24px !important; padding: 12px !important; }

.api-manager-mock { border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.08); background: linear-gradient(180deg, #090b10, #0a0d13); color: #edf1fa; overflow: hidden; box-shadow: 0 20px 50px rgba(5, 8, 14, 0.5); }
.api-manager-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.api-head-left { display: inline-flex; align-items: center; gap: 14px; }
.api-brand { display: inline-flex; align-items: center; gap: 8px; font-size: 1.4rem; font-weight: 600; }
.api-brand span { width: 20px; height: 20px; border-radius: 5px; background: linear-gradient(135deg, #2f74ea, #3aa6f4); display: inline-flex; align-items: center; justify-content: center; font-size: 0.66rem; }
.api-crumbs { font-size: 0.88rem; color: rgba(201, 207, 220, 0.9); }
.api-head-right { display: inline-flex; align-items: center; gap: 10px; }
.api-head-search { min-width: 230px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; padding: 7px 12px; font-size: 0.83rem; color: #eaf0ff; background: #11151f; }
.api-head-dot { width: 11px; height: 11px; border-radius: 50%; background: #52ce8f; }
.api-head-dot.is-red { background: #ff636f; }
.api-head-dot.is-amber { background: #f6c251; }
.api-head-avatar { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.28); background: linear-gradient(180deg, #dac9af, #ae9777); overflow: hidden; display: inline-flex; align-items: center; justify-content: center; }
.api-head-avatar img { width: 100%; height: 100%; object-fit: cover; }
.api-manager-body { display: grid; grid-template-columns: 184px 1fr; min-height: 430px; }
.api-side-col { border-right: 1px solid rgba(255, 255, 255, 0.09); padding: 12px 10px; display: grid; align-content: start; gap: 4px; background: #090b10; }
.api-side-col .api-side-title { margin: 2px 0; color: rgba(198, 207, 229, 0.8); font-size: 0.78rem; }
.api-side-col .api-side-title.top-gap { margin-top: 10px; }
.api-side-col a { color: #c8d0e4; text-decoration: none; font-size: 0.86rem; border-radius: 8px; padding: 6px 8px; }
.api-side-col a.is-active, .api-side-col a:hover { background: rgba(255, 255, 255, 0.09); color: #ffffff; }
.api-main-col { padding: 12px; display: grid; gap: 10px; }
.api-main-head { display: flex; justify-content: space-between; align-items: center; }
.api-main-head h3 { margin: 0; font-size: 1.9rem; color: #f7fbff; line-height: 1.1; }
.api-main-head button { border: 0; border-radius: 9px; padding: 9px 16px; font-family: inherit; font-weight: 600; color: #ffffff; background: #2f75eb; }
.api-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.api-stat-card { border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.07); background: linear-gradient(180deg, #11151f, #0f131b); padding: 10px 12px; }
.api-stat-card span { display: block; color: rgba(205, 214, 232, 0.9); font-size: 0.82rem; }
.api-stat-card strong { display: block; margin-top: 6px; color: #ffffff; font-size: 1.8rem; font-weight: 600; }
.api-traffic-card, .api-bars-card, .api-top-card, .api-table-card { border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.07); background: linear-gradient(180deg, #0f131b, #0d1118); padding: 10px 12px; }
.api-card-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(204, 214, 234, 0.86); }
.api-card-head span:first-child { color: #eff4ff; font-size: 0.96rem; }
.api-line-chart { width: 100%; height: 130px; margin-top: 8px; overflow: visible; }
.api-line-chart path { fill: none; stroke: #63db9e; stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 6 8; filter: drop-shadow(0 0 8px rgba(99, 219, 158, 0.4)); animation: api-line-flow 6s linear infinite; }
.api-bottom-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 10px; }
.api-bars-card { min-height: 206px; display: grid; align-content: stretch; }
.api-bars { margin-top: 10px; display: grid; grid-template-columns: repeat(16, minmax(0, 1fr)); gap: 5px; align-items: end; min-height: 150px; height: 100%; }
.api-bars span { --bar-level: 72%; display: block; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #48cb8e, #1e7f56); height: var(--bar-level); animation: api-bar-pulse 4.8s ease-in-out infinite; }
.api-bars span:nth-child(2n) { --bar-level: 78%; animation-delay: 0.5s; }
.api-bars span:nth-child(3n) { --bar-level: 64%; animation-delay: 0.9s; }
.api-bars span:nth-child(4n) { --bar-level: 85%; animation-delay: 1.2s; }
.api-top-list { margin-top: 10px; display: grid; gap: 9px; }
.api-top-list div { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.api-top-list b { color: #f4f8ff; font-weight: 500; }
.api-top-list em { color: #57d594; font-style: normal; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.api-top-list em::before { content: "\2197"; font-size: 0.8rem; line-height: 1; color: #63db9e; }
.api-top-list em.is-down::before { content: "\2198"; color: #ff7e87; }

@keyframes api-line-flow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -90; }
}

@keyframes api-bar-pulse {
  0%, 100% { height: calc(var(--bar-level) - 10%); }
  50% { height: var(--bar-level); }
}
.api-table-card table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.api-table-card th, .api-table-card td { text-align: left; padding: 7px 6px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); font-size: 0.8rem; color: rgba(225, 232, 246, 0.94); }
.api-table-card th { color: rgba(198, 207, 224, 0.86); font-weight: 500; }

.dashboard-support-pin { display: inline-flex; margin-top: 4px; padding: 4px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; color: #ffffff; background: #111111; }

.admin-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 14px; }
.admin-main { display: grid; gap: 14px; }
.admin-panel { display: none; gap: 12px; }
.admin-panel.is-active { display: grid; }
.admin-sidebar { align-content: start; gap: 10px; padding: 12px; border-radius: 18px; }
.admin-tab { justify-content: flex-start; padding: 10px 12px; border-radius: 12px; }
.admin-tab.is-active { background: #111111; color: #ffffff; border-color: #111111; }
.admin-item { border-radius: 16px; border: 1px solid rgba(17, 17, 17, 0.12); }
.admin-users-head, .admin-form-card, .admin-users-table-wrap { border-radius: 16px; }

.help-contact-form select, .admin-grid-form select { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 11px 14px; font-size: 1rem; font-family: inherit; color: var(--text); background: linear-gradient(180deg, #ffffff, #fbf8f5); appearance: none; }
.subject-picker-trigger { border-radius: 14px; border: 1px solid var(--border); background: linear-gradient(180deg, #ffffff, #f9f5f1); font-weight: 500; min-height: 48px; }
.subject-picker-menu { border-radius: 14px; border: 1px solid rgba(17, 17, 17, 0.14); box-shadow: 0 16px 32px rgba(17, 17, 17, 0.15); overflow: hidden; }
.subject-picker-menu button { padding: 11px 13px; }
.help-tech-fields[hidden] { display: none !important; }
.help-tech-fields { margin-top: 4px; }
.help-contact-visual { background: radial-gradient(520px 220px at 65% -20%, rgba(34, 34, 34, 0.12), transparent 70%); border-radius: 18px; }

.plugin-horizontal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px !important; }
.plugin-horizontal-card { min-height: 128px; border-radius: 20px; }
.plugin-horizontal-card:nth-child(even) { padding: 16px 20px 16px 168px; }
.plugin-horizontal-card:nth-child(odd) { padding: 16px 168px 16px 20px; }
.plugin-orbit-shell { width: 158px; height: 158px; left: -40px; top: -44px; }
.plugin-horizontal-card:nth-child(odd) .plugin-orbit-shell { left: auto; right: -40px; }
.plugin-main-thumb { width: 104px; height: 104px; left: 52px; top: 56px; transform: none; }
.plugin-orbit-ring { border-color: rgba(255, 255, 255, 0.24); }
.plugin-orbit-ring.ring-two { inset: 24px; }
.plugin-type-label { margin: 0 0 8px; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(196, 207, 236, 0.9); }

.account-edit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.account-form-card .button { margin-top: 6px; }

@media (max-width: 1200px) {
  .api-manager-body { grid-template-columns: 1fr; }
  .api-side-col { grid-template-columns: repeat(2, minmax(0, 1fr)); border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); gap: 6px 8px; }
  .api-side-col .api-side-title { grid-column: span 2; }
  .api-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .api-bottom-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .api-head-right { display: none; }
  .api-main-head h3 { font-size: 1.55rem; }
  .plugin-horizontal-card { padding-left: 138px; }
  .plugin-orbit-shell { width: 138px; height: 138px; left: -28px; top: -36px; }
  .plugin-main-thumb { width: 86px; height: 86px; left: 42px; top: 46px; }
  .account-edit-grid { grid-template-columns: 1fr; }
}

/* 2026 theme + layout pass */
:root {
  --bg: #ffffff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --border: rgba(20, 29, 42, 0.12);
  --scroll-shift: 0px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(980px 520px at 10% calc(-180px + (var(--scroll-shift) * 0.45)), rgba(182, 201, 240, 0.34), transparent 70%),
    radial-gradient(900px 480px at 92% calc(8% - (var(--scroll-shift) * 0.35)), rgba(182, 201, 240, 0.24), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 52%, #f4f7ff 100%);
  background-attachment: fixed, fixed, fixed;
}

body[data-page="home"],
.dashboard-body {
  background:
    radial-gradient(1200px 620px at 12% calc(-220px + (var(--scroll-shift) * 0.52)), rgba(182, 201, 240, 0.36), transparent 72%),
    radial-gradient(960px 560px at 88% calc(16% - (var(--scroll-shift) * 0.38)), rgba(182, 201, 240, 0.26), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 48%, #f2f6ff 100%);
  background-attachment: fixed, fixed, fixed;
}

.site-header {
  top: 0;
}

.site-notice {
  width: 100%;
  overflow: hidden;
  background: #b6c9f0;
  color: #111111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-notice-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  min-width: max(100vw, max-content);
  width: max-content;
  padding: 8px 28px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  animation: site-notice-marquee 38s linear infinite;
  will-change: transform;
}

.site-notice-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-notice-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111111;
}

@keyframes site-notice-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.nav-pill {
  margin-top: 10px;
  width: min(1400px, calc(100vw - 22px));
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.nav-link,
.nav-trigger {
  text-decoration: none;
}

.admin-sidebar-grouped {
  gap: 10px;
  padding: 12px;
}

.admin-group {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.admin-group-toggle {
  width: 100%;
  border: 0;
  background: #ffffff;
  color: var(--text);
  padding: 11px 12px;
  text-align: left;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.admin-group-toggle.is-active,
.admin-group.is-open > .admin-group-toggle {
  background: #111111;
  color: #ffffff;
}

.admin-subtabs {
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #fbfcff;
}

.admin-group.is-open .admin-subtabs {
  display: grid;
}

.admin-subtabs .admin-tab {
  width: 100%;
  padding: 9px 12px;
  font-size: 0.87rem;
}

.admin-subtabs .admin-tab.is-active {
  background: #111111;
  color: #ffffff;
}

.admin-users-table-wrap,
.license-history-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.plugin-horizontal-section .container,
.plugin-horizontal-grid,
.dashboard-showcase-section .container,
.dashboard-showcase,
.calc-grid,
.calc-unified-grid {
  max-width: 100%;
}

.plugin-horizontal-grid {
  overflow-x: clip;
}

@media (max-width: 980px) {
  .site-notice-track {
    animation-duration: 24s;
    font-size: 0.8rem;
  }

  .nav-pill {
    width: calc(100vw - 16px);
    padding: 10px 14px;
  }

  .dashboard-showcase-section .container {
    width: min(1180px, 96vw) !important;
  }

  .api-manager-mock {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-notice-track {
    gap: 30px;
    padding: 7px 0;
  }

  .admin-group-toggle {
    padding: 10px 11px;
  }

  .admin-sidebar-grouped {
    position: static;
  }
}

/* Reference palette refresh (white + soft blue gradient) */
:root {
  --theme-bg-1: #f7fbff;
  --theme-bg-2: #edf5ff;
  --theme-bg-3: #e6f0ff;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f1f7ff;
  --theme-border: rgba(88, 124, 180, 0.22);
  --theme-shadow: 0 14px 34px rgba(116, 145, 189, 0.14);
  --theme-accent: #1b8ff5;
}

body,
.dashboard-body {
  background:
    radial-gradient(1200px 640px at 12% calc(-220px + (var(--scroll-shift) * 0.42)), rgba(191, 214, 248, 0.45), transparent 70%),
    radial-gradient(940px 540px at 86% calc(2% - (var(--scroll-shift) * 0.32)), rgba(178, 206, 247, 0.34), transparent 72%),
    linear-gradient(180deg, var(--theme-bg-1) 0%, var(--theme-bg-2) 55%, var(--theme-bg-3) 100%) !important;
  background-attachment: fixed, fixed, fixed;
}

body[data-page="home"] {
  background:
    radial-gradient(1320px 700px at 50% -24%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(980px 560px at 86% calc(2% - (var(--scroll-shift) * 0.32)), rgba(224, 238, 255, 0.42), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #fcfeff 56%, #f7fbff 100%) !important;
  background-attachment: fixed, fixed, fixed;
}

.site-notice {
  background: #000000 !important;
  color: #b6c9f0 !important;
  border-bottom-color: rgba(182, 201, 240, 0.28) !important;
}

.nav-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.95)) !important;
  border-color: var(--theme-border) !important;
  box-shadow: var(--theme-shadow) !important;
}

.button.primary,
.nav-button,
.floating-cta {
  background: linear-gradient(135deg, #1b8ff5, #2da7ff) !important;
  color: #ffffff !important;
  border-color: transparent !important;
}

.site-notice-track span::before {
  background: #b6c9f0 !important;
}

.floating-cta {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
}

.auth-modern-google {
  background: #111111 !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.75) !important;
  border-color: var(--theme-border) !important;
}

.card,
.help-card,
.feature-card,
.persona-card,
.plugin-horizontal-card,
.plugin-detail-card,
.help-contact-card,
.help-cta-card,
.admin-form-card,
.admin-users-head,
.admin-users-table-wrap,
.legal-card,
.faq-card,
.form-card,
.calc-card,
.calc-block,
.calc-unified-side,
.auth-modern,
.auth-modern-side,
.auth-modern-main,
.subject-picker-menu {
  background: linear-gradient(180deg, var(--theme-surface-1), var(--theme-surface-2)) !important;
  border-color: var(--theme-border) !important;
  box-shadow: var(--theme-shadow);
  color: var(--text);
}

.feature-band,
.persona-section,
.testimonial-strip,
.help-hero,
.help-contact,
.help-cta,
.plugins-hero,
.page-hero,
.logo-strip {
  background: transparent !important;
  color: var(--text) !important;
}

.feature-card p,
.persona-card p,
.help-cta-label {
  color: var(--muted) !important;
}

.feature-card-icon,
.help-card-icon,
.card-icon {
  background: rgba(27, 143, 245, 0.12) !important;
  border-color: rgba(27, 143, 245, 0.24) !important;
}

.feature-card-icon svg,
.help-card-icon svg,
.card-icon svg {
  stroke: #1b1f27 !important;
}

.dashboard-showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 242, 255, 0.72)) !important;
  border-color: var(--theme-border) !important;
  box-shadow: 0 20px 44px rgba(116, 145, 189, 0.18) !important;
}

.plugin-detail-main {
  background: linear-gradient(180deg, #ffffff, #edf4ff) !important;
  color: var(--text) !important;
  border-color: var(--theme-border) !important;
}

.plugin-detail-copy h1,
.plugin-detail-copy .lead {
  color: var(--text) !important;
}

.plugin-badge {
  background: rgba(27, 143, 245, 0.1) !important;
  border-color: rgba(27, 143, 245, 0.24) !important;
  color: #1d2430 !important;
}

.help-contact-visual {
  background:
    radial-gradient(420px 200px at 20% 100%, rgba(155, 193, 248, 0.35), transparent 72%),
    linear-gradient(165deg, #f7fbff, #eaf3ff) !important;
  border-color: var(--theme-border) !important;
}

.help-code-window {
  background: rgba(255, 255, 255, 0.66) !important;
  border-color: rgba(88, 124, 180, 0.22) !important;
}

.site-footer {
  background: #ffffff !important;
  border-top-color: rgba(88, 124, 180, 0.18) !important;
}

.footer-bottom {
  border-top-color: rgba(88, 124, 180, 0.18) !important;
}

.plugin-horizontal-card {
  background:
    linear-gradient(160deg, rgba(7, 8, 12, 0.95), rgba(10, 12, 18, 0.96)),
    radial-gradient(560px 240px at 85% -10%, rgba(107, 149, 236, 0.22), transparent 70%),
    var(--plugin-cover) center center / cover no-repeat,
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.025) 2px, transparent 2px, transparent 8px),
    linear-gradient(160deg, #0a0b10, #11131a 70%) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #eef3ff !important;
}

.plugin-horizontal-content h3 {
  color: #ffffff !important;
}

.plugin-horizontal-content p,
.plugin-type-label {
  color: rgba(232, 238, 250, 0.84) !important;
}

.changelog-hero .lead {
  text-align: left !important;
}

.admin-users-table th {
  background: rgba(182, 201, 240, 0.2);
  font-weight: 600;
}

.admin-users-table td code {
  background: rgba(17, 17, 17, 0.06);
  border-radius: 8px;
  padding: 3px 6px;
  font-size: 0.74rem;
}

.admin-expanded {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.admin-history {
  display: grid;
  gap: 8px;
}

.admin-history > div {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 10px;
  padding: 8px;
  display: grid;
  gap: 4px;
  font-size: 0.82rem;
}

.admin-log-details-row td {
  background: rgba(182, 201, 240, 0.14);
}

.admin-inline-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.admin-inline-actions form,
.inline-form {
  margin: 0;
}

.admin-log-details-row td {
  background: rgba(17, 17, 17, 0.04);
  font-size: 0.86rem;
  color: var(--muted);
}

[data-product-edit-form] {
  scroll-margin-top: 90px;
}

.dashboard-notify {
  position: relative;
}

.notification-toggle {
  position: relative;
}

.notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d63031;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.dashboard-notify-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: min(420px, 88vw);
  max-height: 420px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.16);
  z-index: 220;
  padding: 10px;
}

.notify-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.notify-panel-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.notify-list {
  display: grid;
  gap: 8px;
}

.notify-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.notify-item.is-unread {
  border-color: rgba(27, 143, 245, 0.4);
  background: rgba(27, 143, 245, 0.06);
}

.notify-item h4 {
  margin: 0 0 4px;
  font-size: 0.9rem;
}

.notify-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.notify-item small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

.notify-item-actions {
  display: inline-flex;
  gap: 6px;
}

/* Final UI refinements */
.dashboard-showcase-section .container {
  width: min(1060px, 90vw) !important;
}

.api-manager-body {
  min-height: 520px;
}

.api-main-col {
  padding: 10px 12px 12px;
}

.api-main-head h3 {
  font-size: clamp(1.75rem, 2.3vw, 2.1rem);
}

.api-head-avatar {
  width: 28px;
  height: 28px;
  overflow: hidden;
}

.api-head-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.api-bars-card {
  min-height: 214px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.api-bars {
  min-height: 168px;
  height: 100%;
  align-items: end;
}

.api-top-list em {
  white-space: nowrap;
}

.api-top-list em::before {
  font-weight: 700;
}

.header-notify {
  position: relative;
}

.header-notify-toggle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  cursor: pointer;
  position: relative;
}

.header-notify-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-notify-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.header-notify-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(340px, 84vw);
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
  padding: 10px;
  z-index: 120;
}

.header-notify-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.header-notify-head a {
  text-decoration: none;
  font-size: 0.78rem;
  color: #111111;
  font-weight: 600;
}

.header-notify-list {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow: auto;
}

.header-notify-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 11px;
  padding: 9px;
  background: #ffffff;
}

.header-notify-item.is-unread {
  border-color: rgba(27, 143, 245, 0.35);
  background: rgba(27, 143, 245, 0.06);
}

.header-notify-item h4 {
  margin: 0 0 4px;
  font-size: 0.88rem;
}

.header-notify-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.header-notify-item a {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.76rem;
  color: #111111;
  font-weight: 600;
  text-decoration: none;
}

.help-product-select-wrap {
  position: relative;
}

.help-product-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23171717' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.help-tech-fields select[data-tech-product] {
  border-radius: 14px !important;
  border: 1px solid var(--border) !important;
  background: linear-gradient(180deg, #ffffff, #f9f5f1) !important;
  min-height: 48px;
  padding-right: 38px;
}

.help-topic-layout {
  overflow: visible;
}

.help-topic-side {
  position: sticky !important;
  top: 106px;
  transform: none !important;
  animation: none !important;
}

.calc-coupon-box {
  border-radius: 14px;
  border: 1px solid rgba(27, 143, 245, 0.2);
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.calc-coupon-row input {
  border: 1px solid rgba(27, 143, 245, 0.26);
  background: #ffffff;
}

.calc-inline-check--dark {
  border-radius: 14px;
}

.calc-inline-check--dark span {
  line-height: 1.35;
}

.request-form-layout {
  column-gap: 18px;
  row-gap: 16px;
}

.request-form-layout .field-col-6,
.request-form-layout .field-col-4 {
  min-width: 0;
}

.request-form-layout .field input,
.request-form-layout .field textarea {
  width: 100%;
}

.testimonials-hero .lead {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-live-pill {
  margin: 14px auto 0;
}

.testimonial-grid--enhanced {
  gap: 16px;
}

.testimonial-card--enhanced {
  position: relative;
  border: 1px solid rgba(88, 124, 180, 0.2);
  background: linear-gradient(180deg, #ffffff, #f4f8ff);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card--enhanced::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1b8ff5;
  box-shadow: 0 0 0 0 rgba(27, 143, 245, 0.38);
  animation: testimonialPulse 2.1s ease-in-out infinite;
}

.testimonial-card--enhanced:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(101, 129, 173, 0.16);
}

.testimonial-stars {
  color: #f4b400;
  letter-spacing: 0.08em;
}

@keyframes testimonialPulse {
  0% { box-shadow: 0 0 0 0 rgba(27, 143, 245, 0.35); }
  100% { box-shadow: 0 0 0 12px rgba(27, 143, 245, 0); }
}

.plugin-horizontal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plugin-horizontal-card {
  min-height: 178px;
  border-radius: 22px;
  overflow: hidden;
}

.plugin-horizontal-card.is-left {
  padding: 18px 166px 18px 22px;
}

.plugin-horizontal-card.is-right {
  padding: 18px 22px 18px 166px;
}

.plugin-horizontal-card.is-left .plugin-orbit-shell {
  right: -40px;
  left: auto;
}

.plugin-horizontal-card.is-right .plugin-orbit-shell {
  left: -40px;
  right: auto;
}

.plugin-horizontal-card.is-left .plugin-main-thumb,
.plugin-horizontal-card.is-right .plugin-main-thumb {
  animation: pluginMainFloat 4.4s ease-in-out infinite, pluginSlideCenter 3.8s ease-in-out infinite;
}

.plugin-horizontal-card.is-left .plugin-main-thumb {
  transform: translate(-50%, -50%) translateX(-4px);
}

.plugin-horizontal-card.is-right .plugin-main-thumb {
  transform: translate(-50%, -50%) translateX(4px);
}

@keyframes pluginSlideCenter {
  0%, 100% { margin-left: 0; }
  50% { margin-left: 8px; }
}

.plugin-orbit-ring {
  border-color: rgba(255, 255, 255, 0.24);
}

.plugin-orbit-ring.ring-two {
  border-color: rgba(255, 255, 255, 0.16);
}

.plugin-horizontal-content h3,
.plugin-horizontal-content p,
.plugin-type-label {
  color: #f5f7fc !important;
}

.plugin-horizontal-content .detail-button {
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.plugin-workflow-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plugin-workflow-card {
  border: 1px solid rgba(88, 124, 180, 0.24);
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.plugin-workflow-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plugin-workflow-head img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.plugin-workflow-head h4 {
  margin: 0;
  font-size: 1rem;
}

.plugin-workflow-label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.plugin-workflow-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.plugin-workflow-list li {
  font-size: 0.88rem;
  color: var(--text);
}

.plugin-workflow-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.plugin-workflow-feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
  color: var(--text);
}

.dave-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.dave-package-card {
  border: 1px solid rgba(88, 124, 180, 0.26);
  border-radius: 12px;
  padding: 10px;
  background: rgba(182, 201, 240, 0.16);
}

.dave-package-card h4 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.dave-package-sites {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.dave-package-price {
  margin: 6px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.changelog-hero .lead {
  text-align: left !important;
}

@media (max-width: 980px) {
  .plugin-horizontal-grid {
    grid-template-columns: 1fr;
  }

  .plugin-horizontal-card.is-left,
  .plugin-horizontal-card.is-right {
    padding: 16px 16px 16px 132px;
  }

  .plugin-horizontal-card.is-left .plugin-orbit-shell,
  .plugin-horizontal-card.is-right .plugin-orbit-shell {
    left: -36px;
    right: auto;
  }

  .plugin-workflow-columns,
  .dave-package-grid {
    grid-template-columns: 1fr;
  }

  .admin-expanded {
    grid-template-columns: 1fr;
  }
}

/* Auth + custom-solution polish fixes */
.site-notice {
  color: #ffffff !important;
}

.site-notice-track span::before {
  background: #ffffff !important;
}

.auth-modern,
.auth-modern-side,
.auth-modern-main {
  background: #ffffff !important;
  background-image: none !important;
  box-shadow: none !important;
}

.auth-modern-google,
.button.auth-modern-google,
.button.primary.auth-modern-google,
a.auth-modern-google,
button.auth-modern-google {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.auth-modern-google:hover,
.button.auth-modern-google:hover,
.button.primary.auth-modern-google:hover,
a.auth-modern-google:hover,
button.auth-modern-google:hover,
.auth-modern-google:focus-visible,
.button.auth-modern-google:focus-visible,
.button.primary.auth-modern-google:focus-visible,
a.auth-modern-google:focus-visible,
button.auth-modern-google:focus-visible {
  background: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}

.auth-page .section {
  padding-bottom: 14px !important;
}

.radio-item {
  align-items: flex-start;
}

.radio-item span {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.radio-item input,
.request-form .field input[type="radio"],
.request-form-layout .field input[type="radio"] {
  appearance: auto;
  -webkit-appearance: radio;
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  padding: 0 !important;
  margin: 2px 0 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 0 0 18px;
}

/* Dashboard notification panel visibility fixes */
.dashboard-appbar,
.dashboard-actions,
.dashboard-notify {
  overflow: visible;
}

.dashboard-notify-panel {
  width: min(420px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
}

.notify-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.notify-item > div:first-child {
  min-width: 0;
}

.notify-item h4,
.notify-item p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 920px) {
  .dashboard-notify-panel {
    right: 0;
    left: auto;
    transform: none;
    width: min(420px, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    max-height: min(70vh, 420px);
  }

  .notify-item {
    grid-template-columns: 1fr;
  }

  .notify-item-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Header submenu + trigger highlight improvements */
.nav-pill .nav-list {
  position: relative;
  --nav-indicator-x: 0px;
  --nav-indicator-w: 0px;
  --nav-indicator-opacity: 0;
}

.nav-pill .nav-list::after {
  content: none !important;
}

.nav-list > .nav-item.has-menu > .nav-trigger {
  position: relative;
  padding-right: 30px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav-list > .nav-item.has-menu > .nav-trigger::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  opacity: 0.62;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item.has-menu:hover > .nav-trigger,
.nav-item.has-menu:focus-within > .nav-trigger,
.nav-item.has-menu.is-open > .nav-trigger,
.nav-item.has-menu > .nav-trigger[aria-expanded="true"] {
  opacity: 1;
  color: var(--text);
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.nav-item.has-menu:hover > .nav-trigger::before,
.nav-item.has-menu:focus-within > .nav-trigger::before,
.nav-item.has-menu.is-open > .nav-trigger::before,
.nav-item.has-menu > .nav-trigger[aria-expanded="true"]::before {
  opacity: 1;
  transform: translateY(-38%) rotate(225deg);
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-active,
.nav-trigger.is-active {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.nav-link::after,
.nav-trigger::after {
  content: none !important;
}

.dropdown {
  border-color: rgba(88, 124, 180, 0.28);
  box-shadow: 0 24px 44px rgba(27, 58, 95, 0.18);
}

.dropdown a {
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  opacity: 1;
  color: #0f2b4b;
  background: linear-gradient(135deg, rgba(27, 143, 245, 0.14), rgba(45, 167, 255, 0.05));
  border-color: rgba(27, 143, 245, 0.36);
  transform: translateX(3px);
  outline: none;
}

.dropdown a.is-active {
  color: #0f2b4b;
  background: linear-gradient(135deg, rgba(27, 143, 245, 0.16), rgba(45, 167, 255, 0.06));
  border-color: rgba(27, 143, 245, 0.45);
}

@media (max-width: 920px) {
  .nav-pill .nav-list::after {
    content: none;
  }

  .nav-list > .nav-item.has-menu > .nav-trigger {
    padding-right: 34px;
  }

  .dropdown a:hover,
  .dropdown a:focus-visible {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-pill .nav-list::after {
    transition: none;
  }
}

/* Plugins: wider horizontal cards + center seam product image */
.plugin-horizontal-section .container {
  width: min(1620px, 98vw) !important;
  max-width: none !important;
}

.plugin-horizontal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.plugin-horizontal-card {
  min-height: 196px !important;
  overflow: visible !important;
}

.plugin-horizontal-card .plugin-orbit-visual {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
}

.plugin-horizontal-card.is-left {
  padding: 20px 188px 20px 26px !important;
}

.plugin-horizontal-card.is-right {
  padding: 20px 26px 20px 188px !important;
}

.plugin-horizontal-card .plugin-orbit-shell {
  width: 212px !important;
  height: 212px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 3;
}

.plugin-horizontal-card.is-left .plugin-orbit-shell {
  left: auto !important;
  right: -117px !important;
}

.plugin-horizontal-card.is-right .plugin-orbit-shell {
  right: auto !important;
  left: -117px !important;
}

.plugin-horizontal-card .plugin-main-thumb {
  width: 118px !important;
  height: 118px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 5;
  animation: none !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two {
  inset: 28px !important;
}

.plugin-horizontal-card .plugin-orbit-ring {
  border-width: 1.2px !important;
  border-style: dashed !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two {
  border-color: rgba(255, 255, 255, 0.28) !important;
}

.plugin-horizontal-card .plugin-orbit-logo {
  width: 16px !important;
  height: 16px !important;
}

.plugin-horizontal-card .plugin-orbit-logo.orbit-one {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-106px) rotate(0deg) !important;
}

.plugin-horizontal-card .plugin-orbit-logo.orbit-three {
  transform: translate(-50%, -50%) rotate(72deg) translateY(-106px) rotate(-72deg) !important;
}

.plugin-horizontal-card .plugin-orbit-logo.orbit-five {
  transform: translate(-50%, -50%) rotate(144deg) translateY(-106px) rotate(-144deg) !important;
}

.plugin-horizontal-card .plugin-orbit-logo.orbit-six {
  transform: translate(-50%, -50%) rotate(216deg) translateY(-106px) rotate(-216deg) !important;
}

.plugin-horizontal-card .plugin-orbit-logo.orbit-seven {
  transform: translate(-50%, -50%) rotate(288deg) translateY(-106px) rotate(-288deg) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-two {
  transform: translate(-50%, -50%) rotate(36deg) translateY(-78px) rotate(-36deg) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-four {
  transform: translate(-50%, -50%) rotate(108deg) translateY(-78px) rotate(-108deg) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-eight {
  transform: translate(-50%, -50%) rotate(180deg) translateY(-78px) rotate(-180deg) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-nine {
  transform: translate(-50%, -50%) rotate(252deg) translateY(-78px) rotate(-252deg) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-ten {
  transform: translate(-50%, -50%) rotate(324deg) translateY(-78px) rotate(-324deg) !important;
}

.plugin-horizontal-card.has-shared-orbit .plugin-orbit-visual {
  display: none !important;
}

.plugin-horizontal-card.has-shared-orbit.is-right {
  padding-left: 92px !important;
}

.plugin-horizontal-card .plugin-main-thumb--alt {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.16);
  filter: blur(2px) saturate(0.9);
}

.plugin-horizontal-card.is-paired-switch .plugin-main-thumb--primary {
  animation: pluginThumbSwapPrimary 5.6s cubic-bezier(0.42, 0, 0.2, 1) infinite !important;
}

.plugin-horizontal-card.is-paired-switch .plugin-main-thumb--alt {
  animation: pluginThumbSwapAlt 5.6s cubic-bezier(0.42, 0, 0.2, 1) infinite !important;
}

@keyframes pluginThumbSwapPrimary {
  0%, 38% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0) saturate(1);
  }
  48%, 88% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84) rotate(-7deg);
    filter: blur(2px) saturate(0.88);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0) saturate(1);
  }
}

@keyframes pluginThumbSwapAlt {
  0%, 38% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.16) rotate(7deg);
    filter: blur(2px) saturate(0.88);
  }
  48%, 88% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0) saturate(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.16) rotate(7deg);
    filter: blur(2px) saturate(0.88);
  }
}

.plugin-horizontal-card .plugin-horizontal-content {
  position: relative;
  z-index: 6;
  padding-bottom: 34px;
}

.plugin-horizontal-card .plugin-horizontal-content h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: clamp(1.06rem, 0.94rem + 0.32vw, 1.22rem);
}

.plugin-horizontal-card .plugin-horizontal-content .plugin-type-label {
  margin: 0 0 10px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(216, 228, 247, 0.92);
}

.plugin-horizontal-card .plugin-type-pills {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plugin-horizontal-card .plugin-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.97);
  color: #102a45;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plugin-horizontal-card .plugin-type-pill img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
}

.plugin-horizontal-card .plugin-horizontal-content .plugin-description {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(227, 236, 249, 0.84);
}

.plugin-horizontal-card.is-right .plugin-horizontal-content {
  padding-left: 20px;
}

.plugin-horizontal-card .detail-link {
  position: absolute;
  left: 22px;
  bottom: 16px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(241, 247, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  transition: color 0.2s ease, transform 0.2s ease;
}

.plugin-horizontal-card.is-right .detail-link {
  left: auto;
  right: 22px;
}

.plugin-horizontal-card .detail-link::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: -7px;
  bottom: -7px;
  border-radius: 999px;
  background: #ffffff;
  opacity: 0;
  transform: scale(0.92);
  transform-origin: left center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: -1;
  pointer-events: none;
}

.plugin-horizontal-card.is-right .detail-link::before {
  transform-origin: right center;
}

.plugin-horizontal-card .detail-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.8px solid currentColor;
  border-right: 1.8px solid currentColor;
  transform: translateX(0) rotate(45deg);
  transition: transform 0.2s ease;
  opacity: 0.96;
}

.plugin-horizontal-card .detail-link:hover {
  color: #0d1117;
  transform: translateX(1px);
}

.plugin-horizontal-card .detail-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.plugin-horizontal-card .detail-link:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.plugin-horizontal-card .detail-link:focus-visible {
  outline: 2px solid rgba(120, 193, 255, 0.56);
  outline-offset: 4px;
  border-radius: 3px;
  color: #0d1117;
}

@media (max-width: 980px) {
  .plugin-horizontal-section .container {
    width: min(1620px, calc(100vw - 12px)) !important;
  }

  .plugin-horizontal-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .plugin-horizontal-card.is-left,
  .plugin-horizontal-card.is-right {
    padding: 16px 16px 16px 132px !important;
  }

  .plugin-horizontal-card .plugin-orbit-shell,
  .plugin-horizontal-card.is-left .plugin-orbit-shell,
  .plugin-horizontal-card.is-right .plugin-orbit-shell {
    width: 156px !important;
    height: 156px !important;
    left: -40px !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .plugin-horizontal-card .plugin-main-thumb {
    width: 90px !important;
    height: 90px !important;
  }

  .plugin-horizontal-card .plugin-orbit-logo.orbit-one {
    transform: translate(-50%, -50%) rotate(0deg) translateY(-78px) rotate(0deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-logo.orbit-three {
    transform: translate(-50%, -50%) rotate(72deg) translateY(-78px) rotate(-72deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-logo.orbit-five {
    transform: translate(-50%, -50%) rotate(144deg) translateY(-78px) rotate(-144deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-logo.orbit-six {
    transform: translate(-50%, -50%) rotate(216deg) translateY(-78px) rotate(-216deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-logo.orbit-seven {
    transform: translate(-50%, -50%) rotate(288deg) translateY(-78px) rotate(-288deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-two {
    transform: translate(-50%, -50%) rotate(36deg) translateY(-50px) rotate(-36deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-four {
    transform: translate(-50%, -50%) rotate(108deg) translateY(-50px) rotate(-108deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-eight {
    transform: translate(-50%, -50%) rotate(180deg) translateY(-50px) rotate(-180deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-nine {
    transform: translate(-50%, -50%) rotate(252deg) translateY(-50px) rotate(-252deg) !important;
  }

  .plugin-horizontal-card .plugin-orbit-ring.ring-two .plugin-orbit-logo.orbit-ten {
    transform: translate(-50%, -50%) rotate(324deg) translateY(-50px) rotate(-324deg) !important;
  }

  .plugin-horizontal-card.is-right .plugin-horizontal-content {
    padding-left: 0;
  }

  .plugin-horizontal-card.has-shared-orbit.is-right {
    padding-left: 16px !important;
  }

  .plugin-horizontal-card .detail-link {
    left: 14px;
    bottom: 12px;
  }

.plugin-horizontal-card.is-right .detail-link {
    left: auto;
    right: 14px;
  }
}

/* Shared orbit tuning: keep icon size/speed consistent on Plugins + Compatibility */
:root {
  --shared-orbit-logo-size: 16px;
  --shared-orbit-spin-outer: 20s;
  --shared-orbit-spin-inner: 26s;
}

.plugin-horizontal-card .plugin-orbit-logo {
  width: var(--shared-orbit-logo-size) !important;
  height: var(--shared-orbit-logo-size) !important;
}

.plugin-horizontal-card .plugin-orbit-ring {
  animation-duration: var(--shared-orbit-spin-outer) !important;
}

.plugin-horizontal-card .plugin-orbit-ring.ring-two {
  animation-duration: var(--shared-orbit-spin-inner) !important;
}

.compat-orbit-ring {
  animation-duration: var(--shared-orbit-spin-outer);
}

.compat-orbit-ring.ring-two {
  animation-duration: var(--shared-orbit-spin-inner);
}

/* Home: footer-above CTA section refinements */
body[data-page="home"] .help-cta {
  padding: 30px 0 64px;
}

body[data-page="home"] .help-cta .container.help-cta-card {
  width: min(1460px, 96vw);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 58px) clamp(20px, 4vw, 44px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  background: linear-gradient(98deg, #eef3f9 0%, #dceafb 50%, #eef4fb 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 30px rgba(110, 138, 176, 0.14);
  text-align: center;
  color: #0f1724;
}

body[data-page="home"] .help-cta .help-cta-label {
  margin: 0;
  color: #69788a !important;
  font-size: clamp(1.05rem, 0.95rem + 0.24vw, 1.3rem);
  font-weight: 500;
  line-height: 1.35;
}

body[data-page="home"] .help-cta h2 {
  margin: 6px 0 0;
  font-size: clamp(2.45rem, 3.5vw, 4rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #131a25;
}

body[data-page="home"] .help-cta h2 strong {
  font-weight: 800;
  letter-spacing: -0.01em;
}

body[data-page="home"] .help-cta .help-cta-list {
  margin: 18px 0 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

body[data-page="home"] .help-cta .help-cta-list span {
  position: relative;
  padding-left: 22px;
  color: #1e2a39;
  font-size: 0.98rem;
  font-weight: 500;
  white-space: nowrap;
}

body[data-page="home"] .help-cta .help-cta-list span::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-53%);
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #39b2ff, #1f94ec);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 5px 10px rgba(31, 148, 236, 0.24);
}

body[data-page="home"] .help-cta .help-cta-card .button.primary {
  min-height: 48px;
  padding: 0 30px;
  border-radius: 11px;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-transform: none;
  background: linear-gradient(180deg, #35b4ff, #1e95ea) !important;
  border-color: rgba(34, 144, 226, 0.9) !important;
  box-shadow: 0 12px 22px rgba(29, 132, 210, 0.28);
}

body[data-page="home"] .help-cta .help-cta-card .button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(29, 132, 210, 0.34);
}

@media (max-width: 900px) {
  body[data-page="home"] .help-cta .container.help-cta-card {
    width: min(1460px, calc(100vw - 16px));
    padding: 32px 16px;
  }

  body[data-page="home"] .help-cta h2 {
    font-size: clamp(2.05rem, 7vw, 2.8rem);
  }

  body[data-page="home"] .help-cta .help-cta-list {
    gap: 14px;
    margin-bottom: 28px;
  }

  body[data-page="home"] .help-cta .help-cta-list span {
    font-size: 0.93rem;
  }
}

body[data-page="plugins"] .help-cta {
  padding: 24px 0 34px;
}

body[data-page="plugins"] .help-cta .container.help-cta-card {
  padding: 24px 24px 18px;
}

body[data-page="plugins"] .help-cta .help-cta-label {
  margin: 0 0 4px;
}

body[data-page="plugins"] .help-cta h2 {
  margin: 2px 0 10px;
}

body[data-page="plugins"] .help-cta .help-cta-list {
  margin: 12px 0 14px;
}

/* Unified notification styling: header + dashboard + admin */
:root {
  --notify-surface: linear-gradient(180deg, #ffffff, #f8fbff);
  --notify-border: rgba(88, 124, 180, 0.28);
  --notify-border-soft: rgba(88, 124, 180, 0.2);
  --notify-shadow: 0 20px 38px rgba(31, 62, 104, 0.18);
  --notify-title: #102b47;
  --notify-muted: #4f6d8d;
}

.dashboard-notify-panel,
.header-notify-panel {
  border: 1px solid var(--notify-border) !important;
  border-radius: 16px !important;
  background: var(--notify-surface) !important;
  box-shadow: var(--notify-shadow) !important;
  padding: 12px !important;
}

.header-notify-panel {
  width: min(380px, calc(100vw - 18px));
  max-height: min(70vh, 420px);
  overflow: auto;
}

.notify-panel-head,
.header-notify-head {
  margin: 0 0 10px;
  padding: 2px 2px 10px;
  border-bottom: 1px solid var(--notify-border-soft);
}

.notify-panel-head strong,
.header-notify-head strong {
  margin: 0;
  color: var(--notify-title);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.notify-view-all,
.header-notify-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 11px;
  border: 1px solid rgba(88, 124, 180, 0.3);
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  color: #123a62 !important;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.notify-view-all:hover,
.header-notify-head a:hover {
  text-decoration: none;
  color: #0c2f52 !important;
  background: #ffffff;
  border-color: rgba(27, 143, 245, 0.42);
  transform: translateY(-1px);
}

.notify-panel-actions {
  gap: 4px;
  padding: 4px 6px;
  border-radius: 14px;
  border: 1px solid var(--notify-border);
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.96), rgba(236, 247, 255, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.notify-panel-actions form + form {
  margin-left: 2px;
  padding-left: 7px;
  border-left: 1px solid var(--notify-border-soft);
}

.notify-panel-actions .icon-button {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(88, 124, 180, 0.16);
  background: transparent;
  color: #1d456a;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.notify-panel-actions .icon-button svg {
  width: 16px;
  height: 16px;
}

.notify-panel-actions .icon-button:hover {
  background: #ffffff;
  border-color: rgba(27, 143, 245, 0.38);
  color: #0f2b4b;
  transform: translateY(-1px);
}

.notify-panel-actions .icon-button:focus-visible {
  outline: 2px solid rgba(27, 143, 245, 0.38);
  outline-offset: 1px;
}

.notify-list,
.header-notify-list {
  gap: 10px;
}

.notify-list > .muted,
.header-notify-list > .muted {
  margin: 4px 0 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(88, 124, 180, 0.3);
  background: rgba(244, 250, 255, 0.95);
  color: var(--notify-muted);
  font-size: 0.92rem;
}

.notify-item,
.header-notify-item {
  border: 1px solid rgba(88, 124, 180, 0.22) !important;
  border-radius: 13px !important;
  padding: 11px !important;
  background: #ffffff !important;
}

.notify-item.is-unread,
.header-notify-item.is-unread {
  border-color: rgba(27, 143, 245, 0.36) !important;
  background: linear-gradient(180deg, rgba(27, 143, 245, 0.1), rgba(27, 143, 245, 0.04)) !important;
}

.notify-item h4,
.header-notify-item h4 {
  margin: 0 0 5px;
  font-size: 0.92rem;
  color: var(--notify-title);
}

.notify-item p,
.header-notify-item p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.45;
  color: var(--notify-muted);
}

.notify-item small,
.header-notify-item small {
  margin-top: 7px;
  font-size: 0.75rem;
  color: #6b8199;
}

.header-notify-item a {
  margin-top: 7px;
  font-size: 0.76rem;
  color: #0f365c;
  font-weight: 700;
}

.notification-count,
.header-notify-count {
  background: #0f2b4b;
  color: #ffffff;
}

.admin-pill-checkboxes {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(88, 124, 180, 0.22);
  border-radius: 12px;
  background: rgba(245, 250, 255, 0.78);
}

.admin-pill-checkboxes-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #153452;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.admin-pill-checkboxes label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #294966;
}

.admin-pill-checkboxes input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1b8ff5;
}
