@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/InterVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter/InterVariable-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary: #1b3bdb;
  --primary-hover: #1632c4;
  --primary-soft: #e8ecfb;
  --secondary: #74e176;
  --accent-blue: #1b3bdb;
  --section-heading-size: 2.75rem; /* 44px — shared section H2 size */
  --background: #f4f5fa;
  --foreground: #0b0f19;
  --muted: rgba(27, 59, 219, 0.58);
  --line: rgba(27, 59, 219, 0.1);
  --line-strong: rgba(27, 59, 219, 0.16);
  --white: #ffffff;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 59, 219, 0.28) transparent;
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(27, 59, 219, 0.28);
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(27, 59, 219, 0.42);
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--foreground);
  font-family: var(--font);
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(27, 59, 219, 0.08), transparent 55%),
    radial-gradient(700px 380px at 100% 100%, rgba(116, 225, 118, 0.14), transparent 50%),
    var(--background);
  -webkit-font-smoothing: antialiased;
}

body.page-home {
  background: #fbfcfe;
}

body.page-products,
body.page-teams {
  background: #ffffff;
}

body.page-teams .site-header,
body.page-teams .site-header.is-scrolled {
  background: var(--accent-blue);
  color: #ffffff;
  backdrop-filter: none;
  box-shadow: none;
}

body.page-teams .site-header-spacer {
  background: var(--accent-blue);
}

body.page-teams .nav-trigger,
body.page-teams .nav-link,
body.page-teams .nav-login {
  color: #ffffff;
}

body.page-teams .nav-trigger:hover,
body.page-teams .nav-link:hover,
body.page-teams .nav-item.is-active > .nav-trigger,
body.page-teams .nav-link.is-active,
body.page-teams .nav-login:hover {
  color: #ffffff;
}

body.page-teams .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

body.page-teams .nav-cta {
  background: #ffffff;
  color: var(--accent-blue) !important;
  border-color: #ffffff;
  box-shadow: none;
}

body.page-teams .nav-cta:hover {
  background: #f4f6ff;
  color: var(--accent-blue) !important;
}

body.page-teams .nav-mobile {
  background: var(--accent-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-teams .nav-mobile-accordion,
body.page-teams .nav-mobile-top-link,
body.page-teams .nav-mobile a:not(.nav-cta) {
  color: #ffffff;
}

body.page-teams .nav-mobile-chevron {
  color: rgba(255, 255, 255, 0.65);
}

body.page-teams .nav-mobile-panel a {
  color: rgba(255, 255, 255, 0.88);
}

body.page-teams .nav-mobile a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.1);
}

body.page-teams .nav-mobile a:not(.nav-cta):hover,
body.page-teams .nav-mobile a:not(.nav-cta).is-active {
  color: var(--secondary);
}

body.page-teams .nav-mobile-section,
body.page-teams .nav-mobile-actions {
  border-color: rgba(255, 255, 255, 0.12);
}

body.page-teams .nav-mobile-actions .nav-login {
  background: #3454e6;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.page-teams .nav-mobile-actions .nav-login:hover {
  background: #4a68ec;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

body.page-teams .nav-mobile-actions .nav-cta {
  background: #ffffff;
  color: var(--accent-blue) !important;
}

body.page-teams .nav-mobile-actions .nav-cta:hover {
  background: #f4f6ff;
  color: var(--secondary) !important;
}

body.page-about .site-header,
body.page-about .site-header.is-scrolled,
body.page-home .site-header,
body.page-home .site-header.is-scrolled {
  background: var(--accent-blue);
  color: #ffffff;
  backdrop-filter: none;
  box-shadow: none;
}

body.page-about .site-header-spacer,
body.page-home .site-header-spacer {
  background: var(--accent-blue);
}

body.page-about .nav-trigger,
body.page-about .nav-link,
body.page-about .nav-login,
body.page-home .nav-trigger,
body.page-home .nav-link,
body.page-home .nav-login {
  color: #ffffff;
}

body.page-about .nav-trigger:hover,
body.page-about .nav-link:hover,
body.page-about .nav-item.is-active > .nav-trigger,
body.page-about .nav-link.is-active,
body.page-about .nav-login:hover,
body.page-home .nav-trigger:hover,
body.page-home .nav-link:hover,
body.page-home .nav-item.is-active > .nav-trigger,
body.page-home .nav-link.is-active,
body.page-home .nav-login:hover {
  color: #ffffff;
}

body.page-about .nav-toggle,
body.page-home .nav-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

body.page-about .nav-cta,
body.page-home .nav-cta {
  background: #ffffff;
  color: var(--accent-blue) !important;
  border-color: #ffffff;
  box-shadow: none;
}

body.page-about .nav-cta:hover,
body.page-home .nav-cta:hover {
  background: #f4f6ff;
  color: var(--accent-blue) !important;
}

body.page-about .nav-mobile,
body.page-home .nav-mobile {
  background: var(--accent-blue);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-about .nav-mobile-accordion,
body.page-home .nav-mobile-accordion,
body.page-about .nav-mobile-top-link,
body.page-home .nav-mobile-top-link,
body.page-about .nav-mobile a:not(.nav-cta),
body.page-home .nav-mobile a:not(.nav-cta) {
  color: #ffffff;
}

body.page-about .nav-mobile-chevron,
body.page-home .nav-mobile-chevron {
  color: rgba(255, 255, 255, 0.65);
}

body.page-about .nav-mobile-panel a,
body.page-home .nav-mobile-panel a {
  color: rgba(255, 255, 255, 0.88);
}

body.page-about .nav-mobile a:not(.nav-cta):hover,
body.page-home .nav-mobile a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, 0.1);
}

body.page-about .nav-mobile a:not(.nav-cta):hover,
body.page-about .nav-mobile a:not(.nav-cta).is-active,
body.page-home .nav-mobile a:not(.nav-cta):hover,
body.page-home .nav-mobile a:not(.nav-cta).is-active {
  color: var(--secondary);
}

body.page-about .nav-mobile-section,
body.page-home .nav-mobile-section,
body.page-about .nav-mobile-actions,
body.page-home .nav-mobile-actions {
  border-color: rgba(255, 255, 255, 0.12);
}

body.page-about .nav-mobile-actions .nav-login,
body.page-home .nav-mobile-actions .nav-login {
  background: #3454e6;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

body.page-about .nav-mobile-actions .nav-login:hover,
body.page-home .nav-mobile-actions .nav-login:hover {
  background: #4a68ec;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
}

body.page-about .nav-mobile-actions .nav-cta,
body.page-home .nav-mobile-actions .nav-cta {
  background: #ffffff;
  color: var(--accent-blue) !important;
}

body.page-about .nav-mobile-actions .nav-cta:hover,
body.page-home .nav-mobile-actions .nav-cta:hover {
  background: #f4f6ff;
  color: var(--secondary) !important;
}

/* Legal / contact / help: solid white header (no transparent flash over blue heroes) */
body.page-legal .site-header,
body.page-legal .site-header.is-scrolled,
body.page-contact .site-header,
body.page-contact .site-header.is-scrolled,
body.page-help .site-header,
body.page-help .site-header.is-scrolled {
  background: var(--white);
  color: var(--foreground);
  backdrop-filter: none;
  box-shadow:
    0 1px 0 rgba(27, 59, 219, 0.06),
    0 8px 24px rgba(27, 59, 219, 0.04);
}

body.page-legal .site-header-spacer,
body.page-contact .site-header-spacer,
body.page-help .site-header-spacer {
  background: var(--white);
}

body.page-legal .nav-trigger,
body.page-legal .nav-link,
body.page-legal .nav-login,
body.page-contact .nav-trigger,
body.page-contact .nav-link,
body.page-contact .nav-login,
body.page-help .nav-trigger,
body.page-help .nav-link,
body.page-help .nav-login {
  color: var(--foreground);
}

body.page-legal .nav-trigger:hover,
body.page-legal .nav-link:hover,
body.page-legal .nav-item.is-active > .nav-trigger,
body.page-legal .nav-link.is-active,
body.page-legal .nav-login:hover,
body.page-contact .nav-trigger:hover,
body.page-contact .nav-link:hover,
body.page-contact .nav-item.is-active > .nav-trigger,
body.page-contact .nav-link.is-active,
body.page-contact .nav-login:hover,
body.page-help .nav-trigger:hover,
body.page-help .nav-link:hover,
body.page-help .nav-item.is-active > .nav-trigger,
body.page-help .nav-link.is-active,
body.page-help .nav-login:hover {
  color: var(--accent-blue);
}

body.page-legal .nav-toggle,
body.page-contact .nav-toggle,
body.page-help .nav-toggle {
  color: var(--foreground);
  border-color: var(--line);
  background: transparent;
}

body.page-legal .nav-cta,
body.page-contact .nav-cta,
body.page-help .nav-cta {
  background: var(--accent-blue);
  color: #ffffff !important;
  border-color: var(--accent-blue);
}

body.page-legal .nav-cta:hover,
body.page-contact .nav-cta:hover,
body.page-help .nav-cta:hover {
  background: #1630b8;
  color: #ffffff !important;
}

body.page-legal .nav-mobile,
body.page-contact .nav-mobile,
body.page-help .nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--line);
}

body.page-legal .nav-mobile-accordion,
body.page-contact .nav-mobile-accordion,
body.page-help .nav-mobile-accordion,
body.page-legal .nav-mobile-top-link,
body.page-contact .nav-mobile-top-link,
body.page-help .nav-mobile-top-link,
body.page-legal .nav-mobile a:not(.nav-cta),
body.page-contact .nav-mobile a:not(.nav-cta),
body.page-help .nav-mobile a:not(.nav-cta) {
  color: var(--foreground);
}

body.page-legal .nav-mobile-chevron,
body.page-contact .nav-mobile-chevron,
body.page-help .nav-mobile-chevron {
  color: #8b93a7;
}

body.page-legal .nav-mobile-panel a,
body.page-contact .nav-mobile-panel a,
body.page-help .nav-mobile-panel a {
  color: #5b647c;
}

body.page-legal .nav-mobile a:not(.nav-cta):hover,
body.page-contact .nav-mobile a:not(.nav-cta):hover,
body.page-help .nav-mobile a:not(.nav-cta):hover {
  background: #f5f6fa;
}

body.page-legal .nav-mobile a:not(.nav-cta):hover,
body.page-legal .nav-mobile a:not(.nav-cta).is-active,
body.page-contact .nav-mobile a:not(.nav-cta):hover,
body.page-contact .nav-mobile a:not(.nav-cta).is-active,
body.page-help .nav-mobile a:not(.nav-cta):hover,
body.page-help .nav-mobile a:not(.nav-cta).is-active {
  color: var(--accent-blue);
}

body.page-legal .nav-mobile-section,
body.page-contact .nav-mobile-section,
body.page-help .nav-mobile-section,
body.page-legal .nav-mobile-actions,
body.page-contact .nav-mobile-actions,
body.page-help .nav-mobile-actions {
  border-color: var(--line);
}

body.page-legal .nav-mobile-actions .nav-login,
body.page-contact .nav-mobile-actions .nav-login,
body.page-help .nav-mobile-actions .nav-login {
  background: var(--primary-soft);
  color: var(--accent-blue);
  border-color: rgba(27, 59, 219, 0.14);
}

body.page-legal .nav-mobile-actions .nav-login:hover,
body.page-contact .nav-mobile-actions .nav-login:hover,
body.page-help .nav-mobile-actions .nav-login:hover {
  background: #d5ddf8;
  color: var(--primary-hover);
  border-color: rgba(27, 59, 219, 0.22);
}

body.page-legal .nav-mobile-actions .nav-cta,
body.page-contact .nav-mobile-actions .nav-cta,
body.page-help .nav-mobile-actions .nav-cta {
  background: var(--accent-blue);
  color: #ffffff !important;
}

body.page-legal .nav-mobile-actions .nav-cta:hover,
body.page-contact .nav-mobile-actions .nav-cta:hover,
body.page-help .nav-mobile-actions .nav-cta:hover {
  background: #1630b8;
  color: #ffffff !important;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* —— Website header (marketing chrome — not the app header) —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--foreground);
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    backdrop-filter 0.2s ease;
  background: transparent;
  backdrop-filter: blur(2px);
}

.site-header-spacer {
  height: var(--site-header-h, 5.75rem);
  flex-shrink: 0;
}

.site-header.is-scrolled {
  background: var(--white);
  backdrop-filter: none;
  box-shadow:
    0 1px 0 rgba(27, 59, 219, 0.06),
    0 8px 24px rgba(27, 59, 219, 0.06);
}

.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 1rem 1rem; /* px-4 — same as app header */
}

.brand {
  justify-self: start;
  flex-shrink: 0;
}

.brand img {
  display: block;
  height: 2.125rem; /* was 2.375rem BrandMark md */
  width: auto;
}

@media (min-width: 768px) {
  .brand img {
    height: 3rem; /* was 3.5rem BrandMark lg @ md+ */
  }
}

.nav-left {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.65rem;
  justify-self: center;
  grid-column: 2;
}

@media (min-width: 900px) {
  .nav-left {
    display: flex;
  }
}

.nav-item {
  position: relative;
}

@media (min-width: 900px) {
  .nav-item::before {
    content: "";
    position: absolute;
    left: -0.35rem;
    right: -0.35rem;
    top: 100%;
    height: 1rem;
  }
}

.nav-trigger,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.1rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  transition: color 0.15s ease;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item.is-active > .nav-trigger,
.nav-link.is-active {
  color: var(--primary);
}

.nav-link::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-item.is-active > .nav-trigger::after,
.nav-item:hover > .nav-trigger::after {
  opacity: 1;
}

.nav-dropdown {
  visibility: hidden;
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: max-content;
  min-width: 20.5rem;
  padding: 0.55rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(27, 59, 219, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 8px rgba(27, 59, 219, 0.04),
    0 22px 48px rgba(27, 59, 219, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  margin-left: -0.35rem;
  border-left: 1px solid rgba(27, 59, 219, 0.08);
  border-top: 1px solid rgba(27, 59, 219, 0.08);
  background: #ffffff;
  transform: rotate(45deg);
}

@media (min-width: 900px) {
  .nav-item:hover .nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown a,
.nav-dropdown-empty {
  display: block;
  position: relative;
  border-radius: 0.85rem;
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: var(--foreground);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.nav-dropdown a:hover {
  background: linear-gradient(
    90deg,
    rgba(27, 59, 219, 0.06) 0%,
    rgba(27, 59, 219, 0.035) 100%
  );
  color: var(--primary);
}

.nav-dropdown a.is-active {
  background: linear-gradient(
    90deg,
    rgba(27, 59, 219, 0.1) 0%,
    rgba(27, 59, 219, 0.05) 100%
  );
  color: var(--primary);
}

.nav-dropdown a span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #9ca3af;
  line-height: 1.4;
  max-width: 18rem;
}

.nav-dropdown a:hover span,
.nav-dropdown a.is-active span {
  color: #7a8599;
}

.nav-dropdown-empty {
  color: var(--muted);
  font-weight: 500;
  cursor: default;
  text-align: center;
  padding: 1.1rem 1.25rem;
}

.nav-right {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  justify-self: end;
  grid-column: 3;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .nav-right {
    display: inline-flex;
  }
}

.nav-login {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  transition: color 0.15s ease;
}

.nav-login:hover {
  color: var(--primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 2.65rem;
  padding: 0 1.15rem;
  border-radius: 0.75rem;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: 0 2px 10px rgba(27, 59, 219, 0.22);
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--primary-hover);
}

.nav-cta-arrow {
  font-size: 1.05rem;
  line-height: 1;
}

.nav-toggle {
  display: grid;
  place-items: center;
  justify-self: end;
  grid-column: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #e4e8f4;
  border-radius: 999px;
  background: var(--white);
  color: var(--foreground);
  box-shadow: 0 2px 10px rgba(27, 59, 219, 0.06);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  width: 1.15rem;
  height: 1.15rem;
}

.nav-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(11, 15, 25, 0.35);
}

.nav-mobile-backdrop.is-open {
  display: block;
}

.nav-mobile-backdrop[hidden] {
  display: none !important;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 51;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.35rem 1rem 1.1rem;
  max-height: min(calc(100dvh - var(--site-header-h, 4.5rem)), 28rem);
  overflow: auto;
  box-shadow:
    0 16px 40px rgba(27, 59, 219, 0.12),
    0 1px 0 rgba(27, 59, 219, 0.04);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile[hidden] {
  display: none !important;
}

@media (min-width: 900px) {
  .nav-mobile,
  .nav-mobile-backdrop {
    display: none !important;
  }
}

.nav-mobile-section {
  border-bottom: 1px solid var(--line);
}

.nav-mobile-section--link {
  border-bottom: 0;
}

.nav-mobile-accordion {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-align: left;
}

.nav-mobile-chevron {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: color-mix(in srgb, var(--foreground) 45%, #8b93a7);
  transition: transform 0.18s ease;
}

.nav-mobile-accordion[aria-expanded="true"] .nav-mobile-chevron {
  transform: rotate(180deg);
}

.nav-mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0.15rem 0.75rem;
}

.nav-mobile-panel[hidden] {
  display: none !important;
}

.nav-mobile-top-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.95rem 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

/* Keep Pricing aligned with Product/Teams/Resources row padding */
.nav-mobile a.nav-mobile-top-link {
  padding: 0.95rem 0.35rem;
  border-radius: 0.75rem;
}

.nav-mobile a:not(.nav-cta):not(.nav-mobile-top-link) {
  display: block;
  border-radius: 0.75rem;
  padding: 0.7rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-mobile-panel a {
  font-weight: 600;
  color: color-mix(in srgb, var(--foreground) 78%, #6b728a);
}

.nav-mobile a:not(.nav-cta):not(.nav-mobile-top-link):hover {
  background: #f4f6fb;
}

.nav-mobile a:not(.nav-cta).is-active {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 0.2rem;
}

.nav-mobile-actions {
  display: grid;
  gap: 0.55rem;
  margin-top: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.nav-mobile-actions .nav-cta {
  width: 100%;
  justify-content: center;
}

.nav-mobile-actions .nav-cta:hover {
  background: var(--primary-hover);
  color: var(--secondary) !important;
}

.nav-mobile-actions .nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.65rem;
  padding: 0 1.15rem;
  border-radius: 0.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  background: var(--primary-soft);
  color: var(--accent-blue);
  border: 1px solid rgba(27, 59, 219, 0.14);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.nav-mobile-actions .nav-login:hover {
  background: #d5ddf8;
  color: var(--primary-hover);
  border-color: rgba(27, 59, 219, 0.22);
}

/* —— Page content —— */
.site-main {
  flex: 1 0 auto;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  padding: 0 1.1rem;
  border-radius: 0.85rem;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 0 1px 2px rgba(27, 59, 219, 0.12);
  transition: background 0.15s ease;
}

.btn:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  background: var(--white);
  color: var(--foreground) !important;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #f7f8fc;
}

.btn-lg {
  height: 3rem;
  padding: 0 1.35rem;
  font-size: 0.95rem;
}

.page h1 {
  margin: 0.85rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 4rem;
}

/* —— Home hero —— */
.home-hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 2.25rem 1rem 1.25rem;
  background: var(--accent-blue);
  color: #ffffff;
}

.home-hero-inner {
  position: relative;
  display: grid;
  gap: 2.25rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 980px) {
  .home-hero {
    /* Header spacer + hero = full viewport on laptop / 13" */
    display: flex;
    align-items: center;
    min-height: calc(100dvh - var(--site-header-h, 4rem));
    box-sizing: border-box;
    padding: 1.5rem 1rem 0.5rem;
  }

  .home-hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem 1.25rem;
    align-items: center;
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .home-hero {
    padding: 1.75rem 1rem 0.65rem;
  }
}

/* Larger / taller screens — ~60% viewport */
@media (min-width: 980px) and (min-height: 901px) {
  .home-hero {
    min-height: 75dvh;
  }
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  padding-top: 0;
  animation: home-rise 0.7s ease both;
}

@media (min-width: 980px) {
  .home-hero-copy {
    margin-left: clamp(1rem, 3.5vw, 3rem);
    margin-top: -2.5rem;
    padding-top: 0;
    align-self: center;
  }
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: none;
}

.home-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #3ecf6a;
  box-shadow: 0 0 0 3px rgba(62, 207, 106, 0.25);
}

.home-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.85rem, 6.4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #ffffff;
}

.home-hero-accent {
  color: var(--secondary);
}

.home-hero-period {
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  margin-left: 0.1em;
  border-radius: 50%;
  background: var(--secondary);
  vertical-align: baseline;
}

.home-hero-lede {
  margin: 1.15rem 0 0;
  max-width: 30rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
}

.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.home-hero .home-cta-primary {
  gap: 0.55rem;
  height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--accent-blue) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.home-hero .home-cta-primary:hover {
  background: #f4f6ff;
}

.home-cta-arrow {
  font-size: 1.15rem;
  line-height: 1;
  transform: translateY(-0.5px);
}

.home-hero .home-cta-secondary {
  gap: 0.6rem;
  height: 3.15rem;
  padding: 0 1.15rem;
  border-radius: 0.8rem;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
  font-weight: 650;
  background: transparent;
}

.home-hero .home-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.home-hero .home-play {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.home-hero .home-play-tri {
  width: 0;
  height: 0;
  margin-left: 0.12rem;
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.45rem;
  border-color: transparent transparent transparent #ffffff;
}

.home-cta-primary {
  gap: 0.55rem;
  height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 0.8rem;
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(27, 59, 219, 0.22);
}

.home-cta-primary:hover {
  background: var(--primary-hover);
}

.home-cta-secondary {
  gap: 0.6rem;
  height: 3.15rem;
  padding: 0 1.15rem;
  border-radius: 0.8rem;
  border-color: rgba(27, 59, 219, 0.12);
  color: var(--primary) !important;
  font-weight: 650;
  background: #ffffff;
}

.home-cta-secondary:hover {
  background: #f6f7fc;
}

.home-play {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-blue) 12%, #ffffff);
  flex-shrink: 0;
}

.home-play-tri {
  width: 0;
  height: 0;
  margin-left: 0.12rem;
  border-style: solid;
  border-width: 0.28rem 0 0.28rem 0.45rem;
  border-color: transparent transparent transparent var(--accent-blue);
}

.home-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 0;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.home-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.home-trust li:first-child {
  padding-left: 0;
}

.home-trust li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.home-trust img {
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.home-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1.25rem 0.5rem 1.75rem;
  overflow: visible;
  animation: home-rise 0.85s 0.08s ease both;
}

@media (min-width: 980px) {
  .home-hero-visual {
    justify-items: end;
    align-content: center;
    align-self: center;
    margin-top: 0;
    padding: 0;
  }
}

.home-hero-arrow {
  display: none;
  position: absolute;
  z-index: 4;
  left: -3.5%;
  top: 34%;
  width: min(5.35rem, 15.5%);
  height: auto;
  pointer-events: none;
  animation: home-rise 0.9s 0.2s ease both;
}

@media (min-width: 1100px) {
  .home-hero-arrow {
    display: block;
  }
}

.home-hero-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 32rem);
  padding: 0.75rem 0.25rem 1rem;
  overflow: visible;
}

