:root {
  --accent: #1054a5;
  --accent-dark: #1054a5;
  --dark: #17181b;
  --ink: #333333;
  --muted: #6f7277;
  --line: rgba(170, 170, 170, 0.3);
  --soft: #f5f6f8;
  --wrap: 1340px;
  --shadow: 0 24px 80px rgba(12, 28, 48, 0.13);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--dark);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: var(--accent);
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(5, 26, 54, 0.12);
}

.site-header::before {
  display: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 60px;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 7px 50px;
}

.brand {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  grid-column: 1;
  justify-self: start;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.has-submenu::before {
  position: fixed;
  top: 59px;
  right: 0;
  left: 0;
  display: none;
  height: 34px;
  content: "";
}

.site-nav a,
.site-nav button {
  position: relative;
  display: inline-block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  padding: 18px 0;
  transition: opacity 0.18s ease;
}

.site-nav a::after,
.site-nav button::after {
  position: static;
  display: block;
  width: 0;
  height: 2px;
  margin-top: 9px;
  background: #ffffff;
  content: "";
  opacity: 1;
  transition: width 0.18s ease;
}

.site-nav a:hover::after,
.site-nav button:hover::after,
.site-nav .is-active::after {
  width: 100%;
}

.site-nav a:hover,
.site-nav button:hover,
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.site-nav .is-active {
  background: transparent;
  opacity: 0.86;
}

.submenu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  margin: 0;
  padding: 0 50px;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: none;
}

.has-submenu:hover::before,
.has-submenu:focus-within::before {
  display: block;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  justify-content: space-between;
  gap: 14px;
  width: min(100%, var(--wrap));
  max-width: var(--wrap);
  margin: 0 auto;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.92), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 249, 255, 0.72));
  box-shadow: 0 32px 90px rgba(5, 18, 38, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.submenu-inner::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(16, 84, 165, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(16, 84, 165, 0.05), transparent 42%, rgba(255, 255, 255, 0.24));
  content: "";
  pointer-events: none;
}

.site-nav .submenu-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-height: 0;
  aspect-ratio: auto;
  overflow: visible;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.38);
  color: var(--ink);
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background-color 0.18s ease;
}

.site-nav .submenu-card img {
  position: static;
  z-index: auto;
  width: 96px;
  max-width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  flex: 0 0 96px;
  min-height: 0;
  border-radius: 12px;
  background: #f5f6f8;
  object-fit: cover;
  transform: scale(1.01);
  box-shadow: 0 16px 36px rgba(5, 26, 54, 0.12);
  transition: transform 0.24s ease, filter 0.24s ease, box-shadow 0.24s ease;
}

.site-nav .submenu-card::before {
  display: none;
}

.site-nav .submenu-card span {
  position: static;
  z-index: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 82px;
  max-width: 120px;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74) 42%, rgba(225, 237, 251, 0.72)),
    rgba(255, 255, 255, 0.78);
  color: #0f3c77;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-shadow: none;
  box-shadow: 0 12px 28px rgba(5, 26, 54, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.site-nav .submenu-card::after {
  display: none;
}

.site-nav .submenu-card:hover,
.site-nav .submenu-card:focus-visible,
.site-nav .submenu-card.is-active {
  border-color: rgba(16, 84, 165, 0.16);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 44px rgba(5, 26, 54, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  opacity: 1;
  transform: translateY(-2px);
}

.site-nav .submenu-card:hover img,
.site-nav .submenu-card:focus-visible img,
.site-nav .submenu-card.is-active img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.025);
  box-shadow: 0 16px 34px rgba(5, 26, 54, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  place-items: center;
  box-shadow: none;
}

.header-actions {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 9px;
}

.language-toggle,
.header-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  transition: color 0.2s ease;
}

.language-toggle::after {
  color: rgba(255, 255, 255, 0.4);
  content: "›";
  font-size: 13px;
  line-height: 1;
}

.language-toggle:hover,
.language-toggle:focus-visible,
.header-link:hover,
.header-link:focus-visible,
.header-link.is-active {
  color: #ffffff;
}

.header-link {
  position: relative;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0 0 9px;
  transition: opacity 0.18s ease;
}

.header-link:hover,
.header-link:focus-visible,
.header-link.is-active {
  background: transparent;
  opacity: 0.86;
}

.header-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ffffff;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.header-link:hover::after,
.header-link:focus-visible::after,
.header-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-public,
.is-logged-in .header-account.header-link,
.is-logged-in .header-logout.header-link {
  gap: 8px;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 13px 0 10px;
  transition: background-color 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.header-public::before,
.is-logged-in .header-account.header-link::before,
.is-logged-in .header-logout.header-link::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  content: "";
}

.is-logged-in .header-logout.header-link::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4'/%3E%3Cpolyline points='16 17 21 12 16 7'/%3E%3Cline x1='21' x2='9' y1='12' y2='12'/%3E%3C/svg%3E");
}

.header-public::after,
.is-logged-in .header-account.header-link::after,
.is-logged-in .header-logout.header-link::after {
  display: none;
}

.header-public:hover,
.header-public:focus-visible,
.header-public.is-active,
.is-logged-in .header-account.header-link:hover,
.is-logged-in .header-account.header-link:focus-visible,
.is-logged-in .header-account.header-link.is-active,
.is-logged-in .header-logout.header-link:hover,
.is-logged-in .header-logout.header-link:focus-visible,
.is-logged-in .header-logout.header-link.is-active {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.14);
  opacity: 1;
}

.header-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
}

.header-account,
.header-logout {
  display: none;
}

.is-logged-in .header-public {
  display: none;
}

.is-logged-in .header-account,
.is-logged-in .header-logout {
  display: inline-flex;
}

.is-logged-in .header-actions .header-separator.header-account {
  display: none;
}

.home.is-logged-in .hero-signup-card {
  display: none;
}

.hero-signup-thanks {
  position: absolute;
  z-index: 22;
  top: 50%;
  right: 70px;
  display: grid;
  width: min(520px, calc(100vw - 32px));
  gap: 12px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.90), rgba(245, 250, 255, 0.76));
  box-shadow: 0 30px 86px rgba(5, 18, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: #10233f;
  transform: translateY(-50%);
  animation: heroThanksIn 0.5s ease both;
  backdrop-filter: blur(14px) saturate(118%);
}

.hero-signup-thanks strong {
  color: var(--accent);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.hero-signup-thanks span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-signup-thanks.is-leaving {
  animation: heroThanksOut 0.7s ease both;
}

@keyframes heroThanksIn {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 18px)) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

@keyframes heroThanksOut {
  to {
    opacity: 0;
    transform: translateY(calc(-50% - 12px)) scale(0.98);
  }
}

.mobile-only-nav {
  display: none;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: #ffffff;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #ffffff;
}

.home-hero {
  min-height: 610px;
  --hero-side: max(50px, calc((100vw - 1180px) / 2 + 24px));
  z-index: 5;
  overflow: visible;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 58%),
    linear-gradient(25deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
}

.home-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.page-hero .hero-overlay {
  background: rgba(0, 0, 0, 0.28);
}

.hero-slide-content {
  position: absolute;
  right: auto;
  bottom: 128px;
  left: 24px;
  z-index: 1;
  width: min(320px, calc(100vw - 96px));
  text-align: left;
  text-shadow: none;
}

.hero-slide-content h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.08;
}

.hero-slide-content p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.slide-dark .hero-slide-content h1,
.slide-dark .hero-slide-content p {
  color: #000000;
}

.hero-claim {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: var(--hero-side);
  width: min(650px, calc(100vw - 96px));
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  text-align: left;
  text-shadow: none;
  transform: translateY(-50%);
}

.home-hero.is-dark-slide .hero-claim {
  color: #000000;
}

.hero-signup-card {
  position: absolute;
  z-index: 20;
  top: 50%;
  right: 70px;
  left: auto;
  display: grid;
  grid-template-columns: 1fr;
  width: min(588px, calc(100vw - 8px));
  align-items: stretch;
  gap: 17px;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 28px 80px rgba(5, 18, 38, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.34);
  color: #101318;
  isolation: isolate;
  transform: translateY(-50%);
  backdrop-filter: blur(10px) saturate(112%);
}

.hero-signup-card.has-open-prefix {
  z-index: 90;
}

.hero-signup-card::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 70px rgba(5, 18, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  pointer-events: none;
}

.hero-signup-card::after {
  display: none;
}

.hero-signup-card > * {
  position: relative;
  z-index: 2;
}

.hero-signup-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.hero-signup-copy span {
  width: max-content;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #0f2e54;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
  box-shadow: none;
}

.hero-signup-fields {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: minmax(142px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  overflow: visible;
}

.hero-signup-field {
  display: grid;
  gap: 6px;
  margin: 0;
  color: #222832;
  font-size: 11px;
  font-weight: 700;
}

.hero-signup-field:nth-child(1),
.hero-signup-field:nth-child(2),
.hero-signup-field:nth-child(5) {
  grid-column: 1 / -1;
}

.hero-signup-prefix {
  position: relative;
  grid-column: 1;
  z-index: 8;
}

.hero-signup-prefix.is-open {
  z-index: 100;
}

.hero-signup-phone {
  grid-column: 2;
}

.hero-signup-field input,
.hero-signup-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: #101318;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-signup-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 17px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 30px;
}

.hero-prefix-trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  color: #10233f;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  padding: 10px 46px 10px 12px;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 24px rgba(5, 26, 54, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-prefix-trigger::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25L7 7.25L13 1.25' stroke='%231054a5' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center / 14px 9px no-repeat;
  transform: translateY(-50%);
  transition: transform 0.18s ease;
}

.hero-signup-prefix.is-open .hero-prefix-trigger,
.hero-prefix-trigger:hover,
.hero-prefix-trigger:focus-visible {
  border-color: rgba(16, 84, 165, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(241, 247, 255, 0.98));
  outline: 0;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.14), 0 16px 34px rgba(5, 26, 54, 0.12);
}

.hero-signup-prefix.is-open .hero-prefix-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}

.hero-prefix-menu {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 8px);
  left: 0;
  display: block;
  width: max(100%, 276px);
  max-height: 238px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.98));
  color: #10233f;
  color-scheme: light;
  padding: 6px;
  box-shadow: 0 24px 58px rgba(3, 17, 36, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  scrollbar-color: rgba(16, 84, 165, 0.32) transparent;
  scrollbar-width: thin;
}

.hero-prefix-menu::-webkit-scrollbar {
  width: 8px;
}

.hero-prefix-menu::-webkit-scrollbar-thumb {
  border: 2px solid rgba(244, 248, 253, 0.98);
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.30);
}

.hero-prefix-option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #10233f;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 11px;
  text-align: left;
}

.hero-prefix-option[hidden] {
  display: none;
}

.hero-prefix-option:hover,
.hero-prefix-option:focus-visible,
.hero-prefix-option[aria-selected="true"] {
  background: rgba(16, 84, 165, 0.10);
  outline: 0;
}

.hero-prefix-option:hover,
.hero-prefix-option:focus-visible {
  color: #1054a5;
}

