:root {
  --brand-primary: 29 78 216;
  --brand-accent: 245 158 11;
  --brand-dark: 17 24 39;
  --brand-bg: 249 250 251;
  color-scheme: light;
}

.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: rgb(51 65 85);
  transition: color 0.2s ease;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-link:hover {
  color: rgb(var(--brand-primary));
}

.dark .nav-link {
  color: rgb(203 213 225);
}

.dark .nav-link:hover {
  color: rgb(var(--brand-primary));
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown.is-open {
  z-index: 45;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 0;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: rgb(51 65 85);
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dark .nav-dropdown-toggle {
  color: rgb(203 213 225);
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: 12.8rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 38px -22px rgba(2, 6, 23, 0.45);
  padding: 0.35rem;
  z-index: 20;
}

.nav-dropdown-menu.hidden {
  display: none !important;
}

.nav-dropdown-menu.is-open,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: rgb(var(--brand-primary));
}

.dark .nav-dropdown-menu {
  border-color: rgba(71, 85, 105, 0.8);
  background: rgba(15, 23, 42, 0.98);
}

.nav-dropdown-item {
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 0.55rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border: 0;
  background: transparent;
  text-align: left;
}

.nav-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.dark .nav-dropdown-item {
  color: #cbd5e1;
}

.dark .nav-dropdown-item:hover {
  background: rgba(37, 99, 235, 0.24);
  color: #93c5fd;
}

.nav-dropdown-cloud {
  margin-top: 0.2rem;
}

.cloud-login-open-btn,
.cloud-login-mobile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.cloud-login-open-btn:hover,
.cloud-login-mobile-trigger:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px -14px rgba(37, 99, 235, 0.8);
}

.cloud-login-mobile-trigger {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 0.65rem;
  font-size: 0.8rem;
}

.mobile-more-details {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.mobile-more-details>summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.7rem;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 700;
}

.mobile-more-details>summary::-webkit-details-marker {
  display: none;
}

.mobile-more-details>summary::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-more-details[open]>summary::after {
  transform: rotate(-135deg);
}

.mobile-more-content {
  display: grid;
  gap: 0.42rem;
  padding: 0.55rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.55);
}

.mobile-more-content a {
  border-radius: 0.52rem;
  padding: 0.4rem 0.45rem;
}

.mobile-more-content a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}

.site-header {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-nav-link,
.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  border-radius: 9999px;
  padding: 0.68rem 0.92rem;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-nav-link:hover,
.site-nav-toggle:hover {
  background: rgba(29, 78, 216, 0.07);
  color: #1d4ed8;
}

.site-nav-link.is-active,
.site-nav-toggle.is-active,
.nav-dropdown.is-open .site-nav-toggle {
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12);
}

.site-nav-toggle {
  gap: 0.55rem;
}

.site-nav-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .site-nav-toggle::after {
  transform: rotate(-135deg) translateY(1px);
}

.site-nav-panel {
  top: calc(100% + 0.95rem);
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(78vh, 32rem);
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 50px -32px rgba(15, 23, 42, 0.28);
  padding: 0.7rem;
}

.nav-dropdown-compact .site-nav-panel {
  width: min(22rem, calc(100vw - 2rem));
}

.site-nav-panel-grid {
  display: grid;
  gap: 0.9rem;
}

.site-nav-panel-grid-wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
}

.site-nav-panel-lead {
  display: grid;
  gap: 0.7rem;
  border-radius: 1.15rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.2), transparent 34%),
    linear-gradient(145deg, #071120, #123162);
  color: #fff;
}

.site-nav-panel-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fde68a;
}

.site-nav-panel-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
}

.site-nav-panel-copy {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.95);
}

.site-nav-panel-lead-link {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 9999px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  padding: 0.72rem 0.95rem;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fde68a;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.site-nav-panel-lead-link:hover {
  border-color: rgba(251, 191, 36, 0.65);
  background: rgba(251, 191, 36, 0.08);
  color: #fff7d6;
}

.site-nav-card-grid,
.site-nav-card-list {
  display: grid;
  gap: 0.55rem;
}

.site-nav-card-grid {
  grid-template-columns: 1fr;
}

.site-nav-card,
.site-nav-list-item {
  display: grid;
  gap: 0.32rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.85rem;
  padding: 0.82rem 0.9rem;
  background: rgba(248, 250, 252, 0.84);
  color: #0f172a;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.site-nav-card:hover,
.site-nav-list-item:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 78, 216, 0.2);
  background: rgba(239, 246, 255, 0.92);
  box-shadow: 0 18px 36px -32px rgba(29, 78, 216, 0.3);
}

.site-nav-card strong,
.site-nav-list-item strong {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-nav-card span:last-child,
.site-nav-list-item span {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #475569;
}

.site-nav-card-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.site-nav-meta {
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 9999px;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.78);
}

.site-nav-meta-label {
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.site-nav-meta-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.site-nav-meta-link:hover {
  color: #1d4ed8;
}

.site-nav-cta,
.nav-cloud-btn,
.site-mobile-primary-action,
.site-mobile-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.site-nav-cta,
.site-mobile-primary-action {
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(29, 78, 216, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
}

.site-nav-cta:hover,
.site-mobile-primary-action:hover {
  transform: translateY(-1px);
  border-color: rgba(29, 78, 216, 0.3);
  color: #1d4ed8;
}

.nav-cloud-btn,
.site-mobile-secondary-action {
  min-height: 2.9rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(29, 78, 216, 0.58);
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  box-shadow: 0 18px 30px -22px rgba(29, 78, 216, 0.9);
}

.site-mobile-primary-action,
.site-mobile-secondary-action {
  width: 100%;
}

.site-mobile-secondary-action {
  margin-top: 0;
}

.nav-cloud-btn:hover,
.site-mobile-secondary-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px -22px rgba(29, 78, 216, 0.95);
}

.site-mobile-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.8);
  padding: 0.72rem 0.95rem;
  color: #0f172a;
  transition: border-color 220ms ease, color 220ms ease, background-color 220ms ease;
}