@media (min-width: 980px) {
  .home-hero-stage {
    width: min(100%, 40rem);
    padding: 0.5rem 0;
  }
}

@media (min-width: 1280px) {
  .home-hero-stage {
    width: min(100%, 46rem);
  }
}

/* Soft blob wash — same shape as aspot-graphic, white → light blue, behind the graphic */
.home-hero-aspot-wrap {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 44%;
  left: 40%;
  width: 122%;
  transform: translate(-50%, -50%);
}

.home-hero-aspot-wash,
.home-hero-aspot {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

.home-hero-aspot-wash {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transform-origin: center;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfcff 28%,
    #f5f8ff 52%,
    rgba(243, 247, 255, 0.55) 72%,
    rgba(244, 245, 250, 0.2) 88%,
    rgba(244, 245, 250, 0) 100%
  );
  -webkit-mask-image:
    url("/images/aspot-graphic.png"),
    radial-gradient(ellipse at 50% 42%, #000 42%, transparent 78%);
  mask-image:
    url("/images/aspot-graphic.png"),
    radial-gradient(ellipse at 50% 42%, #000 42%, transparent 78%);
  -webkit-mask-size: 100% 100%, 100% 100%;
  mask-size: 100% 100%, 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: luminance, alpha;
  mask-mode: luminance, alpha;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  filter: blur(14px);
  opacity: 0.9;
}

/* Graphic on top — black cut out via mask, no blend so color stays clean */
.home-hero-aspot {
  position: relative;
  z-index: 1;
  mix-blend-mode: normal;
  opacity: 1;
  -webkit-mask-image: url("/images/aspot-graphic.png");
  mask-image: url("/images/aspot-graphic.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-mode: luminance;
  mask-mode: luminance;
}

@media (min-width: 980px) {
  .home-hero-aspot-wrap {
    top: 48%;
    left: 42%;
    width: 138%;
  }
}

@media (min-width: 1280px) {
  .home-hero-aspot-wrap {
    width: 144%;
    left: 40%;
    top: 50%;
  }
}

.home-hero-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 22px 48px rgba(40, 70, 180, 0.16));
  animation: home-float 5.5s ease-in-out infinite;
}

.home-hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.35rem;
}

@media (min-width: 980px) {
  .home-hero-frame {
    max-height: min(72dvh, 38rem);
  }

  .home-hero-image {
    width: auto;
    max-width: 100%;
    max-height: min(72dvh, 38rem);
    margin-left: auto;
    object-fit: contain;
    object-position: top right;
  }
}

@media (min-width: 1280px) {
  .home-hero-frame {
    max-height: min(74dvh, 42rem);
  }

  .home-hero-image {
    max-height: min(74dvh, 42rem);
  }
}

.home-float {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  pointer-events: none;
  animation: home-rise 0.85s 0.25s ease both;
}

.home-float p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.home-float span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.68rem;
  font-weight: 550;
  line-height: 1.25;
}

.home-float-confirm {
  top: -0.35rem;
  right: -0.15rem;
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.06);
  box-shadow: 0 14px 32px rgba(30, 50, 140, 0.14);
  color: #0a0f2d;
}

.home-float-confirm div span {
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-float-check {
  display: grid !important;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  margin: 0 !important;
  border-radius: 999px;
  background: #3ecf6a;
  flex-shrink: 0;
}

.home-float-check img {
  width: 0.95rem;
  height: 0.95rem;
  filter: brightness(0) invert(1);
}

.home-float-upcoming {
  left: -0.35rem;
  bottom: 5.75rem;
  padding: 0.7rem 1rem 0.7rem 0.7rem;
  border-radius: 1rem;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(27, 59, 219, 0.28);
}

.home-float-upcoming span {
  color: rgba(255, 255, 255, 0.72);
}

.home-float-avatar {
  display: grid !important;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin: 0 !important;
  border-radius: 0.55rem;
  background: #1a2a9e;
  color: #74e176 !important;
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.home-float-live {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  width: 0.45rem !important;
  height: 0.45rem;
  margin: 0 !important;
  border-radius: 999px;
  background: #3ecf6a;
  box-shadow: 0 0 0 3px rgba(62, 207, 106, 0.25);
}

.home-float-synced {
  top: 42%;
  right: -1.1rem;
  bottom: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem 0.6rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.06);
  box-shadow: 0 12px 28px rgba(30, 50, 140, 0.12);
}

.home-float-synced p {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 42%, #6b728a);
}

.home-float-providers {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.home-float-providers img {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}

@media (max-width: 979px) {
  .home-float-confirm {
    right: 0.25rem;
    top: -0.25rem;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .home-float-upcoming {
    left: 0.15rem;
    bottom: 4.5rem;
    transform: scale(0.92);
    transform-origin: bottom left;
  }

  .home-float-synced {
    top: 40%;
    right: -0.65rem;
    bottom: auto;
    transform: scale(0.92);
    transform-origin: center right;
  }
}

/* —— Home feature strip —— */
.home-features {
  background: #ffffff;
  padding: 2.35rem 1rem;
}

.home-features-inner {
  display: grid;
  gap: 1.25rem 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-features-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .home-features {
    padding: 2.5rem 1rem;
  }

  .home-features-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: center;
  }
}

.home-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.home-feature-icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 0.95rem;
  flex-shrink: 0;
}

.home-feature-icon img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

.home-feature-icon--blue {
  background: rgba(37, 64, 217, 0.1);
}

.home-feature-icon--green {
  background: rgba(125, 231, 166, 0.22);
}

.home-feature-icon--purple {
  background: rgba(75, 63, 214, 0.1);
}

.home-feature-icon--orange {
  background: rgba(240, 169, 58, 0.16);
}

.home-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.home-feature h2 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #101528;
}

.home-feature p {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
  line-height: 1.35;
}

/* —— Home toolkit / “Everything you need” —— */
.home-toolkit {
  background: #f7f8fc;
  padding: 3.5rem 1rem 4rem;
}

.home-toolkit-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.home-toolkit-head {
  max-width: 40rem;
}

.home-toolkit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(30, 69, 229, 0.08);
  color: var(--accent-blue);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.home-toolkit-badge img {
  display: block;
  flex-shrink: 0;
}

.home-toolkit-head h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-toolkit-accent {
  color: var(--accent-blue);
}

.home-toolkit-period,
.home-compare-period,
.home-availability-period,
.home-steps-period,
.home-client-period,
.home-integrations-period,
.home-usecases-period,
.home-own-name-period,
.home-hours-period,
.site-footer-cta-period,
.home-pricing-period {
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  margin-left: 0.08em;
  border-radius: 50%;
  background: #3ecf6a;
  vertical-align: baseline;
}

.home-heading-period--green {
  background: #3ecf6a;
}

.home-heading-period--blue {
  background: var(--accent-blue);
}

.home-toolkit-lede {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 50%, #6b728a);
}

.home-toolkit-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .home-toolkit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .home-toolkit {
    padding: 4.25rem 1rem 4.75rem;
  }

  .home-toolkit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.home-toolkit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.05);
  box-shadow:
    0 1px 2px rgba(20, 40, 120, 0.03),
    0 14px 32px rgba(30, 50, 120, 0.06);
}

@media (min-width: 1100px) {
  .home-toolkit-card {
    min-height: 24.5rem;
  }
}

.home-toolkit-corner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  background: #ffffff;
  border: 0;
  padding: 0;
  box-shadow:
    0 1px 2px rgba(20, 40, 120, 0.04),
    0 6px 14px rgba(30, 50, 120, 0.1);
}

.home-toolkit-corner img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

.home-toolkit-corner--blue {
  color: #1e45e5;
}

.home-toolkit-corner--green {
  color: #22c55e;
}

.home-toolkit-corner--green img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(543%)
    hue-rotate(85deg) brightness(96%) contrast(92%);
}

.home-toolkit-corner--purple {
  color: #7c3aed;
}

.home-toolkit-corner--orange {
  color: #22c55e;
}

.home-toolkit-corner--orange img {
  filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(543%)
    hue-rotate(85deg) brightness(96%) contrast(92%);
}

.home-toolkit-art {
  display: grid;
  place-items: center;
  height: 10.5rem;
  margin: 0.35rem 0 1rem;
  overflow: hidden;
  isolation: isolate;
}

.home-toolkit-art img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

/* Slightly tighter art on all but Calendar integrations (3rd card) */
.home-toolkit-card:nth-child(1) .home-toolkit-art img,
.home-toolkit-card:nth-child(4) .home-toolkit-art img {
  width: 90%;
  height: 90%;
}

.home-toolkit-card:nth-child(2) .home-toolkit-art img {
  width: 96%;
  height: 96%;
}

.home-toolkit-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background: #ffffff;
}

.home-toolkit-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0a0f2d;
}

.home-toolkit-rule {
  display: block;
  width: 2.35rem;
  height: 3px;
  margin-top: 0.7rem;
  border-radius: 999px;
}

.home-toolkit-rule--blue {
  background: #1e45e5;
}

.home-toolkit-rule--green {
  background: #22c55e;
}

.home-toolkit-rule--purple {
  background: #7c3aed;
}

.home-toolkit-rule--orange {
  background: #f59e0b;
}

.home-toolkit-card p {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

/* Mobile: icon in-flow + larger; art can't bleed over copy */
@media (max-width: 699px) {
  .home-toolkit-card {
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .home-toolkit-corner {
    position: static;
    width: 3.35rem;
    height: 3.35rem;
    margin: 0 0 0.85rem;
    border-radius: 1rem;
    box-shadow:
      0 1px 2px rgba(20, 40, 120, 0.05),
      0 8px 18px rgba(30, 50, 120, 0.12);
  }

  .home-toolkit-corner img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .home-toolkit-art {
    height: 9.75rem;
    margin: 0 0 1.1rem;
  }

  .home-toolkit-card:nth-child(1) .home-toolkit-art img,
  .home-toolkit-card:nth-child(2) .home-toolkit-art img,
  .home-toolkit-card:nth-child(3) .home-toolkit-art img,
  .home-toolkit-card:nth-child(4) .home-toolkit-art img {
    width: 100%;
    height: 100%;
  }

  .home-toolkit-copy {
    padding-top: 0.15rem;
  }
}

/* —— Before / With Freeslot compare —— */
.home-compare {
  background: #ffffff;
  padding: 3.5rem 1rem 4.25rem;
}

.home-compare-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.home-compare-head {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .home-compare {
    padding: 4.25rem 1rem 5rem;
  }

  .home-compare-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}

/* Match the cards grid so deco centers over the With Freeslot column */
@media (min-width: 980px) {
  .home-compare-head {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    column-gap: 1.5rem;
  }
}

.home-compare-copy h2 {
  margin: 0;
  max-width: 22rem;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-compare-copy p {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 50%, #6b728a);
}

.home-compare-deco {
  display: none;
  width: 26rem;
  height: auto;
  margin-top: 0.35rem;
  flex-shrink: 0;
  line-height: 0;
}

@media (min-width: 900px) {
  .home-compare-deco {
    display: block;
  }
}

@media (min-width: 980px) {
  .home-compare-deco {
    justify-self: center;
  }
}

.home-compare-deco-art {
  display: block;
  width: 100%;
  height: auto;
}

.home-compare-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 980px) {
  .home-compare-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.5rem;
    align-items: stretch;
  }
}

.home-compare-before,
.home-compare-after {
  border-radius: 1.5rem;
  padding: 1.4rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
}

.home-compare-before {
  background: #f7f8fc;
  border: 1px solid rgba(27, 59, 219, 0.06);
  box-shadow: 0 12px 28px rgba(30, 50, 120, 0.05);
  height: 100%;
}

.home-compare-after {
  background: #00014a;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 1, 74, 0.35);
}

.home-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-compare-label--before {
  color: #e25555;
}

.home-compare-label--after {
  color: #74e176;
}

.home-compare-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #e25555;
  flex-shrink: 0;
}

.home-compare-x svg {
  display: block;
}

.home-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #74e176;
  flex-shrink: 0;
}

.home-compare-check svg {
  display: block;
}

.home-compare-before h3,
.home-compare-after h3 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.15;
}

.home-compare-before h3 {
  color: #0a0f2d;
}

.home-compare-after h3 {
  color: #ffffff;
}

.home-chat {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.8rem 0.85rem;
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.05);
}

.home-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
}

.home-chat-row--right {
  justify-content: flex-end;
  text-align: right;
}

.home-chat-avatar {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(27, 59, 219, 0.06);
}

.home-chat-bubble {
  margin: 0;
  max-width: 15.5rem;
  padding: 0.48rem 0.7rem;
  border-radius: 0.9rem;
  background: #f1f3f8;
  color: #1a2140;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 550;
}

.home-chat-bubble--me {
  background: #e7ecff;
  color: #13206b;
}

.home-chat-bubble--muted {
  background: transparent;
  color: color-mix(in srgb, var(--foreground) 45%, #6b728a);
  font-style: italic;
  font-weight: 550;
  padding-left: 0;
  padding-right: 0;
}

.home-chat-time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 550;
  color: color-mix(in srgb, var(--foreground) 42%, #6b728a);
}

.home-compare-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 1rem;
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(226, 85, 85, 0.1);
}

.home-compare-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 0.8rem;
  color: #b42323;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.3;
}

.home-compare-pill + .home-compare-pill {
  border-left: 1px solid rgba(226, 85, 85, 0.22);
}

.home-compare-pill img {
  flex-shrink: 0;
}

.home-compare-after-body {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.65rem;
  flex: 1;
  min-height: 0;
  align-items: start;
}

@media (min-width: 720px) {
  .home-compare-after-body {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.15rem 1.25rem;
  }
}

.home-compare-steps {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.5rem;
  position: relative;
  align-content: start;
}

.home-compare-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 0.85rem;
  align-items: start;
}

.home-compare-step-icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  /* Opaque so the connector can't show through the circle fill */
  background: color-mix(in srgb, #74e176 14%, #00014a);
  border: 1.5px solid rgba(116, 225, 118, 0.55);
  box-sizing: border-box;
  flex-shrink: 0;
}

/*
  Connector from outer bottom of this circle to outer top of the next.
  Text rows are taller than the icon, so the segment must span
  (rest of the li) + (grid gap), not just the gap.
*/
.home-compare-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.5rem; /* center of 3rem icon column */
  /* Icon is border-box 3rem; start exactly at outer bottom edge of the stroke */
  top: 3rem;
  bottom: -1.5rem; /* pull through grid gap to next li / next icon top */
  width: 0;
  border-left: 1.5px dashed rgba(116, 225, 118, 0.5);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.home-compare-step-icon img,
.home-compare-step-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  display: block;
  object-fit: contain;
}

/* Optical nudges — SVG paths aren't perfectly centered in their viewBoxes */
.home-compare-step-icon img[src*="calendar"] {
  transform: translate(-50%, calc(-50% + 1px));
}

.home-compare-step-icon img[src*="user"] {
  transform: translate(-50%, calc(-50% - 1px));
}

.home-compare-step-icon--done {
  background: #74e176;
  border-color: #74e176;
}

.home-compare-step-icon--done svg {
  width: 1.2rem;
  height: 1.2rem;
}

.home-compare-steps strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #ffffff;
}

.home-compare-steps span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
}

.home-compare-widget {
  position: relative;
  width: 100%;
  margin-bottom: 1.25rem;
}

.home-compare-window {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.home-compare-window-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.home-compare-window-chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #c8ceda;
}

.home-compare-window-media {
  background: #ffffff;
  line-height: 0;
}

.home-compare-window-media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-compare-confirmed {
  position: absolute;
  right: -0.15rem;
  bottom: -1.45rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.95rem;
  background: #edfdf2;
  border: 1px solid rgba(116, 225, 118, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.home-compare-confirmed-icon {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #74e176;
  flex-shrink: 0;
}

.home-compare-confirmed-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  margin: 0;
  transform: translate(-50%, -50%);
  display: block;
}

.home-compare-confirmed strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  color: #15803d;
  line-height: 1.2;
}

.home-compare-confirmed span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.74rem;
  font-weight: 550;
  color: #3f6b52;
  line-height: 1.2;
}

.home-compare-linkbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  width: 100%;
  box-sizing: border-box;
}

.home-compare-link-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #74e176;
  box-shadow: 0 0 0 3px rgba(116, 225, 118, 0.18);
  flex-shrink: 0;
}

.home-compare-linkbar > span:nth-child(2) {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-compare-linkbar img {
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@keyframes home-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-copy,
  .home-hero-visual,
  .home-hero-arrow,
  .home-hero-frame,
  .home-float {
    animation: none !important;
  }
}

/* —— Availability section —— */
.home-availability {
  padding: 3.5rem 1rem 4.5rem;
  background: #f3f5fb;
}

.home-availability-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 980px) {
  .home-availability {
    padding: 4.5rem 1rem 5.5rem;
  }

  .home-availability-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.75rem 3rem;
  }
}

.home-availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.16);
  background: rgba(232, 238, 255, 0.9);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-availability-badge img {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.home-availability-copy h2 {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-availability-line {
  display: block;
  white-space: nowrap;
}

.home-availability-lede {
  margin: 1rem 0 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.home-availability-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.home-availability-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.home-availability-point-icon {
  position: relative;
  display: block;
  width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.05rem;
  border-radius: 999px;
  background: rgba(116, 225, 118, 0.14);
  border: 1px solid rgba(62, 207, 106, 0.35);
  box-sizing: border-box;
  flex-shrink: 0;
  color: #3ecf6a;
}

.home-availability-point-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  transform: translate(-50%, -50%);
  display: block;
  overflow: visible;
  color: #3ecf6a;
  stroke: #3ecf6a;
}

.home-availability-points strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0a0f2d;
}

.home-availability-points li > div > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-availability-panel {
  min-width: 0;
}

.home-availability-card {
  background: #ffffff;
  border-radius: 1.35rem;
  border: 1px solid rgba(27, 59, 219, 0.06);
  box-shadow:
    0 18px 48px rgba(30, 50, 120, 0.08),
    0 2px 6px rgba(30, 50, 120, 0.04);
  overflow: hidden;
}

.home-availability-card-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.25rem;
}