.hero-signup-field input:focus,
.hero-signup-field select:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.10), 0 10px 24px rgba(5, 26, 54, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.hero-signup-checks {
  display: grid;
  gap: 8px;
}

.hero-signup-card .round-check {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: #29313d;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.32;
  padding: 1px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero-signup-card .round-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  margin: 0;
  border: 1px solid rgba(16, 84, 165, 0.42);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hero-signup-card .round-check input:checked {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 42%, #ffffff 46%);
  box-shadow: 0 0 0 3px rgba(16, 84, 165, 0.08);
}

.hero-signup-submit {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  background: rgba(16, 84, 165, 0.86);
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 16px 36px rgba(5, 26, 54, 0.18);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero-signup-submit:hover,
.hero-signup-submit:focus-visible {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(16, 84, 165, 0.96);
  transform: translateY(-1px);
}

@media (min-width: 981px) and (max-width: 1360px) {
  .hero-claim {
    width: min(530px, calc(100vw - 96px));
    font-size: clamp(42px, 4.8vw, 62px);
  }

  .hero-signup-card {
    width: min(568px, calc(100vw - 8px));
  }
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 28px;
  height: 76px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 66px;
  font-weight: 100;
  line-height: 1;
  opacity: 0.86;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  opacity: 1;
  outline: 0;
  transform: translateY(-50%) scaleY(1.06);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

.page-hero {
  display: grid;
  place-items: center;
  padding: 12vw 24px;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero.legal-hero {
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.10), transparent 38%),
    linear-gradient(135deg, #1e1f22 0%, #222 48%, #161719 100%);
  padding-top: 112px;
  padding-bottom: 112px;
  border-bottom: 1px solid rgba(16, 84, 165, 0.16);
}

.page-hero.legal-hero::after {
  position: absolute;
  right: 50%;
  bottom: 74px;
  width: min(180px, 34vw);
  height: 2px;
  background: var(--accent);
  content: "";
  transform: translateX(50%);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0;
  color: #ffffff;
  font-size: 70px;
  font-weight: 400;
  line-height: 80px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 18px;
}

.button:hover {
  background: var(--accent);
}

.button-light {
  background: rgba(0, 0, 0, 0.35);
}

.button-light:hover {
  background: rgba(0, 0, 0, 0.55);
}

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

.split-grid > article,
.program-list,
.image-tile {
  min-width: 0;
  min-height: 360px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

main > .split-grid:last-child > article,
main > .split-grid:last-child > .program-list,
main > .split-grid:last-child > .image-tile {
  border-bottom: 0;
}

.split-grid > article,
.program-list {
  background: rgba(255, 255, 255, 0.92);
}

.split-grid > article,
.program-list {
  padding: 90px 50px;
}

.section-title > p {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.section-title > span {
  display: block;
  width: 70px;
  height: 2px;
  margin: 0 0 30px;
  background: var(--accent);
}

.section-title.light > span {
  background: #ffffff;
}

.section-title h2,
.split-grid h2,
.wide-copy h2,
.statement h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.27;
}

.section-title h2:empty {
  display: none;
}

.home-title-break {
  display: block;
  margin-top: 0.42em;
}

.section-title.light > p,
.section-title.light h2,
.dark-panel h2,
.blue-panel h2 {
  color: #ffffff;
}

.dark-panel,
.split-grid > article.dark-panel {
  background: linear-gradient(145deg, #15171b, #20242a);
  color: #ffffff;
}

.blue-panel,
.split-grid > article.blue-panel {
  background: var(--accent);
  color: #ffffff;
}

.image-tile {
  position: relative;
  min-height: 500px;
  background-image: var(--tile-image);
  background-position: center;
  background-size: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
}

.image-tile::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}

.image-tile:hover {
  filter: saturate(1.06) contrast(1.03);
}

.program-list {
  grid-column: span 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.program-list h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.5;
}

.program-list p {
  margin: 0;
  color: #555b62;
}

main :where(.content-band, .split-grid, .user-form-section) :where(p, li, .section-title h2, .wide-copy h2, .statement h2, .mini-heading p, .pair-copy) {
  hyphens: auto;
  text-align: justify;
  text-justify: inter-word;
}

.home .split-grid :where(p, li, .section-title h2, .wide-copy h2, .statement h2, .mini-heading p, .pair-copy) {
  hyphens: manual;
  text-align: left;
}

.content-band,
.form-section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px 24px;
  background: #fff;
}

.legal-content {
  max-width: none;
  margin: 0;
  padding: 82px 24px 96px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.wide-copy {
  margin-bottom: 50px;
}

.wide-copy h2 {
  margin: 0;
  font-size: 32px;
  text-align: justify;
}

.wide-copy span {
  color: var(--accent);
}

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

.feature-pairs article {
  padding-bottom: 50px;
}

.pair-copy {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.center-title {
  max-width: 420px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-title .section-title > p {
  text-align: center;
}

.center-title .section-title > span {
  margin-right: auto;
  margin-left: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 34px;
  margin-bottom: 64px;
}

.card-grid.three {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 18px 50px rgba(20, 28, 40, 0.10);
}

.mini-heading h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.mini-heading > span {
  display: block;
  width: 70px;
  height: 2px;
  margin: 0 0 20px;
  background: var(--accent);
}

.mini-heading p {
  margin: 0;
  color: #4a4d52;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.feature-pairs .section-title > span {
  margin-bottom: 20px;
}

.statement {
  margin-top: 30px;
}

.thanks {
  min-height: 64vh;
}

.form-copy {
  margin-bottom: 30px;
}

.user-form-section .form-copy,
.user-form-section .form-copy .section-title {
  width: 100%;
}

body.user-form-page,
.user-form-page main,
.user-form-page #content,
.user-form-section {
  background: #fff;
}

html:has(body.user-form-page) {
  background: #fff;
}

.user-form-section {
  padding-top: 86px;
}

.register-heading h1 {
  margin: 0 0 38px;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
}

.user-form-section .form-copy .section-title h2 {
  max-width: none;
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 400;
  line-height: 1.65;
  text-align: justify;
}

.lead-form {
  padding: 36px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(20, 28, 40, 0.08);
}

.lead-form-wide {
  padding: 42px;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #d5d7db;
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 13px;
}

.lead-form select,
.intranet-form select {
  min-height: 50px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    linear-gradient(to bottom, rgba(16, 84, 165, 0.12), rgba(16, 84, 165, 0.12));
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%,
    calc(100% - 48px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px, 1px 28px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 62px 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.lead-form select:hover,
.intranet-form select:hover {
  border-color: rgba(16, 84, 165, 0.42);
  box-shadow: 0 10px 28px rgba(16, 84, 165, 0.08);
}

.lead-form select:required:invalid,
.intranet-form select:required:invalid {
  color: var(--muted);
}

.lead-form select option,
.intranet-form select option {
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.intranet-form input:focus,
.intranet-form select:focus,
.intranet-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(16, 84, 165, 0.14);
}

.lead-form select:focus,
.intranet-form select:focus {
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.08);
}

.lead-form select[name="phone_prefix"],
.intranet-form select[name="phone_prefix"] {
  min-height: 52px;
  border-color: rgba(16, 84, 165, 0.24);
  border-radius: 999px;
  background-color: #f8fbff;
  background-image:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 34%),
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    linear-gradient(to bottom, rgba(16, 84, 165, 0.10), rgba(16, 84, 165, 0.10));
  background-position:
    0 0,
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%,
    calc(100% - 48px) 50%;
  background-size: 100% 100%, 6px 6px, 6px 6px, 1px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 30px rgba(16, 84, 165, 0.08);
}

.lead-form textarea {
  resize: vertical;
}

.lead-form .check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
}

.lead-form .check input {
  width: auto;
  margin-top: 6px;
}

.lead-form .round-check {
  align-items: center;
  min-height: 34px;
  margin-top: 6px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4a4d52;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.lead-form .round-check + .round-check {
  margin-top: 2px;
  padding-top: 2px;
}

.lead-form .round-check input {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  margin: 0;
  border: 1px solid rgba(16, 84, 165, 0.42);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.lead-form .round-check input:checked {
  border-color: var(--accent);
  background: radial-gradient(circle, var(--accent) 42%, #ffffff 46%);
  box-shadow: 0 0 0 3px rgba(16, 84, 165, 0.08);
}

.full-field {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-secondary {
  border: 1px solid rgba(16, 84, 165, 0.22);
  background: #ffffff;
  color: var(--accent);
}

.button-secondary:hover {
  background: #ffffff;
  color: var(--accent);
}

.form-side-links {
  display: flex;
  flex-wrap: wrap;
  min-height: 38px;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 30px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.form-status {
  margin: 16px 0 0;
  color: var(--accent);
  font-weight: 700;
}

.auth-page {
  display: grid;
  min-height: calc(100vh - 60px);
  place-items: center;
  padding: 64px 24px;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.20), transparent 32%),
    linear-gradient(145deg, #0d4b96 0%, var(--accent) 48%, #0a3e7c 100%);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 30px;
  width: min(100%, 1060px);
  align-items: center;
  color: #ffffff;
}

.auth-intro h1 {
  margin: 8px 0 18px;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 0.98;
}

.auth-intro p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 700;
}

.auth-card {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 14px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(2, 18, 39, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(18px) saturate(125%);
}

.auth-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  content: "";
  pointer-events: none;
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.auth-card input::placeholder {
  color: rgba(51, 51, 51, 0.64);
}

.auth-card input:focus {
  border-color: var(--accent);
  outline: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22), 0 12px 30px rgba(5, 26, 54, 0.10);
}

.auth-card .button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  background: rgba(16, 84, 165, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 16px 36px rgba(5, 26, 54, 0.18);
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.auth-card .button:hover,
.auth-card .button:focus-visible {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(16, 84, 165, 0.96);
  transform: translateY(-1px);
}

.auth-card .form-status {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(2, 18, 39, 0.18);
}

.new-signup-page {
  overflow: visible;
}

.new-signup-shell {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 588px);
  width: min(100%, 1180px);
  gap: 44px;
}

.new-signup-panel {
  display: grid;
  gap: 14px;
}

.new-signup-panel .crm-notice {
  margin: 0;
}

.new-signup-page .hero-signup-card {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: 100%;
  transform: none;
}

.new-signup-page .hero-signup-thanks {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  transform: none;
}

.new-signup-page .hero-signup-thanks.is-leaving {
  display: none;
}

.auth-login-card .hero-signup-fields {
  grid-template-columns: 1fr;
}

.auth-login-card .hero-signup-field {
  grid-column: 1 / -1;
}

.auth-login-card .crm-notice {
  margin: 0;
}

.auth-login-card .form-status {
  margin: 0;
  color: #1054a5;
  font-size: 13px;
  line-height: 1.35;
  text-shadow: none;
}

.new-signup-panel .login-links {
  grid-column: auto;
  min-height: auto;
  justify-content: flex-end;
  padding: 0 22px;
}

.new-signup-panel .login-links a {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(2, 18, 39, 0.24);
}

.login-links {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  min-height: 38px;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 700;
}

.crm-page {
  background: #fff;
}

.crm-shell {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 70px 24px;
}

.crm-header,
.crm-panel,
.crm-kpis > div,
.crm-lead-card {
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(20, 28, 40, 0.08);
}

.crm-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: 34px;
}

.crm-header h1 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
}

.crm-header p {
  max-width: 640px;
  margin: 0;
  color: #4a4d52;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.crm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.crm-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f7fbff;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.crm-notice.error {
  background: #fff6f6;
  color: #a22;
}

.crm-notice.warning {
  background: #fff8e6;
  color: #7a5300;
}

.verification-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
}

.crm-notice.warning.verification-bubble {
  position: relative;
  align-items: flex-start;
  max-width: 920px;
  margin: 0 0 22px;
  padding: 20px 22px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(255, 92, 104, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(205, 18, 38, 0.98), rgba(121, 8, 24, 0.99));
  box-shadow: 0 22px 58px rgba(129, 8, 24, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.crm-notice.warning.verification-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(300deg, rgba(255, 120, 132, 0.10), transparent 48%);
  pointer-events: none;
}

.crm-notice.warning.verification-bubble::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #8b0d21;
  transform: rotate(45deg);
}

.verification-bubble-icon {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #b91529;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  box-shadow: 0 10px 24px rgba(87, 4, 15, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.commercial-verification-bubble .verification-bubble-icon {
  background: rgba(255, 255, 255, 0.94);
  color: #b91529;
}

.verification-bubble-copy {
  display: grid;
  flex: 1 1 260px;
  gap: 4px;
}

.verification-bubble-copy strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.verification-bubble-copy span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.verification-notice form {
  margin: 0;
}

.verification-notice button {
  appearance: none;
  display: inline;
  width: auto;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.verification-notice button:hover,
.verification-notice button:focus-visible {
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  outline: 0;
}

.crm-notice ul {
  margin: 0;
  padding-left: 18px;
}

.crm-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.crm-kpis > div {
  padding: 22px;
}

.crm-kpis span,
.crm-badges span,
.crm-team-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.crm-kpis strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.crm-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.crm-grid-single {
  grid-template-columns: 1fr;
}

.crm-panel {
  padding: 26px;
}

.crm-panel h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.2;
}

.crm-leads {
  display: grid;
  gap: 12px;
}

.crm-lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  box-shadow: none;
}

.crm-lead-card strong,
.crm-lead-card span {
  display: block;
}

.crm-lead-card strong {
  color: var(--ink);
  font-size: 16px;
}

.crm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  grid-column: 1 / -1;
}

.crm-badges span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f3f6fb;
}

.crm-empty {
  padding: 18px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.crm-inline-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  margin-bottom: 18px;
}

.crm-inline-form input {
  min-height: 42px;
  border: 1px solid #d5d7db;
  border-radius: 4px;
  padding: 10px 12px;
}

.crm-team-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crm-team-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 84, 165, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.crm-password-grid {
  margin-top: 10px;
}

.crm-admin-shell {
  padding-top: 54px;
}

.crm-admin-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 20px;
}

.crm-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(16, 84, 165, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(20, 28, 40, 0.07);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  scrollbar-width: none;
}

.crm-tabs::-webkit-scrollbar {
  display: none;
}

.crm-tabs button {
  width: auto;
  flex: 0 0 auto;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 13px;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.tab-scroll-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 8px;
}

.tab-scroll-button {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  place-items: center;
}

.crm-tabs button:hover,
.crm-tabs button:focus-visible {
  border-color: rgba(16, 84, 165, 0.18);
  background: #f8fbff;
  outline: 0;
}

.crm-tabs button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 84, 165, 0.2);
}

.crm-admin-panels {
  min-width: 0;
}

.crm-tab-panel[hidden] {
  display: none;
}

.crm-admin-welcome {
  margin-bottom: 22px;
}