.site-mobile-toggle:hover,
.site-mobile-toggle.is-open {
  border-color: rgba(29, 78, 216, 0.35);
  background: rgba(239, 246, 255, 0.92);
  color: #1d4ed8;
}

.site-mobile-toggle-label {
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-mobile-toggle-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.site-mobile-menu {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.06), transparent 28%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-mobile-menu-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem 1.5rem 1.25rem;
}

.site-mobile-action-row,
.site-mobile-direct-links {
  display: grid;
  gap: 0.75rem;
}

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

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

.site-mobile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.78rem 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.site-mobile-link.is-active {
  border-color: rgba(29, 78, 216, 0.26);
  background: rgba(239, 246, 255, 0.96);
  color: #1d4ed8;
}

.site-mobile-groups {
  display: grid;
  gap: 0.75rem;
}

.site-mobile-group {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.92);
}

.site-mobile-group-toggle {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  background: transparent;
  border: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
}

.site-mobile-group-toggle::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.site-mobile-group.is-open .site-mobile-group-toggle::after {
  transform: rotate(-135deg);
}

.site-mobile-group-panel {
  display: grid;
  gap: 0.45rem;
  padding: 0 0.85rem 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.site-mobile-sublink {
  border-radius: 0.8rem;
  padding: 0.82rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #334155;
  background: rgba(248, 250, 252, 0.9);
  transition: background-color 220ms ease, color 220ms ease;
}

.site-mobile-sublink:hover {
  background: rgba(239, 246, 255, 0.95);
  color: #1d4ed8;
}

.site-mobile-contact {
  display: grid;
  gap: 0.5rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.15rem;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.09), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.95));
}

.site-mobile-contact-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.site-mobile-contact-link:hover {
  color: #1d4ed8;
}

@media (max-width: 1279px) {
  .site-nav-panel {
    width: min(22rem, calc(100vw - 2rem));
  }
}

@media (max-width: 767px) {
  .site-mobile-menu-shell {
    padding: 1rem;
  }

  .site-mobile-action-row,
  .site-mobile-direct-links {
    grid-template-columns: 1fr;
  }
}

.cloud-login-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cloud-login-modal.hidden {
  display: none !important;
}

.cloud-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cloud-login-dialog {
  position: relative;
  width: min(30rem, 100%);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #fff;
  padding: 1.35rem;
  box-shadow: 0 24px 52px -24px rgba(2, 6, 23, 0.6);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cloud-login-modal.is-open .cloud-login-backdrop {
  opacity: 1;
}

.cloud-login-modal.is-open .cloud-login-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cloud-login-close {
  position: absolute;
  top: 0.65rem;
  right: 0.7rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 9999px;
  background: rgba(248, 250, 252, 0.9);
  color: #334155;
  font-size: 1.2rem;
  line-height: 1;
}

.cloud-login-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.cloud-login-title {
  margin-top: 0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
}

.cloud-login-modal-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.cloud-login-label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.78rem;
  color: #475569;
}

.cloud-login-field {
  width: 100%;
  height: 2.5rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0 0.7rem;
  font-size: 0.86rem;
  color: #0f172a;
  background: #fff;
  outline: none;
}

.cloud-login-field:focus {
  border-color: rgba(37, 99, 235, 0.8);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.cloud-login-modal-submit {
  height: 2.55rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(37, 99, 235, 0.75);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
}

.dark .cloud-login-dialog {
  border-color: rgba(71, 85, 105, 0.75);
  background: #0f172a;
}

.dark .cloud-login-close {
  border-color: rgba(71, 85, 105, 0.75);
  background: rgba(15, 23, 42, 0.9);
  color: #cbd5e1;
}

.dark .cloud-login-title {
  color: #f1f5f9;
}

.dark .cloud-login-label {
  color: #94a3b8;
}

.dark .cloud-login-field {
  border-color: rgba(71, 85, 105, 0.85);
  background: rgba(2, 6, 23, 0.7);
  color: #e2e8f0;
}

.dark .cloud-login-field::placeholder {
  color: #94a3b8;
}

.dark .mobile-more-details {
  border-color: rgba(71, 85, 105, 0.8);
  background: rgba(15, 23, 42, 0.7);
}

.dark .mobile-more-details>summary {
  color: #cbd5e1;
}

.dark .mobile-more-content {
  border-top-color: rgba(71, 85, 105, 0.75);
  background: rgba(15, 23, 42, 0.65);
}

.dark .mobile-more-content a {
  color: #cbd5e1;
}

.dark .mobile-more-content a:hover {
  background: rgba(37, 99, 235, 0.22);
  color: #93c5fd;
}



.announcement-band {
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.08), rgba(245, 158, 11, 0.1));
}

.hero-grid {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(29, 78, 216, 0.2), transparent 45%),
    radial-gradient(circle at 82% 16%, rgba(245, 158, 11, 0.16), transparent 42%),
    radial-gradient(circle at 55% 80%, rgba(29, 78, 216, 0.1), transparent 40%);
}

.hero-orbit {
  position: relative;
  isolation: isolate;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  inset: auto -6rem -8rem auto;
  width: 22rem;
  height: 22rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), rgba(245, 158, 11, 0));
  z-index: -1;
  pointer-events: none;
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: -5rem auto auto -6rem;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.25), rgba(29, 78, 216, 0));
  z-index: -1;
  pointer-events: none;
}