.home-availability-card-head::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  border-bottom: 1px solid rgba(27, 59, 219, 0.08);
}

.home-availability-card-head strong {
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0a0f2d;
}

.home-availability-tz {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--foreground) 55%, #6b728a);
}

.home-availability-tz img {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.home-availability-card-body {
  padding: 0.85rem 1rem 0.35rem;
  background: #ffffff;
}

.home-availability-schedule {
  display: block;
  width: 100%;
  height: auto;
}

.home-availability-meta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fbfcff;
  padding: 0.35rem 0.5rem 0.45rem;
}

.home-availability-meta::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 0;
  border-top: 1px solid rgba(27, 59, 219, 0.08);
}

@media (min-width: 720px) {
  .home-availability-meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-availability-meta-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.25rem 0.95rem 1.35rem;
}

@media (min-width: 720px) {
  .home-availability-meta-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.15rem;
    bottom: 1.15rem;
    right: 0;
    border-right: 1px solid rgba(27, 59, 219, 0.08);
  }
}

@media (max-width: 719px) {
  .home-availability-meta-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 1.15rem;
    bottom: 1.15rem;
    right: 0;
    border-right: 1px solid rgba(27, 59, 219, 0.08);
  }

  .home-availability-meta-item:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0;
    border-bottom: 1px solid rgba(27, 59, 219, 0.08);
  }
}

.home-availability-meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  flex-shrink: 0;
}

.home-availability-meta-icon img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.home-availability-meta-icon--blue {
  background: #e8eeff;
}

.home-availability-meta-icon--purple {
  background: #eee8ff;
}

.home-availability-meta-icon--purple img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(62%) saturate(1800%)
    hue-rotate(230deg) brightness(95%) contrast(92%);
}

.home-availability-meta-icon--green {
  background: #e8f9ef;
}

.home-availability-meta-icon--orange {
  background: #fff1e8;
}

.home-availability-meta-icon--orange img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(78%) saturate(1200%)
    hue-rotate(346deg) brightness(101%) contrast(96%);
}

.home-availability-meta-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--foreground) 42%, #6b728a);
}

.home-availability-meta-item strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0a0f2d;
  line-height: 1.25;
}

/* —— Live in three steps —— */
.home-steps {
  padding: 0 1rem 4.5rem;
  background: #f3f5fb;
  border-top: 2px solid #ffffff;
}

.home-steps-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: 3.25rem;
}

@media (min-width: 980px) {
  .home-steps {
    padding: 0 1rem 5.5rem;
  }

  .home-steps-inner {
    padding-top: 4rem;
  }
}

.home-steps-head {
  display: grid;
  gap: 1rem;
}

.home-steps-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.14);
  background: rgba(232, 238, 255, 0.95);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-self: start;
}

.home-steps-badge img {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.home-steps-title-row {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 860px) {
  .home-steps-title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem 2rem;
    align-items: center;
  }
}

.home-steps-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-steps-lede {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.home-steps-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #1b3bdb;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, transform 0.15s ease;
}

.home-steps-cta:hover {
  color: #142fad;
}

.home-steps-cta:hover span {
  transform: translateX(2px);
}

.home-steps-cta span {
  display: inline-block;
  transition: transform 0.15s ease;
}

.home-steps-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .home-steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.1rem;
  }
}

.home-steps-card {
  position: relative;
  display: block;
  min-height: 19rem;
  padding: 0;
  border-radius: 1.35rem;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

@media (max-width: 899px) {
  .home-steps-card {
    min-height: 17rem;
  }
}

@media (max-width: 560px) {
  .home-steps-card {
    min-height: 20.5rem;
  }
}

.home-steps-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 11.75rem;
  min-width: 0;
  padding: 1.45rem 0.75rem 1.1rem 1.45rem;
}

@media (max-width: 560px) {
  .home-steps-card-copy {
    max-width: 13rem;
    padding: 1.35rem 1.25rem 1rem;
  }
}

.home-steps-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  flex-shrink: 0;
}

.home-steps-num--green {
  background: #3ecf6a;
}

.home-steps-num--blue {
  background: #1b3bdb;
}

.home-steps-num--purple {
  background: #6b5ce7;
}

.home-steps-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0a0f2d;
  text-align: left;
}

.home-steps-card-copy p {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
  text-align: left;
}

/* Full-bleed art — text sits on top */
.home-steps-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.home-steps-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: right center;
  transform: none;
}

.home-steps-card--share {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fbfcff 40%,
    #f3f7ff 75%,
    #edf3ff 100%
  );
}

.home-steps-card--create .home-steps-media img,
.home-steps-card--share .home-steps-media img {
  object-position: 100% center;
}

.home-steps-card--share .home-steps-media img {
  object-position: 100% center;
  transform: translateX(1.5%);
}

.home-steps-card--booked .home-steps-media img {
  object-position: 88% center;
}

.home-steps-card--share .home-steps-media img {
  position: relative;
  z-index: 1;
}

@media (max-width: 560px) {
  .home-steps-media img {
    object-position: right center;
  }

  .home-steps-card--create .home-steps-media img {
    object-position: 100% center;
    transform: translateX(1%);
    width: 104%;
  }

  .home-steps-card--share .home-steps-media img {
    object-position: 100% center;
    transform: translateX(1.5%);
    width: 105%;
  }

  .home-steps-card--booked .home-steps-media img {
    object-position: 94% center;
    transform: translateX(1%);
    width: 103%;
  }
}

.home-steps-benefits {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-steps-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .home-steps-benefits {
    margin-top: 2.85rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
  }
}

.home-steps-benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.home-steps-benefits li:first-child {
  padding-left: 0;
}

@media (min-width: 980px) {
  .home-steps-benefits li:first-child {
    padding-left: 1.75rem;
  }
}

.home-steps-benefit-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  flex-shrink: 0;
}

.home-steps-benefit-icon img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.home-steps-benefit-icon--blue {
  background: rgba(37, 64, 217, 0.1);
}

.home-steps-benefit-icon--green {
  background: rgba(125, 231, 166, 0.22);
}

.home-steps-benefit-icon--purple {
  background: rgba(75, 63, 214, 0.1);
}

.home-steps-benefit-icon--purple img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(67%) saturate(1200%)
    hue-rotate(226deg) brightness(95%) contrast(92%);
}

.home-steps-benefit-icon--orange {
  background: rgba(240, 169, 58, 0.16);
}

.home-steps-benefits strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0a0f2d;
  line-height: 1.3;
}

.home-steps-benefits li > div > span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.84rem;
  line-height: 1.4;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

/* —— What your clients see —— */
.home-client {
  position: relative;
  padding: 4rem 1rem 5rem;
  background: #ffffff;
  overflow: hidden;
}

.home-client-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.home-client-deco::before {
  content: "";
  position: absolute;
  top: -4%;
  right: -2%;
  width: min(42rem, 55vw);
  height: min(28rem, 45vw);
  background-image: radial-gradient(
    circle,
    rgba(27, 59, 219, 0.07) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 18%, transparent 72%);
}

/* D-shaped washes behind the browser mockup */
.home-client-blob-stack {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 0;
  width: min(80rem, calc(100% - 2rem));
  height: min(36rem, 58vw);
  transform: translateX(-50%);
  pointer-events: none;
}

/* Horizontal D — flat bottom, dome up; half off-screen left */
.home-client-blob {
  position: absolute;
  pointer-events: none;
  /* Opaque wash so overlapping blobs don't darken */
  background: #f4f8ff;
}

.home-client-blob--horizontal {
  left: -8rem;
  bottom: 0;
  width: min(52rem, 92%);
  height: min(32rem, 52vw);
  border-radius: min(32rem, 52vw) min(32rem, 52vw) 0 0;
}

/* Vertical D — flat left, curve right; beside the horizontal D */
.home-client-blob--vertical {
  left: -10rem;
  bottom: 0;
  width: min(16rem, 28vw);
  height: min(34rem, 56vw);
  border-radius: 0 min(16rem, 28vw) min(16rem, 28vw) 0 /
    0 min(16rem, 28vw) min(16rem, 28vw) 0;
}

@media (min-width: 980px) {
  .home-client-blob-stack {
    width: min(80rem, calc(100% - 2rem));
    height: min(38rem, 32vw);
  }

  .home-client-blob--horizontal {
    left: -6rem;
    width: 48rem;
    height: 34rem;
    border-radius: 34rem 34rem 0 0;
  }

  .home-client-blob--vertical {
    left: -8rem;
    bottom: 0;
    width: 18rem;
    height: 34rem;
    border-radius: 0 18rem 18rem 0 / 0 18rem 18rem 0;
  }
}

.home-client-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.home-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.14);
  background: rgba(232, 238, 255, 0.95);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-client-badge img {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.home-client-head h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-client-line {
  display: inline-block;
  white-space: nowrap;
}

.home-client-lede {
  margin: 0.85rem 0 0;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.home-client-body {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (min-width: 980px) {
  .home-client {
    padding: 4.5rem 1rem 5.5rem;
  }

  .home-client-body {
    grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    gap: 2rem 2.25rem;
    margin-top: 2.75rem;
    align-items: center;
  }
}

.home-client-preview {
  position: relative;
  width: 100%;
  min-width: 0;
}

.home-client-window {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.08);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 44px rgba(15, 23, 42, 0.08);
}

.home-client-window-chrome {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.home-client-window-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding-left: 0.1rem;
}

.home-client-window-dots span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
}

.home-client-window-dots span:nth-child(1) {
  background: #ff5f57;
}

.home-client-window-dots span:nth-child(2) {
  background: #febc2e;
}

.home-client-window-dots span:nth-child(3) {
  background: #28c840;
}

.home-client-window-url {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
  gap: 0.45rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  border: none;
  box-shadow: inset 0 0 0 1px rgba(27, 59, 219, 0.05);
  color: color-mix(in srgb, var(--foreground) 58%, #6b728a);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.home-client-window-url img {
  width: 0.78rem;
  height: 0.78rem;
  flex-shrink: 0;
  opacity: 1;
}

.home-client-window-url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-client-window-media {
  background: #ffffff;
  line-height: 0;
}

.home-client-window-media img {
  display: block;
  width: 100%;
  height: auto;
}

.home-client-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.home-client-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.05rem;
  align-items: center;
  min-height: 8.5rem;
  padding: 1.8rem 1.35rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.home-client-point-icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.home-client-point-icon img {
  width: 2rem;
  height: 2rem;
  display: block;
}

.home-client-point-icon--blue {
  background: rgba(37, 64, 217, 0.1);
}

.home-client-point-icon--green {
  background: rgba(125, 231, 166, 0.22);
}

.home-client-point-icon--green img {
  filter: brightness(0) saturate(100%) invert(72%) sepia(42%) saturate(520%)
    hue-rotate(73deg) brightness(98%) contrast(92%);
}

.home-client-point-icon--purple {
  background: rgba(75, 63, 214, 0.1);
}

.home-client-point-icon--purple img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(67%) saturate(1200%)
    hue-rotate(226deg) brightness(95%) contrast(92%);
}

.home-client-point-icon--purple img[src*="calendar-dots"] {
  filter: none;
}

.home-client-points strong {
  display: block;
  margin-top: 0;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: #0a0f2d;
}

.home-client-points li > div > span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

/* —— Integrations —— */
.home-integrations {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem 3.5rem;
  background-color: #ffffff;
  overflow: visible;
}

.home-integrations-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 980px) {
  .home-integrations {
    padding: 4.5rem 1rem 3rem;
  }

  .home-integrations-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem 2rem;
    align-items: stretch;
  }

  .home-integrations-graphic {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    justify-self: start;
    width: 100%;
    min-height: 100%;
    margin-top: 0;
    margin-left: -5.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .home-integrations-stack {
    max-width: 44rem;
    margin-inline: 0;
    transform: translateX(-1.25rem) scale(1.08);
    transform-origin: left center;
  }

  .home-integrations-cards {
    gap: 1.5rem;
  }

  .home-integrations-card {
    max-width: 11.5rem;
    padding: 1.25rem 0.85rem 1.1rem;
  }

  .home-integrations-card img {
    width: 4.5rem;
    height: 4.5rem;
  }

  .home-integrations-card > span:last-child {
    font-size: 0.88rem;
  }

  .home-integrations-card-check {
    width: 1.55rem;
    height: 1.55rem;
  }

  .home-integrations-bridge {
    height: 12rem;
  }

  .home-integrations-hub {
    width: 5.25rem;
    height: 5.25rem;
    padding: 0.6rem;
  }

  .home-integrations-hub::before {
    inset: -1rem;
  }

  .home-integrations-hub img {
    width: 2.1rem;
    height: 2.1rem;
  }

  .home-integrations-status {
    margin-top: 0.55rem;
    padding: 0.8rem 1.3rem;
    font-size: 0.98rem;
  }

  .home-integrations-status-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .home-integrations-blob {
    top: 52%;
    left: 50%;
    width: min(42rem, 100%);
    height: auto;
    aspect-ratio: 1;
    transform: translate(-50%, -42%);
  }

  .home-integrations-lines path {
    stroke-width: 0.95;
    stroke-dasharray: 1.9 2.35;
  }
}

.home-integrations-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.14);
  background: rgba(232, 238, 255, 0.95);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-integrations-badge img {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.home-integrations-copy h2 {
  margin: 1rem 0 0;
  max-width: 24rem;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-integrations-lede {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.home-integrations-points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.home-integrations-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}

.home-integrations-point-icon {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.home-integrations-point-icon img {
  width: 1.75rem;
  height: 1.75rem;
  display: block;
}

.home-integrations-point-icon--blue {
  background: rgba(37, 64, 217, 0.1);
}

.home-integrations-point-icon--green {
  background: rgba(125, 231, 166, 0.22);
}

.home-integrations-point-icon--purple {
  background: rgba(75, 63, 214, 0.1);
}

.home-integrations-point-icon--purple img {
  filter: none;
}

.home-integrations-points strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0a0f2d;
}

.home-integrations-points li > div > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-integrations-graphic {
  position: relative;
  min-height: 28rem;
  overflow: visible;
  isolation: isolate;
}

.home-integrations-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}

.home-integrations-cards {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(0.9rem, 3.2vw, 1.5rem);
  width: 100%;
}

.home-integrations-bridge {
  position: relative;
  width: 100%;
  height: 10rem;
  margin-top: 0.2rem;
}

.home-integrations-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-integrations-deco::before {
  content: "";
  position: absolute;
  top: -6%;
  right: -4%;
  width: min(28rem, 70%);
  height: min(18rem, 55%);
  background-image: radial-gradient(
    circle,
    rgba(27, 59, 219, 0.07) 1px,
    transparent 1px
  );
  background-size: 14px 14px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at 70% 20%, #000 18%, transparent 72%);
}

.home-integrations-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(36rem, 100%);
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -44%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(158, 196, 255, 0.36) 0%,
    rgba(186, 212, 255, 0.24) 42%,
    rgba(214, 228, 255, 0.14) 100%
  );
  border: 0;
  box-shadow: none;
  pointer-events: none;
}

.home-integrations-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.home-integrations-lines path {
  stroke-width: 0.9;
  stroke-dasharray: 1.85 2.25;
}

.home-integrations-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 9.75rem;
  padding: 1.1rem 0.7rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(27, 59, 219, 0.08);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(10, 15, 45, 0.04),
    0 16px 40px rgba(10, 15, 45, 0.08);
  text-align: center;
}

.home-integrations-card img {
  width: 3.45rem;
  height: 3.45rem;
  object-fit: contain;
  display: block;
}

.home-integrations-card > span:last-child {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #0a0f2d;
}

.home-integrations-card-check {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #2540d9;
  box-shadow: 0 2px 6px rgba(37, 64, 217, 0.35);
}

.home-integrations-hub {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 4.65rem;
  height: 4.65rem;
  padding: 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: radial-gradient(
    circle at 50% 32%,
    rgba(244, 248, 255, 0.98) 0%,
    rgba(210, 228, 255, 0.72) 48%,
    rgba(176, 204, 255, 0.42) 100%
  );
  box-shadow:
    0 0 0 1px rgba(186, 214, 255, 0.35) inset,
    0 18px 44px rgba(37, 64, 217, 0.14),
    0 6px 16px rgba(10, 15, 45, 0.06);
}

.home-integrations-hub::before {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border-radius: 999px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(186, 214, 255, 0.34) 0%,
    rgba(210, 228, 255, 0.16) 42%,
    rgba(237, 244, 255, 0.06) 68%,
    transparent 100%
  );
  box-shadow: 0 22px 52px rgba(37, 64, 217, 0.1);
  z-index: -1;
}

.home-integrations-hub-inner {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 2px 10px rgba(37, 64, 217, 0.1),
    0 1px 2px rgba(10, 15, 45, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(186, 214, 255, 0.12);
}

.home-integrations-hub img {
  position: relative;
  z-index: 1;
  width: 1.85rem;
  height: 1.85rem;
  display: block;
}

.home-integrations-status {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(62, 207, 106, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(10, 15, 45, 0.06);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: color-mix(in srgb, var(--foreground) 36%, #8b93a7);
}

.home-integrations-status-icon {
  display: grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 999px;
  background: #3ecf6a;
  flex-shrink: 0;
}

@media (max-width: 979px) {
  .home-integrations-stack {
    max-width: 30rem;
    margin-top: 0;
  }

  .home-integrations-card {
    padding: 0.9rem 0.55rem 0.82rem;
  }

  .home-integrations-card img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .home-integrations-card > span:last-child {
    font-size: 0.68rem;
  }

  .home-integrations-bridge {
    height: 8.75rem;
  }
}

/* —— Use cases / Built for you —— */
.home-usecases {
  padding: 3.25rem 1rem 3.75rem;
  overflow-x: clip;
  background:
    radial-gradient(
      ellipse 80% 60% at 0% 100%,
      rgba(196, 214, 255, 0.22) 0%,
      transparent 58%
    ),
    #f5f8ff;
}

.home-usecases-inner {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.home-usecases-head {
  display: grid;
  gap: 1.15rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.home-usecases-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.12);
  background: #ffffff;
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.home-usecases-badge img {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.home-usecases-copy {
  min-width: 0;
}

.home-usecases-copy h2 {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0a0f2d;
}

.home-usecases-lede {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-usecases-callout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  margin: 0.15rem 0 0;
  padding: 1.1rem 1.05rem 1.15rem;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid rgba(27, 59, 219, 0.05);
  box-shadow:
    0 1px 2px rgba(20, 40, 120, 0.03),
    0 14px 32px rgba(30, 50, 120, 0.07);
  overflow: visible;
  box-sizing: border-box;
}

.home-usecases-callout-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(27, 59, 219, 0.1);
}

.home-usecases-callout-icon img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

.home-usecases-callout p {
  margin: 0;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.home-usecases-callout strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0a0f2d;
}

.home-usecases-callout-arrow {
  display: none;
  position: absolute;
  /* Anchor path start (112,18) in the SVG to the card’s left edge, vertical center */
  left: calc(-6.5rem * 112 / 120);
  top: calc(50% - 6.5rem * 18 / 120);
  width: 6.5rem;
  height: auto;
  pointer-events: none;
  transform: rotate(-8deg);
  transform-origin: calc(112 / 120 * 100%) calc(18 / 90 * 100%);
}

.home-usecases-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

.home-usecases-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: 1.35rem 1.3rem 1.3rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.home-usecases-card:nth-child(odd) {
  border-color: #dfe6ff;
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.04),
    0 10px 24px rgba(27, 59, 219, 0.06);
}

.home-usecases-card:nth-child(even) {
  border-color: #d7efdc;
  box-shadow:
    0 1px 2px rgba(22, 163, 74, 0.04),
    0 10px 24px rgba(22, 163, 74, 0.06);
}

.home-usecases-card:hover {
  transform: translateY(-3px);
}

.home-usecases-card:nth-child(odd):hover {
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.05),
    0 14px 32px rgba(27, 59, 219, 0.1);
}

.home-usecases-card:nth-child(even):hover {
  box-shadow:
    0 1px 2px rgba(22, 163, 74, 0.05),
    0 14px 32px rgba(22, 163, 74, 0.1);
}

.home-usecases-card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.home-usecases-card-icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
}

.home-usecases-card:nth-child(odd) .home-usecases-card-icon {
  background: #eef1ff;
}

.home-usecases-card:nth-child(even) .home-usecases-card-icon {
  background: #edf8ee;
}

.home-usecases-card-icon img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}

.home-usecases-card h3 {
  margin: 0;
  min-width: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0f172a;
}

.home-usecases-card > p {
  margin: 0.65rem 0 0;
  padding-right: 2.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  color: #6b7280;
}