.crm-dashboard-grid,
.crm-seller-grid,
.crm-client-grid,
.crm-asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.crm-dashboard-list,
.crm-priority-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crm-dashboard-list li,
.crm-priority-list p,
.crm-seller-card,
.crm-client-card,
.crm-asset-card {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.crm-dashboard-list strong,
.crm-priority-list strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.crm-dashboard-list span,
.crm-dashboard-list em,
.crm-dashboard-list small,
.crm-priority-list span {
  display: block;
  margin-top: 4px;
  color: #69707a;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
}

.crm-panel-intro {
  margin-bottom: 18px;
}

.crm-client-invite {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.crm-client-invite h2 {
  margin-bottom: 8px;
}

.crm-client-invite .crm-inline-form {
  margin-bottom: 0;
}

.crm-panel-intro p,
.crm-muted {
  max-width: 820px;
  margin: 0;
  color: #4a4d52;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.crm-filter-bar,
.crm-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.crm-filter-bar a,
.crm-pagination a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 13px;
  text-decoration: none;
}

.crm-filter-bar a.is-active,
.crm-pagination a.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.crm-pagination {
  justify-content: center;
}

.crm-lead-table {
  display: grid;
  gap: 14px;
}

.crm-lead-row {
  border: 1px solid rgba(16, 84, 165, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(20, 28, 40, 0.07);
  transition: opacity 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.crm-lead-row.is-muted {
  border-color: rgba(16, 84, 165, 0.06);
  box-shadow: none;
  opacity: 0.56;
}

.crm-lead-row.is-bounced {
  border-color: rgba(216, 75, 75, 0.26);
}

.crm-email-bounced {
  color: #c43131 !important;
}

.crm-lead-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.crm-lead-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
}

.crm-lead-badge.is-warning {
  border-color: rgba(194, 124, 32, 0.24);
  background: #fff8ea;
  color: #9b6518;
}

.crm-lead-badge.is-danger {
  border-color: rgba(196, 49, 49, 0.22);
  background: #fff1f1;
  color: #b22b2b;
}

.crm-lead-badge.is-ok {
  border-color: rgba(35, 140, 82, 0.22);
  background: #eefaf3;
  color: #238c52;
}

.crm-lead-row form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.crm-lead-main {
  display: grid;
  grid-template-columns: minmax(190px, 1.35fr) repeat(5, minmax(106px, 1fr)) minmax(118px, auto);
  gap: 12px;
  align-items: center;
}

.crm-lead-main span,
.crm-quick-form label,
.crm-readonly-grid span,
.crm-seller-card dt,
.crm-client-card dt,
.crm-asset-card dt,
.crm-config-form label {
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-lead-main strong,
.crm-readonly-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.crm-lead-registration strong {
  font-variant-numeric: tabular-nums;
}

.crm-lead-registration small {
  display: block;
  margin-top: 3px;
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.crm-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crm-lead-actions-stack {
  display: grid;
  gap: 8px;
}

.crm-lead-actions-stack .button {
  width: 100%;
}

.crm-lead-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.crm-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.crm-toggle i {
  position: relative;
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: #dce6f2;
  flex: 0 0 auto;
  transition: background-color 0.18s ease;
}

.crm-toggle i::before {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 3px 9px rgba(20, 28, 40, 0.18);
  content: "";
  transition: transform 0.18s ease;
}

.crm-toggle input:checked + i {
  background: var(--accent);
}

.crm-toggle input:checked + i::before {
  transform: translateX(16px);
}

.crm-lead-more {
  border-top: 1px solid rgba(16, 84, 165, 0.08);
  padding-top: 12px;
}

.crm-lead-more summary {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 4px;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  padding: 11px 13px;
}

.crm-lead-more summary::-webkit-details-marker {
  display: none;
}

.crm-lead-more[open] summary {
  margin-bottom: 12px;
}

.crm-quick-form,
.crm-config-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.crm-quick-form label,
.crm-config-form label,
.crm-finance-form label {
  display: grid;
  gap: 7px;
}

.crm-config-form label small,
.crm-finance-form label small {
  color: rgba(20, 34, 54, 0.58);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.crm-finance-form .crm-check-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.crm-quick-form input,
.crm-quick-form select,
.crm-quick-form textarea,
.crm-inline-form input,
.crm-inline-form select,
.crm-inline-form textarea,
.crm-config-form input,
.crm-config-form select,
.crm-config-form textarea,
.crm-finance-form input,
.crm-finance-form select,
.crm-finance-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 6px;
  background-color: #f8fbff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 12px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.crm-config-form input[readonly],
.crm-finance-form input[readonly] {
  background-color: rgba(16, 84, 165, 0.06);
  color: rgba(20, 34, 54, 0.72);
}

.crm-quick-form select,
.crm-config-form select,
.crm-finance-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  cursor: pointer;
  padding-right: 42px;
}

.crm-client-select-field {
  align-content: start;
  display: grid;
  gap: 7px;
  position: relative;
  z-index: 3;
}

.crm-client-select-label {
  color: #263445;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.crm-liquid-client-picker {
  position: relative;
}

.crm-client-select-field .crm-select-search {
  min-height: 52px;
  border-color: rgba(16, 84, 165, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.9)),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 48%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 14px 32px rgba(5, 26, 54, 0.07);
  font-size: 13px;
  padding: 12px 44px 12px 14px;
}

.crm-liquid-client-picker::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
  pointer-events: none;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.18s ease;
}

.crm-liquid-client-picker.is-open::after {
  transform: translateY(-30%) rotate(225deg);
}

.crm-liquid-client-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94)),
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.95), transparent 50%);
  box-shadow: 0 22px 60px rgba(5, 26, 54, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 8px;
}

.crm-liquid-client-menu button {
  display: grid;
  width: 100%;
  gap: 3px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  padding: 11px 12px;
  text-align: left;
}

.crm-liquid-client-menu button small {
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
}

.crm-liquid-client-menu button:hover,
.crm-liquid-client-menu button:focus-visible {
  background: rgba(16, 84, 165, 0.08);
  color: var(--accent);
  outline: 0;
}

.crm-liquid-client-menu.is-empty::after {
  display: block;
  color: #69707a;
  content: "Sin coincidencias";
  font-size: 12px;
  font-weight: 800;
  padding: 10px 12px;
}

.crm-quick-form input:hover,
.crm-quick-form select:hover,
.crm-quick-form textarea:hover,
.crm-config-form input:hover,
.crm-config-form select:hover,
.crm-config-form textarea:hover,
.crm-finance-form input:hover,
.crm-finance-form select:hover,
.crm-finance-form textarea:hover {
  border-color: rgba(16, 84, 165, 0.38);
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 84, 165, 0.08);
}

.crm-quick-form input:focus,
.crm-quick-form select:focus,
.crm-quick-form textarea:focus,
.crm-config-form input:focus,
.crm-config-form select:focus,
.crm-config-form textarea:focus,
.crm-finance-form input:focus,
.crm-finance-form select:focus,
.crm-finance-form textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.09);
  outline: 0;
}

.crm-quick-form textarea,
.crm-finance-form textarea {
  min-height: 86px;
  resize: vertical;
}

.crm-note-log {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.78));
  box-shadow: 0 18px 44px rgba(5, 26, 54, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.crm-note-log::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(16, 84, 165, 0.72), rgba(16, 84, 165, 0.10));
  pointer-events: none;
}

.crm-note-log h3 {
  position: relative;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.crm-note-log ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crm-note-log li {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 13px 14px 12px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.96), transparent 44%),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.crm-note-log li::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.44);
}

