/* Homepage + Solutions — Zoom-style marketing layout. Does not change the site header. */
.home-page {
  background: #fff;
  color: #0f172a;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  color: #fff;
  /* Discord indigo at the top, Zoom-style wash to white as you scroll */
  background-color: #120e24;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(108, 88, 210, 0.55), transparent 58%),
    radial-gradient(ellipse 45% 40% at 100% 18%, rgba(72, 56, 168, 0.35), transparent 52%),
    radial-gradient(ellipse 40% 35% at 0% 22%, rgba(48, 36, 120, 0.4), transparent 50%),
    linear-gradient(
      180deg,
      #120e24 0%,
      #1a1440 34%,
      #2a2260 52%,
      #5c5488 68%,
      #d8d4ea 84%,
      #ffffff 100%
    );
}
@media (min-width: 1024px) {
  .home-hero { padding: 6.5rem 0 5.5rem; }
}
.home-hero-blobs {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.home-hero-blobs span {
  position: absolute;
  border-radius: 9999px;
  filter: blur(72px);
  opacity: 0.45;
}
.home-hero-blobs .b1 {
  width: 28rem;
  height: 28rem;
  background: #6d5bd0;
  top: -8rem;
  left: -4rem;
}
.home-hero-blobs .b2 {
  width: 24rem;
  height: 24rem;
  background: #4c3d9a;
  top: 2rem;
  right: -5rem;
}
.home-hero-blobs .b3 {
  width: 20rem;
  height: 20rem;
  background: #7c6ad8;
  bottom: 18%;
  left: 38%;
  opacity: 0.22;
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.home-kicker i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: #0ea5e9;
}

.home-hero .home-kicker {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ddd6fe;
}
.home-hero .home-kicker i {
  background: #a78bfa;
}

.home-control-line {
  margin: -0.35rem auto 1.35rem;
  max-width: 28rem;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
a.home-control-line {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.home-control-line:hover { color: #fff; }

.home-hero h1 {
  max-width: 12em;
  margin: 0 auto 1.25rem;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: #fff;
}
.home-hero h1 em {
  font-style: normal;
  color: #c4b5fd;
}
.home-hero .lead {
  max-width: 38rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.home-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.home-btn-primary {
  background: #0ea5e9;
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.28);
}
.home-btn-primary:hover { background: #0284c7; color: #fff; }
.home-btn-ghost {
  background: #fff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}
.home-btn-ghost:hover { border-color: #0f172a; color: #0f172a; }
.home-btn-dark {
  background: #0f172a;
  color: #fff;
}
.home-btn-dark:hover { background: #020617; color: #fff; }
.home-btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.home-btn-light:hover { background: rgba(255,255,255,0.08); color: #fff; }

.home-hero .home-btn-primary {
  background: #fff;
  color: #16122e;
  box-shadow: 0 10px 28px rgba(8, 6, 24, 0.28);
}
.home-hero .home-btn-primary:hover {
  background: #f1f5f9;
  color: #16122e;
}
.home-hero .home-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.home-hero .home-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.home-cards {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
}
@media (min-width: 768px) {
  .home-cards { margin-top: 3.25rem; }
}
.home-cards-track {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.7rem 0 0.85rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .home-cards-track {
    gap: 1.1rem;
    padding: 1.35rem 0 1.25rem;
  }
}
.home-cards-track:not(.is-ready) { visibility: hidden; }
.home-cards-track.is-jumping {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.home-cards-track::-webkit-scrollbar { display: none; }
.home-card {
  /* Phone: 4:3 card, centered, with a sliver of the neighbors on each side. */
  --card-w: calc(100vw - 3.5rem);
  --card-h: calc((100vw - 3.5rem) * 3 / 4);
  position: relative;
  flex: 0 0 var(--card-w);
  width: var(--card-w);
  min-width: var(--card-w);
  height: var(--card-h);
  min-height: var(--card-h);
  contain: size layout;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 1.75rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #0b1020;
  box-shadow: 0 18px 40px rgba(8, 6, 24, 0.38);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
@media (min-width: 768px) {
  .home-card {
    --card-w: 37.5rem;
    --card-h: 25.5rem;
    flex: 0 0 37.5rem;
    width: 37.5rem;
    min-width: 37.5rem;
    height: 25.5rem;
    min-height: 25.5rem;
    border-radius: 1.5rem;
  }
}
.home-card:hover,
.home-card:focus-visible {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(8, 6, 24, 0.48);
}
@media (max-width: 767px) {
  .home-card:hover,
  .home-card:focus-visible {
    transform: none;
  }
}
.home-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 24, 0.62) 0%, transparent 46%);
  pointer-events: none;
}
.home-card-label {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1.15rem 1.2rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
@media (max-width: 767px) {
  .home-card-label {
    padding: 1.35rem 1.4rem 0;
    font-size: 1.25rem;
  }
}
.home-cards-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.35rem;
}
.home-cards-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1440;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .home-cards-arrow { display: none; }
}
.home-cards-arrow:hover { background: #fff; }
.home-cards-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.home-cards-dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}
.home-cards-dot.is-on {
  width: 1.35rem;
  background: #fff;
}

.home-section { padding: 4.5rem 0; }
@media (min-width: 768px) {
  .home-section { padding: 5.5rem 0; }
}
.home-section h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #020617;
}
.home-section .sub {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: #64748b;
}

.home-spot {
  background: #fff;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
  display: grid;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
@media (min-width: 900px) {
  .home-spot { grid-template-columns: 1fr 1.15fr; min-height: 28rem; }
}
.home-spot:has(.home-spot-media:hover),
.home-spot:has(.home-spot-media:focus-visible) {
  transform: translateY(-12px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.16);
}
.home-spot-copy {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .home-spot-copy { padding: 3rem; }
}
.home-spot-copy h3 {
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #020617;
}
.home-spot-copy p {
  margin: 0.85rem 0 1.5rem;
  color: #475569;
  line-height: 1.6;
}
.home-spot-media {
  position: relative;
  min-height: 16rem;
  background: #16124a;
  display: block;
  cursor: pointer;
}
.home-spot-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% top;
}

.home-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin: 2rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}
.home-tab {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
}
.home-tab:hover { color: #0f172a; background: #e2e8f0; }
.home-tab.is-on {
  background: #0f172a;
  color: #fff;
}

.home-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.home-panel.is-on { display: grid; }
@media (min-width: 800px) {
  .home-panel.is-on { grid-template-columns: 1.2fr 1fr; }
}
.home-panel img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}
@media (min-width: 800px) {
  .home-panel img { height: 100%; min-height: 22rem; }
}
.home-panel-copy { padding: 2rem; }
.home-panel-copy h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.home-panel-copy p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.home-panel-copy a {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
}
.home-panel-copy a:hover { color: #0369a1; }

.home-cats {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .home-cats { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.home-cat {
  display: block;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}
.home-cat img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #0f172a;
}
.home-cat img.home-cat-contain {
  object-fit: contain;
}
.home-cat div { padding: 1rem 1.05rem 1.15rem; }
.home-cat h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #020617;
}
.home-cat p {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.home-why {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .home-why { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.home-why article {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.home-why h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.home-why p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}
.home-why .icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.home-why .icon svg { width: 1.35rem; height: 1.35rem; }
@media (min-width: 768px) {
  .home-why.home-why-2 { grid-template-columns: 1fr 1fr; }
}

.home-upsides {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 700px) {
  .home-upsides { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1100px) {
  .home-upsides { grid-template-columns: repeat(4, 1fr); }
}
.home-upside {
  background: #fff;
  border-radius: 1rem;
  padding: 1.1rem 1.05rem 1.15rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.home-upside .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.home-upside .icon svg { width: 1.15rem; height: 1.15rem; }
.home-upside h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #020617;
}
.home-upside p {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}

.home-jobs {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-jobs { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}
.home-job {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.home-job img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #0f172a;
}
.home-job div { padding: 1.25rem 1.3rem 1.4rem; }
.home-job h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #020617;
}
.home-job p {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
}
.home-spot-copy a.home-inline {
  color: #0284c7;
  font-weight: 600;
  text-decoration: none;
}
.home-spot-copy a.home-inline:hover { color: #0369a1; }

.home-band {
  margin: 0 0 4rem;
  padding: 3.5rem 1.5rem;
  border-radius: 1.75rem;
  background: #0f172a;
  color: #fff;
  text-align: center;
}
.home-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.home-band p {
  margin: 0.75rem auto 1.75rem;
  max-width: 36rem;
  color: #cbd5e1;
}

.home-page .guest-pricing { color: #0284c7; }
.home-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home-head-row a {
  flex-shrink: 0;
  color: #0284c7;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.home-head-row a:hover { color: #0369a1; }
.home-center { text-align: center; }
.home-center h2, .home-center .sub { margin-left: auto; margin-right: auto; }
.home-center .sub { max-width: 36rem; }
.home-center h2 { max-width: 22ch; }