.home-usecases-card-go {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.home-usecases-card-go img {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
}

.home-usecases-card:hover .home-usecases-card-go {
  transform: translateX(2px);
  border-color: #d1d5db;
  background: #f9fafb;
}

@media (min-width: 640px) {
  .home-usecases {
    padding: 4rem 1rem 4.5rem;
  }

  .home-usecases-head {
    margin-bottom: 2.25rem;
  }

  .home-usecases-callout {
    max-width: 26rem;
    margin-left: 0;
    padding: 1.25rem 1.15rem 1.35rem;
  }

  .home-usecases-callout-icon {
    width: 3.25rem;
    height: 3.25rem;
  }

  .home-usecases-callout-icon img {
    width: 1.55rem;
    height: 1.55rem;
  }

  .home-usecases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .home-usecases-card {
    padding: 1.45rem 1.35rem 1.35rem;
  }

  .home-usecases-card-icon {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 0.9rem;
  }

  .home-usecases-card-icon img {
    width: 1.65rem;
    height: 1.65rem;
  }

  .home-usecases-card h3 {
    font-size: 1.02rem;
  }

  .home-usecases-card > p {
    font-size: 0.9rem;
  }
}

@media (min-width: 900px) {
  .home-usecases {
    padding: 5rem 1rem 5.5rem;
  }

  .home-usecases-head {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
    grid-template-rows: auto auto;
    gap: 1rem 3rem;
    margin-bottom: 2.75rem;
  }

  .home-usecases-badge {
    grid-column: 1;
    grid-row: 1;
  }

  .home-usecases-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .home-usecases-copy h2 {
    max-width: 18ch;
  }

  .home-usecases-callout {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    max-width: 22rem;
    margin-left: auto;
    margin-top: 0;
    min-height: 5.75rem;
    padding: 1.35rem 1.25rem 1.45rem;
  }

  .home-usecases-callout-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .home-usecases-callout-icon img {
    width: 1.7rem;
    height: 1.7rem;
  }

  .home-usecases-callout-arrow {
    display: block;
  }
}

@media (min-width: 1100px) {
  .home-usecases-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .home-usecases-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.95rem;
  }

  .home-usecases-card-icon img {
    width: 1.75rem;
    height: 1.75rem;
  }
}

/* —— Book under your own name —— */
.home-own-name {
  padding: 3.5rem 1rem 4rem;
  overflow-x: clip;
  background:
    radial-gradient(
      ellipse 70% 55% at 100% 0%,
      rgba(196, 214, 255, 0.28) 0%,
      transparent 62%
    ),
    #f5f8ff;
}

.home-own-name-inner {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.home-own-name-head {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.home-own-name-copy {
  min-width: 0;
}

.home-own-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.12);
  background: rgba(232, 238, 255, 0.95);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.home-own-name-badge img {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
}

.home-own-name-copy h2 {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0a0f2d;
}

.home-own-name-lede {
  margin: 0.95rem 0 0;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-own-name-visual {
  display: grid;
  place-items: center;
  min-width: 0;
}

.home-own-name-visual img {
  display: block;
  width: min(100%, 28rem);
  height: auto;
}

.home-own-name-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.home-own-name-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  height: 100%;
  padding: 1.5rem 1.45rem 1.45rem;
  border-radius: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.055);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 12px 30px rgba(15, 23, 42, 0.055);
}

.home-own-name-card--brand {
  border-color: #dfe6ff;
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.06),
    0 8px 16px rgba(27, 59, 219, 0.07),
    0 20px 40px rgba(27, 59, 219, 0.08);
}

.home-own-name-card--qr {
  border-color: #d7efdc;
  box-shadow:
    0 1px 2px rgba(22, 163, 74, 0.06),
    0 8px 16px rgba(22, 163, 74, 0.07),
    0 20px 40px rgba(22, 163, 74, 0.08);
}

.home-own-name-card-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.home-own-name-card-icon {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 0.7rem;
}

.home-own-name-card-icon img {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
}

.home-own-name-card--brand .home-own-name-card-icon {
  background: #e2e6ff;
}

.home-own-name-card--qr .home-own-name-card-icon {
  background: #e8f6e9;
}

.home-own-name-card h3 {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-own-name-card--brand h3 {
  color: #1b3bdb;
}

.home-own-name-card--qr h3 {
  color: #16a34a;
}

.home-own-name-card-title {
  margin: 1rem 0 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #0f172a;
}

.home-own-name-card-copy {
  margin: 0.7rem 0 0;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.home-own-name-mock {
  margin-top: 1.15rem;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.05rem;
  background: #ffffff;
  border: 1px solid #e7eaf2;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
  box-sizing: border-box;
}

.home-own-name-mock--brand {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.3rem 1.4rem;
  background: #ffffff;
  border-color: #dfe6ff;
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.05),
    0 6px 14px rgba(27, 59, 219, 0.07),
    0 14px 28px rgba(27, 59, 219, 0.06);
}

.home-own-name-mock--qr {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.95rem 1.05rem;
  background: #ffffff;
  border-color: #d7efdc;
  box-shadow:
    0 1px 2px rgba(22, 163, 74, 0.05),
    0 6px 14px rgba(22, 163, 74, 0.07),
    0 14px 28px rgba(22, 163, 74, 0.06);
}

.home-own-name-domain {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.home-own-name-domain-lock {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.home-own-name-domain-lock img {
  display: block;
  width: 1rem;
  height: 1rem;
}

.home-own-name-domain-url {
  min-width: 0;
  flex: 1 1 auto;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0f172a;
}

.home-own-name-verified {
  flex-shrink: 0;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-own-name-divider {
  height: 1px;
  background: #eef0f5;
}

.home-own-name-email {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.home-own-name-email-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 0.55rem;
  background: #eef2ff;
}

.home-own-name-email-icon img {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}

.home-own-name-email-copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.home-own-name-email-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

.home-own-name-email-copy strong {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #0f172a;
}

.home-own-name-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.home-own-name-tags span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #f1f3f9;
  border: 0;
  color: #374151;
  font-size: 0.74rem;
  font-weight: 600;
}

.home-own-name-qr-visual {
  flex-shrink: 0;
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
}

.home-own-name-qr-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-own-name-qr-copy {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.home-own-name-qr-copy strong {
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #0f172a;
  word-break: break-word;
}

.home-own-name-qr-copy > span {
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
  color: #6b7280;
}

.home-own-name-qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.home-own-name-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.home-own-name-btn--primary {
  background: #173beb;
  color: #ffffff;
  border: 1px solid #173beb;
}

.home-own-name-btn--ghost {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #0f172a;
}

@media (min-width: 640px) {
  .home-own-name {
    padding: 4rem 1rem 4.75rem;
  }

  .home-own-name-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .home-own-name-card {
    padding: 1.7rem 1.6rem 1.6rem;
  }

  .home-own-name-card-icon {
    width: 2.85rem;
    height: 2.85rem;
  }

  .home-own-name-card-icon img {
    width: 1.3rem;
    height: 1.3rem;
  }

  .home-own-name-mock {
    margin-top: 1.25rem;
    padding: 1.25rem;
  }

  .home-own-name-mock--brand {
    padding: 1.45rem 1.35rem 1.5rem;
    gap: 1.05rem;
  }

  .home-own-name-mock--qr {
    align-content: center;
  }

  .home-own-name-qr-visual {
    width: 9rem;
    height: 9rem;
  }
}

@media (min-width: 900px) {
  .home-own-name {
    padding: 4.75rem 1rem 5.25rem;
  }

  .home-own-name-head {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.95fr);
    gap: 2rem 3rem;
    margin-bottom: 2.5rem;
  }

  .home-own-name-visual {
    justify-items: end;
  }

  .home-own-name-visual img {
    width: min(100%, 32rem);
  }

  .home-own-name-grid {
    gap: 1.25rem;
  }
}

/* —— Small things / hours saved —— */
.home-hours {
  position: relative;
  padding: 4rem 1rem;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 70% 55% at 85% 8%,
      rgba(35, 55, 140, 0.35) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, #050a1f 0%, #030818 100%);
  color: #ffffff;
}

.home-hours-clock {
  position: absolute;
  top: 2.75rem;
  right: 1.25rem;
  width: min(40vw, 15.5rem);
  pointer-events: none;
  opacity: 0.95;
}

.home-hours-clock img {
  display: block;
  width: 100%;
  height: auto;
}

.home-hours-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.home-hours-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-hours-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #ffffff;
}

.home-hours-head-divider {
  display: none;
}

.home-hours-accent-wrap {
  position: relative;
  display: inline-block;
}

.home-hours-accent {
  color: #4ade80;
}

.home-hours-underline {
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  max-width: 6.75rem;
  height: auto;
  pointer-events: none;
}

.home-hours-lede {
  margin: 0;
  max-width: 24rem;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(209, 213, 219, 0.82);
}

.home-hours-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.home-hours-card,
.home-hours-deco {
  border-radius: 1.15rem;
  background: linear-gradient(
    180deg,
    rgba(16, 26, 62, 0.92) 0%,
    rgba(10, 18, 48, 0.96) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 28px rgba(0, 0, 0, 0.22);
}

.home-hours-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: 1.15rem 1.1rem 1.25rem;
}

.home-hours-card-num {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #4ade80;
  color: #05210f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.home-hours-card-icon {
  display: grid;
  place-items: center;
  min-height: 5.25rem;
  margin: 0.65rem 0 0.85rem;
}

.home-hours-card-icon img {
  display: block;
  width: min(100%, 5.5rem);
  height: auto;
}

.home-hours-card h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: #ffffff;
}

.home-hours-card p {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(170, 186, 225, 0.62);
}

.home-hours-deco {
  display: none;
  min-height: 100%;
  background-image:
    radial-gradient(
      circle,
      rgba(155, 175, 235, 0.34) 1.25px,
      transparent 1.25px
    ),
    linear-gradient(
      180deg,
      rgba(16, 26, 62, 0.92) 0%,
      rgba(10, 18, 48, 0.96) 100%
    );
  background-size: 26px 26px, 100% 100%;
  background-position: center center, 0 0;
  background-repeat: repeat, no-repeat;
}

@media (min-width: 640px) {
  .home-hours {
    padding: 4.5rem 1rem;
  }

  .home-hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .home-hours-card {
    padding: 1.2rem 1.15rem 1.3rem;
  }

  .home-hours-card-icon {
    min-height: 5.75rem;
  }

  .home-hours-card-icon img {
    width: min(100%, 6rem);
  }
}

@media (min-width: 768px) {
  .home-hours-head {
    grid-template-columns: auto 1px auto;
    gap: 0 1.35rem;
    justify-content: start;
    align-items: center;
    margin-bottom: 2.35rem;
  }

  .home-hours-title {
    max-width: 11ch;
    font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  }

  .home-hours-head-divider {
    display: block;
    width: 1px;
    height: 4.75rem;
    background: rgba(255, 255, 255, 0.14);
    justify-self: center;
    align-self: center;
  }

  .home-hours-lede {
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(209, 213, 219, 0.78);
  }
}

@media (min-width: 900px) {
  .home-hours {
    padding: 5.25rem 1rem;
  }

  .home-hours-head {
    gap: 0 1.65rem;
    margin-bottom: 2.5rem;
  }

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

@media (min-width: 900px) {
  .home-hours-clock {
    right: max(2rem, calc((100% - min(100%, 80rem)) / 2 + 0.75rem));
  }
}

@media (min-width: 1200px) {
  .home-hours-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .home-hours-deco {
    display: block;
    grid-column: span 2;
    min-height: 11.5rem;
  }

  .home-hours-clock {
    top: 3rem;
    right: max(2.5rem, calc((100% - min(100%, 80rem)) / 2 + 2rem));
    width: min(26vw, 16.5rem);
  }
}

/* —— Testimonials / In their words —— */
.home-quotes {
  padding: 3.5rem 1rem 4rem;
  background:
    radial-gradient(
      ellipse 70% 55% at 12% 0%,
      rgba(196, 214, 255, 0.22) 0%,
      transparent 58%
    ),
    linear-gradient(180deg, #f8faff 0%, #f3f6fc 100%);
}

.home-quotes-inner {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.home-quotes-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-quotes-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.home-quotes-icon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  border-radius: 0.85rem;
  background: rgba(27, 59, 219, 0.1);
}

.home-quotes-icon img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.home-quotes-title-wrap h2 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0f172a;
}

.home-quotes-period {
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  margin-left: 0.08em;
  border-radius: 50%;
  vertical-align: baseline;
}

.home-quotes-intro {
  margin: 0;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.home-quotes-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.home-quotes-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: 1.45rem 1.35rem 1.3rem;
  border-radius: 1.35rem;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.home-quotes-mark {
  display: block;
  width: 2.15rem;
  height: auto;
  margin-bottom: 0.85rem;
  opacity: 0.42;
}

.home-quotes-card blockquote {
  margin: 0;
  flex: 1 1 auto;
}

.home-quotes-card blockquote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  color: #1e293b;
}

.home-quotes-card blockquote strong {
  font-weight: 750;
  color: #1b3bdb;
}

.home-quotes-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid #eef0f5;
}

.home-quotes-avatar {
  display: block;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  border-radius: 999px;
  object-fit: cover;
}

.home-quotes-author-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.home-quotes-author cite {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.home-quotes-role {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
}

.home-quotes-location {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1b3bdb;
}

.home-quotes-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 550;
  color: #6b7280;
  text-align: center;
}

.home-quotes-note img {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .home-quotes {
    padding: 4rem 1rem 4.5rem;
  }

  .home-quotes-head {
    grid-template-columns: auto 1px auto;
    gap: 0 1.35rem;
    justify-content: start;
    align-items: center;
    margin-bottom: 2.25rem;
  }

  .home-quotes-head::before {
    content: "";
    display: block;
    width: 1px;
    height: 3.25rem;
    background: rgba(15, 23, 42, 0.1);
    grid-column: 2;
    grid-row: 1;
  }

  .home-quotes-title-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .home-quotes-intro {
    grid-column: 3;
    grid-row: 1;
    margin: 0;
    padding-left: 0;
    border-left: 0;
    text-align: left;
    max-width: 19rem;
  }

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

@media (min-width: 900px) {
  .home-quotes {
    padding: 4.75rem 1rem 5rem;
  }

  .home-quotes-head {
    gap: 0 2rem;
    margin-bottom: 2.5rem;
  }

  .home-quotes-card {
    padding: 1.55rem 1.45rem 1.35rem;
  }

  .home-quotes-card blockquote p {
    font-size: 1rem;
  }
}

/* —— Pricing —— */
.home-pricing {
  position: relative;
  padding: 4.25rem 1rem 4.75rem;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 58% 48% at 88% 6%,
      rgba(196, 214, 255, 0.45) 0%,
      transparent 68%
    ),
    linear-gradient(180deg, #f8f9fd 0%, #f1f4fa 48%, #eef2f8 100%);
}

.home-pricing-wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(27, 59, 219, 0.045) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse at 80% 10%, #000 10%, transparent 55%);
}

.home-pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.home-pricing-head {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .home-pricing {
    padding: 5rem 1rem 5.5rem;
  }

  .home-pricing-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

.home-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.14);
  background: rgba(232, 238, 255, 0.95);
  color: #1b3bdb;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.home-pricing-badge img {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}

.home-pricing-copy h2 {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-pricing-line {
  display: block;
}

.home-pricing-line:last-child {
  white-space: nowrap;
}

.home-pricing-accent {
  color: #16a34a;
}

.home-pricing-lede {
  margin: 0.9rem 0 0;
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 50%, #6b728a);
}

.home-pricing-deco {
  display: none;
  justify-self: end;
  width: 18rem;
  margin-top: -0.75rem;
  margin-right: 0.5rem;
}

.home-pricing-deco img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .home-pricing-deco {
    display: block;
  }
}

.home-pricing-toggle-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 3.25rem 0 0;
}

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

.home-pricing-currency {
  position: relative;
  display: inline-flex;
  align-items: center;
  z-index: 5;
}

.home-pricing-currency-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.65rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 59, 219, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: #0a0f2d;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 0 8px 24px rgba(10, 15, 45, 0.05);
  cursor: pointer;
}

.home-pricing-currency-btn:focus-visible {
  outline: 2px solid rgba(37, 64, 217, 0.35);
  outline-offset: 2px;
}

.home-pricing-currency-chevron {
  display: block;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.home-pricing-currency.is-open .home-pricing-currency-chevron {
  transform: rotate(180deg);
}

.home-pricing-currency-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 0.9rem;
  border: 1px solid rgba(27, 59, 219, 0.1);
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(10, 15, 45, 0.04),
    0 16px 36px rgba(10, 15, 45, 0.12);
}

.home-pricing-currency-menu[hidden] {
  display: none;
}

.home-pricing-currency-menu li {
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  color: #0a0f2d;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.home-pricing-currency-menu li:hover,
.home-pricing-currency-menu li:focus {
  background: rgba(37, 64, 217, 0.08);
  outline: none;
}

.home-pricing-currency-menu li[aria-selected="true"] {
  background: rgba(27, 59, 219, 0.1);
  color: var(--accent-blue);
}

.home-pricing-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 59, 219, 0.08);
  box-shadow: 0 8px 24px rgba(10, 15, 45, 0.05);
}

.home-pricing-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 2.35rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.home-pricing-toggle-btn.is-active {
  background: var(--primary);
  color: #ffffff;
}

.home-pricing-save {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(62, 207, 106, 0.14);
  color: #15803d;
  font-size: 0.78rem;
  font-weight: 750;
}

.home-pricing-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.75rem;
  align-items: stretch;
  padding-top: 0.85rem;
}

@media (min-width: 720px) {
  .home-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1100px) {
  .home-pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
}

.home-pricing-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  align-content: stretch;
  min-height: 100%;
  height: 100%;
  padding: 1.65rem 1.5rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e4e8f0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.home-pricing-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 28px rgba(27, 59, 219, 0.12);
}

.home-pricing-card-icon {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 0;
  border-radius: 0.75rem;
  background: rgba(27, 59, 219, 0.08);
}

.home-pricing-card-icon img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.home-pricing-recommended {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(27, 59, 219, 0.22);
}

.home-pricing-recommended img {
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  filter: brightness(0) invert(1);
}

.home-pricing-card--featured {
  padding-top: 2rem;
}

.home-pricing-card-head {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-width: 0;
  margin-bottom: 1rem;
}

.home-pricing-card-head h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--foreground);
}

.home-pricing-card-head p {
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.4;
  color: #7a85a4;
}

.home-pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.4rem;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0 0 1.1rem;
  border-bottom: 1px solid #eef0f5;
}

.home-pricing-price strong {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--primary);
}

.home-pricing-price span {
  font-size: 0.84rem;
  font-weight: 500;
  color: #9ca3af;
}

.home-pricing-card ul {
  list-style: none;
  grid-column: 1 / -1;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  align-self: start;
}

.home-pricing-card li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.45;
  color: #4b5563;
}

.home-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.2l2.8 2.8 6.8-7.2' stroke='%231b3bdb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.home-pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
  min-height: 2.85rem;
  margin-top: auto;
  padding: 0.7rem 1rem;
  border-radius: 0.65rem;
  border: 1.5px solid var(--primary);
  background: #ffffff;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.home-pricing-btn:hover {
  background: #f8f9ff;
  border-color: var(--primary-hover);
  color: var(--primary-hover);
}

.home-pricing-btn--solid {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(27, 59, 219, 0.22);
}

.home-pricing-btn--solid:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(27, 59, 219, 0.28);
}

@media (min-width: 1100px) {
  .home-pricing-card {
    padding: 1.75rem 1.55rem 1.55rem;
  }

  .home-pricing-card--featured {
    padding-top: 2.1rem;
  }

  .home-pricing-price strong {
    font-size: 2.65rem;
  }
}

.home-pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 1.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 550;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
  text-align: center;
}

.home-pricing-note img {
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
}

.home-pricing-compare-note {
  display: block;
  margin-top: 1.15rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.home-pricing-compare-note a {
  color: var(--primary);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-pricing-compare-link {
  margin: 1.5rem 0 0;
  text-align: center;
}

.home-pricing-compare-link a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1b3bdb;
}

.home-pricing-compare-link a:hover {
  color: var(--accent-blue);
}

body.page-pricing {
  background: #fbfcfe;
}

.home-pricing-compare {
  margin-top: 3.25rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(27, 59, 219, 0.08);
}

.home-pricing-compare-head {
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.home-pricing-compare-head h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0a0f2d;
}

.home-pricing-compare-head p {
  margin: 0.45rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 48%, #6b728a);
}

.home-pricing-compare-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 1.15rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.home-pricing-compare-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  table-layout: fixed;
}