.crm-note-log span {
  display: block;
  color: rgba(36, 49, 66, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
}

.crm-note-log p {
  margin: 0;
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.5;
}

.crm-note-log button {
  justify-self: start;
  min-height: 34px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    rgba(255, 255, 255, 0.74);
  color: var(--accent);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 13px;
  box-shadow: 0 10px 22px rgba(5, 26, 54, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.crm-note-log button:hover,
.crm-note-log button:focus-visible {
  border-color: rgba(16, 84, 165, 0.38);
  color: #0d4485;
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(5, 26, 54, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.crm-danger-zone .button {
  justify-self: start;
}

.crm-danger-zone {
  padding-top: 4px;
}

.crm-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.crm-confirm-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.crm-confirm-modal[hidden] {
  display: none;
}

.crm-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 34, 0.42);
  backdrop-filter: blur(12px);
}

.crm-confirm-card {
  position: relative;
  width: min(100%, 500px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(241, 247, 255, 0.84)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 90px rgba(10, 20, 34, 0.26);
  padding: 28px;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.crm-confirm-modal.is-visible .crm-confirm-card {
  transform: translateY(0) scale(1);
}

.crm-confirm-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 8px 12px;
  text-transform: uppercase;
}

.crm-confirm-card h2 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.crm-confirm-card p {
  margin: 0;
  color: #4f5966;
  font-size: 15px;
  line-height: 1.55;
}

.crm-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}

.crm-confirm-danger {
  border-color: rgba(176, 48, 48, 0.28);
  background: linear-gradient(135deg, rgba(178, 43, 43, 0.94), rgba(218, 75, 75, 0.86));
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(178, 43, 43, 0.2);
}

.crm-confirm-danger:hover,
.crm-confirm-danger:focus {
  border-color: rgba(176, 48, 48, 0.36);
  background: linear-gradient(135deg, rgba(158, 35, 35, 0.96), rgba(204, 61, 61, 0.9));
  color: #ffffff;
}

.crm-settings-copy {
  margin-bottom: 18px;
}

.crm-panel-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.crm-panel-headline span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.crm-panel-headline h2 {
  margin: 4px 0 0;
}

.crm-lead-detail {
  margin-bottom: 18px;
}

.crm-lead-detail h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.crm-readonly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.crm-readonly-grid div {
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.crm-seller-card,
.crm-client-card,
.crm-asset-card {
  display: grid;
  gap: 16px;
}

.crm-seller-card h3,
.crm-client-card h3,
.crm-asset-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 18px;
}

.crm-seller-card > div > span,
.crm-client-card > div > span,
.crm-asset-card > div > span {
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
}

.crm-asset-card > div > p {
  margin: 0;
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.crm-seller-card dl,
.crm-client-card dl,
.crm-asset-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.crm-seller-card dl div,
.crm-client-card dl div,
.crm-asset-card dl div {
  padding: 12px;
  border-radius: 6px;
  background: #ffffff;
}

.crm-seller-card dd,
.crm-client-card dd,
.crm-asset-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.crm-seller-grid {
  grid-template-columns: 1fr;
}

.crm-seller-row {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 16px;
  background: #ffffff;
}

.crm-seller-row summary {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 1.55fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.crm-seller-row summary::-webkit-details-marker {
  display: none;
}

.crm-seller-row[open] summary {
  border-bottom: 1px solid rgba(16, 84, 165, 0.08);
}

.crm-seller-person {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.crm-seller-person strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-seller-person span {
  overflow: hidden;
  color: rgba(16, 35, 63, 0.58);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.crm-seller-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.crm-seller-compact span {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  color: #10233f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.crm-seller-compact small {
  display: block;
  margin-bottom: 4px;
  color: rgba(16, 35, 63, 0.48);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-seller-row summary > i {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  padding: 9px 13px;
  white-space: nowrap;
}

.crm-seller-row-body {
  display: grid;
  gap: 14px;
  padding: 0 20px 20px;
}

.crm-seller-stat-grid,
.crm-seller-meta-grid {
  display: grid;
  gap: 10px;
}

.crm-seller-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.crm-seller-stat-grid div,
.crm-seller-meta-grid p,
.seller-public-url {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.92), transparent 44%),
    rgba(248, 251, 255, 0.70);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.crm-seller-stat-grid span,
.crm-seller-meta-grid strong,
.seller-public-url strong {
  display: block;
  color: rgba(16, 35, 63, 0.52);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-seller-stat-grid strong,
.crm-seller-meta-grid span,
.seller-public-url span {
  display: block;
  margin-top: 6px;
  color: #10233f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  word-break: break-word;
}

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

.crm-seller-public-config {
  overflow: visible;
}

.crm-config-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.crm-settings-stack {
  display: grid;
  gap: 18px;
}

.crm-profile-sections {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.crm-profile-section {
  padding: 18px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.crm-profile-section h3 {
  margin: 0 0 14px;
}

.crm-profile-section .crm-readonly-grid {
  margin-top: 0;
}

.crm-finance-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.crm-year-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.crm-year-nav a,
.crm-year-nav strong {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 13px;
  text-decoration: none;
}

.crm-year-nav strong {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.crm-finance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 18px;
}

.crm-finance-main,
.crm-finance-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.crm-finance-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.crm-finance-form label,
.crm-finance-form .full-field,
.crm-finance-form .button {
  min-width: 0;
}

.crm-finance-form .full-field,
.crm-finance-form .button {
  grid-column: 1 / -1;
}

.crm-finance-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.crm-finance-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.crm-finance-entry span,
.crm-finance-form label {
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-finance-entry h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.crm-finance-entry p {
  margin: 5px 0 0;
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.crm-finance-entry > strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.crm-finance-entry.is-auto {
  border-color: rgba(16, 84, 165, 0.18);
  background: #ffffff;
}

.crm-finance-entry > em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  padding: 7px 10px;
}

.crm-entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.crm-edit-details {
  grid-column: 1 / -1;
  min-width: 0;
}

.crm-edit-details summary {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  list-style: none;
  padding: 8px 12px;
}

.crm-edit-details summary::-webkit-details-marker {
  display: none;
}

.crm-edit-details[open] summary {
  margin-bottom: 12px;
}

.crm-edit-form {
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

.crm-asset-actions {
  justify-content: flex-start;
}

.crm-asset-edit {
  width: 100%;
}

.crm-finance-entry > .crm-entry-actions form button {
  min-height: 34px;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
}

.crm-page {
  background:
    radial-gradient(circle at 16% 0%, rgba(16, 84, 165, 0.08), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(16, 84, 165, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.crm-admin-shell .intranet-welcome,
.crm-admin-shell .crm-panel,
.crm-admin-shell .crm-kpis > div,
.crm-admin-shell .crm-lead-row,
.crm-admin-shell .crm-finance-entry,
.crm-admin-shell .crm-result-card,
.crm-admin-shell .crm-objective-row,
.crm-admin-shell .crm-objective-lane,
.crm-admin-shell .crm-objective-done,
.crm-admin-shell .crm-objective-task,
.crm-admin-shell .crm-seller-row,
.crm-admin-shell .crm-seller-card,
.crm-admin-shell .crm-client-card,
.crm-admin-shell .crm-asset-card,
.crm-admin-shell .crm-empty {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.76));
  box-shadow: 0 30px 86px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px) saturate(124%);
  -webkit-backdrop-filter: blur(16px) saturate(124%);
}

.crm-admin-shell .intranet-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  border-radius: 18px;
}

.crm-seller-commission-bubble {
  min-width: 210px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #1054a5, #1054a5);
  color: #fff;
  padding: 18px 20px;
  text-align: right;
  box-shadow: 0 20px 48px rgba(16, 84, 165, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.crm-seller-commission-bubble span {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.crm-seller-commission-bubble strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.intranet-welcome .crm-seller-commission-bubble span,
.intranet-welcome .crm-seller-commission-bubble strong {
  color: #ffffff;
}

.crm-admin-shell .crm-panel,
.crm-admin-shell .crm-kpis > div,
.crm-admin-shell .crm-lead-row,
.crm-admin-shell .crm-finance-entry,
.crm-admin-shell .crm-result-card,
.crm-admin-shell .crm-objective-row,
.crm-admin-shell .crm-objective-lane,
.crm-admin-shell .crm-objective-done,
.crm-admin-shell .crm-objective-task,
.crm-admin-shell .crm-seller-row,
.crm-admin-shell .crm-seller-card,
.crm-admin-shell .crm-client-card,
.crm-admin-shell .crm-asset-card {
  border-radius: 16px;
}

.crm-admin-shell .crm-tabs {
  border-color: rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 68px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.crm-admin-shell .crm-tabs button,
.crm-admin-shell .crm-filter-bar a,
.crm-admin-shell .crm-pagination a,
.crm-admin-shell .crm-edit-details summary,
.crm-admin-shell .crm-lead-more summary {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.crm-admin-shell .crm-tabs button.is-active,
.crm-admin-shell .crm-filter-bar a.is-active,
.crm-admin-shell .crm-pagination a.is-active {
  border-color: rgba(16, 84, 165, 0.78);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.20), transparent 36%),
    linear-gradient(135deg, #1054a5, #0d4485);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 84, 165, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.crm-admin-shell .crm-dashboard-list li,
.crm-admin-shell .crm-priority-list p,
.crm-admin-shell .crm-result-card dl div,
.crm-admin-shell .crm-edit-form,
.crm-admin-shell .crm-email-template,
.crm-admin-shell .crm-template-vars li {
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.crm-admin-shell .crm-quick-form input,
.crm-admin-shell .crm-quick-form select,
.crm-admin-shell .crm-quick-form textarea,
.crm-admin-shell .crm-inline-form input,
.crm-admin-shell .crm-inline-form select,
.crm-admin-shell .crm-inline-form textarea,
.crm-admin-shell .crm-config-form input,
.crm-admin-shell .crm-config-form select,
.crm-admin-shell .crm-config-form textarea,
.crm-admin-shell .crm-finance-form input,
.crm-admin-shell .crm-finance-form select,
.crm-admin-shell .crm-finance-form textarea,
.crm-admin-shell .crm-objective-edit-form input,
.crm-admin-shell .crm-objective-edit-form select,
.crm-admin-shell .crm-objective-edit-form textarea {
  min-height: 48px;
  border-color: rgba(16, 84, 165, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 45%),
    rgba(248, 251, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.crm-admin-shell .crm-quick-form select,
.crm-admin-shell .crm-inline-form select,
.crm-admin-shell .crm-config-form select,
.crm-admin-shell .crm-finance-form select,
.crm-admin-shell .crm-objective-edit-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%),
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 45%);
  background-position:
    calc(100% - 23px) 50%,
    calc(100% - 17px) 50%,
    0 0;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  color-scheme: light;
  padding-right: 50px;
}

.crm-admin-shell .pretty-select .hero-prefix-trigger,
.crm-admin-shell .pretty-select .pretty-select-combobox {
  min-height: 48px;
  border-color: rgba(16, 84, 165, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 26px rgba(5, 26, 54, 0.07);
}

.crm-admin-shell .pretty-select.is-open .hero-prefix-trigger,
.crm-admin-shell .pretty-select.is-open .pretty-select-combobox,
.crm-admin-shell .pretty-select .hero-prefix-trigger:hover,
.crm-admin-shell .pretty-select .pretty-select-combobox:hover,
.crm-admin-shell .pretty-select .hero-prefix-trigger:focus-visible,
.crm-admin-shell .pretty-select .pretty-select-combobox:focus,
.crm-admin-shell .crm-quick-form input:hover,
.crm-admin-shell .crm-quick-form select:hover,
.crm-admin-shell .crm-quick-form textarea:hover,
.crm-admin-shell .crm-inline-form input:hover,
.crm-admin-shell .crm-inline-form select:hover,
.crm-admin-shell .crm-inline-form textarea:hover,
.crm-admin-shell .crm-config-form input:hover,
.crm-admin-shell .crm-config-form select:hover,
.crm-admin-shell .crm-config-form textarea:hover,
.crm-admin-shell .crm-finance-form input:hover,
.crm-admin-shell .crm-finance-form select:hover,
.crm-admin-shell .crm-finance-form textarea:hover,
.crm-admin-shell .crm-objective-edit-form input:hover,
.crm-admin-shell .crm-objective-edit-form select:hover,
.crm-admin-shell .crm-objective-edit-form textarea:hover,
.crm-admin-shell .crm-quick-form input:focus,
.crm-admin-shell .crm-quick-form select:focus,
.crm-admin-shell .crm-quick-form textarea:focus,
.crm-admin-shell .crm-inline-form input:focus,
.crm-admin-shell .crm-inline-form select:focus,
.crm-admin-shell .crm-inline-form textarea:focus,
.crm-admin-shell .crm-config-form input:focus,
.crm-admin-shell .crm-config-form select:focus,
.crm-admin-shell .crm-config-form textarea:focus,
.crm-admin-shell .crm-finance-form input:focus,
.crm-admin-shell .crm-finance-form select:focus,
.crm-admin-shell .crm-finance-form textarea:focus,
.crm-admin-shell .crm-objective-edit-form input:focus,
.crm-admin-shell .crm-objective-edit-form select:focus,
.crm-admin-shell .crm-objective-edit-form textarea:focus {
  border-color: rgba(16, 84, 165, 0.52);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.10), 0 16px 34px rgba(5, 26, 54, 0.10);
}

.crm-admin-shell .crm-lead-more,
.crm-admin-shell .crm-edit-details {
  overflow: visible;
}

.crm-admin-shell .crm-lead-more[open] summary,
.crm-admin-shell .crm-edit-details[open] summary {
  border-color: rgba(16, 84, 165, 0.52);
  background: #ffffff;
  color: var(--accent);
}

.crm-admin-shell .crm-config-form .button:not(.button-secondary),
.crm-admin-shell .crm-finance-form .button:not(.button-secondary),
.crm-admin-shell .crm-inline-form .button:not(.button-secondary),
.crm-admin-shell .crm-objective-edit-form .button:not(.button-secondary),
.crm-page .intranet-save .button {
  position: relative;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(16, 84, 165, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.98), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.92));
  color: var(--accent);
  box-shadow: 0 14px 34px rgba(5, 26, 54, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.crm-admin-shell .crm-config-form .button:not(.button-secondary):hover,
.crm-admin-shell .crm-config-form .button:not(.button-secondary):focus-visible,
.crm-admin-shell .crm-finance-form .button:not(.button-secondary):hover,
.crm-admin-shell .crm-finance-form .button:not(.button-secondary):focus-visible,
.crm-admin-shell .crm-inline-form .button:not(.button-secondary):hover,
.crm-admin-shell .crm-inline-form .button:not(.button-secondary):focus-visible,
.crm-admin-shell .crm-objective-edit-form .button:not(.button-secondary):hover,
.crm-admin-shell .crm-objective-edit-form .button:not(.button-secondary):focus-visible,
.crm-page .intranet-save .button:hover,
.crm-page .intranet-save .button:focus-visible {
  border-color: rgba(16, 84, 165, 0.38);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 1), transparent 46%),
    linear-gradient(180deg, #ffffff, #edf6ff);
  box-shadow: 0 16px 38px rgba(16, 84, 165, 0.14), 0 0 0 4px rgba(16, 84, 165, 0.08);
  transform: translateY(-1px);
}

.crm-admin-shell .crm-create-button {
  border-radius: 12px;
}

.crm-objective-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.crm-objective-intro > strong {
  display: grid;
  min-width: 150px;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 255, 0.82));
  color: #1054a5;
  font-size: 34px;
  line-height: 1;
  padding: 18px;
  text-align: right;
  box-shadow: 0 18px 46px rgba(16, 84, 165, 0.12);
}

.crm-objective-intro > strong span {
  margin-top: 7px;
  color: rgba(16, 35, 63, 0.56);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-objective-filterbar,
.crm-objective-view-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 10px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(241, 248, 255, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 44px rgba(16, 84, 165, 0.07);
}

.crm-objective-filterbar a,
.crm-objective-view-tabs a:not(.button) {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.70);
  color: rgba(16, 35, 63, 0.66);
  font-size: 12px;
  font-weight: 850;
  padding: 9px 12px;
  text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.crm-objective-filterbar a strong {
  display: inline-flex;
  min-width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.08);
  color: #1054a5;
  font-size: 11px;
  font-weight: 850;
}

.crm-objective-filterbar a.is-active,
.crm-objective-filterbar a:hover,
.crm-objective-view-tabs a.is-active,
.crm-objective-view-tabs a:not(.button):hover {
  border-color: rgba(16, 84, 165, 0.34);
  background: #1054a5;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 84, 165, 0.18);
}

.crm-objective-filterbar a.is-active strong,
.crm-objective-filterbar a:hover strong {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.crm-objective-view-tabs .button {
  min-height: 40px;
}

.crm-objective-board {
  margin: 18px 0;
  overflow: visible;
}

.crm-objective-board .crm-panel-headline p,
.crm-objective-map .crm-panel-headline p {
  max-width: 620px;
  margin: 0;
  color: rgba(16, 35, 63, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.crm-objective-focus {
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 1fr);
  gap: 12px;
  margin: 16px 0 14px;
  padding: 12px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(239, 247, 255, 0.64));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 18px 52px rgba(16, 84, 165, 0.08);
}

.crm-objective-focus-head {
  display: grid;
  min-height: 100%;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 15px;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 1), transparent 42%),
    rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.crm-objective-focus-head span {
  color: rgba(16, 35, 63, 0.56);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-objective-focus-head strong {
  color: #1054a5;
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
}

.crm-objective-focus-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-content: start;
  max-height: 226px;
  overflow: auto;
  padding-right: 3px;
  scrollbar-color: rgba(16, 84, 165, 0.34) rgba(16, 84, 165, 0.06);
  scrollbar-width: thin;
}

.crm-objective-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.26fr);
  gap: 14px;
}

.crm-objective-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(210px, 1fr));
  gap: 12px;
}

.crm-objective-lane,
.crm-objective-done {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  min-height: 280px;
}

.crm-objective-lane-head,
.crm-objective-done > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.crm-objective-lane-head span,
.crm-objective-done span {
  color: #10233f;
  font-size: 13px;
  font-weight: 800;
}

.crm-objective-lane-head strong,
.crm-objective-done strong {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1054a5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.crm-objective-lane > p {
  margin: 0;
  color: rgba(16, 35, 63, 0.52);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.crm-objective-lane-list {
  display: grid;
  gap: 8px;
  max-height: 520px;
  overflow: auto;
  padding-right: 3px;
  scrollbar-color: rgba(16, 84, 165, 0.34) rgba(16, 84, 165, 0.06);
  scrollbar-width: thin;
}

.crm-objective-task {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    rgba(249, 252, 255, 0.78);
  box-shadow: 0 12px 30px rgba(5, 26, 54, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.crm-objective-task:hover {
  border-color: rgba(16, 84, 165, 0.20);
  box-shadow: 0 16px 36px rgba(16, 84, 165, 0.09);
  transform: translateY(-1px);
}

.crm-objective-task span {
  color: rgba(16, 35, 63, 0.48);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.crm-objective-task h3 {
  margin: 0;
  color: #10233f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.crm-objective-task p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(16, 35, 63, 0.64);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.crm-objective-task.is-compact {
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
}

.crm-objective-task.is-compact h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 12px;
}

.crm-objective-task.is-compact p {
  -webkit-line-clamp: 2;
  font-size: 10.5px;
}

.crm-objective-task strong {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.08);
  color: #1054a5;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 8px;
}

.crm-objective-task.is-compact strong {
  padding: 5px 7px;
  font-size: 9px;
}

.crm-objective-empty {
  margin: 0;
  color: rgba(16, 35, 63, 0.48);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.crm-objective-more {
  margin: 2px 0 0;
  border: 1px dashed rgba(16, 84, 165, 0.20);
  border-radius: 12px;
  background: rgba(16, 84, 165, 0.05);
  color: #1054a5;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  padding: 10px;
  text-align: center;
}

.crm-objective-done {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(145deg, rgba(238, 250, 243, 0.82), rgba(255, 255, 255, 0.70));
}

.crm-objective-done-list {
  display: grid;
  gap: 8px;
  max-height: 520px;
  overflow: auto;
  padding-right: 3px;
  scrollbar-color: rgba(35, 140, 82, 0.34) rgba(35, 140, 82, 0.06);
  scrollbar-width: thin;
}

.crm-objective-list {
  display: grid;
  gap: 12px;
}

.crm-objective-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.crm-objective-row.is-done {
  opacity: 0.68;
}

.crm-objective-row-main span {
  display: block;
  color: rgba(16, 35, 63, 0.50);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.crm-objective-row-main h3 {
  margin: 6px 0 0;
  color: #10233f;
  font-size: 18px;
  line-height: 1.2;
}

.crm-objective-row-main p {
  margin: 7px 0 0;
  color: rgba(16, 35, 63, 0.64);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.crm-objective-row-meta {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.crm-objective-row-meta strong,
.crm-objective-row-meta em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  padding: 8px 10px;
}

.crm-objective-row-meta strong {
  background: rgba(16, 84, 165, 0.10);
  color: #1054a5;
}

.crm-objective-row-meta em {
  background: rgba(35, 140, 82, 0.10);
  color: #238c52;
}

.crm-objective-row.is-active .crm-objective-row-meta em {
  background: rgba(194, 124, 32, 0.12);
  color: #9b6518;
}

.crm-objective-row-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.crm-objective-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    rgba(255, 255, 255, 0.68);
}

.crm-objective-pagination span {
  color: rgba(16, 35, 63, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.crm-objective-pagination div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.crm-objective-pagination a {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #1054a5;
  font-size: 12px;
  font-weight: 850;
  padding: 8px 11px;
  text-decoration: none;
}

.crm-objective-pagination a.is-active,
.crm-objective-pagination a:hover {
  background: #1054a5;
  color: #ffffff;
}

.crm-objective-directory {
  margin-top: 16px;
}

.crm-objective-node-list {
  display: grid;
  gap: 14px;
}

.crm-objective-node-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 250, 255, 0.66));
  box-shadow: 0 16px 48px rgba(5, 26, 54, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.crm-objective-node-main {
  display: grid;
  gap: 8px;
}

.crm-objective-node-main > span {
  color: rgba(16, 35, 63, 0.52);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.crm-objective-node-main h3 {
  margin: 0;
  color: #10233f;
  font-size: 22px;
  line-height: 1.15;
}

.crm-objective-node-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.crm-objective-node-stats strong {
  display: inline-grid;
  min-width: 92px;
  gap: 3px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: #1054a5;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  padding: 10px 12px;
}

.crm-objective-node-stats small {
  color: rgba(16, 35, 63, 0.54);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-objective-node-actions {
  display: flex;
  justify-content: flex-end;
}

.crm-objective-node-lock {
  display: inline-flex;
  max-width: 220px;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(194, 124, 32, 0.18);
  border-radius: 999px;
  background: rgba(194, 124, 32, 0.08);
  color: #9b6518;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  padding: 9px 12px;
}

.crm-objective-node-tasks {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  max-height: 360px;
  overflow: auto;
  padding-right: 3px;
  scrollbar-color: rgba(16, 84, 165, 0.34) rgba(16, 84, 165, 0.06);
  scrollbar-width: thin;
}

.crm-objective-directory-link {
  width: 100%;
  margin-top: 10px;
}

.crm-objective-editor {
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 250, 255, 0.62));
  padding: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: visible;
}

.crm-objective-editor summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.94), transparent 42%),
    rgba(255, 255, 255, 0.76);
  color: #1054a5;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  list-style: none;
  padding: 11px 13px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.crm-objective-editor summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.crm-objective-editor summary::-webkit-details-marker {
  display: none;
}

.crm-objective-editor summary strong {
  color: rgba(16, 35, 63, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.crm-objective-editor[open] summary {
  border-color: rgba(16, 84, 165, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.08);
}

.crm-objective-editor[open] summary::after {
  transform: rotate(225deg);
}

.crm-objective-edit-form {
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

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

.crm-objective-edit-grid label,
.crm-objective-edit-grid .pretty-select-field,
.crm-objective-add-form label,
.crm-objective-add-form .pretty-select-field {
  min-width: 0;
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-objective-edit-grid > label:not(.crm-objective-status-toggle),
.crm-objective-edit-grid > .pretty-select-field,
.crm-objective-add-form > label:not(.crm-objective-status-toggle),
.crm-objective-add-form > .pretty-select-field {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 255, 0.66));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 30px rgba(5, 26, 54, 0.04);
}

.crm-objective-edit-grid > label:not(.crm-objective-status-toggle)::before,
.crm-objective-edit-grid > .pretty-select-field::before,
.crm-objective-add-form > label:not(.crm-objective-status-toggle)::before,
.crm-objective-add-form > .pretty-select-field::before {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.34);
  content: "";
}

.crm-objective-edit-grid .pretty-select-title,
.crm-objective-add-form .pretty-select-title,
.crm-objective-text-field > span {
  display: block;
  margin: 0;
  color: rgba(16, 35, 63, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.crm-objective-edit-grid .pretty-select .hero-prefix-trigger,
.crm-objective-add-form .pretty-select .hero-prefix-trigger {
  min-height: 48px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 255, 0.94));
}

.crm-objective-edit-grid .pretty-select .hero-prefix-menu,
.crm-objective-add-form .pretty-select .hero-prefix-menu {
  z-index: 120;
  border-radius: 14px;
}

.crm-objective-text-field input,
.crm-objective-text-field textarea {
  min-height: 54px;
  border-radius: 13px !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 1), transparent 42%),
    rgba(255, 255, 255, 0.92) !important;
  color: #10233f;
  font-size: 14px;
  line-height: 1.35;
  padding: 15px 16px !important;
}

.crm-objective-description-field textarea {
  min-height: 148px;
  resize: vertical;
  line-height: 1.5;
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.crm-objective-text-field:focus-within,
.crm-objective-edit-grid > .pretty-select-field:focus-within,
.crm-objective-add-form > .pretty-select-field:focus-within {
  border-color: rgba(16, 84, 165, 0.42);
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.08), 0 16px 36px rgba(5, 26, 54, 0.08);
}

.crm-objective-edit-grid .full-field,
.crm-objective-edit-grid .crm-objective-status-toggle,
.crm-objective-edit-grid .button {
  grid-column: 1 / -1;
}

.crm-objective-status-toggle {
  display: flex !important;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.96), transparent 42%),
    rgba(255, 255, 255, 0.68);
  cursor: pointer;
  padding: 12px 14px;
}

.crm-objective-status-toggle input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  opacity: 0;
}

.crm-objective-status-toggle span {
  display: grid;
  gap: 3px;
}

.crm-objective-status-toggle strong {
  color: #10233f;
  font-size: 13px;
  font-weight: 800;
}

.crm-objective-status-toggle small {
  color: rgba(16, 35, 63, 0.55);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.crm-objective-status-toggle i {
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dce6f2;
  box-shadow: inset 0 1px 3px rgba(20, 28, 40, 0.12);
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.crm-objective-status-toggle i::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(20, 28, 40, 0.20);
  content: "";
  transition: transform 0.18s ease;
}

.crm-objective-status-toggle input:checked ~ i {
  background: #1054a5;
  box-shadow: 0 10px 26px rgba(16, 84, 165, 0.22);
}

.crm-objective-status-toggle input:checked ~ i::before {
  transform: translateX(20px);
}

.crm-objective-status-toggle input:focus-visible ~ i {
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.12);
}

.crm-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.crm-market-stat {
  display: grid;
  gap: 12px;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.78));
  padding: 18px;
  box-shadow: 0 24px 68px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.crm-market-stat span {
  display: block;
  color: rgba(16, 35, 63, 0.58);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.crm-market-stat strong {
  display: block;
  margin-top: 6px;
  color: #10233f;
  font-size: 24px;
  line-height: 1;
}

.crm-market-stat svg {
  width: 100%;
  height: 54px;
  overflow: visible;
  filter: drop-shadow(0 8px 14px rgba(16, 84, 165, 0.12));
}

.crm-bounce-alert {
  border: 1px solid rgba(196, 44, 44, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(135deg, rgba(196, 44, 44, 0.14), rgba(255, 255, 255, 0.72));
  color: #8e1f1f;
  font-weight: 700;
  padding: 14px 16px;
}

.crm-bounce-alert small {
  display: block;
  margin-top: 6px;
  color: rgba(142, 31, 31, 0.76);
  font-size: 12px;
}

.crm-note-register {
  min-height: 48px;
  align-self: end;
  border-color: rgba(16, 84, 165, 0.20);
  border-radius: 12px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.98), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 248, 255, 0.90));
  color: var(--accent);
  box-shadow: 0 14px 32px rgba(5, 26, 54, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.crm-note-register:hover,
.crm-note-register:focus-visible {
  border-color: rgba(16, 84, 165, 0.38);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 1), transparent 45%),
    linear-gradient(180deg, #ffffff, rgba(236, 246, 255, 0.94));
  color: #0d4485;
}

.crm-client-invite-form .pretty-select-field {
  min-width: 180px;
  margin: 0;
}

.crm-client-invite-form .pretty-select-title {
  display: none;
}

.crm-liquid-create {
  position: relative;
  z-index: 30;
  overflow: visible;
  border-color: rgba(255, 255, 255, 0.70);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.78));
  box-shadow: 0 24px 68px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.crm-client-invite-form,
.crm-seller-create-form {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  align-items: end;
  gap: 12px;
}

.crm-client-invite-form input[name="client_email"],
.crm-seller-create-form input[name="seller_email"] {
  grid-column: span 2;
  min-width: 0;
}

.crm-client-invite-form .crm-inline-pretty,
.crm-finance-form .crm-finance-pretty {
  position: relative;
  z-index: 5;
  margin: 0;
}

.crm-client-invite-form .pretty-select.is-open,
.crm-finance-form .pretty-select.is-open {
  z-index: 50000;
}

.crm-client-invite-form .pretty-select-menu,
.crm-finance-form .pretty-select-menu {
  z-index: 50001;
}

.crm-finance-form .pretty-select-field {
  min-width: 0;
}

.crm-admin-shell .crm-finance-form .pretty-select .hero-prefix-trigger,
.crm-admin-shell .crm-client-invite-form .pretty-select .hero-prefix-trigger {
  min-height: 48px;
  border-color: rgba(16, 84, 165, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.95), transparent 45%),
    rgba(248, 251, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.crm-create-button {
  min-height: 50px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.38), transparent 45%),
    linear-gradient(135deg, #1054a5, #0d4387);
  box-shadow: 0 18px 42px rgba(16, 84, 165, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.crm-ibx-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.88fr);
  gap: 14px;
  align-items: stretch;
}

.crm-ibx-home-layout .crm-market-stat {
  min-height: auto;
}

.crm-assets-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.crm-assets-intro > strong {
  display: grid;
  min-width: 170px;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.95), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(241, 247, 255, 0.78));
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
  padding: 18px;
  text-align: right;
  box-shadow: 0 18px 46px rgba(16, 84, 165, 0.12);
}

.crm-assets-intro > strong span {
  margin-top: 7px;
  color: rgba(16, 35, 63, 0.56);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-assets-layout .crm-finance-sidebar {
  gap: 16px;
}

.crm-assets-portfolio {
  overflow: visible;
}

.crm-assets-list {
  gap: 14px;
}

.crm-asset-row {
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto) minmax(160px, auto);
  border-color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.78));
  box-shadow: 0 18px 50px rgba(20, 28, 40, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.crm-asset-row-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.crm-asset-row-metrics small {
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: rgba(16, 35, 63, 0.68);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 9px;
}

.crm-assets-shares {
  border-color: rgba(16, 84, 165, 0.14);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.80));
}

.crm-seller-create-panel {
  margin-bottom: 26px;
}

.crm-seller-create-panel .crm-muted {
  margin-bottom: 18px;
}

.crm-seller-grid .crm-empty,
.crm-lead-table .crm-empty {
  margin-top: 8px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 250, 255, 0.78));
  box-shadow: 0 18px 50px rgba(20, 28, 40, 0.07);
}

@media (max-width: 900px) {
  .crm-seller-row summary {
    grid-template-columns: 1fr;
  }

  .crm-seller-compact,
  .crm-seller-stat-grid,
  .crm-seller-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-seller-row summary > i {
    justify-self: start;
  }
}

@media (max-width: 1180px) {
  .crm-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-ibx-home-layout {
    grid-template-columns: 1fr;
  }

  .crm-objective-board-layout {
    grid-template-columns: 1fr;
  }

  .crm-objective-focus {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 720px) {
  .crm-client-invite-form input[name="client_email"],
  .crm-seller-create-form input[name="seller_email"] {
    grid-column: 1 / -1;
  }

  .crm-admin-shell .intranet-welcome {
    display: grid;
  }

  .crm-assets-intro {
    display: grid;
  }

  .crm-assets-intro > strong {
    width: 100%;
    text-align: left;
  }

  .crm-asset-row {
    grid-template-columns: 1fr;
  }

  .crm-seller-commission-bubble {
    width: 100%;
    text-align: left;
  }

  .crm-objective-intro,
  .crm-objective-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .crm-objective-intro > strong {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .crm-objective-lanes,
  .crm-objective-focus-list,
  .crm-objective-node-row,
  .crm-objective-node-tasks,
  .crm-objective-edit-grid {
    grid-template-columns: 1fr;
  }

  .crm-objective-filterbar,
  .crm-objective-view-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .crm-objective-filterbar a,
  .crm-objective-view-tabs a {
    flex: 0 0 auto;
  }

  .crm-objective-focus-list,
  .crm-objective-lane-list,
  .crm-objective-done-list,
  .crm-objective-node-tasks {
    max-height: 420px;
  }

  .crm-objective-node-actions {
    justify-content: flex-start;
  }

  .crm-objective-pagination {
    align-items: stretch;
    display: grid;
  }

  .crm-objective-pagination div {
    justify-content: flex-start;
  }

  .crm-objective-row-meta {
    justify-items: start;
  }

  .crm-seller-compact,
  .crm-seller-stat-grid,
  .crm-seller-meta-grid {
    grid-template-columns: 1fr;
  }

  .crm-market-grid {
    grid-template-columns: 1fr;
  }
}

.crm-result-grid {
  display: grid;
  gap: 14px;
}

.crm-result-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.crm-result-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.crm-result-card-head span {
  display: block;
  color: #69707a;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-result-card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.crm-result-card-head strong {
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.crm-result-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.crm-result-card dl div {
  min-width: 0;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
}

.crm-result-card dt {
  color: #69707a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-result-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.crm-result-notes {
  margin: 0;
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.crm-result-actions {
  justify-content: flex-start;
}

.crm-stock-chart {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.1);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.crm-stock-chart.is-empty {
  min-height: 160px;
  place-items: center;
  color: #69707a;
  font-size: 13px;
  font-weight: 700;
}

.crm-stock-chart svg {
  width: 100%;
  height: auto;
}

.crm-stock-chart .chart-grid line {
  stroke: rgba(16, 84, 165, 0.12);
  stroke-width: 1;
}

.crm-stock-chart text {
  fill: #69707a;
  font-size: 11px;
  font-weight: 700;
}

.crm-stock-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.crm-stock-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
}

.crm-stock-legend i {
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.crm-email-template {
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 8px;
  background: #f8fbff;
}

.crm-email-template + .crm-email-template {
  margin-top: 12px;
}

.crm-email-template summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.crm-template-vars {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.crm-template-vars li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #69707a;
  font-size: 12px;
  font-weight: 700;
}

.crm-template-vars code {
  color: var(--accent);
  font-family: inherit;
}

.crm-finance-chart {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 7px;
  min-height: 190px;
  margin-top: 18px;
}

.crm-finance-chart div {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  gap: 6px;
  min-width: 0;
  min-height: 170px;
}

.crm-finance-chart i {
  display: block;
  width: 100%;
  min-height: 6px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, var(--accent), #7aa7da);
}

.crm-finance-chart span,
.crm-finance-chart strong {
  display: block;
  overflow: hidden;
  color: #69707a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-overflow: ellipsis;
}

.crm-finance-chart strong {
  color: var(--ink);
  font-size: 9px;
}

.intranet-welcome {
  margin-bottom: 26px;
  padding: 28px 0 10px;
}

.intranet-welcome span,
.intranet-panel-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.intranet-welcome h1 {
  max-width: 880px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 0.98;
}

.intranet-welcome p {
  max-width: 860px;
  margin: 0;
  color: #4a4d52;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.intranet-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.intranet-tabs {
  position: sticky;
  z-index: 12;
  top: 82px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.70));
  box-shadow: 0 24px 68px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  scrollbar-width: none;
}

.intranet-tabs::-webkit-scrollbar {
  display: none;
}

.intranet-tabs button {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 13px;
  text-align: left;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.intranet-tabs button:hover,
.intranet-tabs button:focus-visible {
  border-color: rgba(16, 84, 165, 0.18);
  background: #f8fbff;
  outline: 0;
}

.intranet-tabs button.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 84, 165, 0.2);
}

.intranet-panels {
  min-width: 0;
}

.intranet-panel {
  position: relative;
  margin-bottom: 0;
  padding: 32px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.98), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 251, 255, 0.74));
  box-shadow: 0 30px 86px rgba(20, 28, 40, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(16px) saturate(122%);
  -webkit-backdrop-filter: blur(16px) saturate(122%);
}