.dark .hero-grid {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(29, 78, 216, 0.25), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.18), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(29, 78, 216, 0.2), transparent 45%);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.dark .glass-panel {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.glass-premium {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(29, 78, 216, 0.1);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.dark .glass-premium {
  background: rgba(17, 24, 39, 0.85);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.premium-card {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease;
}

.visual-frame {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.5));
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
}

.dark .visual-frame {
  border-color: rgba(59, 130, 246, 0.2);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9));
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.visual-image {
  display: block;
  width: 100%;
  transform: scale(1.02);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-frame:hover .visual-image {
  transform: scale(1.08);
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(29, 78, 216, 0.25);
  border-color: rgba(29, 78, 216, 0.6);
}

.dark .premium-card:hover {
  box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.7);
}

.screen-mock {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.2), rgba(245, 158, 11, 0.12));
}

.dark .screen-mock {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.3), rgba(245, 158, 11, 0.15));
}

.logo-tile {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.07), rgba(245, 158, 11, 0.1));
}

.dark .logo-tile {
  background: linear-gradient(145deg, rgba(29, 78, 216, 0.14), rgba(245, 158, 11, 0.12));
}

.logo-slider {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: logo-scroll 34s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-slide-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 5.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.8rem;
}

.dark .logo-slide-item {
  border-color: rgba(71, 85, 105, 0.75);
  background: rgba(15, 23, 42, 0.85);
}

.logo-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.font-accent {
  font-family: "Playfair Display", serif;
}

button,
a.rounded-lg,
a.rounded-xl {
  font-family: "Poppins", sans-serif;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 700ms ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 90ms;
}

.reveal:nth-child(3) {
  animation-delay: 180ms;
}

.reveal:nth-child(4) {
  animation-delay: 270ms;
}

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

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-link,
  .site-nav-toggle,
  .site-nav-card,
  .site-nav-list-item,
  .site-nav-cta,
  .nav-cloud-btn,
  .site-mobile-primary-action,
  .site-mobile-secondary-action,
  .site-mobile-link,
  .site-mobile-sublink,
  .site-mobile-toggle {
    transition: none;
  }

  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .premium-card {
    transition: none;
  }

  .visual-image {
    transition: none;
    transform: none;
  }
}

.showcase-hero {
  position: relative;
  overflow: hidden;
  min-height: 64vh;
}

.showcase-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.1) 100%);
  z-index: 1;
}

.showcase-hero .relative {
  z-index: 2;
}

.glass-search {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.38)),
    radial-gradient(circle at 20% 15%, rgba(59, 130, 246, 0.25), transparent 46%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.domain-search-shell {
  display: grid;
  gap: 0.6rem;
}

.domain-search-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(191 219 254);
}

.domain-search-subtitle {
  font-size: 0.95rem;
  color: rgb(226 232 240);
}

.showcase-hero #com-search {
  margin-top: 0.35rem;
}

.showcase-hero #com-search #search-box-form {
  margin: 0;
}

.showcase-hero #com-search table {
  width: 100%;
  border-spacing: 0.65rem !important;
}

.showcase-hero #com-search tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.showcase-hero #com-search td {
  padding: 0 !important;
}

.showcase-hero #com-search td:first-child {
  flex: 1 1 300px;
  min-width: 240px;
}

.showcase-hero #com-search td:nth-child(2) {
  flex: 0 0 150px;
}

.showcase-hero #com-search td:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 120px;
}

.showcase-hero #com-search #search-box-input,
.showcase-hero #com-search #search-box-tld,
.showcase-hero #com-search #search-box-submit {
  height: 3rem;
  border-radius: 0.9rem;
  font-size: 0.96rem;
}

.showcase-hero #com-search #search-box-input,
.showcase-hero #com-search #search-box-tld {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.58);
  color: #f8fafc;
  padding: 0 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase-hero #com-search #search-box-input::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

.showcase-hero #com-search #search-box-input:focus,
.showcase-hero #com-search #search-box-tld:focus {
  border-color: rgba(96, 165, 250, 0.95);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.showcase-hero #com-search #search-box-submit {
  border: 1px solid rgba(96, 165, 250, 0.7);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 0 1.15rem;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  width: 100%;
}

.showcase-hero #com-search #search-box-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px -12px rgba(14, 165, 233, 0.75);
}

.showcase-hero #com-search #whois-lookup-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: #bfdbfe;
  text-decoration: none;
}

.showcase-hero #com-search #whois-lookup-link:hover {
  color: #fff;
  text-decoration: underline;
}

.showcase-hero #com-search #searchTldOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.45rem;
  color: #e2e8f0;
}

.showcase-hero #com-search #searchTldOptions label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
}

.showcase-hero #com-search input[type="radio"] {
  accent-color: #38bdf8;
}

.order-embed-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.9));
  box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.35);
}

.dark .order-embed-card {
  background:
    radial-gradient(circle at 8% 10%, rgba(56, 189, 248, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
  border-color: rgba(71, 85, 105, 0.65);
  box-shadow: 0 18px 38px -24px rgba(2, 6, 23, 0.8);
}

.order-embed-head {
  padding: 2rem 2rem 1.2rem;
}

.order-embed-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.order-embed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.72rem 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.65);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
}

.order-embed-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 26px -14px rgba(37, 99, 235, 0.75);
}

.prices-embed-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(14, 165, 233, 0.14), transparent 38%),
    linear-gradient(150deg, rgba(248, 250, 252, 0.97), rgba(241, 245, 249, 0.9));
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.35);
}

.dark .prices-embed-card {
  background:
    radial-gradient(circle at 10% 12%, rgba(14, 165, 233, 0.18), transparent 38%),
    linear-gradient(150deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.95));
  border-color: rgba(71, 85, 105, 0.65);
  box-shadow: 0 18px 38px -24px rgba(2, 6, 23, 0.75);
}