.home-pricing-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0.95rem 0.85rem;
  background: #f8f9fc;
  border-bottom: 1px solid #e8ebf2;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5b6478;
  text-align: center;
}

.home-pricing-compare-table thead th:first-child {
  text-align: left;
  width: 38%;
  padding-left: 1.15rem;
}

.home-pricing-compare-table tbody th[scope="row"] {
  padding: 0.85rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  border-bottom: 1px solid #f0f2f7;
  vertical-align: middle;
}

.home-pricing-compare-table td {
  padding: 0.85rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #4b5563;
  text-align: center;
  border-bottom: 1px solid #f0f2f7;
  vertical-align: middle;
}

.home-pricing-compare-table tbody tr:last-child th,
.home-pricing-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.home-pricing-compare-section th {
  padding: 0.85rem 1.15rem;
  background: #f3f6fc;
  border-bottom: 1px solid #e8ebf2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1b3bdb;
  text-align: left;
}

.home-pricing-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--secondary);
  color: transparent;
  font-size: 0;
  line-height: 0;
}

.home-pricing-yes::after {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.2 6.2l2.6 2.6 5-5.4' stroke='%23fff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.home-pricing-no {
  color: #c4c9d4;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}

.home-pricing-soon {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: rgba(27, 59, 219, 0.06);
  color: #5b6478;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .home-pricing-compare {
    margin-top: 3.75rem;
    padding-top: 3.15rem;
  }

  .home-pricing-compare-table thead th,
  .home-pricing-compare-table td {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* —— Footer CTA —— */
.site-chrome-footer {
  margin-top: auto;
  flex-shrink: 0;
}

.site-footer-cta {
  background: var(--accent-blue);
  padding: 4.5rem 1rem 5rem;
  text-align: center;
}

.site-footer-cta-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.site-footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(210, 218, 240, 0.78);
  font-size: 0.84rem;
  font-weight: 550;
  letter-spacing: -0.01em;
}

.site-footer-cta-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(116, 225, 118, 0.18);
}

.site-footer-cta h2 {
  margin: 1.35rem 0 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
}

.site-footer-cta-lede {
  margin: 0.9rem 0 0;
  font-size: 1.08rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(210, 218, 240, 0.68);
}

.site-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.site-footer-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  background: var(--secondary);
  color: #0a0f2d;
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.site-footer-cta-primary:hover {
  background: #86ea88;
}

.site-footer-cta-primary span {
  font-size: 1.05em;
  line-height: 1;
}

.site-footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(236, 240, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.site-footer-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.site-footer-cta-note {
  margin: 1.1rem 0 0;
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(210, 218, 240, 0.48);
}

@media (min-width: 980px) {
  .site-footer-cta {
    padding: 5.5rem 1rem 6rem;
  }
}

/* —— Footer —— */
.site-footer {
  background: #00012a;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.25rem 1rem 1.5rem;
}

.site-footer-top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
}

@media (min-width: 980px) {
  .site-footer-inner {
    padding: 3.75rem 1rem 1.75rem;
  }

  .site-footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
    gap: 3rem 2rem;
    align-items: start;
  }
}

.site-footer-brand {
  max-width: 18rem;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
}

.site-footer-logo img {
  display: block;
  height: 3.15rem;
  width: auto;
}

.site-footer-tagline {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(210, 218, 240, 0.72);
}

.site-footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.5rem;
}

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

@media (min-width: 980px) {
  .site-footer-cols {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }
}

.site-footer-col h3 {
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.site-footer-col a {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(210, 218, 240, 0.72);
  transition: color 0.15s ease;
}

.site-footer-col a:hover {
  color: #ffffff;
}

.site-footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0 0.25rem;
  text-align: center;
}

@media (min-width: 900px) {
  .site-footer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .site-footer-copy {
    justify-self: start;
  }

  .site-footer-powered {
    justify-self: center;
  }

  .site-footer-nav {
    justify-self: end;
  }
}

.site-footer-copy {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(210, 218, 240, 0.55);
}

.site-footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 550;
  color: rgba(210, 218, 240, 0.5);
  white-space: nowrap;
}

.site-footer-powered-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.15s ease;
}

.site-footer-powered-link:hover {
  opacity: 1;
}

.site-footer-powered-link img {
  display: block;
  height: 1.35rem;
  width: auto;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.84rem;
}

@media (min-width: 900px) {
  .site-footer-nav {
    justify-content: flex-end;
  }
}

.site-footer-nav a {
  font-weight: 500;
  color: rgba(210, 218, 240, 0.55);
  transition: color 0.15s ease;
}

.site-footer-nav a:hover {
  color: #ffffff;
}

.site-footer-sep {
  color: rgba(210, 218, 240, 0.28);
}

/* —— Products page —— */
.products-page {
  overflow-x: clip;
}

.products-hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: 1.5rem 1rem 0;
  background: #ffffff;
}

.products-hero-inner {
  position: relative;
  display: grid;
  gap: 1.75rem;
  align-items: start;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.products-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 36rem;
  padding-top: 0.15rem;
}

.products-hero-badge {
  display: inline-block;
  margin: 0;
  padding: 0.38rem 0.72rem;
  border-radius: 0.45rem;
  background: #eef1ff;
  color: #1b3bdb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.products-hero-copy h1 {
  margin: 1.05rem 0 0;
  font-size: clamp(1.85rem, 7.5vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #0a0f2d;
}

.products-hero-brand {
  color: #1b3bdb;
}

.products-period {
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  margin-left: 0.08em;
  border-radius: 50%;
  vertical-align: baseline;
  flex-shrink: 0;
  aspect-ratio: 1;
}

.products-heading-keep {
  white-space: nowrap;
}

.products-hero-lede {
  margin: 1rem 0 0;
  max-width: 30rem;
  font-size: clamp(0.95rem, 3.6vw, 1.05rem);
  line-height: 1.6;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 52%, #6b728a);
}

.products-hero-cta {
  margin-top: 1.35rem;
}

.products-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.products-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--foreground) 72%, #5b6478);
  letter-spacing: -0.01em;
}

.products-hero-trust li:first-child {
  padding-left: 0;
}

.products-hero-trust li + li {
  border-left: 1px solid rgba(27, 59, 219, 0.12);
}

.products-hero-trust img {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.products-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0.5rem 0 0;
  overflow: visible;
}

.products-hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 40rem;
  padding: 0.85rem 0 0.25rem;
  margin: 0 auto;
}

.products-hero-cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  max-width: 100%;
  margin: 0 auto;
}

.products-hero-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-width: 0;
  padding: 0.6rem 0.5rem;
  border-radius: 0.85rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  text-align: left;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.products-hero-card--solo,
.products-hero-card--group,
.products-hero-card--series {
  transform: none;
}

.products-hero-card--solo:hover,
.products-hero-card--group:hover,
.products-hero-card--series:hover {
  transform: translateY(-2px);
}

.products-hero-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.products-hero-card-icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  flex-shrink: 0;
  border-radius: 999px;
}

.products-hero-card-icon--blue {
  background: #eef1ff;
}

.products-hero-card-icon--green {
  background: #edf8ee;
}

.products-hero-card-icon--amber {
  background: #fef6e7;
}

.products-hero-card-icon img {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}

.products-hero-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  width: 100%;
}

.products-hero-card-copy strong {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
  white-space: normal;
}

.products-hero-card-copy span {
  font-size: 0.62rem;
  font-weight: 550;
  color: #9ca3af;
  line-height: 1.3;
  white-space: normal;
}

.products-hero-connectors {
  display: block;
  width: 100%;
  height: 2rem;
  margin: 0 auto;
}

.products-hero-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 1.15rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 22px 48px rgba(40, 70, 180, 0.16));
}

/* Mobile/tablet: full-bleed line above the mock */
.products-hero-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -0.65rem;
  z-index: 3;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: color-mix(in srgb, var(--accent-blue) 32%, #ffffff);
  pointer-events: none;
}

.products-hero-window {
  width: 100%;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.products-hero-window-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.products-hero-window-chrome span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #c8ceda;
}

.products-hero-window-media {
  background: #ffffff;
  line-height: 0;
  height: clamp(14rem, 48dvh, 20rem);
  overflow: hidden;
}

.products-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.products-hero-dots {
  display: none;
}

@media (min-width: 480px) {
  .products-hero {
    padding: 1.85rem 1rem 0;
  }

  .products-hero-cards {
    gap: 0.7rem;
  }

  .products-hero-card {
    flex-direction: row;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.65rem;
    border-radius: 0.95rem;
  }

  .products-hero-card-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .products-hero-card-icon img {
    width: 1.3rem;
    height: 1.3rem;
  }

  .products-hero-card-copy strong {
    font-size: 0.88rem;
  }

  .products-hero-card-copy span {
    font-size: 0.7rem;
  }

  .products-hero-connectors {
    height: 2.5rem;
  }

  .products-hero-window-media {
    height: clamp(16rem, 46dvh, 23rem);
  }

  .products-hero-trust li {
    font-size: 0.86rem;
    padding: 0 0.95rem;
  }
}

@media (min-width: 700px) {
  .products-hero {
    padding: 2rem 1rem 0;
  }

  .products-hero-inner {
    gap: 2.25rem;
  }

  .products-hero-cta {
    margin-top: 1.75rem;
  }

  .products-hero-trust {
    margin-top: 1.75rem;
    gap: 0.85rem 0;
  }

  .products-hero-visual {
    padding: 1.25rem 0.5rem 0;
  }

  .products-hero-stage {
    width: min(100%, 32rem);
    padding: 1.75rem 1rem 0.5rem;
  }

  .products-hero-cards {
    gap: 1.1rem;
  }

  .products-hero-card {
    gap: 0.65rem;
    padding: 0.9rem 0.85rem;
    border-radius: 1.05rem;
  }

  .products-hero-card--solo {
    transform: translateY(0.15rem);
  }

  .products-hero-card--group {
    transform: translateY(-0.35rem);
  }

  .products-hero-card--series {
    transform: translateY(0.15rem);
  }

  .products-hero-card--solo:hover {
    transform: translateY(calc(0.15rem - 2px));
  }

  .products-hero-card--group:hover {
    transform: translateY(calc(-0.35rem - 2px));
  }

  .products-hero-card--series:hover {
    transform: translateY(calc(0.15rem - 2px));
  }

  .products-hero-card-icon {
    width: 3.1rem;
    height: 3.1rem;
  }

  .products-hero-card-icon img {
    width: 1.6rem;
    height: 1.6rem;
  }

  .products-hero-card-copy strong {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .products-hero-card-copy span {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .products-hero-connectors {
    width: min(100%, 30rem);
    height: 3.25rem;
  }

  .products-hero-frame {
    width: min(100%, 32rem);
    margin-top: 1.25rem;
    margin-bottom: 1.75rem;
  }

  .products-hero-window {
    border-radius: 1rem;
  }

  .products-hero-window-chrome {
    padding: 0.55rem 0.75rem;
  }

  .products-hero-window-chrome span {
    width: 0.5rem;
    height: 0.5rem;
  }

  .products-hero-window-media {
    height: clamp(20rem, 46dvh, 28rem);
  }

  .products-hero-dots {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0.75rem;
    width: 5.5rem;
    height: 5.5rem;
    pointer-events: none;
    background-image: radial-gradient(
      circle,
      rgba(156, 163, 175, 0.35) 1.25px,
      transparent 1.25px
    );
    background-size: 12px 12px;
    opacity: 0.55;
  }
}

@media (min-width: 980px) {
  .products-hero {
    padding: 1.5rem 1rem 0;
    min-height: min(82dvh, 44rem);
  }

  .products-hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem 1.25rem;
    align-items: center;
  }

  .products-hero-copy {
    margin-left: clamp(1rem, 3.5vw, 3rem);
    padding-top: 0;
    padding-bottom: clamp(2rem, 6dvh, 4.5rem);
  }

  .products-hero-visual {
    justify-items: end;
    align-content: start;
    margin-top: 0.35rem;
    padding: 0;
    min-height: min(68dvh, 36rem);
  }

  .products-hero-stage {
    width: min(100%, 38rem);
    padding: 1.5rem 0.5rem 0;
    margin: 0;
  }

  .products-hero-cards {
    max-width: 100%;
    gap: 1.25rem;
  }

  .products-hero-connectors {
    width: min(100%, 34rem);
    height: 3.75rem;
  }

  .products-hero-frame {
    width: min(100%, 34rem);
    margin-top: -0.35rem;
    margin-bottom: clamp(-7rem, -12dvh, -4.5rem);
  }

  .products-hero-frame::before {
    display: none;
  }

  .products-block--solo {
    background: transparent;
    padding-top: clamp(4rem, 10dvh, 5.5rem);
  }

  .products-block--solo::before,
  .products-block--solo::after {
    display: block;
    top: clamp(6rem, 13dvh, 8rem);
  }

  .products-hero-window-media {
    height: clamp(22rem, min(52dvh, 34rem), 34rem);
  }

  .products-hero-dots {
    right: -0.5rem;
    bottom: 0.25rem;
    width: 6.5rem;
    height: 6.5rem;
  }
}

@media (min-width: 1280px) {
  .products-hero {
    padding: 1.75rem 1rem 0;
    min-height: min(84dvh, 46rem);
  }

  .products-hero-stage {
    width: min(100%, 40rem);
  }

  .products-hero-visual {
    min-height: min(72dvh, 38rem);
  }

  .products-hero-frame {
    margin-bottom: clamp(-7.5rem, -14dvh, -5rem);
  }

  .products-block--solo::before,
  .products-block--solo::after {
    top: clamp(6.5rem, 14dvh, 8.5rem);
  }

  .products-hero-window-media {
    height: clamp(24rem, min(56dvh, 38rem), 38rem);
  }
}

.products-block {
  position: relative;
  z-index: 2;
  padding: 3.5rem 1rem;
  scroll-margin-top: calc(var(--site-header-h, 4rem) + 0.75rem);
}

.products-block--solo {
  padding-top: clamp(3rem, 8dvh, 4.5rem);
  background: #ffffff;
}

/* Desktop only: white fill + line aligned to hanging mock */
.products-block--solo::before {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(1rem, 5dvh, 2rem);
  bottom: 0;
  z-index: 0;
  background: #ffffff;
  pointer-events: none;
}

.products-block--solo::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(1rem, 5dvh, 2rem);
  z-index: 1;
  height: 1px;
  background: color-mix(in srgb, var(--accent-blue) 32%, #ffffff);
  pointer-events: none;
}

.products-block--solo .products-block-inner {
  position: relative;
  z-index: 2;
}

.products-block--solo .products-block-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
}

.products-solo-features {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-width: 34rem;
}

.products-solo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e8ebf2;
  border-radius: 0.75rem;
  background: #ffffff;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 550;
  color: #374151;
}

.products-solo-check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.products-solo-check img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.products-solo-used-by-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
}

.products-solo-used-by {
  margin: 0;
  padding: 0.38rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  color: #9ca3af;
  white-space: nowrap;
}

.products-block--solo .products-tags--solo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
}

.products-block--solo .products-tags--solo span {
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: #e8ebff;
  color: #1b3bdb;
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.2;
}

.products-solo-frame {
  width: 100%;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  filter: none;
}

.products-solo-window {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef0f5;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.products-solo-window-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.products-solo-window-chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

.products-solo-window-chrome span:nth-child(1) {
  background: #ff5f57;
}

.products-solo-window-chrome span:nth-child(2) {
  background: #febc2e;
}

.products-solo-window-chrome span:nth-child(3) {
  background: #28c840;
}

.products-solo-window-media {
  background: #ffffff;
  line-height: 0;
}

.products-solo-image {
  display: block;
  width: 100%;
  height: auto;
}

.products-block--solo .products-block-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.products-block--group {
  background:
    radial-gradient(
      ellipse 60% 50% at 0% 50%,
      rgba(196, 255, 210, 0.18) 0%,
      transparent 55%
    ),
    #f5f8ff;
}

.products-block--group .products-block-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
}

.products-group-features {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e8ebf2;
  max-width: 34rem;
}

.products-group-features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid #e8ebf2;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 550;
  color: #374151;
}

.products-group-feature-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  background: rgba(27, 59, 219, 0.08);
}

.products-group-feature-icon img {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.products-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  max-width: 34rem;
}

.products-group-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e8ebf2;
  border-radius: 0.55rem;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.2;
}

.products-group-tags span img {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.products-group-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
  transition: color 0.15s ease;
}

.products-group-cta:hover {
  color: var(--accent-blue);
}

.products-block--group .products-block-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.products-group-frame {
  margin-right: auto;
  margin-left: 0;
}

.products-block--series {
  background: #ffffff;
}

.products-block--series .products-block-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
}

.products-series-features {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  max-width: 34rem;
}

.products-series-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 550;
  color: #374151;
}

.products-series-check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.products-series-check img {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.products-series-tags {
  margin-top: 1.25rem;
}

.products-block--series .products-block-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.products-series-frame {
  margin-left: auto;
  margin-right: auto;
}

.products-block-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

.products-block-copy {
  min-width: 0;
}

.products-block-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.products-block-label--blue {
  color: #1b3bdb;
}

.products-block-label--green {
  color: #16a34a;
}

.products-block-copy h2 {
  margin: 0.65rem 0 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
}

.products-block-lede {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.products-features {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.products-features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 550;
  color: #4b5563;
}

.products-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #0f172a;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.products-features li::after {
  content: "";
  position: absolute;
  left: 0.13rem;
  top: 0.58rem;
  width: 0.2rem;
  height: 0.12rem;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: rotate(45deg);
}

.products-features--compact {
  max-width: 28rem;
}

.products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.15rem;
}

.products-tags span {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  background: #f3f4f8;
  color: #4b5563;
  font-size: 0.78rem;
  font-weight: 600;
}

.products-block-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1b3bdb;
  transition: color 0.15s ease;
}

.products-block-cta:hover {
  color: var(--accent-blue);
}

.products-block-visual {
  min-width: 0;
}

.products-mock {
  border-radius: 1.25rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.products-mock--solo {
  border-color: #dfe6ff;
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.04),
    0 16px 40px rgba(27, 59, 219, 0.1);
}

.products-mock--group {
  border-color: #d7efdc;
  box-shadow:
    0 1px 2px rgba(22, 163, 74, 0.04),
    0 16px 40px rgba(22, 163, 74, 0.1);
}

.products-mock--series {
  border-color: #dfe6ff;
  box-shadow:
    0 1px 2px rgba(27, 59, 219, 0.04),
    0 16px 40px rgba(27, 59, 219, 0.1);
}

.products-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: #f8f9fc;
  border-bottom: 1px solid #eef0f5;
}

.products-mock-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #e2e5ef;
}

.products-mock-chrome span:first-child {
  background: #ffb4b4;
}

.products-mock-chrome span:nth-child(2) {
  background: #ffe4a8;
}

.products-mock-chrome span:nth-child(3) {
  background: #b8f0bc;
}

.products-mock-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0;
}

.products-mock-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #dbe4ff, #c5d4ff);
  flex-shrink: 0;
}

.products-mock-avatar--green {
  background: linear-gradient(145deg, #d7f5dc, #b8ecc1);
}

.products-mock-avatar--blue {
  background: linear-gradient(145deg, #dbe4ff, #b8c8ff);
}

.products-mock-head strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 750;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.products-mock-head span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #9ca3af;
}

.products-mock-sub {
  margin: 0.85rem 1.15rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
}

.products-mock-calendar {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1.15rem 0;
}

.products-mock-day {
  flex: 1;
  padding: 0.45rem 0.2rem;
  border-radius: 0.55rem;
  background: #f3f4f8;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 650;
  color: #4b5563;
}

.products-mock-day.is-active {
  background: #1b3bdb;
  color: #ffffff;
}

.products-mock-day.is-muted {
  opacity: 0.45;
}

.products-mock-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.85rem 1.15rem 0;
}

.products-mock-slots span {
  padding: 0.5rem 0.55rem;
  border-radius: 0.55rem;
  border: 1px solid #e8ebf2;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 650;
  color: #374151;
}

.products-mock-slots span.is-selected {
  border-color: #1b3bdb;
  background: rgba(27, 59, 219, 0.06);
  color: #1b3bdb;
}

.products-mock-capacity {
  padding: 1rem 1.15rem 0;
}

.products-mock-capacity-bar {
  height: 0.35rem;
  border-radius: 999px;
  background: #eef0f5;
  overflow: hidden;
}

.products-mock-capacity-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #74e176, #3ecf6a);
}

.products-mock-capacity p {
  margin: 0.45rem 0 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b7280;
}

.products-mock-capacity strong {
  color: #0f172a;
  font-weight: 750;
}

.products-mock-attendees {
  margin: 0.85rem 1.15rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.products-mock-attendees li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
}