.intranet-panel[hidden] {
  display: none;
}

.intranet-panel-head {
  max-width: 840px;
  margin-bottom: 24px;
}

.intranet-panel-head p {
  margin: 0;
  color: #4a4d52;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.intranet-form .form-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.conditional-fields {
  display: grid;
  grid-column: 1 / -1;
  gap: 16px;
}

.conditional-fields.is-hidden {
  display: none;
}

.conditional-fields .form-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.department-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.94), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 249, 255, 0.70));
}

.multi-check-field {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.94), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 249, 255, 0.72));
  box-shadow: 0 16px 38px rgba(20, 28, 40, 0.06);
}

.multi-check-field legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.multi-check-field small {
  color: #6b7078;
  font-size: 11px;
  font-weight: 700;
}

.multi-check-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.intranet-form .multi-check-pill {
  display: inline-flex;
  width: auto;
  min-height: 42px;
  align-items: center;
  margin: 0;
  cursor: pointer;
}

.intranet-form .multi-check-pill input,
.intranet-form .multi-check-pill input:hover,
.intranet-form .multi-check-pill input:focus {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  outline: 0;
  box-shadow: none;
}

.multi-check-pill span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.88));
  color: #10233f;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 10px 22px rgba(5, 26, 54, 0.06);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.multi-check-pill:hover span,