.prices-embed-head {
  padding: 2rem 2rem 1.2rem;
}

.prices-embed-wrap {
  padding: 0 1rem 1rem;
  overflow-x: auto;
}

.duo-pricing-table table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  color: #0f172a;
}

.dark .duo-pricing-table table {
  border-color: rgba(71, 85, 105, 0.8);
  background: #0f172a;
  color: #e2e8f0;
}

.duo-pricing-table th,
.duo-pricing-table td {
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 0.84rem;
  line-height: 1.35;
}

.dark .duo-pricing-table th,
.dark .duo-pricing-table td {
  border-bottom-color: rgba(51, 65, 85, 0.85);
}

.duo-pricing-table thead th {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  font-weight: 700;
}

.dark .duo-pricing-table thead th {
  background: linear-gradient(180deg, #111827, #0b1220);
}

.duo-pricing-table tr.plan_names th {
  background: #eff6ff;
  color: #1e40af;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dark .duo-pricing-table tr.plan_names th {
  background: rgba(30, 64, 175, 0.16);
  color: #93c5fd;
}

.duo-pricing-table .price {
  font-weight: 700;
  color: #1d4ed8;
}

.dark .duo-pricing-table .price {
  color: #60a5fa;
}

.duo-pricing-table .order a {
  display: inline-block;
  border: 1px solid rgba(37, 99, 235, 0.6);
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.36rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.duo-pricing-table .order a:hover {
  filter: brightness(1.06);
}

.duo-pricing-empty {
  margin-top: 0.75rem;
  border: 1px dashed rgba(148, 163, 184, 0.65);
  border-radius: 0.8rem;
  padding: 0.8rem;
  font-size: 0.82rem;
  color: #64748b;
}

.dark .duo-pricing-empty {
  border-color: rgba(100, 116, 139, 0.7);
  color: #94a3b8;
}

.quick-pill {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease, box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.quick-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.quick-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 16px 32px -10px rgba(15, 23, 42, 0.15);
}

.dark .quick-pill:hover {
  box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.6);
}

.quick-pill:hover::after {
  opacity: 1;
}

.image-card {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms ease;
}

.image-card img {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
}

.dark .image-card:hover {
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  border-color: rgba(59, 130, 246, 0.4);
}

.image-card:hover img {
  transform: scale(1.06);
}

.image-banner img {
  transition: transform 260ms ease;
}

.image-banner:hover img {
  transform: scale(1.04);
}

.image-banner-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.solutions-strip {
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.24), transparent 32%),
    radial-gradient(circle at 90% 90%, rgba(14, 165, 233, 0.2), transparent 40%),
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.green-section {
  background:
    linear-gradient(110deg, rgba(6, 78, 59, 0.9), rgba(4, 120, 87, 0.82)),
    radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.22), transparent 34%),
    radial-gradient(circle at 85% 80%, rgba(20, 184, 166, 0.22), transparent 36%),
    url("../images/success.23b9e2db198a.png"),
    linear-gradient(110deg, rgba(6, 78, 59, 0.94), rgba(4, 120, 87, 0.84));
  background-size: auto, auto, auto, cover, auto;
  background-position: center, 15% 20%, 85% 80%, center, center;
}

@media (max-width: 767px) {
  .showcase-hero {
    min-height: 58vh;
  }

  .showcase-hero-overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.42));
  }

  .showcase-hero #com-search table,
  .showcase-hero #com-search tbody,
  .showcase-hero #com-search tr,
  .showcase-hero #com-search td {
    display: block;
    width: 100%;
  }

  .showcase-hero #com-search td:nth-child(2),
  .showcase-hero #com-search td:last-child {
    min-width: 0;
    margin-top: 0.5rem;
  }

  .showcase-hero #com-search td:last-child {
    align-items: stretch;
  }

  .showcase-hero #com-search #whois-lookup-link {
    text-align: center;
  }

  .showcase-hero #com-search #searchTldOptions {
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.75rem;
  }

  .logo-slide-item {
    width: 8.6rem;
    height: 4.8rem;
    border-radius: 0.8rem;
  }

  .order-embed-head {
    padding: 1.25rem 1.1rem 1rem;
  }

  .prices-embed-head {
    padding: 1.25rem 1.1rem 1rem;
  }

  .prices-embed-wrap {
    padding: 0 0.55rem 0.55rem;
  }

  .duo-pricing-table th,
  .duo-pricing-table td {
    padding: 0.62rem 0.56rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 1023px) {
  .showcase-hero h1 {
    font-size: clamp(2rem, 8vw, 3.4rem);
    line-height: 1.08;
  }
}

@media (prefers-reduced-motion: reduce) {

  .quick-pill,
  .image-card,
  .image-card img,
  .image-banner img {
    transition: none;
  }

  .quick-pill:hover,
  .image-card:hover {
    transform: none;
  }
}

.lightm-home {
  --lightm-navy: #081427;
  --lightm-blue: #1d4ed8;
  --lightm-sky: #0ea5e9;
  --lightm-amber: #f59e0b;
  --lightm-coral: #ff5c35;
  --lightm-cream: #fff6ee;
  --lightm-paper: #f8fafc;
  --lightm-border: rgba(148, 163, 184, 0.18);
  --lightm-shadow: 0 26px 60px -42px rgba(15, 23, 42, 0.28);
  background:
    radial-gradient(circle at top left, rgba(255, 92, 53, 0.16), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(29, 78, 216, 0.09), transparent 22%),
    radial-gradient(circle at 50% 55%, rgba(14, 165, 233, 0.05), transparent 30%),
    linear-gradient(180deg, #fffaf5 0%, #fffdf9 42%, #f4f8ff 100%);
}

.lightm-home ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lightm-home ul li {
  position: relative;
  padding-left: 1.1rem;
}

.lightm-home ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1d4ed8, #f59e0b);
  box-shadow: 0 0 0 0.18rem rgba(29, 78, 216, 0.1);
}