.products-mock-attendees li.is-muted {
  color: #9ca3af;
  font-weight: 500;
}

.products-mock-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #74e176;
  flex-shrink: 0;
}

.products-mock-series {
  margin: 0.85rem 1.15rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.products-mock-series li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
}

.products-mock-series li.is-active {
  border-color: #dfe6ff;
  background: rgba(27, 59, 219, 0.04);
}

.products-mock-series li.is-done {
  opacity: 0.72;
}

.products-mock-series li.is-muted {
  opacity: 0.5;
}

.products-mock-series-num {
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #eef1ff;
  color: #1b3bdb;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}

.products-mock-series li.is-active .products-mock-series-num {
  background: #1b3bdb;
  color: #ffffff;
}

.products-mock-series strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.products-mock-series span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: #9ca3af;
}

.products-mock-footer {
  padding: 1rem 1.15rem 1.15rem;
}

.products-mock-btn {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  background: #1b3bdb;
  color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.products-mock-btn--green {
  background: #16a34a;
}

.products-embed {
  padding: 3.5rem 1rem 4rem;
  background:
    radial-gradient(
      ellipse 55% 45% at 100% 0%,
      rgba(196, 214, 255, 0.25) 0%,
      transparent 58%
    ),
    #f3f6fc;
}

.products-embed-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: 80rem;
  margin: 0 auto;
}

.products-embed-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
}

.products-embed-lede {
  margin: 0.85rem 0 0;
  max-width: 30rem;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.products-embed-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.products-embed-frame {
  width: 100%;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  filter: none;
}

.products-embed-window {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef0f5;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.products-embed-site {
  background:
    radial-gradient(
      ellipse 70% 55% at 8% 0%,
      #ddeee9 0%,
      transparent 55%
    ),
    #f6f4ef;
}

.products-embed-site-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
}

.products-embed-site-bar strong {
  margin-right: auto;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.products-embed-site-bar strong em {
  font-style: normal;
  color: #0f766e;
}

.products-embed-site-bar span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #6b7280;
}

.products-embed-site-body {
  padding: 1rem 0.95rem 1.15rem;
}

.products-embed-site-kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f766e;
}

.products-embed-site-body h3 {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.products-embed-site-lede {
  margin: 0.35rem 0 0;
  max-width: 26rem;
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 500;
  color: #6b7280;
}

.products-embed-booker {
  margin-top: 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

/* Real booking form screenshot (availability-calendar-image) */
.products-embed-booker--shot {
  position: relative;
  aspect-ratio: 989 / 900;
  padding: 0;
  background: #ffffff;
}

.products-embed-booker--shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
  user-select: none;
}

.products-embed-booker-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
}

.products-embed-booker-head strong {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.products-embed-booker-head span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #8b93a7;
}

.products-embed-booker-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0.75rem;
  align-items: start;
}

.products-embed-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
}

.products-embed-cal-nav span {
  color: #9ca3af;
}

.products-embed-cal-days,
.products-embed-cal-cells {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
}

.products-embed-cal-days i {
  font-style: normal;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: #9ca3af;
}

.products-embed-cal-cells i {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 650;
  color: #374151;
}

.products-embed-cal-cells i.is-muted {
  color: #c4c9d4;
}

.products-embed-cal-cells i.is-avail {
  background: #eef1ff;
  color: #1b3bdb;
}

.products-embed-cal-cells i.is-active {
  background: #16a34a;
  color: #ffffff;
}

.products-embed-slots {
  display: grid;
  gap: 0.35rem;
}

.products-embed-slots b {
  font-size: 0.68rem;
  font-weight: 700;
  color: #0f172a;
}

.products-embed-slots button {
  display: block;
  width: 100%;
  padding: 0.38rem 0.5rem;
  border: 1px solid #e8ebf2;
  border-radius: 0.45rem;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1b3bdb;
  text-align: left;
  cursor: default;
}

.products-embed-slots button.is-active {
  border-color: #1b3bdb;
  background: #eef1ff;
}

.products-embed-booker-cta {
  margin-top: 0.75rem;
  display: grid;
  place-items: center;
  height: 2.15rem;
  border-radius: 0.55rem;
  background: #1b3bdb;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 419px) {
  .products-embed-booker-grid {
    grid-template-columns: 1fr;
  }

  .products-embed-site-bar span:nth-child(n + 3) {
    display: none;
  }
}

.products-platform {
  padding: 3.5rem 1rem 4.5rem;
  background: #ffffff;
  border-top: 1px solid #eef0f5;
}

.products-platform-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.products-platform-head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.products-platform-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.products-platform-accent {
  color: #1b3bdb;
}

.products-platform-head p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.products-platform-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

.products-platform-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.15rem 1.15rem;
  border-radius: 1.15rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.products-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #eef1ff;
  line-height: 0;
}

.products-platform-icon img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

/* Optical centering — glyphs aren’t balanced in their viewBoxes */
.products-platform-item:nth-child(1) .products-platform-icon img {
  transform: translateY(0.06rem);
}

.products-platform-item:nth-child(2) .products-platform-icon img {
  transform: translateY(0.04rem);
}

.products-platform-item:nth-child(4) .products-platform-icon img {
  transform: translate(0.06rem, 0.08rem);
}

.products-platform-item:nth-child(5) .products-platform-icon img {
  transform: translateY(0.02rem);
}

.products-platform-item:nth-child(6) .products-platform-icon img {
  transform: translateY(-0.05rem);
}

.products-platform-item h3 {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.products-platform-item > p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  color: #6b7280;
}

.products-platform-viz {
  margin-top: auto;
  padding-top: 1.15rem;
}

.products-platform-viz--cals {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.products-platform-cal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  line-height: 0;
}

.products-platform-cal-logo img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.products-platform-viz--cals > i {
  width: 1.1rem;
  height: 0;
  border-top: 1.5px dashed #c5cce0;
}

.products-platform-remind-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e8ebf2;
  background: #fafbfd;
}

.products-platform-remind-dot {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #16a34a;
}

.products-platform-remind-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: #eef1ff;
  line-height: 0;
  margin: 0;
  font-size: 0;
  color: inherit;
}

.products-platform-remind-icon img {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.products-platform-remind-card strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 750;
  color: #0f172a;
}

.products-platform-remind-card > div span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.68rem;
  line-height: 1.35;
  font-weight: 500;
  color: #6b7280;
}

.products-platform-link-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.65rem;
  border: 1px solid #dfe6ff;
  background: #eef1ff;
}

.products-platform-link-pill span {
  min-width: 0;
  flex: 1;
  font-size: 0.74rem;
  font-weight: 650;
  color: #1b3bdb;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.products-platform-link-pill img {
  display: block;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.products-platform-brand-card {
  position: relative;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid #e8ebf2;
  background: #fafbfd;
}

.products-platform-brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border-radius: 0.4rem;
  background: linear-gradient(145deg, #1b3bdb, #4f6fff);
}

.products-platform-brand-card strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 750;
  color: #0f172a;
}

.products-platform-brand-card em {
  display: block;
  margin-top: 0.12rem;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  color: #6b7280;
}

.products-platform-brand-card b {
  display: block;
  margin-top: 0.35rem;
  height: 0.28rem;
  width: 4.5rem;
  border-radius: 999px;
  background: #e4e7ef;
}

.products-platform-brand-card b + b {
  width: 3.2rem;
  margin-top: 0.22rem;
}

.products-platform-brand-card > i {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  width: 1.55rem;
  height: 0.7rem;
  border-radius: 0.3rem;
  background: #1b3bdb;
}

.products-platform-qr-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  background: #eaf8ef;
  border: 1px solid #d4eddc;
}

.products-platform-qr-code {
  display: block;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  border-radius: 0.35rem;
  object-fit: cover;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.products-platform-qr-card strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 750;
  color: #0f172a;
}

.products-platform-qr-card em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 650;
  color: #1b3bdb;
}

.products-platform-week {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
}

.products-platform-week > div {
  display: grid;
  gap: 0.3rem;
  justify-items: center;
}

.products-platform-week span {
  font-size: 0.62rem;
  font-weight: 700;
  color: #9ca3af;
}

.products-platform-week i {
  display: block;
  width: 100%;
  height: 1.55rem;
  border-radius: 0.4rem;
}

.products-platform-week i.is-on,
.products-platform-legend i.is-on {
  background: #16a34a;
}

.products-platform-week i.is-buffer,
.products-platform-legend i.is-buffer {
  background: repeating-linear-gradient(
    -45deg,
    #86efac,
    #86efac 3px,
    #dcfce7 3px,
    #dcfce7 6px
  );
}

.products-platform-week i.is-blackout,
.products-platform-legend i.is-blackout {
  background: #c7d2fe;
}

.products-platform-week i.is-off,
.products-platform-legend i.is-off {
  background: #1b3bdb
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2'%3E%3Crect x='5' y='11' width='14' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E")
    center / 0.7rem no-repeat;
}

.products-platform-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.products-platform-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.62rem;
  font-weight: 650;
  color: #6b7280;
}

.products-platform-legend i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
}

.products-platform-legend i.is-off {
  background-image: none;
}

@media (min-width: 700px) {
  .products-block-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }

  .products-block--solo .products-block-inner {
    gap: 2.5rem 2.75rem;
    align-items: center;
  }

  .products-solo-frame {
    max-width: 38rem;
  }

  .products-block--solo .products-solo-frame,
  .products-block--series .products-series-frame {
    margin-left: auto;
    margin-right: 0;
  }

  .products-block--group .products-group-frame {
    margin-left: 0;
    margin-right: auto;
  }

  .products-block--reverse .products-block-copy {
    order: 2;
  }

  .products-block--reverse .products-block-visual {
    order: 1;
  }

  .products-embed-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem 3rem;
  }

  .products-embed-frame {
    max-width: 36rem;
    margin-left: auto;
    margin-right: 0;
  }

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

@media (min-width: 900px) {
  .products-block {
    padding: 4.5rem 1rem;
  }

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

@media (min-width: 1100px) {
  .products-mock {
    max-width: 26rem;
    margin-left: auto;
  }

  .products-solo-frame {
    max-width: 40rem;
  }

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

  .products-block--reverse .products-mock {
    margin-left: 0;
    margin-right: auto;
  }
}

/* —— Teams page —— */
.teams-hero {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 28%
    ),
    var(--accent-blue);
  padding: 2rem 1rem 2.75rem;
  color: #ffffff;
  overflow: visible;
}

.teams-hero .products-hero-badge {
  background: #eef1ff;
  color: var(--accent-blue);
}

.teams-hero .products-hero-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  color: #ffffff;
}

.teams-hero-line {
  display: block;
}

.teams-hero-line--accent {
  color: var(--secondary);
}

.teams-hero-period {
  background: #ffffff;
}

.teams-hero .products-hero-lede {
  color: rgba(255, 255, 255, 0.86);
}

.teams-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--accent-blue) !important;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.teams-cta-primary:hover {
  background: #f4f6ff;
  color: #1b3bdb !important;
}

.teams-hero .products-hero-card-icon--green,
.teams-hero .products-hero-card-icon--amber {
  background: #eef1ff;
}

.teams-hero .products-hero-card-icon--green img,
.teams-hero .products-hero-card-icon--amber img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.teams-hero .products-hero-dots {
  opacity: 0.45;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.55) 1.1px,
    transparent 1.2px
  );
  background-size: 12px 12px;
}

.teams-hero-connectors {
  display: block;
  width: 100%;
  height: 3.15rem;
  margin: 0.15rem auto 0;
}

.teams-hero-frame {
  position: relative;
  padding-bottom: 0.75rem;
  margin-top: -0.05rem;
}

.teams-hero-frame::before {
  display: none;
}

.teams-hero-load-pill {
  position: absolute;
  right: 0.85rem;
  bottom: -0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
  border: 1px solid #eef0f5;
  z-index: 2;
}

.teams-hero-load-check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #16a34a;
  flex-shrink: 0;
}

.teams-hero-load-pill strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}

.teams-hero-load-pill > div span {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: #6b7280;
  line-height: 1.2;
}

.teams-hero-mock-booking-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.teams-hero-mock-status {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
  flex-shrink: 0;
}

.teams-note {
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #f8f9fc;
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 550;
  color: #5b6478;
}

.teams-section {
  background: #ffffff;
}

.teams-section-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.teams-section--workspace .products-block-copy h2 {
  max-width: 14ch;
}

.teams-section--workspace .products-features li::before {
  width: 0.4rem;
  height: 0.4rem;
  top: 0.5rem;
  background: var(--primary);
  box-shadow: none;
}

.teams-section--workspace .products-features li::after {
  display: none;
}

.teams-section--workspace .products-block-cta {
  color: #0f172a;
}

.teams-section--workspace .products-block-cta:hover {
  color: var(--primary);
}

.teams-workspace-card {
  overflow: hidden;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid #eef0f5;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.teams-workspace-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.teams-workspace-chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

.teams-workspace-chrome span:nth-child(1) {
  background: #ff5f57;
}

.teams-workspace-chrome span:nth-child(2) {
  background: #febc2e;
}

.teams-workspace-chrome span:nth-child(3) {
  background: #28c840;
}

.teams-workspace-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 1.1rem;
  padding: 0.55rem 0 0.85rem;
  border-bottom: 1px solid #eef0f5;
}

.teams-workspace-toolbar strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.teams-workspace-toolbar span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ca3af;
}

.teams-workspace-members {
  margin: 0;
  padding: 0 1.1rem;
  list-style: none;
}

.teams-workspace-members li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid #eef0f5;
}

.teams-workspace-members li:last-child {
  border-bottom: 0;
}

.teams-workspace-members .teams-mock-avatar {
  width: 2.25rem;
  height: 2.25rem;
}

.teams-workspace-members strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 750;
  color: #0f172a;
}

.teams-workspace-members span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.74rem;
  font-weight: 550;
  color: #9ca3af;
}

.teams-workspace-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 1.1rem 1.05rem;
  padding: 0.9rem 0 0.15rem;
  border-top: 1px solid #eef0f5;
}

.teams-workspace-invite strong {
  font-size: 0.86rem;
  font-weight: 750;
  color: #0f172a;
}

.teams-workspace-invite span {
  font-size: 0.8rem;
  font-weight: 550;
  color: #9ca3af;
}

@media (min-width: 900px) {
  .teams-section--workspace .products-block-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    align-items: center;
  }
}

.teams-section-label--muted {
  color: #6b7280;
}

.teams-section-label--green {
  color: #16a34a;
}

.teams-section--assign {
  background: #ffffff;
}

.teams-section--assign .products-block-copy h2 {
  max-width: 16ch;
}

.teams-assign-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.teams-assign-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 550;
  color: #4b5563;
}

.teams-assign-point-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #e8f8ec;
  color: #166534;
  flex-shrink: 0;
  margin-top: 0;
}

.teams-assign-point-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.teams-assign-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

.teams-assign-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e8f1;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 650;
  color: #4b5563;
}

.teams-assign-tags img,
.teams-assign-tags svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #166534;
}

.teams-assign-tags img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(52%) saturate(720%)
    hue-rotate(95deg) brightness(92%) contrast(95%);
}

.teams-assign-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.98rem;
  font-weight: 750;
  color: #16a34a;
}

.teams-assign-cta:hover {
  color: #15803d;
}

.teams-assign-card {
  overflow: hidden;
  border-radius: 1.15rem;
  background: #ffffff;
  border: 1px solid #eef0f5;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.teams-assign-body {
  padding: 1rem 1.05rem 1.1rem;
}

.teams-assign-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.teams-assign-stat {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
  padding: 0.75rem 0.7rem;
  border-radius: 0.85rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
}

.teams-assign-stat-icon {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: #e8f8ec;
  color: #166534;
}

.teams-assign-stat > span:not(.teams-assign-stat-icon) {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

.teams-assign-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
}

.teams-assign-distribution {
  margin-top: 1.15rem;
}

.teams-assign-distribution-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.teams-assign-distribution-head strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}

.teams-assign-distribution-head span {
  font-size: 0.74rem;
  font-weight: 600;
  color: #9ca3af;
}

.teams-assign-distribution ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.teams-assign-distribution li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 2.4rem;
  align-items: center;
  gap: 0.65rem;
}

.teams-assign-bar {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: #eef0f5;
  overflow: hidden;
}

.teams-assign-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #74e176;
}

.teams-assign-distribution em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  text-align: right;
}

.teams-assign-balanced {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  background: #e8f8ec;
  font-size: 0.82rem;
  font-weight: 650;
  color: #166534;
}

.teams-assign-balanced-check {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #16a34a;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .teams-section--assign .products-block-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4.5rem;
    align-items: center;
  }
}

.teams-section--perms {
  background: #f6f7fb;
}

.teams-perm-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.teams-perm-label img {
  width: 0.9rem;
  height: 0.9rem;
}

.teams-section--perms .products-block-copy h2 {
  max-width: 24ch;
}

.teams-perm-accent {
  color: #16a34a;
}

.teams-perm-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.teams-perm-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 550;
  color: #6b7280;
}

.teams-perm-points strong {
  font-weight: 750;
  color: #0f172a;
}

.teams-perm-point-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #eef0f4;
  color: #111827;
  flex-shrink: 0;
  margin-top: 0;
}

.teams-perm-point-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.teams-perm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.teams-perm-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e8f1;
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 650;
  color: #4b5563;
}

.teams-perm-tags svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #111827;
  flex-shrink: 0;
}

.teams-perm-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  font-size: 0.98rem;
  font-weight: 750;
  color: #0f172a;
}

.teams-perm-cta:hover {
  color: #16a34a;
}

.teams-perm-cta-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #e8ebf2;
  color: #111827;
  flex-shrink: 0;
}

.teams-perm-card {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid #e8ebf0;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 22px 48px rgba(15, 23, 42, 0.1);
}

.teams-perm-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.95rem 1.35rem 0.15rem;
  background: transparent;
  border-bottom: none;
}

.teams-perm-chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #d1d5db;
}

.teams-perm-chrome span:nth-child(1) {
  background: #ff5f57;
}

.teams-perm-chrome span:nth-child(2) {
  background: #febc2e;
}

.teams-perm-chrome span:nth-child(3) {
  background: #28c840;
}

.teams-perm-roles {
  margin: 0;
  padding: 0.85rem 1.35rem 0.35rem;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.teams-perm-roles li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

.teams-perm-roles li.is-active {
  border-color: #166534;
  box-shadow: none;
}

.teams-perm-role-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.9rem;
  background: #f3f4f6;
  color: #000000;
  flex-shrink: 0;
}

.teams-perm-role-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.75;
}

.teams-perm-roles em {
  display: block;
  margin: 0 0 0.2rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #166534;
}

.teams-perm-roles strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.teams-perm-roles li > div > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.35;
}

.teams-perm-role-chevron {
  color: #111827;
  flex-shrink: 0;
  opacity: 0.55;
}

.teams-perm-lock {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 1.35rem 1.25rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid #e5e7eb;
  font-size: 0.8rem;
  font-weight: 550;
  color: #6b7280;
  line-height: 1.4;
}

.teams-perm-lock-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  flex-shrink: 0;
}

.teams-perm-lock-icon svg {
  display: block;
}

@media (min-width: 900px) {
  .teams-section--perms .products-block-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 4.5rem;
    align-items: center;
  }
}

.teams-section--routing {
  background: #f6f7fb;
}

.teams-section--routing .products-block-copy h2 {
  max-width: none;
}

@media (min-width: 900px) {
  .teams-section--routing .products-block-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4.5rem;
    /* Center mock to copy; panel min-height keeps this from jumping on tab change */
    align-items: center;
  }

  .teams-section--routing .products-block-copy h2 {
    white-space: nowrap;
  }

  .teams-routing-stage {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.teams-routing-stage {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: visible;
  padding-top: 1.5rem;
}

.teams-section--routing .products-block-visual {
  overflow: visible;
}

.teams-routing-blob {
  display: none;
}

.teams-routing-dots {
  position: absolute;
  left: -0.75rem;
  top: -1.75rem;
  width: 7.5rem;
  height: 7rem;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(120, 135, 160, 0.55) 1.35px,
    transparent 1.4px
  );
  background-size: 18px 18px;
}

.teams-routing-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1.1rem;
  background: #ffffff;
  border: 1px solid #e8ebf2;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.teams-routing-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: #f2f4f8;
  border-bottom: 1px solid rgba(27, 59, 219, 0.06);
}

.teams-routing-chrome span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
}

.teams-routing-chrome span:nth-child(1) {
  background: #ff5f57;
}

.teams-routing-chrome span:nth-child(2) {
  background: #febc2e;
}

.teams-routing-chrome span:nth-child(3) {
  background: #28c840;
}