.multi-check-pill input:focus-visible + span {
  border-color: rgba(16, 84, 165, 0.46);
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.10), 0 14px 28px rgba(5, 26, 54, 0.08);
}

.multi-check-pill input:checked + span {
  border-color: rgba(16, 84, 165, 0.72);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 84, 165, 0.20);
}

.store-manager,
.store-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 14px;
}

.store-manager-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.store-manager-actions p {
  max-width: 560px;
  margin: 0;
  color: #6b7078;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.store-card {
  overflow: visible;
  border: 1px solid rgba(16, 84, 165, 0.14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.98), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.82));
  box-shadow: 0 16px 44px rgba(20, 28, 40, 0.07);
}

.store-card summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.store-card summary::-webkit-details-marker {
  display: none;
}

.store-card summary::before {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}

.store-card[open] summary::before {
  transform: rotate(45deg);
}

.store-card summary span {
  flex: 1;
}

.store-remove {
  border: 0;
  background: transparent;
  color: #6b7078;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 0;
}

.store-remove:hover,
.store-remove:focus-visible {
  color: var(--accent);
  outline: 0;
}

.store-fields {
  padding: 0 16px 16px;
}

.store-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.store-pagination button {
  min-height: 36px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
}

.store-pagination button:disabled {
  cursor: default;
  opacity: 0.42;
}

.store-pagination span {
  color: #6b7078;
  font-size: 12px;
  font-weight: 700;
}

.account-delete-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(185, 21, 41, 0.18);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(135deg, rgba(255, 248, 249, 0.94), rgba(255, 255, 255, 0.86));
  box-shadow: 0 18px 46px rgba(129, 8, 24, 0.08);
}

.account-delete-panel strong {
  display: block;
  color: #9d1023;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.account-delete-panel p {
  max-width: 650px;
  margin: 6px 0 0;
  color: #5f343b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.account-delete-password {
  display: grid;
  max-width: 380px;
  margin-top: 14px;
  gap: 8px;
  color: #9d1023;
  font-size: 12px;
  font-weight: 700;
}

.account-delete-password input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(157, 16, 35, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.92), transparent 50%),
    rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

.account-delete-password input:focus {
  border-color: #9d1023;
  outline: 2px solid rgba(185, 21, 41, 0.16);
}

.account-delete-panel-pending {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.78), transparent 40%),
    linear-gradient(135deg, rgba(181, 24, 44, 0.18), rgba(255, 245, 246, 0.88));
}

.pending-deletion-shell .intranet-welcome {
  margin-bottom: 18px;
}

.pending-deletion-form {
  max-width: var(--wide);
}

.account-delete-panel .button {
  flex: 0 0 auto;
  border-color: rgba(157, 16, 35, 0.22);
  color: #9d1023;
}

.account-delete-panel .button:hover,
.account-delete-panel .button:focus-visible {
  border-color: #9d1023;
  color: #9d1023;
}

.intranet-form .lead-form,
.intranet-form label {
  margin-bottom: 0;
}

.intranet-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.intranet-form input,
.intranet-form select,
.intranet-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 12px;
  background-color: rgba(248, 251, 255, 0.86);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.intranet-form input,
.intranet-form textarea {
  padding: 13px 14px;
}

.intranet-form select {
  border-color: rgba(16, 84, 165, 0.16);
  background-color: #f8fbff;
  padding: 13px 62px 13px 14px;
}

.pretty-select-field {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.pretty-select {
  position: relative;
  display: block;
}

.pretty-select.is-open {
  z-index: 12000;
}

.pretty-select-hidden-trigger {
  display: none !important;
}

.intranet-form .pretty-select .hero-prefix-trigger,
.intranet-form .pretty-select .pretty-select-combobox,
.form-grid .pretty-select .hero-prefix-trigger,
.form-grid .pretty-select .pretty-select-combobox {
  min-height: 50px;
  border-color: rgba(16, 84, 165, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.88));
  color: #10233f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 26px rgba(5, 26, 54, 0.07);
}

.intranet-form .pretty-select.is-open .hero-prefix-trigger,
.intranet-form .pretty-select.is-open .pretty-select-combobox,
.intranet-form .pretty-select .hero-prefix-trigger:hover,
.intranet-form .pretty-select .pretty-select-combobox:hover,
.intranet-form .pretty-select .hero-prefix-trigger:focus-visible,
.intranet-form .pretty-select .pretty-select-combobox:focus,
.form-grid .pretty-select.is-open .hero-prefix-trigger,
.form-grid .pretty-select.is-open .pretty-select-combobox,
.form-grid .pretty-select .hero-prefix-trigger:hover,
.form-grid .pretty-select .pretty-select-combobox:hover,
.form-grid .pretty-select .hero-prefix-trigger:focus-visible {
  border-color: rgba(16, 84, 165, 0.52);
  background: linear-gradient(180deg, #ffffff, rgba(241, 247, 255, 0.96));
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.12), 0 16px 34px rgba(5, 26, 54, 0.10);
}

.form-grid .pretty-select .pretty-select-combobox:focus {
  border-color: rgba(16, 84, 165, 0.52);
  outline: 0;
  background: linear-gradient(180deg, #ffffff, rgba(241, 247, 255, 0.96));
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.12), 0 16px 34px rgba(5, 26, 54, 0.10);
}

.pretty-select-menu {
  width: max(100%, 286px);
}

.pretty-select-combobox {
  display: block;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 14px;
  background:
    url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.5' cy='6.5' r='4.6' fill='none' stroke='%231054a5' stroke-width='1.7'/%3E%3Cpath d='M10.1 10.1L13.2 13.2' stroke='%231054a5' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.88));
  background-repeat: no-repeat, no-repeat;
  background-position: calc(100% - 16px) 50%, 0 0;
  background-size: 15px 15px, 100% 100%;
  color: #10233f;
  color-scheme: light;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  padding: 13px 44px 13px 14px;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 26px rgba(5, 26, 54, 0.07);
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.pretty-select-combobox::placeholder {
  color: rgba(16, 35, 63, 0.48);
}

.pretty-select-options {
  display: block;
}

.pretty-select.is-searchable .hero-prefix-trigger {
  cursor: text;
}

.pretty-select.is-searchable .hero-prefix-trigger::after {
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.5' cy='6.5' r='4.6' fill='none' stroke='%231054a5' stroke-width='1.7'/%3E%3Cpath d='M10.1 10.1L13.2 13.2' stroke='%231054a5' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E") center / 15px 15px no-repeat;
}

.pretty-select.is-searchable.is-open .hero-prefix-trigger::after {
  transform: translateY(-50%);
}

.pretty-select.is-searchable .pretty-select-menu {
  width: max(100%, min(420px, calc(100vw - 32px)));
  max-height: 318px;
  padding: 8px;
}

.pretty-select.is-combobox .pretty-select-menu {
  z-index: 12001;
}

.pretty-select.is-disabled .pretty-select-combobox {
  cursor: not-allowed;
  opacity: 0.62;
}

.pretty-select-search {
  position: sticky;
  z-index: 2;
  top: -8px;
  display: block;
  margin: -2px -2px 6px;
  padding: 2px 2px 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 253, 0.94));
}