.lightm-growth-hero {
  position: relative;
  isolation: isolate;
}

.lightm-growth-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 92, 53, 0.16), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(29, 78, 216, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 238, 0.9));
  pointer-events: none;
}

.lightm-growth-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -2.5rem;
  height: 8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(244, 248, 255, 0.8));
  pointer-events: none;
}

.lightm-growth-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(255, 92, 53, 0.14);
  border-radius: 9999px;
  padding: 0.6rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 22px 48px -34px rgba(15, 23, 42, 0.24);
}

.lightm-growth-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.28rem 0.62rem;
  background: linear-gradient(135deg, #ff5c35, #fb923c);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightm-growth-kicker {
  margin-top: 1.2rem;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lightm-growth-accent {
  color: var(--lightm-coral);
}

.lightm-growth-primary-btn,
.lightm-growth-secondary-btn,
.lightm-platform-btn,
.lightm-platform-link,
.lightm-platform-card-link,
.lightm-growth-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.lightm-growth-primary-btn,
.lightm-growth-secondary-btn,
.lightm-platform-btn {
  min-height: 3.5rem;
  border-radius: 9999px;
  padding: 0.92rem 1.45rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.lightm-growth-primary-btn {
  border: 1px solid rgba(255, 92, 53, 0.55);
  background: linear-gradient(135deg, #ff5c35, #fb923c);
  color: #fff;
  box-shadow: 0 24px 52px -26px rgba(255, 92, 53, 0.56);
}

.lightm-growth-secondary-btn,
.lightm-platform-btn {
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  box-shadow: 0 20px 44px -30px rgba(15, 23, 42, 0.18);
}

.lightm-platform-link,
.lightm-platform-card-link,
.lightm-growth-mini-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1d4ed8;
}

.lightm-growth-primary-btn:hover,
.lightm-growth-secondary-btn:hover,
.lightm-platform-btn:hover,
.lightm-platform-link:hover,
.lightm-platform-card-link:hover,
.lightm-growth-mini-link:hover {
  transform: translateY(-2px);
}

.lightm-growth-secondary-btn:hover,
.lightm-platform-btn:hover {
  border-color: rgba(255, 92, 53, 0.28);
  color: var(--lightm-coral);
}

.lightm-growth-metrics {
  display: grid;
  gap: 0.9rem;
}

.lightm-growth-metric {
  display: grid;
  gap: 0.28rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 56px -38px rgba(15, 23, 42, 0.28);
}

.lightm-growth-metric-value {
  color: #0f172a;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.lightm-growth-metric-label {
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightm-growth-proof-row {
  display: grid;
  gap: 0.9rem;
}

.lightm-growth-proof-label {
  color: #475569;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightm-growth-proof-pills,
.lightm-platform-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lightm-growth-proof-pills span,
.lightm-platform-pill-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.62rem 0.92rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 20px 42px -34px rgba(15, 23, 42, 0.18);
}

.lightm-growth-stage {
  position: relative;
  display: grid;
  gap: 1rem;
}

.lightm-growth-stage-main,
.lightm-proof-shell,
.lightm-platform-story-card,
.lightm-platform-suite-card,
.lightm-results-card,
.lightm-stack-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.94));
  box-shadow: 0 34px 80px -50px rgba(15, 23, 42, 0.28);
}

.lightm-growth-stage-main {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
}

.lightm-growth-stage-main::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 92, 53, 0.18), transparent 70%);
  pointer-events: none;
}

.lightm-growth-stage-figure,
.lightm-platform-story-visual,
.lightm-results-card-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  background: linear-gradient(180deg, #f8fafc, #edf4ff);
  aspect-ratio: 16 / 10;
}

.lightm-growth-stage-figure {
  margin-top: 1rem;
}

.lightm-growth-stage-image,
.lightm-platform-story-image,
.lightm-results-card-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lightm-growth-stage-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.lightm-growth-stage-footer span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.54rem 0.8rem;
  background: rgba(255, 255, 255, 0.88);
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.24);
}

.lightm-growth-float-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.5rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 68px -42px rgba(15, 23, 42, 0.28);
}

.lightm-growth-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.lightm-growth-mini-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.lightm-proof-shell {
  display: grid;
  gap: 1.4rem;
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 246, 0.94)),
    radial-gradient(circle at top left, rgba(255, 92, 53, 0.08), transparent 26%);
}

.lightm-proof-logos {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lightm-proof-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
}

.lightm-proof-logo img {
  max-width: 100%;
  max-height: 2.4rem;
  object-fit: contain;
}

.lightm-stack-header {
  max-width: 62rem;
}

.lightm-platform-grid,
.lightm-spotlight-grid {
  display: grid;
  gap: 1.5rem;
}

.lightm-platform-story-card,
.lightm-results-card {
  overflow: hidden;
}

.lightm-platform-story-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

.lightm-platform-story-copy,
.lightm-results-card-copy {
  padding: 0.4rem 0.4rem 0;
}

.lightm-platform-suite-grid,
.lightm-spotlight-stack {
  display: grid;
  gap: 1rem;
}

.lightm-platform-suite-card,
.lightm-stack-card {
  padding: 1.35rem;
}

.lightm-platform-suite-card {
  position: relative;
  overflow: hidden;
}

.lightm-platform-suite-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.08), transparent 72%);
  pointer-events: none;
}

.lightm-platform-card-link {
  margin-top: 1.1rem;
}