.teams-routing-body {
  padding: 0.35rem 1.05rem 1.15rem;
}

.teams-routing-label {
  margin: 0 0 0.6rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}

.teams-routing-label + .teams-routing-label,
.teams-routing-options + .teams-routing-label {
  margin-top: 1.2rem;
}

.teams-routing-options {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.teams-routing-options li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e8f1;
  background: #ffffff;
  font-size: 0.86rem;
  font-weight: 650;
  color: #374151;
}

.teams-routing-options li.is-active {
  background: #eef1f6;
  border-color: #eef1f6;
  color: #0f172a;
  font-weight: 750;
}

.teams-routing-ico {
  display: inline-flex;
  color: #6b7280;
  flex-shrink: 0;
}

.teams-routing-options li.is-active .teams-routing-ico {
  color: #4b5563;
}

.teams-routing-radio {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1.5px solid #c5cce0;
  flex-shrink: 0;
  background: #ffffff;
}

.teams-routing-radio.is-on {
  border-color: #4b5563;
  box-shadow: inset 0 0 0 3px #4b5563;
}

.teams-routing-check {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  border-radius: 999px;
  background: #6b7280;
  flex-shrink: 0;
}

.teams-routing-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e8f1;
  background: #ffffff;
  color: #0f172a;
}

.teams-routing-select-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.teams-routing-select-main svg,
.teams-routing-select > svg {
  color: #111827;
  flex-shrink: 0;
}

.teams-routing-hint {
  margin: 0.55rem 0 0;
  font-size: 0.74rem;
  line-height: 1.45;
  font-weight: 550;
  color: #9ca3af;
}

.teams-routing-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  border-radius: 999px;
  background: #eef1f6;
  font-size: 0.78rem;
  font-weight: 650;
  color: #374151;
}

.teams-routing-team > .teams-routing-ico {
  color: #111827;
}

.teams-routing-team > span:not(.teams-routing-ico) {
  min-width: 0;
  flex: 1;
}

.teams-routing-faces {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.teams-routing-faces img {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #eef1f6;
  margin-left: -0.4rem;
}

.teams-routing-faces img:first-child {
  margin-left: 0;
}

.teams-routing-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.teams-routing-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 550;
  color: #6b7280;
}

.teams-routing-point-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #e8ebf2;
  color: #111827;
  flex-shrink: 0;
}

.teams-routing-points strong {
  font-weight: 750;
  color: #0f172a;
}

.teams-routing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 1.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid #e5e8f1;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 550;
  color: #6b7280;
}

.teams-routing-note-check {
  display: inline-flex;
  color: #111827;
  margin-top: 0.05rem;
  flex-shrink: 0;
}

.teams-routing-picker {
  margin-top: 1rem;
}

.teams-routing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.teams-routing-tags button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e5e8f1;
  background: #ffffff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  color: #4b5563;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.teams-routing-tags button:hover {
  border-color: #c5cce0;
  color: #0f172a;
}

.teams-routing-tags button.is-active {
  border-color: #1b3bdb;
  background: #eef2ff;
  color: #1b3bdb;
  box-shadow: 0 0 0 1px rgba(27, 59, 219, 0.12);
}

.teams-routing-tags button:focus-visible {
  outline: 2px solid #1b3bdb;
  outline-offset: 2px;
}

.teams-routing-tags svg {
  width: 0.85rem;
  height: 0.85rem;
  color: currentColor;
}

.teams-routing-mode-panel {
  margin-top: 0.85rem;
  padding: 0.95rem 1.05rem;
  border-radius: 0.9rem;
  border: 1px solid #e5e8f1;
  background: #f7f8fc;
  /* Fixed slot for title + 2-line body so centered layout doesn't shift */
  height: 5.75rem;
  box-sizing: border-box;
  overflow: hidden;
}

.teams-routing-mode-panel strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 750;
  color: #0f172a;
}

.teams-routing-mode-panel p {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  font-weight: 500;
  color: #6b7280;
  min-height: 2.7em; /* ~2 lines at 1.5 line-height */
}

.teams-routing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  font-size: 0.98rem;
  font-weight: 750;
  color: #0f172a;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #c5cce0;
  text-underline-offset: 0.3em;
}

.teams-routing-cta:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.teams-routing-cta-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: #e8ebf2;
  color: #111827;
  flex-shrink: 0;
}

.teams-hero-mock {
  position: relative;
  padding: 0.85rem 1.1rem 1.55rem;
  border-radius: 1.15rem;
  border: 0;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 0, 40, 0.28);
}

.teams-hero-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
}

.teams-hero-mock-chrome span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #d1d5db;
}

.teams-hero-mock-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9ca3af;
}

.teams-hero-mock-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: #f3f6fc;
  border: 1px solid #e8ebf2;
  font-size: 0.78rem;
  font-weight: 650;
  color: #1b3bdb;
}

.teams-hero-mock-link img {
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  opacity: 0.85;
}

.teams-hero-mock-route {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #e8ebf2;
}

.teams-hero-mock-hosts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.teams-hero-mock-hosts li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: #374151;
}

.teams-hero-mock-arrow {
  display: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #8fa9e8;
}

.teams-hero-mock-booking {
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: #eef1ff;
  border: 1px solid rgba(27, 59, 219, 0.08);
}

.teams-hero-mock-booking strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

.teams-hero-mock-booking > span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1b3bdb;
}

.teams-mock-avatar {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  background: #eef0f5;
  flex-shrink: 0;
}

.teams-mock-avatar--sm {
  width: 1.45rem;
  height: 1.45rem;
}

.teams-mock-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem 0.65rem;
}

.teams-mock-toolbar strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
}

.teams-mock-pill {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
}

.teams-mock-pill--blue {
  background: #eef1ff;
  color: #1b3bdb;
}

.teams-mock-members {
  margin: 0;
  padding: 0 1.1rem 0.85rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.teams-mock-members li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
}

.teams-mock-members li.is-muted {
  opacity: 0.72;
}

.teams-mock-members strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.teams-mock-members span {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.7rem;
  font-weight: 550;
  color: #9ca3af;
}

.teams-mock-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 1.1rem 1.1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px dashed #dfe3ec;
  background: #ffffff;
}

.teams-mock-invite span {
  font-size: 0.76rem;
  font-weight: 700;
  color: #1b3bdb;
}

.teams-mock-invite em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 550;
  color: #9ca3af;
}

.teams-mock-section-label {
  margin: 0;
  padding: 0.85rem 1.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}

.teams-mock-radios {
  margin: 0;
  padding: 0 1.1rem;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.teams-mock-radios li {
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
  font-size: 0.8rem;
  font-weight: 650;
  color: #4b5563;
}

.teams-mock-radios li.is-active {
  border-color: #dfe6ff;
  background: rgba(27, 59, 219, 0.04);
  color: #1b3bdb;
  box-shadow: inset 0 0 0 1px rgba(27, 59, 219, 0.06);
}

.teams-mock-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 1.1rem;
  padding: 0.62rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f172a;
}

.teams-mock-hint {
  margin: 0.55rem 1.1rem 0;
  font-size: 0.72rem;
  line-height: 1.45;
  font-weight: 550;
  color: #9ca3af;
}

.teams-mock-team-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.85rem 1.1rem 1.1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;
  background: #f3f6fc;
  font-size: 0.74rem;
  font-weight: 650;
  color: #4b5563;
}

.teams-mock-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #cbd5e1;
  flex-shrink: 0;
}

.teams-mock-dot--blue {
  background: #1b3bdb;
}

.teams-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.85rem 1.1rem 0.65rem;
}

.teams-mock-stats div {
  padding: 0.65rem 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
  text-align: center;
}

.teams-mock-stats span {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #9ca3af;
}

.teams-mock-stats strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.teams-mock-distribution {
  margin: 0 1.1rem 1.1rem;
  padding: 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid #eef0f5;
  background: #ffffff;
}

.teams-mock-distribution-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.teams-mock-distribution-head strong {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
}

.teams-mock-distribution-head span {
  font-size: 0.68rem;
  font-weight: 650;
  color: #9ca3af;
}

.teams-mock-distribution ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.teams-mock-distribution li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.teams-mock-bar {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: #eef0f5;
  overflow: hidden;
}

.teams-mock-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1b3bdb, #16a34a);
}

.teams-mock-distribution em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
  min-width: 2rem;
  text-align: right;
}

.teams-mock-balanced {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #15803d;
}

.teams-mock-roles {
  margin: 0;
  padding: 0.85rem 1.1rem 0.65rem;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.teams-mock-roles li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid #eef0f5;
  background: #fafbfd;
}

.teams-mock-roles li.is-active {
  border-color: #dfe6ff;
  background: rgba(27, 59, 219, 0.04);
}

.teams-mock-roles strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 750;
  color: #0f172a;
}

.teams-mock-roles span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 550;
  color: #9ca3af;
  line-height: 1.35;
}

.teams-mock-role-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.teams-mock-role-badge--owner {
  background: #fef6e7;
  color: #b45309;
}

.teams-mock-role-badge--admin {
  background: #eef1ff;
  color: #1b3bdb;
}

.teams-mock-role-badge--host {
  background: #edf8ee;
  color: #15803d;
}

.teams-mock-lock {
  margin: 0 1.1rem 1.1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  background: #f8f9fc;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5b6478;
}

.teams-platform-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin: 2rem 0 0;
}

.teams-platform-accent {
  color: #16a34a;
}

.teams-platform {
  border-top: none;
  background: #ffffff;
}

.teams-platform-head {
  max-width: 38rem;
}

.teams-platform-grid {
  gap: 1rem;
}

.teams-use-card {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 28px rgba(15, 23, 42, 0.05);
}

.teams-use-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #e8f8ec;
  color: #111827;
  margin-bottom: 0.15rem;
}

.teams-use-icon svg {
  width: 1.85rem;
  height: 1.85rem;
}

.teams-use-card h3 {
  margin-top: 0.95rem;
  font-size: 1.15rem;
}

.teams-use-viz {
  position: absolute;
  right: 0.65rem;
  bottom: 0.55rem;
  width: 7rem;
  height: 6.25rem;
  pointer-events: none;
  opacity: 0.95;
}

.teams-use-check {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.3);
}

.teams-use-radar {
  position: absolute;
  right: -0.85rem;
  bottom: -0.95rem;
  width: 6.75rem;
  height: 6.75rem;
}

.teams-use-radar > i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(116, 225, 118, 0.55);
}

.teams-use-radar > i:nth-child(1) {
  inset: 12%;
}

.teams-use-radar > i:nth-child(2) {
  inset: 26%;
}

.teams-use-radar > i:nth-child(3) {
  inset: 40%;
}

.teams-use-radar-dot {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: #c7f0cb;
  border: 1px solid #86efac;
}

.teams-use-radar-dot--a {
  top: 18%;
  left: 22%;
}

.teams-use-radar-dot--b {
  top: 28%;
  right: 14%;
}

.teams-use-radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin: -1rem 0 0 -1rem;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 3px 10px rgba(22, 163, 74, 0.28);
}

.teams-use-radar-core svg {
  width: 0.95rem;
  height: 0.95rem;
}

.teams-use-cal {
  position: absolute;
  right: 0.05rem;
  bottom: 0;
  color: #86efac;
}

.teams-use-cal svg {
  width: 4.5rem;
  height: 4.5rem;
}

.teams-use-cal .teams-use-check {
  position: absolute;
  right: -0.1rem;
  bottom: 0.2rem;
}

.teams-use-people {
  position: absolute;
  right: 0.2rem;
  bottom: 0.25rem;
  width: 5.75rem;
  height: 4.25rem;
}

.teams-use-people > i {
  position: absolute;
  bottom: 0;
  width: 2.45rem;
  height: 3.1rem;
  border-radius: 999px 999px 0.75rem 0.75rem;
  background: #bbf7d0;
}

.teams-use-people > i:nth-child(1) {
  left: 0.15rem;
  height: 2.75rem;
  width: 2.1rem;
  background: #dcfce7;
}

.teams-use-people > i:nth-child(2) {
  left: 1.45rem;
  z-index: 1;
}

.teams-use-people > i:nth-child(3) {
  left: 2.8rem;
  height: 2.75rem;
  width: 2.1rem;
  background: #dcfce7;
}

.teams-use-people .teams-use-check {
  position: absolute;
  right: 0.05rem;
  bottom: 1rem;
  z-index: 2;
}

.teams-use-bars {
  position: absolute;
  right: 0.1rem;
  bottom: 0.15rem;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 4.25rem;
  color: #16a34a;
}

.teams-use-bars > i {
  display: block;
  width: 0.7rem;
  border-radius: 0.25rem 0.25rem 0.12rem 0.12rem;
  background: #bbf7d0;
}

.teams-use-bars > i:nth-child(1) {
  height: 35%;
}

.teams-use-bars > i:nth-child(2) {
  height: 52%;
}

.teams-use-bars > i:nth-child(3) {
  height: 70%;
}

.teams-use-bars > i:nth-child(4) {
  height: 92%;
  background: #86efac;
}

.teams-use-bars > b {
  display: grid;
  place-items: center;
  align-self: flex-start;
  margin-top: 0.1rem;
  margin-left: 0.15rem;
}

.teams-use-bars > b svg {
  width: 1.15rem;
  height: 1.15rem;
}

.teams-platform-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
}

.teams-platform-links a:hover {
  color: #166534;
}

.teams-platform-link-arrow {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: #16a34a;
  flex-shrink: 0;
  text-decoration: none;
}

.teams-platform-link-sep {
  display: none;
  width: 1px;
  height: 1.35rem;
  background: #d1d5db;
}

@media (min-width: 700px) {
  .teams-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teams-platform-link-sep {
    display: block;
  }
}

@media (min-width: 1100px) {
  .teams-platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.teams-page .products-platform-icon img {
  filter: brightness(0);
}

.teams-page .products-hero-card-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(40%) saturate(3200%)
    hue-rotate(220deg) brightness(85%) contrast(120%);
}

@media (min-width: 700px) {
  .teams-hero {
    padding: 2.5rem 1rem 3.25rem;
  }

  .teams-hero-connectors {
    width: min(100%, 34rem);
    height: 4.35rem;
  }

  .teams-hero-mock-route {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.15fr);
    align-items: center;
  }

  .teams-hero-mock-arrow {
    display: block;
    text-align: center;
  }
}

@media (min-width: 980px) {
  .teams-hero {
    padding: 3rem 1rem 3.75rem;
  }

  .teams-hero .products-hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
  }
}

/* —— About page —— */
.page-about {
  background: #ffffff;
}

.about-page {
  overflow-x: clip;
}

.about-hero {
  position: relative;
  padding: 4rem 1rem 4.25rem;
  background: var(--accent-blue);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.about-hero-dots {
  display: none;
  position: absolute;
  right: max(1rem, calc((100% - 80rem) / 2 + 1rem));
  top: 50%;
  width: 7.5rem;
  height: 7.5rem;
  transform: translateY(-50%);
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.42) 1.15px,
    transparent 1.25px
  );
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.85;
}

.about-hero-inner,
.about-section-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.about-hero-inner {
  max-width: 42rem;
}

.about-section-inner--narrow {
  max-width: 40rem;
}

.about-badge {
  display: inline-block;
  margin: 0;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 1.15rem 0 0;
  max-width: none;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #ffffff;
}

.about-hero-accent {
  color: var(--secondary);
}

.about-lede {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(236, 240, 255, 0.82);
}

.about-section {
  padding: 3.25rem 1rem;
}

.about-section--tint {
  background: #f5f8ff;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
}

.about-section-head {
  max-width: 36rem;
  margin-bottom: 1.75rem;
}

.about-section h2 {
  margin: 0;
  font-size: var(--section-heading-size); /* 44px */
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #0f172a;
}

.about-section-head p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.about-prose {
  display: grid;
  gap: 1rem;
}

.about-prose p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  color: #374151;
}

.about-story-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-story-copy h2 {
  margin: 0 0 1.25rem;
}

.about-story-visual {
  position: relative;
  display: grid;
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
}

.about-story-types {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
}

.about-story-type {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  min-height: 3.75rem;
  padding: 0.75rem 0.7rem;
  border-radius: 0.9rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 24px rgba(15, 23, 42, 0.05);
}

.about-story-type-icon {
  display: grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 0.7rem;
  background: #eef0f4;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.about-story-type-icon img,
.about-story-type-icon svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
}

.about-story-type-icon img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.about-story-type strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #0f172a;
  line-height: 1.2;
}

.about-story-type em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 550;
  color: #9ca3af;
}

.about-story-connectors {
  display: none;
}

.about-story-frame {
  width: 100%;
  max-width: 32rem;
  min-width: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid #eef0f5;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 42px rgba(15, 23, 42, 0.08);
}

.about-story-frame img {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .about-story-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
    gap: 2.5rem;
    align-items: center;
  }

  .about-story-visual {
    grid-template-columns: auto 3.75rem minmax(0, 1fr);
    gap: 0;
    align-items: center;
    justify-items: stretch;
    min-width: 0;
  }

  .about-story-types {
    width: 12rem;
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .about-story-type {
    gap: 0.75rem;
    min-height: 4.15rem;
    padding: 0.95rem 1rem;
  }

  .about-story-connectors {
    display: block;
    width: 100%;
    height: 23rem;
    overflow: visible;
  }

  .about-story-connectors path {
    fill: none;
    stroke: #c5cce0;
    stroke-width: 1.5;
    stroke-dasharray: 3.5 4.5;
    stroke-linecap: butt;
    stroke-linejoin: round;
  }

  .about-story-frame {
    max-width: none;
    width: 100%;
  }
}

.about-beliefs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-believe {
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
}

.about-believe-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-believe-dots {
  position: absolute;
  top: 1.5rem;
  right: max(1.25rem, calc((100% - 80rem) / 2 + 1.25rem));
  width: 5.5rem;
  height: 5.5rem;
  background-image: radial-gradient(
    circle,
    rgba(116, 225, 118, 0.55) 1.2px,
    transparent 1.3px
  );
  background-size: 12px 12px;
  opacity: 0.7;
}

.about-believe-blob {
  position: absolute;
  top: 0;
  right: calc((100% - 100vw) / 2);
  z-index: 0;
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  background: rgba(116, 225, 118, 0.18);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.about-belief {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 17.5rem;
  padding: 1.65rem 1.45rem 2.15rem;
  border-radius: 1.2rem;
  border: 1px solid #eef0f5;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 32px rgba(15, 23, 42, 0.05);
}

.about-belief-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #e8ecff;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.about-belief-icon img {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.about-belief h3 {
  margin: 1.05rem 0 0;
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.about-belief p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.about-belief-accent {
  position: absolute;
  pointer-events: none;
}

.about-belief--dots .about-belief-accent {
  right: -2.4rem;
  bottom: -2.4rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-image: radial-gradient(
    circle,
    rgba(74, 212, 78, 0.9) 1.35px,
    transparent 1.45px
  );
  background-size: 9px 9px;
  background-position: center;
  opacity: 1;
}

.about-belief--blue-arc .about-belief-accent {
  right: -2.4rem;
  bottom: -2.4rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(27, 59, 219, 0.1);
}

.about-belief--green-arc .about-belief-accent {
  right: -2.4rem;
  bottom: -2.4rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(116, 225, 118, 0.22);
}

.about-product-brand {
  color: var(--accent-blue);
}

.about-product-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  width: 100%;
  max-width: none;
  border: none;
}

.about-product-list li {
  display: grid;
  gap: 0.55rem 1.35rem;
  align-items: center;
  padding: 0.85rem 1.15rem;
  border: 1px solid #e8ebf2;
  border-radius: 0.85rem;
  background: #ffffff;
}

.about-product-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.about-product-icon {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: #eef1f5;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.about-product-icon img,
.about-product-icon svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.about-product-icon img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.about-product-list strong {
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.about-product-copy {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
  color: #6b7280;
}

.about-inline-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 1.35rem 0 0;
}

.about-inline-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: #0f172a;
}

.about-inline-link a:hover {
  color: var(--accent-blue);
}

.about-inline-link-arrow {
  color: var(--accent-blue);
  font-weight: 700;
}

.about-inline-link-sep {
  width: 1px;
  height: 1rem;
  background: #d1d5db;
  flex-shrink: 0;
}

.about-who-section {
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
  border-top: 1px solid #eef0f5;
  border-bottom: 1px solid #eef0f5;
  padding-top: 4.5rem;
  padding-bottom: 4.75rem;
}

.about-who-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-who-dots {
  position: absolute;
  width: 5.5rem;
  height: 5.5rem;
  background-image: radial-gradient(
    circle,
    rgba(148, 163, 184, 0.55) 1.15px,
    transparent 1.25px
  );
  background-size: 12px 12px;
  opacity: 0.55;
}