.pretty-select-search input {
  display: block;
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(16, 84, 165, 0.20);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff, rgba(247, 251, 255, 0.96));
  color: #10233f;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  padding: 10px 12px 10px 36px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 18px rgba(5, 26, 54, 0.06);
  background-image:
    url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6.5' cy='6.5' r='4.6' fill='none' stroke='%231054a5' stroke-width='1.7'/%3E%3Cpath d='M10.1 10.1L13.2 13.2' stroke='%231054a5' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #ffffff, rgba(247, 251, 255, 0.96));
  background-repeat: no-repeat, no-repeat;
  background-position: 13px 50%, 0 0;
  background-size: 15px 15px, auto;
}

.pretty-select-search input:focus {
  border-color: rgba(16, 84, 165, 0.54);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.11), 0 10px 24px rgba(5, 26, 54, 0.08);
}

.pretty-select-empty {
  display: block;
  padding: 12px 11px;
  color: rgba(16, 35, 63, 0.58);
  font-size: 13px;
  font-weight: 650;
}

.pretty-select-empty[hidden] {
  display: none;
}

.pretty-select.is-loading .hero-prefix-trigger {
  cursor: wait;
  opacity: 0.74;
}

.intranet-form select[name="phone_prefix"] {
  border-color: rgba(16, 84, 165, 0.28);
}

.intranet-form input:hover,
.intranet-form select:hover,
.intranet-form textarea:hover {
  border-color: rgba(16, 84, 165, 0.38);
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 84, 165, 0.08);
}

.intranet-form input:focus,
.intranet-form select:focus,
.intranet-form textarea:focus {
  border-color: var(--accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 84, 165, 0.09);
  outline: 0;
}

.intranet-form input::placeholder,
.intranet-form textarea::placeholder {
  color: rgba(28, 31, 36, 0.42);
}

.intranet-form textarea {
  min-height: 122px;
  line-height: 1.45;
  resize: vertical;
}

.intranet-form .settings-switch {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 8px;
  background: #f8fbff;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.intranet-form .settings-switch:hover {
  border-color: rgba(16, 84, 165, 0.38);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(16, 84, 165, 0.08);
}

.settings-switch span {
  display: grid;
  gap: 4px;
}