.lightm-results-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 244, 0.95)),
    radial-gradient(circle at top right, rgba(255, 92, 53, 0.08), transparent 30%);
}

.lightm-case-teaser,
.lightm-stack-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, color 220ms ease;
}

.lightm-case-teaser:last-child,
.lightm-stack-link:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.lightm-case-teaser:hover,
.lightm-stack-link:hover {
  transform: translateX(4px);
}

.lightm-case-teaser-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.15rem;
  border-radius: 9999px;
  padding: 0.52rem 0.82rem;
  background: rgba(255, 92, 53, 0.1);
  color: var(--lightm-coral);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightm-service-teaser + .lightm-service-teaser {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(226, 232, 240, 0.92);
}

.lightm-hero-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.24), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.22), transparent 22%),
    linear-gradient(135deg, #071120 0%, #10294f 42%, #071120 100%);
}

.lightm-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 92%);
  pointer-events: none;
}

.lightm-hero-section::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -9rem;
  width: 22rem;
  height: 22rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.lightm-kicker,
.lightm-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.lightm-hero-announcement {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 9999px;
  padding: 0.55rem 0.9rem;
  background: rgba(15, 23, 42, 0.24);
  color: #dbeafe;
  font-size: 0.8rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.lightm-hero-announcement-label {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.28rem 0.6rem;
  background: rgba(245, 158, 11, 0.18);
  color: #fde68a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightm-kicker {
  margin-top: 1.15rem;
  color: #fde68a;
}

.lightm-kicker::before,
.lightm-section-kicker::before,
.lightm-dark-kicker::before,
.lightm-contact-label::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.lightm-section-kicker {
  color: #1d4ed8;
}

.lightm-hero-accent {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 46%, #fde68a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 36px rgba(14, 165, 233, 0.18);
}

.lightm-primary-btn,
.lightm-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  border-radius: 9999px;
  padding: 0.9rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.lightm-primary-btn {
  border: 1px solid rgba(245, 158, 11, 0.72);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  box-shadow: 0 20px 48px -24px rgba(245, 158, 11, 0.75);
}

.lightm-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  backdrop-filter: blur(14px);
}

.lightm-primary-btn:hover,
.lightm-secondary-btn:hover {
  transform: translateY(-2px);
}

.lightm-primary-btn:hover {
  box-shadow: 0 24px 52px -24px rgba(245, 158, 11, 0.9);
}

.lightm-secondary-btn:hover {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fde68a;
}

.lightm-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.58)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.12), transparent 34%);
  box-shadow: 0 32px 90px -40px rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(18px);
}

.lightm-hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%);
  pointer-events: none;
}

.lightm-hero-panel > * {
  position: relative;
  z-index: 1;
}

.lightm-hero-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f172a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lightm-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08), rgba(7, 17, 32, 0.7)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(245, 158, 11, 0.14));
  pointer-events: none;
}

.lightm-hero-visual-image {
  display: block;
  width: 100%;
  min-height: 17rem;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lightm-hero-visual-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1.4rem;
}

.lightm-hero-visual-float {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 0.82rem;
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lightm-hero-visual-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.45rem 0.8rem;
  background: rgba(15, 23, 42, 0.72);
  color: #fde68a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.lightm-hero-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lightm-hero-visual-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.lightm-hero-summary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lightm-hero-inline-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lightm-hero-inline-pills span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.52rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.lightm-hero-trust {
  display: grid;
  gap: 0.95rem;
}

.lightm-trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.35rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.lightm-trust-pill::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 0.18rem;
  margin-bottom: 0.8rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #60a5fa, #f59e0b);
}

.lightm-trust-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93c5fd;
}

.lightm-panel-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 0.85rem;
  background: rgba(245, 158, 11, 0.12);
  color: #fde68a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lightm-signal-card,
.lightm-content-card,
.lightm-ecosystem-card,
.lightm-service-card,
.lightm-project-card,
.lightm-process-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.75rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lightm-signal-card {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lightm-signal-card-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 36%);
}

.lightm-signal-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lightm-signal-feature-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.45rem 0.72rem;
  background: rgba(255, 255, 255, 0.08);
  color: #dbeafe;
  font-size: 0.78rem;
  font-weight: 600;
}

.lightm-overview-grid {
  display: grid;
  gap: 1rem;
}

.lightm-overview-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.6rem;
  padding: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  box-shadow: 0 24px 54px -40px rgba(15, 23, 42, 0.24);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lightm-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.24);
  box-shadow: 0 26px 58px -38px rgba(15, 23, 42, 0.26);
}

.lightm-overview-card-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(239, 246, 255, 0.94)),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 34%);
}

.lightm-signal-card:hover,
.lightm-content-card:hover,
.lightm-ecosystem-card:hover,
.lightm-service-card:hover,
.lightm-project-card:hover,
.lightm-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.24);
  box-shadow: 0 24px 60px -32px rgba(15, 23, 42, 0.28);
}

.lightm-signal-label,
.lightm-mini-label,
.lightm-card-topline,
.lightm-project-label,
.lightm-contact-item-label,
.lightm-dark-kicker,
.lightm-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightm-signal-label {
  color: #93c5fd;
}

.lightm-content-card,
.lightm-ecosystem-card,
.lightm-service-card,
.lightm-project-card,
.lightm-process-card,
.lightm-mini-stat,
.lightm-mini-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.9));
  box-shadow: var(--lightm-shadow);
}

.lightm-content-card {
  padding: 2rem;
}

.lightm-capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lightm-capability-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.72rem 0.95rem;
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: 0 18px 34px -28px rgba(37, 99, 235, 0.28);
}

.lightm-about-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.85rem;
  background: #0f172a;
  box-shadow: 0 26px 60px -42px rgba(15, 23, 42, 0.28);
}