.about-who-dots--tr {
  top: 1.35rem;
  right: max(1.25rem, calc((100% - 80rem) / 2 + 1.25rem));
}

.about-who-dots--bl {
  left: max(1.25rem, calc((100% - 80rem) / 2 + 1.25rem));
  bottom: 1.5rem;
}

.about-who-rings {
  position: absolute;
  top: 58%;
  right: max(-2rem, calc((100% - 80rem) / 2 - 6rem));
  width: min(34rem, 58vw);
  height: min(34rem, 58vw);
  transform: translate(42%, -42%);
}

.about-who-rings span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  box-shadow: none;
}

.about-who-rings span:nth-child(1) {
  inset: 0;
}

.about-who-rings span:nth-child(2) {
  inset: 10%;
}

.about-who-rings span:nth-child(3) {
  inset: 20%;
}

.about-who-rings span:nth-child(4) {
  inset: 30%;
}

.about-who-rings span:nth-child(5) {
  inset: 40%;
}

.about-who-head {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-bottom: 1.85rem;
}

.about-who-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0.3rem 0.85rem 0.3rem 0.3rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #1f7a3f;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.about-who-badge-icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #1f7a3f;
  color: #ffffff;
  flex-shrink: 0;
}

.about-who-badge-icon img {
  display: block;
  width: 0.78rem;
  height: 0.78rem;
  filter: brightness(0) invert(1);
}

.about-who-head h2 {
  margin: 0;
}

.about-who-head > p:not(.about-who-badge) {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.about-who-brand {
  color: #22c55e;
  font-weight: 700;
}

.about-who-grid {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-who-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 10.5rem;
  padding: 1.55rem 0.75rem 1.35rem;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 24px rgba(15, 23, 42, 0.05);
}

.about-who-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
}

.about-who-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-who-grid strong {
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #0f172a;
  text-align: center;
}

.about-hello {
  background: #ffffff;
  padding-top: 4.75rem;
  padding-bottom: 5rem;
}

.about-hello-inner {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.about-hello-copy {
  max-width: 32rem;
}

.about-hello-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.65rem;
  padding: 0.48rem 0.95rem 0.48rem 0.7rem;
  border-radius: 999px;
  background: #e8ecff;
  color: var(--accent-blue) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2 !important;
}

.about-hello-badge img {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.about-hello-copy h2 {
  margin: 0;
  font-size: var(--section-heading-size); /* 44px */
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.about-hello-copy > p:not(.about-hello-badge):not(.about-hello-note) {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #6b7280;
}

.about-hello-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.about-hello-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 0.8rem;
  background: var(--accent-blue);
  color: #ffffff !important;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(27, 59, 219, 0.28);
}

.about-hello-cta:hover {
  background: #1632c4;
}

.about-hello-secondary {
  height: 3.15rem;
  padding: 0 1.25rem;
  border-radius: 0.8rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a !important;
  font-weight: 650;
}

.about-hello-secondary:hover {
  background: #f8fafc;
}

.about-hello-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 0 0 !important;
  font-size: 0.88rem !important;
  font-weight: 550 !important;
  color: #6b7280 !important;
}

.about-hello-note img {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.about-hello-visual {
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 34rem);
}

.about-hello-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.08);
  transform-origin: center;
}

.about-closing p {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #6b7280;
}

.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 699px) {
  .about-section h2,
  .about-hello-copy h2 {
    font-size: clamp(1.85rem, 7.5vw, var(--section-heading-size));
  }
}

@media (min-width: 700px) {
  .about-hero {
    padding: 5rem 1rem 5.25rem;
  }

  .about-hero-dots {
    display: block;
    width: 8.5rem;
    height: 8.5rem;
    background-size: 15px 15px;
  }

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

  .about-who-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .about-hello-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem 2.5rem;
  }

  .about-hello-visual {
    width: 100%;
    max-width: 38rem;
    justify-self: end;
  }

  .about-product-list li {
    grid-template-columns: minmax(15.5rem, 17.5rem) minmax(0, 1fr);
    gap: 0 1.35rem;
    padding: 0.9rem 1.25rem;
  }

  .about-product-copy {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding-left: 1.35rem;
  }

  .about-product-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e4e7ec;
  }
}

@media (min-width: 980px) {
  .about-section {
    padding: 4rem 1rem;
  }

  .about-who-section {
    padding-top: 5.5rem;
    padding-bottom: 5.75rem;
  }

  .about-hello {
    padding-top: 5.75rem;
    padding-bottom: 6rem;
  }

  .about-who-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .about-who-grid li {
    min-height: 11.25rem;
    padding: 1.7rem 0.5rem 1.45rem;
  }

  .about-who-icon {
    width: 5rem;
    height: 5rem;
  }

  .about-who-grid strong {
    font-size: 0.82rem;
  }
}

/* —— Contact page —— */
.page-contact {
  background: #ffffff;
}

.contact-page {
  overflow-x: clip;
}

.contact-hero {
  position: relative;
  padding: 3.25rem 1rem 2.5rem;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(27, 59, 219, 0.06) 0%,
      transparent 42%
    ),
    #f5f7fb;
  border-bottom: 1px solid #eef0f5;
  overflow: hidden;
}

.contact-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.contact-hero-copy {
  max-width: 34rem;
}

@media (min-width: 980px) {
  .contact-hero-copy {
    margin-left: clamp(1rem, 3.5vw, 3rem);
  }
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0.48rem 0.95rem 0.48rem 0.7rem;
  border-radius: 999px;
  background: #e8ecff;
  color: var(--accent-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-badge img {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.contact-hero h1 {
  margin: 0;
  font-size: var(--section-heading-size);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #0f172a;
}

.contact-lede {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  font-weight: 500;
  color: #6b7280;
}

.contact-hero-visual {
  display: grid;
  place-items: center;
  width: min(100%, 32rem);
  justify-self: center;
}

.contact-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.08);
  transform-origin: center;
}

.contact-body {
  padding: 3.25rem 1rem 4.5rem;
}

.contact-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.contact-details-title {
  margin: 0 0 0.35rem;
  font-size: var(--section-heading-size); /* 44px */
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #0f172a;
}

.contact-details-lede {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  font-weight: 500;
  color: #6b7280;
}

.contact-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.03),
    0 10px 24px rgba(15, 23, 42, 0.04);
}

.contact-detail-icon {
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  background: #eef1f5;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-detail-icon img,
.contact-detail-icon svg {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}

.contact-detail-icon img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(79%) saturate(2476%)
    hue-rotate(221deg) brightness(97%) contrast(101%);
}

.contact-detail h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #94a3b8;
}

.contact-detail a,
.contact-detail p {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 600;
  color: #0f172a;
}

.contact-detail a:hover {
  color: var(--accent-blue);
}

.contact-detail--address p {
  font-weight: 550;
  color: #374151;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.6rem;
  border-radius: 1.25rem;
  border: 1px solid #e8ebf2;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 40px rgba(15, 23, 42, 0.06);
}

.contact-form-title {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.contact-form-lede {
  margin: -0.25rem 0 0.35rem;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 500;
  color: #6b7280;
}

.contact-form-grid {
  display: grid;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field > span:not(.contact-field-error) {
  font-size: 0.82rem;
  font-weight: 700;
  color: #334155;
}

.contact-req {
  margin-left: 0.2em;
  color: var(--secondary);
  font-weight: 800;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  background: #f8fafc;
  color: #0f172a;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.contact-field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: none;
}

.contact-field.is-invalid > input,
.contact-field.is-invalid > textarea {
  border-color: #dc2626;
  background: #fff8f8;
}

.contact-phone.is-invalid .contact-phone-trigger,
.contact-phone.is-invalid > input[type="tel"] {
  border-color: #dc2626;
  background: #fff8f8;
}

.contact-field-error {
  display: block;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.35;
  color: #dc2626;
}

.contact-phone {
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 0;
}

.contact-phone.is-open {
  z-index: 30;
}

.contact-phone-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  min-height: 2.9rem;
  padding: 0 0.7rem 0 0.75rem;
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 0.75rem 0 0 0.75rem;
  background: #f5f6fa;
  color: #0f172a;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.contact-phone-trigger:hover {
  background: #f0f1f7;
}

.contact-phone.is-open .contact-phone-trigger,
.contact-phone-trigger:focus-visible {
  outline: none;
  border-color: var(--primary);
  z-index: 1;
}

.contact-phone.is-open .contact-phone-trigger svg {
  transform: rotate(180deg);
}

.contact-phone-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.contact-phone-dial {
  font-variant-numeric: tabular-nums;
}

.contact-phone-trigger svg {
  color: #6b7280;
  transition: transform 0.15s ease;
}

.contact-phone > input[type="tel"] {
  flex: 1;
  min-width: 0;
  border-radius: 0 0.75rem 0.75rem 0;
}

.contact-phone.is-open > input[type="tel"] {
  border-color: var(--primary);
  border-left-color: transparent;
  box-shadow: none;
}

.contact-phone-panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  width: min(100%, 22rem);
  max-height: 20rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(27, 59, 219, 0.16);
}

.contact-phone-panel[hidden] {
  display: none !important;
}

.contact-phone-search {
  flex-shrink: 0;
  padding: 0.55rem;
  border-bottom: 1px solid var(--line);
}

.contact-phone-search input {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.65rem;
  background: #f4f5f9;
  color: #0f172a;
  font: inherit;
  font-size: 0.92rem;
}

.contact-phone-search input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
}

.contact-phone-list {
  margin: 0;
  padding: 0.3rem 0;
  list-style: none;
  overflow: auto;
  min-height: 0;
  flex: 1;
}

.contact-phone-list button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border: 0;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-phone-list button.is-active,
.contact-phone-list button:hover {
  background: var(--primary-soft);
}

.contact-phone-option-flag {
  width: 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1;
}

.contact-phone-option-name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-phone-option-dial {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  color: #5b647c;
}

.contact-phone-list button.is-active .contact-phone-option-dial {
  color: var(--primary);
  font-weight: 700;
}

.contact-phone-empty {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: #6b7280;
}

.contact-agree {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 550;
  color: #4b5563;
}

.contact-agree .contact-field-error {
  grid-column: 2;
}

.contact-agree.is-invalid > input {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.contact-agree input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 0.3rem;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.contact-agree input:checked {
  background-color: var(--accent-blue);
  border-color: var(--accent-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.2 6.4 11.1 12.5 4.9' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 0.85rem 0.85rem;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-agree input:focus-visible {
  outline: none;
  box-shadow: none;
  border-color: var(--primary);
}

.contact-agree a {
  color: var(--accent-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form-status {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.contact-form-status.is-success {
  background: #ecfdf5;
  color: #047857;
}

.contact-form-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 3.15rem;
  margin-top: 0.25rem;
  border: none;
  border-radius: 0.8rem;
  background: var(--accent-blue);
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(27, 59, 219, 0.28);
  transition: background 0.15s ease, opacity 0.15s ease;
}

.contact-submit:hover {
  background: #1632c4;
}

.contact-submit:disabled,
.contact-submit.is-loading {
  cursor: wait;
  opacity: 0.88;
  background: #1632c4;
}

.contact-submit-spinner {
  width: 1.05rem;
  height: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: contact-spin 0.7s linear infinite;
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 700px) {
  .contact-hero {
    padding: 4rem 1rem 3.25rem;
  }

  .contact-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
  }

  .contact-hero-visual {
    width: 100%;
    max-width: 38rem;
    justify-self: end;
  }

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

  .contact-form {
    padding: 1.75rem 1.6rem 1.85rem;
  }

  .contact-submit {
    width: auto;
    min-width: 12rem;
    justify-self: start;
  }
}

@media (min-width: 980px) {
  .contact-hero {
    padding: 4.75rem 1rem 3.75rem;
  }

  .contact-body {
    padding: 4rem 1rem 5.5rem;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.75rem 3.25rem;
  }

  .contact-hero h1 {
    font-size: clamp(2.35rem, 4vw, var(--section-heading-size));
  }
}


/* —— Help Center / FAQ —— */
body.page-help {
  background: #f7f8fc;
}

.help-hero {
  position: relative;
  padding: 2.75rem 1rem 2.85rem;
  background: var(--accent-blue);
  color: #ffffff;
  overflow: hidden;
}

.help-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.help-hero-copy {
  max-width: 34rem;
  transform: translateY(-0.85rem);
}

@media (min-width: 980px) {
  .help-hero-copy {
    margin-left: clamp(1rem, 3.5vw, 3rem);
    transform: translateY(-1.15rem);
  }
}

.help-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.48rem 0.95rem 0.48rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.help-badge img {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.help-hero h1 {
  margin: 1.15rem 0 0;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #ffffff;
}

.help-hero-accent {
  color: var(--secondary);
}

.help-lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(236, 240, 255, 0.82);
}

.help-lede a {
  color: #ffffff;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.help-lede a:hover {
  color: var(--secondary);
}

.help-hero-visual {
  display: grid;
  place-items: center;
  width: min(100%, 26rem);
  justify-self: center;
  transform: translate(-1.35rem, -0.85rem);
}

.help-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  transform: none;
  transform-origin: center;
}

.help-faq {
  padding: 2.5rem 1rem 4.5rem;
}

.help-faq-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.help-faq-main {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.help-faq-search {
  position: relative;
  display: flex;
  align-items: center;
}

.help-faq-search-icon {
  position: absolute;
  left: 1rem;
  display: grid;
  place-items: center;
  color: #8b93a7;
  pointer-events: none;
}

.help-faq-search input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem 0.75rem 2.85rem;
  border: 1.5px solid rgba(27, 59, 219, 0.14);
  border-radius: 1rem;
  background: #ffffff;
  color: #0a0f2d;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.help-faq-search input::-webkit-search-decoration,
.help-faq-search input::-webkit-search-cancel-button,
.help-faq-search input::-webkit-search-results-button,
.help-faq-search input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.help-faq-search input::placeholder {
  color: #9aa3b5;
  font-weight: 500;
}

.help-faq-search input:focus {
  border-color: var(--accent-blue);
  box-shadow: none;
}

.help-faq-empty {
  margin: 0;
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  border: 1px dashed rgba(27, 59, 219, 0.16);
  background: #ffffff;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}

.help-faq-empty a {
  color: var(--accent-blue);
  font-weight: 650;
}

.help-faq-item[hidden] {
  display: none !important;
}

@media (min-width: 700px) {
  .help-hero {
    padding: 3.25rem 1rem 3.35rem;
  }

  .help-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.75rem;
  }

  .help-hero-visual {
    width: 100%;
    max-width: 30rem;
    justify-self: end;
    transform: translate(-3rem, -1.35rem);
  }
}

@media (min-width: 980px) {
  .help-faq {
    padding: 3.25rem 1rem 5.5rem;
  }

  .help-faq-inner {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 18rem);
    gap: 2rem 2.5rem;
    align-items: start;
  }

  .help-hero {
    padding: 3.5rem 1rem 3.6rem;
  }

  .help-hero h1 {
    font-size: clamp(2.15rem, 3.5vw, 2.85rem);
  }

  .help-hero-visual {
    max-width: 32rem;
    transform: translate(-3.5rem, -1.5rem);
  }
}

.help-faq-list {
  display: grid;
  gap: 0.65rem;
}

.help-faq-item {
  border-radius: 1.1rem;
  border: 1px solid rgba(27, 59, 219, 0.08);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(27, 59, 219, 0.03);
  overflow: hidden;
}

.help-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0f2d;
  line-height: 1.35;
}

.help-faq-item summary::-webkit-details-marker {
  display: none;
}

.help-faq-item summary::marker {
  content: "";
}

.help-faq-chevron {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: color-mix(in srgb, var(--foreground) 42%, #8b93a7);
  transition: transform 0.18s ease;
}

.help-faq-item[open] summary {
  color: var(--accent-blue);
}

.help-faq-item[open] .help-faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.help-faq-answer {
  padding: 0 1.15rem 1.15rem;
}

.help-faq-answer p {
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(27, 59, 219, 0.06);
  padding-top: 0.85rem;
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 500;
  color: color-mix(in srgb, var(--foreground) 55%, #6b728a);
}

.help-faq-answer a {
  color: var(--accent-blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.help-faq-aside {
  position: sticky;
  top: calc(var(--site-header-h, 4.5rem) + 1rem);
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 1.25rem;
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(27, 59, 219, 0.22);
}

.help-faq-aside h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.help-faq-aside p {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.help-faq-cta {
  margin-top: 1.15rem;
  width: 100%;
  background: #ffffff !important;
  color: var(--accent-blue) !important;
  border-color: #ffffff !important;
}

.help-faq-cta:hover {
  background: #f4f6ff !important;
}

/* —— Legal pages (Privacy / Terms) —— */
body.page-legal {
  background: #f7f8fc;
}

.legal-hero {
  padding: 4rem 1rem 4.25rem;
  background: var(--accent-blue);
  color: #ffffff;
  text-align: center;
}

.legal-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.legal-badge {
  display: inline-block;
  margin: 0;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 1.15rem 0 0;
  font-size: clamp(2.15rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #ffffff;
}

.legal-hero-accent {
  color: var(--secondary);
}

.legal-lede {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(236, 240, 255, 0.82);
}

.legal-meta {
  margin: 1.15rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(236, 240, 255, 0.62);
}

.legal-body {
  padding: 2.5rem 1rem 4.5rem;
}

.legal-article {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.legal-toc {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(27, 59, 219, 0.08);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(27, 59, 219, 0.03);
}

.legal-toc-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
}

.legal-toc ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.legal-toc a {
  color: var(--accent-blue);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.35;
}

.legal-toc a:hover {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.legal-prose {
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(27, 59, 219, 0.08);
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(27, 59, 219, 0.03);
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  scroll-margin-top: calc(var(--site-header-h, 4.5rem) + 0.75rem);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0f2d;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  color: #111827;
}

.legal-prose p,
.legal-prose li {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
  color: #374151;
}

.legal-prose p + p,
.legal-prose p + ul,
.legal-prose ul + p,
.legal-prose h3 + p {
  margin-top: 0.85rem;
}

.legal-prose ul {
  margin: 0.85rem 0 0;
  padding: 0 0 0 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-prose a {
  color: var(--accent-blue);
  font-weight: 650;
  text-underline-offset: 0.12em;
}

@media (min-width: 700px) {
  .legal-hero {
    padding: 5rem 1rem 5.25rem;
  }
}

@media (min-width: 980px) {
  .legal-body {
    padding: 3.25rem 1rem 5.5rem;
  }

  .legal-article {
    grid-template-columns: minmax(14rem, 16.5rem) minmax(0, 1fr);
    gap: 2rem 2.5rem;
  }

  .legal-toc {
    position: sticky;
    top: calc(var(--site-header-h, 4.5rem) + 1rem);
  }

  .legal-prose {
    padding: 2rem 2.15rem 2.35rem;
  }
}

/* --- Marketing positioning pass (mkt-pos-1) --- */
.home-hero-brand {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
}

.home-hero-cta .home-cta-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home-hero-cta .home-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.home-modes {
  padding: 3.5rem 1rem 4rem;
  background: #fff;
  border-top: 1px solid var(--line-strong);
}

.home-modes-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.home-modes-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.home-modes-badge {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.home-modes-head h2 {
  margin: 0;
  font-size: clamp(1.85rem, 5vw, var(--section-heading-size));
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #0a0f2d;
}

.home-modes-period {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin-left: 0.12em;
  border-radius: 50%;
  background: var(--secondary);
  vertical-align: 0.15em;
}

.home-modes-lede {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #4b5568;
  font-weight: 500;
}

.home-modes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-modes-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #f7f8fc;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.home-modes-card:hover {
  border-color: rgba(27, 59, 219, 0.28);
  background: #fff;
  transform: translateY(-2px);
}

.home-modes-card--teams {
  background: #eef1ff;
  border-color: rgba(27, 59, 219, 0.16);
}

.home-modes-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.35rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
}

.home-modes-card-icon img {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.home-modes-card--teams .home-modes-card-icon {
  background: rgba(255, 255, 255, 0.85);
}

.home-modes-card-label {
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.home-modes-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.home-modes-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #4b5568;
  font-weight: 500;
}

@media (max-width: 980px) {
  .home-modes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-modes {
    padding: 3rem 1rem 3.25rem;
  }

  .home-modes-grid {
    grid-template-columns: 1fr;
  }
}

.teams-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
}

.teams-hero-cta-row .teams-cta-primary {
  margin-top: 0;
}

.teams-cta-secondary {
  height: 3.15rem;
  padding: 0 1.2rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff !important;
  font-weight: 650;
  background: transparent;
}

.teams-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff !important;
}