.settings-switch strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.settings-switch small {
  color: #6b7078;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.intranet-form .settings-switch input,
.intranet-form .settings-switch input:hover,
.intranet-form .settings-switch input:focus {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  outline: 0;
  box-shadow: none;
}

.settings-switch i {
  position: relative;
  flex: 0 0 auto;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #dce6f2;
  box-shadow: inset 0 0 0 1px rgba(16, 84, 165, 0.12);
  transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.settings-switch i::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(20, 28, 40, 0.18);
  content: "";
  transition: transform 0.18s ease;
}

.settings-switch input:checked + i {
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(16, 84, 165, 0.18);
}

.settings-switch input:checked + i::before {
  transform: translateX(24px);
}

.settings-switch input:focus-visible + i {
  outline: 2px solid rgba(16, 84, 165, 0.24);
  outline-offset: 3px;
}

.intranet-save {
  position: static;
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  padding: 0;
}

.intranet-save .button {
  position: relative;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(16, 84, 165, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
  color: #1054a5;
  box-shadow: 0 12px 28px rgba(5, 26, 54, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.intranet-save .button::before {
  display: none;
}

.intranet-save .button:hover,
.intranet-save .button:focus-visible {
  border-color: rgba(16, 84, 165, 0.36);
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  box-shadow: 0 14px 32px rgba(16, 84, 165, 0.14), 0 0 0 4px rgba(16, 84, 165, 0.08);
  transform: translateY(-1px);
}

.legal-copy {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 52px 58px;
  overflow: hidden;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 30px 90px rgba(20, 28, 40, 0.08);
}

.legal-copy::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(16, 84, 165, 0.18));
  content: "";
}

.legal-copy::after {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 999px;
  content: "";
  pointer-events: none;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  color: #4a4d52;
}

.legal-content p,
.legal-content li {
  text-align: justify;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content .legal-heading {
  position: relative;
  margin: 42px 0 16px;
  padding: 0 0 0 20px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.legal-content .legal-heading::before {
  position: absolute;
  top: 0.25em;
  bottom: 0.18em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.legal-content .legal-heading:first-child {
  margin-top: 0;
}

.legal-content .legal-subheading {
  width: fit-content;
  max-width: 100%;
  margin: 26px 0 14px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 84, 165, 0.10);
  border-radius: 999px;
  background: rgba(16, 84, 165, 0.06);
  color: #0f2e54;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.legal-content ol,
.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 28px;
  padding-left: 22px;
}

.legal-content li {
  padding: 10px 12px;
  border: 1px solid rgba(16, 84, 165, 0.08);
  border-radius: 10px;
  background: rgba(248, 251, 255, 0.84);
}

.legal-content blockquote {
  margin: 36px 0 12px;
  padding: 0;
  border: 0;
}

.legal-content blockquote p,
.legal-content > p:nth-child(odd) {
  color: var(--ink);
  font-weight: 700;
}

.legal-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(16, 84, 165, 0.12);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0 34px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(20, 28, 40, 0.07);
}

.legal-content caption {
  padding: 16px 16px 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.legal-content th,
.legal-content td {
  border: 0;
  border-bottom: 1px solid rgba(16, 84, 165, 0.10);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: rgba(16, 84, 165, 0.08);
  color: #0f2e54;
  font-weight: 700;
}

.legal-content tbody tr:last-child th,
.legal-content tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .page-hero.legal-hero {
    min-height: 190px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .page-hero.legal-hero::after {
    bottom: 52px;
    width: 120px;
  }

  .legal-content {
    padding: 42px 14px 58px;
  }

  .legal-copy {
    padding: 34px 20px;
    border-radius: 12px;
  }

  .legal-copy::after {
    display: none;
  }

  .legal-content .legal-heading {
    font-size: 18px;
  }

  .legal-content li {
    padding: 9px 10px;
  }
}

.site-footer {
  position: relative;
  overflow: visible;
  background: var(--accent);
  color: #ffffff;
  box-shadow: none;
}

.site-footer::before {
  display: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 74px;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 16px 50px;
}

.footer-inner p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 22px;
  grid-column: 1;
  justify-self: start;
  font-size: 13px;
  font-weight: 700;
}

.footer-legal a,
.footer-language,
.footer-stock-item {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  padding: 0;
}

.footer-legal a,
.footer-language,
.footer-stock-item {
  background: transparent;
  transition: opacity 0.18s ease;
}

.footer-legal a:hover,
.footer-language:hover,
.footer-stock-item:hover {
  opacity: 0.78;
}

.footer-language {
  color: #ffffff;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-language-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-language-menu .footer-language {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 0;
}

.footer-language-menu .footer-language:focus {
  outline: 0;
}

.footer-language-menu .footer-language:focus-visible {
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.20);
}

.language-globe {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.footer-language-menu .language-toggle::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  opacity: 0.72;
  transform: translateY(2px) rotate(45deg);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.footer-language-menu.is-open .language-toggle::after {
  opacity: 1;
  transform: translateY(-1px) rotate(225deg);
}

.footer-language-dropdown {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 90;
  display: grid;
  min-width: 132px;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(16, 84, 165, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(3, 17, 36, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.footer-language-dropdown[hidden] {
  display: none;
}

.footer-language-dropdown a {
  display: flex;
  align-items: center;
  min-height: 34px;
  border-radius: 10px;
  color: #10233f;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 10px;
  white-space: nowrap;
}

.footer-language-dropdown a:hover,
.footer-language-dropdown a:focus-visible,
.footer-language-dropdown a.is-active {
  background: rgba(16, 84, 165, 0.10);
  color: #1054a5;
  outline: 0;
}

.footer-market {
  display: inline-flex;
  align-items: center;
  grid-column: 3;
  justify-self: end;
  gap: 24px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-stock {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.footer-stock-item {
  display: inline-flex;
  align-items: baseline;
}

.footer-language::after {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(calc(100% - 48px), var(--wrap));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(16, 84, 165, 0.88);
  box-shadow: 0 28px 90px rgba(5, 26, 54, 0.42);
  color: #ffffff;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-banner[hidden],
.cookie-settings[hidden],
.cookie-actions [hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.cookie-settings {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-choice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 7px 13px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-choice span {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background 180ms ease;
}

.cookie-choice span::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #ffffff;
  content: "";
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-choice:has(input:checked) {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.cookie-choice:has(input:checked) span {
  border-color: #ffffff;
}

.cookie-choice:has(input:checked) span::after {
  opacity: 1;
  transform: scale(1);
}

.cookie-choice:has(input:disabled) {
  cursor: default;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-actions button {
  display: inline-flex;
  min-width: 98px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  padding: 0 12px;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-actions [data-cookie-accept],
.cookie-actions [data-cookie-save] {
  background: #ffffff;
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero-signup-thanks {
    right: 50%;
    width: min(360px, calc(100vw - 32px));
    padding: 26px 28px;
    transform: translate(50%, -50%);
  }

  .hero-signup-thanks strong {
    font-size: 26px;
  }

  .hero-signup-thanks span {
    font-size: 13px;
  }

  @keyframes heroThanksIn {
    from {
      opacity: 0;
      transform: translate(50%, calc(-50% + 18px)) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translate(50%, -50%) scale(1);
    }
  }

  @keyframes heroThanksOut {
    to {
      opacity: 0;
      transform: translate(50%, calc(-50% - 12px)) scale(0.98);
    }
  }

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

  .footer-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    --hero-side: 44px;
  }

  .hero-claim {
    display: none;
  }

  .hero-slide-content {
    top: 66%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(420px, calc(100vw - 96px));
    text-align: center;
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: block;
  }

  .header-link,
  .header-separator {
    display: none;
  }

  .is-logged-in .header-actions .header-separator.header-account,
  .is-logged-in .header-actions .header-separator.header-public,
  .header-actions .header-separator {
    display: none;
  }

  .is-logged-in .header-actions .header-account.header-link {
    display: none;
  }

  .is-logged-in .header-actions .header-logout.header-link {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: auto;
    left: 50%;
    display: none;
    width: 100vw;
    margin-left: 0;
    background: var(--accent);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 45px rgba(5, 26, 54, 0.14);
    transform: translateX(-50%);
  }

  body.menu-open .site-nav {
    display: block;
  }

  .site-nav > ul {
    display: block;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 12px 24px 22px;
  }

  .mobile-only-nav {
    display: block;
  }

  .mobile-auth-logout {
    display: none;
  }

  .is-logged-in .mobile-auth-public {
    display: none;
  }

  .is-logged-in .mobile-auth-logout {
    display: block;
  }

  .site-nav a,
  .site-nav button {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: left;
  }

  .has-submenu::before {
    display: none;
  }

  .submenu {
    position: static;
    min-width: 0;
    padding: 4px 0 0 18px;
    background: transparent;
    box-shadow: none;
    border-top: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu-inner {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .submenu-inner::before {
    display: none;
  }

  .site-nav .submenu-card {
    display: block;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    overflow: visible;
    align-items: initial;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    padding: 11px 0;
    transform: none;
  }

  .site-nav .submenu-card::before,
  .site-nav .submenu-card::after {
    display: none;
  }

  .site-nav .submenu-card img {
    display: none !important;
  }

  .site-nav .submenu-card span {
    position: static;
    display: inline;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav .submenu-card:hover,
  .site-nav .submenu-card:focus-visible,
  .site-nav .submenu-card.is-active {
    box-shadow: none;
    transform: none;
  }

  .split-grid,
  .program-list,
  .card-grid,
  .feature-pairs,
  .form-grid,
  .crm-grid,
  .crm-kpis,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .crm-header,
  .crm-lead-card {
    grid-template-columns: 1fr;
  }

  .crm-header {
    align-items: flex-start;
  }

  .crm-inline-form {
    grid-template-columns: 1fr;
  }

  .crm-admin-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .crm-tabs {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 10px;
  }

  .crm-tabs button {
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
  }

  .crm-dashboard-grid,
  .crm-seller-grid,
  .crm-client-grid,
  .crm-asset-grid,
  .crm-result-card dl,
  .crm-result-grid,
  .crm-finance-layout,
  .crm-lead-main,
  .crm-quick-form,
  .crm-config-form .form-grid,
  .crm-finance-form {
    grid-template-columns: 1fr;
  }

  .crm-finance-intro,
  .crm-finance-entry {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .crm-finance-intro {
    display: grid;
  }

  .crm-year-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .crm-finance-chart {
    gap: 5px;
  }

  .crm-lead-actions,
  .crm-lead-switches {
    align-items: stretch;
    flex-direction: column;
  }

  .crm-lead-actions .button,
  .crm-lead-main .button {
    width: 100%;
  }

  .intranet-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intranet-tabs {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 10px;
  }

  .intranet-tabs button {
    width: auto;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
  }

  .tab-scroll-shell {
    position: sticky;
    z-index: 18;
    top: 60px;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .tab-scroll-button {
    display: grid;
  }

  .intranet-form .form-grid {
    grid-template-columns: 1fr;
  }

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

  .store-manager-actions .button {
    width: 100%;
  }

  .login-links {
    grid-column: auto;
    justify-content: flex-start;
  }

  .program-list {
    grid-column: auto;
    gap: 24px;
  }

  .split-grid > article,
  .program-list {
    padding: 58px 32px;
  }

  .program-list div {
    max-width: 640px;
  }

  .page-hero h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .hero-claim {
    top: 20%;
    left: 50%;
    width: min(560px, calc(100vw - 72px));
    font-size: 40px;
    line-height: 1;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .wide-copy h2 {
    font-size: 28px;
    text-align: justify;
  }

  .auth-page {
    min-height: calc(100vh - 60px);
  }
}

@media (max-width: 640px) {
  .home {
    --home-mobile-square-title-font: 25px;
    --home-mobile-square-text-font: 25px;
    --home-mobile-program-text-font: 15px;
    --home-mobile-square-line: 1.1;
    --home-mobile-program-line: 1.38;
    --home-mobile-title-gap: 30px;
  }

  .home-hero {
    min-height: 720px;
    --hero-side: 24px;
  }

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

  .page-hero {
    padding: 90px 24px;
  }

  .hero-claim {
    display: none;
  }

  .hero-signup-card {
    top: 50%;
    left: 50%;
    right: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
    width: min(480px, calc(100vw - 16px));
    gap: 14px;
    padding: 44px;
    border-radius: 24px;
    transform: translate(-50%, -50%);
  }

  .hero-signup-copy {
    align-self: auto;
    align-content: start;
    gap: 8px;
  }

  .hero-signup-fields {
    grid-template-columns: minmax(104px, 0.72fr) minmax(0, 1fr);
    gap: 10px;
  }

  .hero-signup-checks {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .hero-slide-content {
    top: 81%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(320px, calc(100vw - 62px));
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-slide-content h1 {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1;
  }

  .hero-slide-content p {
    font-size: 17px;
    line-height: 1.36;
  }

  .hero-arrow {
    top: 55%;
    width: 24px;
    height: 70px;
    font-size: 58px;
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .section-title h2,
  .split-grid h2,
  .wide-copy h2,
  .statement h2 {
    font-size: 25px;
  }

  .home .split-grid > article:not(.program-list),
  .home .split-grid > .image-tile {
    display: flex;
    width: 100%;
    height: min(100vw, 430px);
    min-height: 0;
    aspect-ratio: 1 / 1;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  .home .split-grid > article:not(.program-list) {
    gap: 14px;
    padding: 42px 36px;
  }

  .home .split-grid > article .button {
    min-height: 34px;
    align-self: flex-start;
    margin-top: auto;
    font-size: 11px;
    padding: 10px 14px;
  }

  .home .program-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: auto;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
    background: transparent;
    gap: 0;
    overflow: visible;
  }

  .home .program-list div {
    display: flex;
    width: 100%;
    height: min(100vw, 430px);
    min-height: 0;
    max-width: none;
    aspect-ratio: 1 / 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 42px 36px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
  }

  .home .program-list h3 {
    margin: 0 0 var(--home-mobile-title-gap);
    font-size: var(--home-mobile-square-title-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .program-list p {
    margin: 0;
    font-size: var(--home-mobile-program-text-font);
    line-height: var(--home-mobile-program-line);
  }

  .home .program-list div:nth-child(3) p {
    font-size: var(--home-mobile-program-text-font);
    line-height: var(--home-mobile-program-line);
  }

  .home .split-grid > article .section-title > p {
    margin: 0 0 6px;
    font-size: var(--home-mobile-square-title-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .split-grid > article .section-title > span {
    width: 64px;
    height: 3px;
    margin-bottom: var(--home-mobile-title-gap);
  }

  .home .split-grid > article .section-title h2 {
    margin: 0;
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
    text-wrap: balance;
  }

  .home .split-grid > article > h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
    margin: 0;
    text-wrap: balance;
  }

  .home .split-grid > article:not(.program-list) {
    justify-content: flex-start;
  }

  .home .split-grid > article .section-title + h2 {
    margin-top: 0.35em;
  }

  .home .intro-grid > article:first-child .section-title h2,
  .home .intro-grid > article:first-child > h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .intro-grid > article:first-child > h2 {
    margin-top: 0.35em;
  }

  .home .intro-grid > article:nth-child(3) .section-title h2,
  .home .closing-grid > article .section-title h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .media-grid > article .section-title h2,
  .home .program-home > article:not(.program-list) .section-title h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .media-grid > article,
  .media-grid .image-tile,
  .closing-grid > article,
  .closing-grid .image-tile {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

  .media-grid > article,
  .closing-grid > article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 44px 32px;
  }

  .home .split-grid > article:not(.program-list) {
    justify-content: flex-start;
  }

  .home .split-grid > article .section-title + h2 {
    margin-top: 0.35em;
  }

  .media-grid h2,
  .closing-grid h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .home .media-grid h2,
  .home .closing-grid h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .pair-copy {
    font-size: 20px;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .crm-shell {
    padding: 54px 24px;
  }

  .account-delete-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .account-delete-password {
    max-width: none;
  }

  .account-delete-panel .button {
    width: 100%;
  }

  .crm-header,
  .crm-panel,
  .crm-lead-row form,
  .intranet-panel {
    padding: 22px;
  }

  .crm-admin-welcome h1,
  .intranet-welcome h1 {
    font-size: 40px;
  }

  .crm-panel-headline {
    display: grid;
  }

  .crm-seller-card dl,
  .crm-client-card dl {
    grid-template-columns: 1fr;
  }

  .intranet-save {
    justify-content: stretch;
  }

  .intranet-save .button {
    width: 100%;
  }

  .user-form-section .form-copy .section-title h2 {
    font-size: 11px;
    line-height: 1.65;
    text-align: justify;
  }

  .form-side-links,
  .form-actions,
  .login-links {
    justify-content: flex-start;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 70px;
    text-align: center;
  }

  .footer-legal {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    justify-self: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .footer-market {
    justify-self: start;
    gap: 12px;
    font-size: 11px;
    line-height: 1.2;
  }

  .footer-language,
  .footer-stock {
    font-size: 11px;
    line-height: 1.2;
  }

  .footer-stock {
    gap: 12px;
  }

  .cookie-banner {
    right: auto;
    bottom: 14px;
    left: 50%;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    padding: 14px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-signup-fields {
    grid-template-columns: minmax(112px, 0.58fr) minmax(0, 1fr);
  }

  .hero-signup-card {
    top: 50%;
    width: calc(100vw - 12px);
    gap: 12px;
    padding: 42px;
  }

  .hero-signup-copy span {
    font-size: 10px;
    padding: 6px 9px;
  }

  .hero-signup-field input {
    min-height: 38px;
    border-radius: 7px;
    padding: 9px 11px;
  }

  .hero-signup-field select {
    min-height: 38px;
    border-radius: 7px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .hero-prefix-trigger {
    min-height: 38px;
    border-radius: 12px;
    padding-top: 9px;
    padding-bottom: 9px;
    padding-right: 40px;
  }

  .hero-prefix-trigger::after {
    right: 14px;
    width: 12px;
    height: 8px;
    background-size: 12px 8px;
  }

  .hero-prefix-menu {
    width: max(100%, 236px);
    max-height: 210px;
    border-radius: 14px;
  }

  .pretty-select.is-searchable .hero-prefix-trigger::after {
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
  }

  .hero-signup-card .round-check {
    font-size: 9.5px;
  }

  .hero-signup-submit {
    grid-column: auto;
    min-height: 40px;
  }

  .hero-arrow {
    top: 55%;
  }
}

@media (max-width: 380px) {
  .home {
    --home-mobile-square-title-font: 25px;
    --home-mobile-square-text-font: 25px;
    --home-mobile-program-text-font: 15px;
    --home-mobile-square-line: 1.08;
    --home-mobile-program-line: 1.36;
    --home-mobile-title-gap: 26px;
  }

  .home .split-grid > article:not(.program-list),
  .home .program-list div {
    padding: 34px 30px;
  }

  .home .split-grid > article .section-title > span {
    width: 54px;
    height: 3px;
    margin-bottom: var(--home-mobile-title-gap);
  }

  .home .split-grid > article .section-title h2 {
    margin: 0;
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .split-grid > article > h2 {
    margin: 0;
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .intro-grid > article:first-child .section-title h2,
  .home .intro-grid > article:first-child > h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .split-grid > article:not(.program-list) {
    justify-content: flex-start;
  }

  .home .split-grid > article .section-title + h2 {
    margin-top: 0.35em;
  }

  .home .intro-grid > article:nth-child(3) .section-title h2,
  .home .closing-grid > article .section-title h2 {
    font-size: var(--home-mobile-square-text-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .program-list h3 {
    margin: 0 0 var(--home-mobile-title-gap);
    font-size: var(--home-mobile-square-title-font);
    line-height: var(--home-mobile-square-line);
  }

  .home .program-list p {
    margin: 0;
    font-size: var(--home-mobile-program-text-font);
    line-height: var(--home-mobile-program-line);
  }

  .home .program-list div:nth-child(3) p {
    font-size: var(--home-mobile-program-text-font);
    line-height: var(--home-mobile-program-line);
  }

  .footer-legal {
    gap: 9px;
    font-size: 10.5px;
  }

  .footer-market,
  .footer-language,
  .footer-stock {
    font-size: 10.5px;
  }

  .footer-market,
  .footer-stock {
    gap: 9px;
  }

  .hero-claim {
    font-size: 29px;
  }
}

/* Liquid public design */
:root {
  --liquid-line: rgba(16, 84, 165, 0.12);
  --liquid-blue-glass: rgba(16, 84, 165, 0.88);
  --liquid-shadow: 0 28px 80px rgba(7, 30, 58, 0.12);
  --liquid-card: rgba(255, 255, 255, 0.84);
}

body:not(.crm-page) {
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 84, 165, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.site-header {
  background: var(--liquid-blue-glass);
  box-shadow: 0 16px 44px rgba(5, 26, 54, 0.16);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.header-inner {
  min-height: 62px;
}

.header-public,
.header-account,
.header-logout {
  border-color: rgba(255, 255, 255, 0.52);
}

.home-hero .hero-overlay,
.page-hero .hero-overlay {
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.18) 54%, rgba(16, 84, 165, 0.14)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.12), transparent 30%);
}

.hero-claim {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

@media (min-width: 981px) and (max-width: 1180px) {
  .home-hero {
    --hero-side: 44px;
  }

  .hero-claim {
    width: min(380px, calc(48vw - 72px));
    font-size: clamp(34px, 4.05vw, 46px);
    line-height: 1.04;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .hero-claim {
    top: 17%;
    width: min(620px, calc(100vw - 88px));
    font-size: clamp(32px, 4.8vw, 44px);
    line-height: 1.04;
    letter-spacing: 0;
  }
}

.page-hero:not(.legal-hero) {
  min-height: 330px;
  border-bottom: 1px solid var(--liquid-line);
}

.page-hero:not(.legal-hero) h1 {
  padding: 0 0 18px;
}

.page-hero:not(.legal-hero) h1::after {
  display: block;
  width: 120px;
  height: 2px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: #ffffff;
  content: "";
}

.split-grid {
  background: rgba(255, 255, 255, 0.42);
}

.split-grid > article,
.program-list {
  border-color: var(--liquid-line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(16px) saturate(124%);
  -webkit-backdrop-filter: blur(16px) saturate(124%);
}

.split-grid > article.dark-panel {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.12), transparent 36%),
    linear-gradient(145deg, #11151a, #242a32);
}

.split-grid > article.blue-panel {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #0f58ad, var(--accent));
}

.section-title > span,
.mini-heading > span {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(16, 84, 165, 0.22));
}

.section-title.light > span {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.22));
}

.image-tile {
  overflow: hidden;
  border-color: var(--liquid-line);
}

.image-tile::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 32%);
}

.content-band,
.form-section {
  background: transparent;
}

.wide-copy,
.feature-pairs article,
.statement {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wide-copy {
  padding: 0;
}

.feature-pairs article {
  padding: 0 0 48px;
}

.statement {
  padding: 0;
}

.service-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.service-card img {
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(20, 28, 40, 0.11);
}

.content-band:not(.thanks) {
  background:
    radial-gradient(circle at 12% 0%, rgba(16, 84, 165, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.72));
  border-top: 1px solid rgba(16, 84, 165, 0.08);
}

.content-band:not(.thanks) .wide-copy,
.content-band:not(.thanks) .statement {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.content-band:not(.thanks) .wide-copy h2,
.content-band:not(.thanks) .statement h2 {
  width: 100%;
  max-width: none;
}

.content-band:not(.thanks) .feature-pairs {
  gap: 58px 70px;
}

.program-detail .card-grid {
  gap: 58px 42px;
}

.hero-signup-card,
.auth-card,
.cookie-banner {
  box-shadow: 0 32px 90px rgba(5, 18, 38, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.lead-form {
  border-color: var(--liquid-line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.96), transparent 38%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--liquid-shadow);
  backdrop-filter: blur(14px) saturate(122%);
  -webkit-backdrop-filter: blur(14px) saturate(122%);
}

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(145deg, #0d4b96, var(--accent));
}

@media (max-width: 980px) {
  .wide-copy,
  .feature-pairs article,
  .statement,
  .service-card {
    border-radius: 14px;
  }
}

@media (max-width: 640px) {
  .home .split-grid > article:not(.program-list),
  .home .program-list div {
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  }

  .wide-copy,
  .feature-pairs article,
  .statement {
    padding: 24px;
  }
}
