@font-face {
  font-family: "CircularStd";
  src: url("/circular-std-medium-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

.marketing-shell-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(110, 140, 180, 0.14);
  font-family: "CircularStd", Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.marketing-shell-header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.marketing-shell-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: #081a32;
}

.marketing-shell-brand-mark {
  width: 44px;
  height: 44px;
}

.marketing-shell-desktop-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.marketing-shell-desktop-nav > a,
.marketing-shell-details-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #5c6e86;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.marketing-shell-desktop-nav > a:hover,
.marketing-shell-details-menu summary:hover {
  color: #081a32;
  background: rgba(15, 111, 255, 0.08);
}

.marketing-shell-details-menu {
  position: relative;
}

.marketing-shell-details-menu summary {
  list-style: none;
}

.marketing-shell-summary-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 160ms ease;
}

.marketing-shell-details-menu[open] .marketing-shell-summary-icon {
  transform: rotate(180deg);
}

.marketing-shell-details-menu summary::-webkit-details-marker,
.marketing-shell-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.marketing-shell-details-menu[open] .marketing-shell-details-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.marketing-shell-details-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 236px;
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(102, 134, 172, 0.18);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(24, 54, 92, 0.1);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.marketing-shell-details-panel a,
.marketing-shell-mobile-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  color: #5c6e86;
}

.marketing-shell-menu-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}

.marketing-shell-details-panel a:hover,
.marketing-shell-mobile-panel a:hover {
  background: rgba(15, 111, 255, 0.08);
  color: #081a32;
}

.marketing-shell-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.marketing-shell-primary-button,
.marketing-shell-secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.marketing-shell-primary-button {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #0f6fff 0%, #3e98ff 100%);
  box-shadow: 0 16px 34px rgba(15, 111, 255, 0.26);
  cursor: pointer;
}

.marketing-shell-primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(15, 111, 255, 0.3);
}

.marketing-shell-secondary-button {
  color: #081a32;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(102, 134, 172, 0.18);
}

.marketing-shell-secondary-button:hover {
  background: rgba(255, 255, 255, 0.92);
}

.marketing-shell-mobile-menu {
  display: none;
  margin-left: auto;
  position: relative;
}

.marketing-shell-mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(102, 134, 172, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #081a32;
  cursor: pointer;
}

.marketing-shell-mobile-menu[open] .marketing-shell-mobile-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.marketing-shell-mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(320px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--border, rgba(102, 134, 172, 0.18));
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 44px rgba(24, 54, 92, 0.1);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.marketing-shell-mobile-primary-link {
  background: rgba(15, 111, 255, 0.08);
  color: #0f6fff;
  font-weight: 700;
}

.marketing-shell-footer {
  color: #e9f7fe;
  background: #081a32;
}

.marketing-shell-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.marketing-shell-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 50px 0 34px;
}

.marketing-shell-footer-brand img {
  width: min(228px, 100%);
}

.marketing-shell-footer-brand p {
  margin: 0;
  color: #9fb0c9;
  line-height: 1.65;
}

.marketing-shell-social-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.marketing-shell-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b8c4d7;
}

.marketing-shell-social-link:hover {
  color: #fff;
}

.marketing-shell-social-icon-wrap,
.marketing-shell-social-icon-svg {
  width: 24px;
  height: 24px;
}

.marketing-shell-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.marketing-shell-footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1rem;
}

.marketing-shell-footer-links {
  display: grid;
  gap: 12px;
}

.marketing-shell-footer-links a {
  color: #d7e3f7;
}

.marketing-shell-footer-links a:hover {
  color: #fff;
}

.marketing-shell-footer-bottom {
  border-top: 1px solid rgba(180, 192, 215, 0.18);
  padding: 16px 0 28px;
}

.marketing-shell-footer-bottom p {
  margin: 0;
  color: #9fb0c9;
  font-size: 0.82rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .marketing-shell-footer-top {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .marketing-shell-desktop-nav,
  .marketing-shell-header-actions {
    display: none;
  }

  .marketing-shell-mobile-menu {
    display: block;
  }
}

@media (max-width: 640px) {
  .marketing-shell-header-inner {
    min-height: 72px;
  }

  .marketing-shell-brand-mark {
    width: 42px;
    height: 42px;
  }

  .marketing-shell-container {
    width: min(100% - 20px, 1180px);
  }

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