.lightm-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.72));
  pointer-events: none;
}

.lightm-about-visual-image {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lightm-about-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1.35rem 1.5rem;
  color: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.7;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.38));
}

.lightm-cloud-strip {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 2rem;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 28%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.06), transparent 30%);
  box-shadow: 0 34px 74px -48px rgba(15, 23, 42, 0.34);
}

.lightm-domain-card,
.lightm-ops-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: var(--lightm-shadow);
}

.lightm-domain-card {
  background: linear-gradient(180deg, #ffffff, #f6faff);
}

.lightm-ops-card {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.92));
}

.lightm-ops-visual {
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 1.3rem;
  background: #0f172a;
}

.lightm-ops-visual-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lightm-domain-form-row {
  display: grid;
  gap: 0.85rem;
}

.lightm-domain-input {
  width: 100%;
  min-height: 3.4rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 1rem;
  background: #fff;
  color: #0f172a;
  padding: 0 1rem;
  font-size: 0.95rem;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.lightm-domain-input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.85);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.lightm-domain-input:disabled {
  cursor: not-allowed;
  background: #e2e8f0;
  color: #64748b;
}

.lightm-domain-button,
.lightm-portal-btn,
.lightm-portal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  border-radius: 9999px;
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease, color 220ms ease;
}

.lightm-domain-button,
.lightm-portal-btn {
  border: 1px solid rgba(29, 78, 216, 0.7);
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
  color: #fff;
  box-shadow: 0 20px 48px -28px rgba(29, 78, 216, 0.72);
}

.lightm-domain-button:hover,
.lightm-portal-btn:hover,
.lightm-portal-link:hover {
  transform: translateY(-2px);
}

.lightm-domain-button:disabled {
  cursor: not-allowed;
  border-color: rgba(148, 163, 184, 0.38);
  background: #cbd5e1;
  color: #475569;
  box-shadow: none;
}

.lightm-portal-link {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
}

.lightm-portal-link:hover {
  border-color: rgba(245, 158, 11, 0.5);
  color: #92400e;
}

.lightm-domain-output {
  margin-top: 1rem;
  border: 1px solid rgba(226, 232, 240, 1);
  border-radius: 1rem;
  background: #f8fafc;
  color: #334155;
  padding: 1rem 1.05rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.lightm-domain-output.is-normal {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}

.lightm-domain-output.is-success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.lightm-domain-output.is-error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.lightm-inline-link {
  font-weight: 700;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lightm-mini-stat,
.lightm-mini-panel {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
}

.lightm-mini-label,
.lightm-card-topline,
.lightm-project-label {
  color: #475569;
}

.lightm-surface-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 249, 0.92)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 28%);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.lightm-ecosystem-card,
.lightm-service-card,
.lightm-project-card,
.lightm-process-card {
  padding: 1.75rem;
}

.lightm-service-card,
.lightm-project-card,
.lightm-process-card {
  position: relative;
  overflow: hidden;
}

.lightm-service-card::before,
.lightm-project-card::before,
.lightm-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.22rem;
  background: linear-gradient(90deg, rgba(29, 78, 216, 0.72), rgba(14, 165, 233, 0.3), rgba(245, 158, 11, 0.72));
}

.lightm-section-gallery {
  display: grid;
  gap: 1.5rem;
}

.lightm-gallery-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #0f172a;
  box-shadow: 0 32px 68px -44px rgba(15, 23, 42, 0.36);
}

.lightm-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.84)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.05), rgba(245, 158, 11, 0.14));
  pointer-events: none;
}

.lightm-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lightm-gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1.4rem;
}

.lightm-gallery-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.45rem 0.8rem;
  background: rgba(15, 23, 42, 0.7);
  color: #fde68a;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.lightm-card-head {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.lightm-card-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(255, 251, 235, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lightm-card-icon img {
  width: 1.7rem;
  height: 1.7rem;
}

.lightm-card-topline {
  color: #1d4ed8;
}

.lightm-service-media,
.lightm-project-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  background: #cbd5e1;
}

.lightm-service-media {
  margin-bottom: 1.4rem;
}

.lightm-project-media::after,
.lightm-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.56)),
    linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(245, 158, 11, 0.12));
  pointer-events: none;
}

.lightm-service-media-image,
.lightm-project-media-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 260ms ease;
}

.lightm-service-media-badge,
.lightm-project-media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.5rem 0.85rem;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.lightm-dark-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(135deg, #08101d 0%, #0f2546 48%, #08101d 100%);
}

.lightm-dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
  pointer-events: none;
}

.lightm-dark-section > * {
  position: relative;
  z-index: 1;
}

.lightm-dark-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.75rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.42), rgba(15, 23, 42, 0.32));
  box-shadow: 0 28px 58px -34px rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(14px);
}

.lightm-dark-kicker,
.lightm-contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fde68a;
}

.lightm-industry-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
}

.lightm-project-frame {
  display: grid;
  place-items: center;
  min-height: 14rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lightm-project-frame-blue {
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.35), transparent 32%),
    linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
}

.lightm-project-frame-gold {
  background:
    radial-gradient(circle at top right, rgba(254, 240, 138, 0.35), transparent 30%),
    linear-gradient(135deg, #f59e0b 0%, #7c2d12 100%);
}

.lightm-project-frame-slate {
  background:
    radial-gradient(circle at top left, rgba(167, 243, 208, 0.18), transparent 28%),
    linear-gradient(135deg, #334155 0%, #0f172a 100%);
}

.lightm-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.16), rgba(245, 158, 11, 0.14));
  color: #1d4ed8;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.12);
}

.lightm-cta-shell {
  display: grid;
  position: relative;
  overflow: hidden;
  gap: 2rem;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.22), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(245, 158, 11, 0.16), transparent 24%),
    linear-gradient(135deg, #071120 0%, #10294f 52%, #071120 100%);
  box-shadow: 0 28px 70px -34px rgba(15, 23, 42, 0.65);
}

.lightm-cta-shell::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  z-index: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
  pointer-events: none;
}

.lightm-cta-shell > * {
  position: relative;
  z-index: 1;
}

.lightm-contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.75rem;
  padding: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px);
}

.lightm-contact-item-label {
  color: #cbd5e1;
}

.lightm-ops-card:hover .lightm-ops-visual-image,
.lightm-gallery-card:hover .lightm-gallery-image,
.lightm-hero-panel:hover .lightm-hero-visual-image,
.lightm-about-visual:hover .lightm-about-visual-image,
.lightm-service-card:hover .lightm-service-media-image,
.lightm-project-card:hover .lightm-project-media-image {
  transform: scale(1.04);
}

@media (min-width: 640px) {
  .lightm-growth-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (min-width: 768px) {
  .lightm-proof-shell {
    padding: 2rem;
  }

  .lightm-proof-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (min-width: 1024px) {
  .lightm-proof-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .lightm-platform-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .lightm-platform-story-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 1.5rem;
  }

  .lightm-results-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 1.5rem;
  }

  .lightm-spotlight-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .lightm-growth-stage-main {
    padding: 1.5rem;
  }

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

  .lightm-trust-pill {
    min-height: 100%;
  }

  .lightm-cta-shell {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 2.4rem;
  }

  .lightm-domain-form-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1280px) {
  .lightm-growth-stage {
    min-height: 40rem;
    padding: 1.8rem 0 1.6rem 1.6rem;
  }

  .lightm-growth-stage-main {
    margin-right: 4.75rem;
    margin-bottom: 3rem;
  }

  .lightm-growth-float-card {
    position: absolute;
    width: 17rem;
  }

  .lightm-growth-float-card-alpha {
    top: 0;
    right: 0;
  }

  .lightm-growth-float-card-beta {
    bottom: 0;
    left: 0;
  }

  .lightm-proof-logos {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

@media (max-width: 1023px) {
  .lightm-growth-hero h1,
  .lightm-hero-section h1 {
    font-size: clamp(2.6rem, 8vw, 4.6rem);
  }
}

@media (max-width: 767px) {
  .lightm-growth-badge {
    border-radius: 1.2rem;
  }

  .lightm-hero-announcement {
    border-radius: 1.2rem;
  }

  .lightm-kicker,
  .lightm-section-kicker,
  .lightm-dark-kicker,
  .lightm-contact-label {
    letter-spacing: 0.18em;
  }

  .lightm-content-card,
  .lightm-ecosystem-card,
  .lightm-service-card,
  .lightm-project-card,
  .lightm-process-card,
  .lightm-proof-shell,
  .lightm-platform-story-card,
  .lightm-platform-suite-card,
  .lightm-results-card,
  .lightm-stack-card,
  .lightm-domain-card,
  .lightm-ops-card,
  .lightm-contact-card,
  .lightm-cta-shell,
  .lightm-cloud-strip {
    padding: 1.35rem;
  }

  .lightm-project-frame {
    min-height: 11rem;
    font-size: 1.6rem;
  }

  .lightm-gallery-card,
  .lightm-gallery-image {
    min-height: 15rem;
  }

  .lightm-hero-visual,
  .lightm-hero-visual-image {
    min-height: 13.5rem;
  }

  .lightm-about-caption {
    font-size: 0.88rem;
  }

  .lightm-hero-visual-float {
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.68rem;
  }

  .lightm-primary-btn,
  .lightm-secondary-btn,
  .lightm-growth-primary-btn,
  .lightm-growth-secondary-btn,
  .lightm-platform-btn,
  .lightm-domain-button,
  .lightm-portal-btn,
  .lightm-portal-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightm-growth-primary-btn,
  .lightm-growth-secondary-btn,
  .lightm-platform-btn,
  .lightm-platform-link,
  .lightm-platform-card-link,
  .lightm-growth-mini-link,
  .lightm-primary-btn,
  .lightm-secondary-btn,
  .lightm-domain-button,
  .lightm-portal-btn,
  .lightm-portal-link,
  .lightm-signal-card,
  .lightm-content-card,
  .lightm-ecosystem-card,
  .lightm-service-card,
  .lightm-project-card,
  .lightm-process-card,
  .lightm-overview-card,
  .lightm-case-teaser,
  .lightm-stack-link,
  .lightm-hero-visual-image,
  .lightm-growth-stage-image,
  .lightm-platform-story-image,
  .lightm-results-card-image,
  .lightm-about-visual-image,
  .lightm-ops-visual-image,
  .lightm-gallery-image,
  .lightm-service-media-image,
  .lightm-project-media-image {
    transition: none;
  }

  .lightm-growth-primary-btn:hover,
  .lightm-growth-secondary-btn:hover,
  .lightm-platform-btn:hover,
  .lightm-platform-link:hover,
  .lightm-platform-card-link:hover,
  .lightm-growth-mini-link:hover,
  .lightm-primary-btn:hover,
  .lightm-secondary-btn:hover,
  .lightm-domain-button:hover,
  .lightm-portal-btn:hover,
  .lightm-portal-link:hover,
  .lightm-signal-card:hover,
  .lightm-content-card:hover,
  .lightm-ecosystem-card:hover,
  .lightm-service-card:hover,
  .lightm-project-card:hover,
  .lightm-process-card:hover,
  .lightm-overview-card:hover,
  .lightm-case-teaser:hover,
  .lightm-stack-link:hover {
    transform: none;
  }
}
