:root {
  --spce-purple: #573582;
  --spce-orange: #f9a355;
  --spce-pink: #c04885;
  --spce-blue: #197fc3;
  --spce-cream: #f8edf5;
  --spce-ink: #1b1e3f;
  --spce-white: #fefcfd;
  --spce-deep: #2c1450;
  --spce-purple-2: #6f3fb2;
  --spce-orange-2: #ff7a2f;
  --spce-pink-2: #e54792;
  --spce-blue-2: #28a5e5;
  --spce-muted: #666783;
  --spce-border: rgba(27, 30, 63, .11);
  --spce-shadow: 0 24px 70px rgba(55, 53, 130, .16);
  --spce-shadow-soft: 0 14px 40px rgba(55, 53, 130, .11);
  --spce-radius: 28px;
  --spce-radius-sm: 18px;
  --spce-font-display: 'Space Grotesk', sans-serif;
  --spce-font-body: 'DM Sans', sans-serif;
  --spce-font-hand: 'Caveat', cursive;
}

html { scroll-behavior: smooth; }
body {
  color: var(--spce-ink);
  background: var(--spce-cream);
  font-family: var(--spce-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--spce-purple); }
img { max-width: 100%; height: auto; }
::selection { background: var(--spce-orange); color: var(--spce-ink); }

.site-header {
  background: rgba(248, 237, 245, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.72);
  z-index: 1030;
}
.site-header .navbar { min-height: 78px; }

/* Homepage only: let the hero artwork continue seamlessly behind the nav. */
.site-header-home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Keep the overlay header below the WordPress admin bar while logged in. */
.admin-bar .site-header-home { top: 32px; }

@media (max-width: 782px) {
  .admin-bar .site-header-home { top: 46px; }
}
.navbar-brand { max-width: 235px; padding: 0; margin-right: 1rem; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-height: 58px; width: auto; }
.spce-logo-default { max-height: 200px; width: auto; }
.navbar .nav-link {
  color: var(--spce-ink);
  font-weight: 700;
  padding-inline: .8rem !important;
}
.navbar .nav-link:hover { color: var(--spce-pink); }
/* Mobile navigation: matches the COSMIC demo toggle + slide-out drawer. */
.spce-mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: grid !important;
  place-items: center;
  flex: 0 0 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(87,53,130,.10);
  border-radius: 13px;
  background: rgba(248,237,245,.94);
  color: var(--spce-purple);
  box-shadow: 0 8px 22px rgba(55,53,130,.08);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.spce-mobile-menu-btn:hover,
.spce-mobile-menu-btn:focus-visible {
  background: #fff;
  color: var(--spce-pink);
  box-shadow: 0 12px 28px rgba(55,53,130,.13);
  transform: translateY(-1px);
}
.spce-mobile-menu-btn:focus-visible,
.spce-mobile-menu-close:focus-visible {
  outline: 3px solid rgba(249,163,85,.34);
  outline-offset: 2px;
}

.spce-mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1085;
  width: min(88vw, 340px);
  min-height: 100dvh;
  display: flex !important;
  flex-direction: column;
  overflow-y: auto;
  background:
    radial-gradient(circle at 10% 2%, rgba(192,72,133,.24), transparent 25%),
    linear-gradient(180deg, #33175c, #241244);
  color: rgba(255,255,255,.82);
  box-shadow: 18px 0 55px rgba(28,14,54,.24);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform .25s ease, visibility .25s ease;
}
.spce-mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.spce-mobile-menu-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 20px 20px;
}
.spce-mobile-menu-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.spce-mobile-menu-logo img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}
.spce-mobile-menu-close {
  width: 40px;
  height: 40px;
  display: grid !important;
  place-items: center;
  flex: 0 0 40px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  color: #fff !important;
  transition: background .18s ease, transform .18s ease;
}
.spce-mobile-menu-close:hover {
  background: rgba(255,255,255,.17);
  transform: rotate(4deg);
}
.spce-mobile-menu-body {
  flex: 1 1 auto;
  padding: 18px 16px 24px;
}
.spce-mobile-menu-eyebrow {
  display: block;
  padding: 0 11px 9px;
  color: rgba(255,255,255,.40);
  font-family: var(--spce-font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.spce-mobile-nav {
  display: grid !important;
  gap: 4px;
  margin: 0 0 22px;
  padding: 0;
}
.spce-mobile-nav li {
  margin: 0;
  padding: 0;
}
.spce-mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border-radius: 13px;
  color: rgba(255,255,255,.78);
  font-family: var(--spce-font-display);
  font-size: 1rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.spce-mobile-nav a::after {
  content: '\f061';
  flex: 0 0 auto;
  color: rgba(255,255,255,.28);
  font-family: 'Font Awesome 6 Free';
  font-size: .78rem;
  font-weight: 900;
  transition: color .18s ease, transform .18s ease;
}
.spce-mobile-nav a:hover,
.spce-mobile-nav .current-menu-item > a,
.spce-mobile-nav .current_page_item > a {
  color: #fff;
  background: linear-gradient(90deg, rgba(249,163,85,.19), rgba(192,72,133,.10));
  box-shadow: inset 3px 0 0 var(--spce-orange);
}
.spce-mobile-nav a:hover::after,
.spce-mobile-nav .current-menu-item > a::after,
.spce-mobile-nav .current_page_item > a::after {
  color: var(--spce-orange);
  transform: translateX(2px);
}
.spce-mobile-menu-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.spce-mobile-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.44);
  font-size: .8rem;
}
.spce-mobile-menu-footer i {
  color: var(--spce-orange);
}
.spce-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: block !important;
  background: rgba(18,12,36,.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.spce-mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
body.spce-mobile-menu-open {
  overflow: hidden;
}
.admin-bar .spce-mobile-menu,
.admin-bar .spce-mobile-menu-overlay {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .spce-mobile-menu,
  .admin-bar .spce-mobile-menu-overlay {
    top: 46px;
  }
}
@media (min-width: 992px) {
  .spce-mobile-menu-btn,
  .spce-mobile-menu,
  .spce-mobile-menu-overlay {
    display: none !important;
  }
}


.btn {
  font-family: var(--spce-font-display);
  font-weight: 700;
  border-radius: 999px;
  padding: .78rem 1.35rem;
}
.btn-spce {
  color: var(--spce-ink);
  border: 0;
  background: linear-gradient(135deg, var(--spce-orange), #ff7a2f);
  box-shadow: 0 10px 28px rgba(249,163,85,.36);
}
.btn-spce:hover { color: var(--spce-ink); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(249,163,85,.42); }
.btn-outline-spce {
  color: var(--spce-purple);
  border: 2px solid rgba(87,53,130,.48);
  background: rgba(255,255,255,.55);
}
.btn-outline-spce:hover { color: #fff; background: var(--spce-purple); border-color: var(--spce-purple); }

.eyebrow {
  display: inline-block;
  color: var(--spce-pink);
  font-family: var(--spce-font-display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--spce-orange); }
.display-hero,
.display-section,
h1,h2,h3,h4,h5,h6 {
  font-family: var(--spce-font-display);
  font-weight: 700;
  letter-spacing: -.035em;
}
.display-hero {
  font-size: clamp(3.1rem, 6vw, 6.15rem);
  line-height: 1;
  letter-spacing: -.065em;
}
.display-section {
  font-size: clamp(2.25rem, 4.25vw, 4.4rem);
  line-height: .98;
}
.text-gradient {
  color: var(--spce-orange-2);
  background: linear-gradient(135deg, var(--spce-orange), var(--spce-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-pad { padding: clamp(5rem, 8vw, 8rem) 0; }
.py-lg-6 { padding-top: 6rem !important; padding-bottom: 6rem !important; }

.hero-section {
  background:
    url('../images/hero-bg.jpg') top center / cover no-repeat,
    radial-gradient(circle at 72% 15%, rgba(25,127,195,.17), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(192,72,133,.17), transparent 22%),
    linear-gradient(180deg, #fff 0%, var(--spce-cream) 100%);
    padding-top: 150px;
}

.min-vh-hero {
  min-height: calc(100vh - 78px);
  padding: 5.75rem 0;
}

.hero-copy {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  max-width: 38rem;
  color: #45465f;
}

.hero-subline {
  font-family: var(--spce-font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-subline::first-letter {
  color: var(--spce-purple);
}

.hero-trust {
  color: var(--spce-ink);
  font-size: .92rem;
  font-weight: 700;
}

.hero-trust i {
  color: var(--spce-purple);
  margin-right: .35rem;
}

.scribble {
  font-family: var(--spce-font-hand);
  font-weight: 700;
  transform: rotate(-6deg);
  font-size: clamp(1.4rem, 2.2vw, 2.15rem);
  line-height: 1;
}

.scribble-hero {
  position: absolute;
  z-index: 3;
  top: -5.5rem;
  right: 1.25rem;
  width: 13rem;
  color: var(--spce-purple);
  text-align: center;
}

.orbit-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .9;
}

.orbit-blob-a {
  width: 380px;
  height: 160px;
  background: var(--spce-pink);
  right: -110px;
  top: 90px;
  transform: rotate(-36deg);
}

.orbit-blob-b {
  width: 330px;
  height: 130px;
  background: var(--spce-orange);
  left: -160px;
  bottom: -20px;
  transform: rotate(18deg);
}

.laptop-shell {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  filter: drop-shadow(0 36px 45px rgba(27,30,63,.23));
}

.laptop-screen {
  display: flex;
  min-height: 470px;
  background: #f9f7fb;
  border: 14px solid #20213f;
  border-radius: 28px 28px 14px 14px;
  overflow: hidden;
}

.laptop-base {
  width: 110%;
  height: 20px;
  margin-left: -5%;
  background: linear-gradient(#d9dbe7,#bfc2d1);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,.8);
}

.demo-sidebar {
  width: 155px;
  flex: 0 0 155px;
  background: linear-gradient(180deg, #352069, #261547);
  color: #fff;
  padding: 1.1rem .8rem;
}

.demo-brand {
  font-family: var(--spce-font-display);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.demo-brand i {
  color: var(--spce-orange);
  margin-right: .35rem;
}

.demo-sidebar a {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: rgba(255,255,255,.76);
  padding: .7rem .72rem;
  border-radius: 12px;
  font-size: .76rem;
  margin-bottom: .24rem;
}

.demo-sidebar a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.demo-main {
  flex: 1;
  padding: 1.25rem;
  min-width: 0;
}

.demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.demo-topbar small {
  display: block;
  color: var(--spce-muted);
}

.demo-topbar strong {
  display: block;
  font-family: var(--spce-font-display);
  font-size: 1.15rem;
}

.demo-avatar {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: var(--spce-purple);
  color: white;
  border-radius: 50%;
  font-weight: 800;
}

.metric-card,
.chart-card,
.donut-card {
  height: 100%;
  background: #fff;
  border: 1px solid #ece9f4;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(55,53,130,.06);
}

.metric-card {
  padding: .8rem;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}

.metric-card i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  margin-bottom: .25rem;
}

.metric-card small {
  color: var(--spce-muted);
  font-size: .69rem;
}

.metric-card strong {
  font-family: var(--spce-font-display);
  font-size: 1.08rem;
}

.metric-card em {
  color: #0aa76e;
  font-style: normal;
  font-size: .67rem;
  font-weight: 800;
}

.metric-blue {
  background: var(--spce-blue);
}

.metric-purple {
  background: var(--spce-purple);
}

.metric-orange {
  background: var(--spce-orange-2);
}

.metric-pink {
  background: var(--spce-pink);
}

.chart-card {
  min-height: 180px;
  padding: 1rem;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
}

.chart-head span {
  color: var(--spce-muted);
}

.chart-bars {
  height: 118px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding-top: 1rem;
  border-bottom: 1px solid #e9e7ef;
}

.chart-bars span {
  flex: 1;
  min-width: 8px;
  background: linear-gradient(
    180deg,
    var(--spce-pink),
    var(--spce-purple)
  );
  border-radius: 6px 6px 0 0;
}

.donut-card {
  min-height: 180px;
  padding: 1rem;
  text-align: center;
  font-size: .75rem;
}

.donut {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: .8rem auto .5rem;
  background: conic-gradient(
    var(--spce-blue) 0 30%,
    var(--spce-purple) 30% 58%,
    var(--spce-orange) 58% 78%,
    var(--spce-pink) 78% 100%
  );
  position: relative;
}

.donut::after {
  content: '';
  position: absolute;
  inset: 23px;
  background: white;
  border-radius: 50%;
}

.donut-card small {
  color: var(--spce-muted);
}
.tools-section { background: #fff; }
.section-heading { max-width: 850px; }
.tool-card {
  --tool-accent: var(--spce-orange);
  --tool-bg: rgba(249,163,85,.12);
  background: linear-gradient(180deg, var(--tool-bg), #fff);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 24px;
  padding: 1.6rem 1.25rem;
  text-align: center;
  box-shadow: var(--spce-shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tool-card:hover { transform: translateY(-7px); box-shadow: var(--spce-shadow); }
.tool-2 { --tool-accent: var(--spce-pink); --tool-bg: rgba(192,72,133,.12); }
.tool-3 { --tool-accent: var(--spce-blue); --tool-bg: rgba(25,127,195,.12); }
.tool-4 { --tool-accent: var(--spce-purple); --tool-bg: rgba(87,53,130,.12); }
.tool-5 { --tool-accent: var(--spce-orange-2); --tool-bg: rgba(255,122,47,.12); }
.tool-6 { --tool-accent: var(--spce-pink-2); --tool-bg: rgba(229,71,146,.12); }
.tool-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; margin: 0 auto 1rem; background: var(--tool-accent); color: white; font-size: 1.55rem; box-shadow: 0 10px 24px color-mix(in srgb, var(--tool-accent) 28%, transparent); }
.tool-card h3 { font-size: 1.1rem; margin-bottom: .65rem; }
.tool-card p { color: #666783; font-size: .9rem; line-height: 1.45; min-height: 84px; }
.tool-card a { color: var(--tool-accent); font-weight: 800; font-size: .86rem; }

.showcase-section {
  position: relative;
  background:
    url('../images/action-bg.jpg') center center / cover no-repeat,
    linear-gradient(145deg, #251345, var(--spce-purple) 65%, #3b1d67);
}

/* The background image already contains the planets */
.showcase-planet {
  display: none;
}

.scribble-light {
  color: white;
  display: inline-block;
  font-size: 2.25rem;
}

.showcase-card {
  color: white;
}

.showcase-window {
  background: #f9f7fb;
  border: 4px solid rgba(255,255,255,.64);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(7,0,20,.32);
  min-height: 278px;
}

.window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 .85rem;
  background: #2b194d;
  color: white;
  font-size: .75rem;
}

.window-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
}

.window-top strong {
  margin-left: .35rem;
}

.window-placeholder {
  display: flex;
  height: 270px;
  background: white;
}

.mini-sidebar {
  width: 22%;
  background: #331c5a;
}

.mini-content {
  flex: 1;
  padding: 1rem;
}

.mini-toolbar {
  height: 24px;
  width: 55%;
  background: #efeaf6;
  border-radius: 7px;
  margin-bottom: 1rem;
}

.mini-row {
  display: grid;
  grid-template-columns: 1fr .55fr .35fr;
  gap: .5rem;
  margin-bottom: .65rem;
}

.mini-row span {
  height: 34px;
  background: #f4f0f8;
  border-radius: 8px;
}

.mini-row span:nth-child(2) {
  background: rgba(249,163,85,.22);
}

.mini-row span:nth-child(3) {
  background: rgba(25,127,195,.2);
}

.mini-chart {
  height: 82px;
  margin-top: 1rem;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(87,53,130,.18),
      rgba(192,72,133,.24)
    );
}

.showcase-caption {
  padding: 1.25rem .35rem 0;
}

.showcase-caption h3 {
  font-size: 1.12rem;
  margin-bottom: .25rem;
}

.showcase-caption p {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.45;
}

.showcase-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--spce-orange);
  color: var(--spce-ink);
}

.spce-showcase-swiper {
  padding-bottom: 3rem;
  overflow: visible;
}

.spce-showcase-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .35;
}

.spce-showcase-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--spce-orange);
}

.people-section { background: linear-gradient(180deg,#fff,var(--spce-cream)); }
.check-list { display: grid; gap: .85rem; font-weight: 700; }
.check-list li { display: flex; align-items: center; gap: .7rem; }
.check-list i { color: var(--spce-purple); }
.people-card { position: relative; border-radius: 34px; overflow: hidden; background: #fff; box-shadow: var(--spce-shadow); min-height: 460px; }
.people-card > img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; display: block; }

.people-placeholder { min-height:460px; display:grid; place-items:center; position:relative; overflow:hidden; background:linear-gradient(135deg,var(--spce-purple),#311650 55%,var(--spce-pink)); }
.people-placeholder::before { content:''; position:absolute; width:360px; height:360px; border-radius:50%; background:var(--spce-orange); left:-130px; bottom:-170px; opacity:.95; }
.people-placeholder::after { content:''; position:absolute; width:260px; height:90px; border:5px solid rgba(255,255,255,.6); border-radius:50%; transform:rotate(-18deg); right:-55px; top:70px; }
.people-device { position:relative; z-index:2; width:min(70%,430px); aspect-ratio:16/10; border:12px solid #20213f; border-radius:24px; background:#fff; box-shadow:0 28px 70px rgba(0,0,0,.28); transform:rotate(-2deg); }
.people-device::after { content:''; position:absolute; left:10%; right:10%; bottom:-24px; height:18px; border-radius:0 0 70% 70%; background:#c9cad7; }
.people-device-screen { height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1rem; padding:2rem; text-align:center; color:var(--spce-ink); font-family:var(--spce-font-display); font-weight:800; font-size:clamp(1rem,2vw,1.4rem); }
.people-device-screen img { width:90px; height:90px; border-radius:24px; }
.people-stars { position:absolute; inset:0; z-index:1; color:#fff; }
.people-stars i:nth-child(1) { position:absolute; left:12%; top:17%; color:var(--spce-orange); font-size:2rem; }
.people-stars i:nth-child(2) { position:absolute; right:15%; bottom:19%; color:var(--spce-blue-2); font-size:1.4rem; }
.people-stars i:nth-child(3) { position:absolute; right:20%; top:20%; color:#fff; font-size:1.3rem; }

.people-orbit-badge { position: absolute; right: 1.4rem; bottom: 1.4rem; max-width: 290px; display: flex; align-items: center; gap: .75rem; background: rgba(27,30,63,.92); color: white; padding: .9rem 1rem; border-radius: 18px; box-shadow: 0 15px 35px rgba(27,30,63,.26); }
.people-orbit-badge i { color: var(--spce-orange); font-size: 1.3rem; }
.system-card { background: #fff; border-radius: 32px; padding: clamp(2rem, 4vw, 3.25rem); box-shadow: var(--spce-shadow-soft); }
.system-pills { display: flex; flex-wrap: wrap; gap: .7rem; }
.system-pills span { background: rgba(87,53,130,.09); color: var(--spce-purple); border-radius: 999px; padding: .55rem .9rem; font-weight: 800; font-size: .88rem; }
.orbit-map { position: relative; min-height: 390px; border-radius: 32px; background: radial-gradient(circle at center, rgba(249,163,85,.18), rgba(87,53,130,.12) 42%, rgba(25,127,195,.08) 70%, transparent); box-shadow: inset 0 0 0 1px rgba(87,53,130,.08); }
.orbit-map::before,.orbit-map::after { content:''; position:absolute; inset: 16%; border: 2px solid rgba(87,53,130,.22); border-radius:50%; transform: rotate(-14deg); }
.orbit-map::after { inset: 28%; border-color: rgba(192,72,133,.22); transform: rotate(16deg); }
.orbit-map-center { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:110px; height:110px; z-index:3; }
.orbit-map-center img { width:100%; height:100%; object-fit:cover; border-radius:26px; box-shadow:0 18px 45px rgba(87,53,130,.25); }
.orbit-node { position:absolute; z-index:4; width:54px; height:54px; display:grid; place-items:center; border-radius:50%; color:white; background:var(--spce-purple); box-shadow:0 12px 26px rgba(27,30,63,.18); }
.orbit-node-1 { left:12%; top:22%; background:var(--spce-orange-2); }
.orbit-node-2 { right:13%; top:16%; background:var(--spce-pink); }
.orbit-node-3 { right:10%; bottom:18%; background:var(--spce-blue); }
.orbit-node-4 { left:19%; bottom:11%; background:var(--spce-purple); }
.orbit-node-5 { left:46%; top:5%; background:var(--spce-pink-2); }

.final-cta-section {
  position: relative;
  overflow: hidden;
  background:
    url('../images/cta-bg.png') center center / cover no-repeat;
}

.cta-planet {
  display: none;
}

.cta-icon {
  width: 192px;
  height: 192px;
  object-fit: cover;
}

.cta-copy {
  max-width: 650px;
}

/* ==========================================================================
   COSMIC Footer
   ========================================================================== */

.site-footer {
    position: relative;
    z-index: 5;
    overflow: hidden;
    isolation: isolate;
    margin-top: -323px;
    padding: 400px 0 6rem;
    color: rgba(248, 237, 245, .82);
    background: transparent;
}


/* Background Artwork
-------------------------------------------------------------------------- */

.site-footer::before {
    content: '';

    position: absolute;
    inset: 0;

    z-index: -1;

    background-image: url('../images/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

    pointer-events: none;
}


/* Footer Content
-------------------------------------------------------------------------- */

.footer-content {
    position: relative;
    z-index: 5;
}


/* ==========================================================================
   Brand
   ========================================================================== */

.footer-brand-column {
    padding-right: clamp(1rem, 3vw, 4rem);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: min(100%, 340px);
    max-height: 115px;

    object-fit: contain;
    object-position: left center;
}

.footer-description {
    max-width: 425px;

    margin-bottom: 1.25rem;

    color: rgba(248, 237, 245, .82);

    font-size: 1.08rem;
    line-height: 1.55;
}

.footer-brand-divider {
    width: 64px;
    height: 1px;

    margin: 1.4rem 0 1rem;

    background: rgba(248, 237, 245, .5);
}

.footer-parent {
    margin-bottom: 1.75rem;

    color: rgba(248, 237, 245, .7);

    font-family: var(--spce-font-display);

    font-size: .78rem;
    font-weight: 700;

    letter-spacing: .2em;

    text-transform: uppercase;
}


/* ==========================================================================
   Social
   ========================================================================== */

.footer-socials {
    display: flex;
    flex-wrap: wrap;

    gap: .75rem;
}

.footer-socials a {
    width: 48px;
    height: 48px;

    display: inline-grid;
    place-items: center;

    border: 1px solid rgba(248, 237, 245, .08);
    border-radius: 50%;

    background: rgba(248, 237, 245, .1);

    color: var(--spce-white);

    font-size: 1.15rem;

    transition:
        transform .2s ease,
        background-color .2s ease,
        color .2s ease;
}

.footer-socials a:hover {
    color: var(--spce-ink);

    background: var(--spce-orange);

    transform: translateY(-4px);
}


/* ==========================================================================
   Footer Navigation
   ========================================================================== */

.footer-nav-column h2 {
    margin: 0 0 1.3rem;

    font-size: .9rem;
    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}

.footer-nav-product h2 {
    color: var(--spce-orange);
}

.footer-nav-explore h2 {
    color: #f04ca4;
}

.footer-nav-company h2 {
    color: var(--spce-blue-2);
}

.footer-nav-legal h2 {
    color: #f04ca4;
}

.footer-menu {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: .7rem;
}

.footer-menu a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: rgba(248, 237, 245, .87);

    font-size: 1.02rem;
    line-height: 1.35;

    transition:
        color .2s ease,
        transform .2s ease;
}

.footer-menu a:hover {
    color: var(--spce-orange);

    transform: translateX(4px);
}


/* Last Product Link
-------------------------------------------------------------------------- */

.footer-nav-product .footer-menu li:last-child {
    margin-top: 1.05rem;
}

.footer-nav-product .footer-menu li:last-child a {
    color: var(--spce-orange);

    font-weight: 700;
}

.footer-nav-product .footer-menu li:last-child a::after {
    content: '\f061';

    margin-left: .55rem;

    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}


/* ==========================================================================
   Handwritten Notes
   ========================================================================== */

.footer-note {
    position: absolute;
    z-index: 6;

    color: var(--spce-white);

    font-family: var(--spce-font-hand);
    font-weight: 600;

    line-height: .85;

    text-align: center;

    pointer-events: none;
}

.footer-note span {
    display: block;

    height: 4px;

    margin: .7rem auto 0;

    border-radius: 999px;

    background: var(--spce-orange);
}

.footer-note-right {
    top: 270px;
    right: 2.2rem;

    font-size: 2.25rem;

    transform: rotate(-6deg);
}

.footer-note-right span {
    width: 110px;

    transform: rotate(-8deg);
}

.footer-note-left {
    left: 4rem;
    bottom: 4.8rem;

    font-size: 2rem;

    transform: rotate(-7deg);
}

.footer-note-left span {
    width: 90px;

    transform: rotate(-7deg);
}


/* ==========================================================================
   Bottom Bar
   ========================================================================== */

.footer-bottom {
    position: relative;
    z-index: 7;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;

    margin-top: 3.5rem;
    padding-top: 1.7rem;

    border-top: 1px solid rgba(248, 237, 245, .38);
}

.footer-copyright,
.footer-florida {
    margin: 0;

    color: rgba(248, 237, 245, .76);

    font-size: .88rem;
}

.footer-copyright span {
    margin: 0 .35rem;
}

.footer-florida {
    flex: 0 0 auto;
}

.footer-florida i {
    margin-right: .6rem;

    color: var(--spce-orange);

    font-size: 1.35rem;
}


/* ==========================================================================
   Old CSS-Generated Space Artwork
   ========================================================================== */

/*
 * footer-bg.png now handles all planets, waves,
 * orbit graphics and stars.
 *
 * We can leave the old markup in footer.php for now
 * without it showing.
 */

.footer-space-art,
.footer-orbit,
.footer-planet,
.footer-star,
.footer-dot {
    display: none !important;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1599.98px) {

    .footer-note-right {
        display: none;
    }

}


@media (max-width: 1199.98px) {

    .site-footer {
        margin-top: -180px;

        padding:
            250px
            0
            5rem;
    }

    .footer-note-left {
        display: none;
    }

}


@media (max-width: 991.98px) {

    .site-footer {
        margin-top: -145px;

        padding:
            210px
            0
            4.5rem;
    }

    .site-footer::before {
        background-size: auto;
        background-position: center !important;
        margin-top: -605px;
    }

    .footer-brand-column {
        padding-right: 0;

        margin-bottom: 1rem;
    }

    .footer-logo {
        max-width: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-copyright span {
        display: block;

        margin: .25rem 0;
    }

}


@media (max-width: 767.98px) {

    .site-footer {
        /*
         * Smaller overlap on mobile.
         */
        margin-top: -95px;

        padding:
            155px
            0
            4rem;
    }

    .site-footer::before {
        background-size: auto 100%;
        background-position: 55% top;
    }

    .footer-logo {
        max-width: 260px;
    }

    .footer-description {
        font-size: 1rem;
    }

    .footer-nav-column h2 {
        margin-top: .5rem;
    }

    .footer-menu a {
        font-size: .96rem;
    }

    .footer-bottom {
        margin-top: 2.5rem;
    }

}


@media (max-width: 575.98px) {

    .site-footer {
        margin-top: -70px;

        padding:
            125px
            0
            3.5rem;
    }

    .footer-socials a {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-florida {
        font-size: .82rem;
    }

}

.spce-content-page { max-width: 900px; margin-inline: auto; }
.entry-content > * + * { margin-top: 1.2rem; }

@media (max-width: 1199.98px) {
  .display-hero { font-size: clamp(3.2rem, 7vw, 5rem); }
  .demo-sidebar { width: 125px; flex-basis: 125px; }
  .scribble-hero { top: -2.5rem; right: 0; }
}

@media (max-width: 991.98px) {
  .min-vh-hero { min-height: auto; padding: 5rem 0 6rem; }
  .hero-section .col-lg-7 { margin-top: 5rem; }
  .scribble-hero { top: -3.5rem; right: 1rem; }
  .laptop-screen { min-height: 420px; }
  .people-card { min-height: 380px; }
  .people-card > img { min-height: 380px; }
}

@media (max-width: 767.98px) {
  .display-hero { font-size: clamp(3rem, 15vw, 4.5rem); }
  .display-section { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .hero-copy { font-size: 1.05rem; }
  .demo-sidebar { width: 78px; flex-basis: 78px; padding-inline: .45rem; }
  .demo-sidebar span,.demo-brand { font-size: 0; }
  .demo-brand i { font-size: 1.25rem; }
  .demo-sidebar a { justify-content: center; font-size: .9rem; padding-inline: .4rem; }
  .demo-main { padding: .8rem; }
  .laptop-screen { min-height: 390px; border-width: 10px; }
  .metric-card { padding: .65rem; }
  .metric-card strong { font-size: .95rem; }
  .chart-card,.donut-card { min-height: 150px; }
  .chart-bars { height: 90px; }
  .donut { width: 78px; height: 78px; }
  .donut::after { inset: 18px; }
  .tool-card p { min-height: 0; }
  .scribble-hero { position: static; display: block; text-align: left; margin-bottom: 1.5rem; width: auto; transform: rotate(-4deg); }
  .people-orbit-badge { margin: -2rem 1rem 1rem; max-width: none; }
  .people-card > img { min-height: 320px; }
  .people-placeholder { min-height: 360px; }
  .orbit-map { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Help Center
   ========================================================================== */

.help-center-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(192, 72, 133, .10), transparent 28%),
    radial-gradient(circle at 92% 32%, rgba(25, 127, 195, .10), transparent 26%),
    var(--spce-cream);
}

.help-hero {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0 6.25rem;
  background:
    radial-gradient(circle at 18% 12%, rgba(249,163,85,.18), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(40,165,229,.15), transparent 28%),
    linear-gradient(135deg, #fdf8fb 0%, #f8edf5 54%, #f3e8fa 100%);
}

.help-hero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -130px;
  width: min(760px, 82vw);
  height: 250px;
  border: 1px solid rgba(87,53,130,.10);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-4deg);
  pointer-events: none;
}

.help-hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.help-hero-orbit-one {
  width: 120px;
  height: 120px;
  top: 70px;
  left: max(3vw, 24px);
  background: linear-gradient(145deg, var(--spce-orange), var(--spce-pink));
  box-shadow: 0 20px 55px rgba(192,72,133,.18);
  opacity: .18;
}

.help-hero-orbit-two {
  width: 74px;
  height: 74px;
  right: max(5vw, 24px);
  bottom: 55px;
  border: 16px solid rgba(87,53,130,.10);
}

.help-hero .display-section {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.help-hero-copy {
  max-width: 720px;
  color: var(--spce-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.help-search-wrap {
  position: relative;
  max-width: 820px;
}

.help-search-input {
  width: 100%;
  min-height: 72px;
  padding: 0 64px 0 62px;
  border: 1px solid rgba(87,53,130,.12);
  border-radius: 22px;
  outline: 0;
  background: rgba(255,255,255,.95);
  color: var(--spce-ink);
  font: 600 1.05rem/1.2 var(--spce-font-body);
  box-shadow: 0 20px 50px rgba(55,53,130,.12);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.help-search-input::placeholder {
  color: rgba(27,30,63,.48);
  font-weight: 500;
}

.help-search-input:focus {
  border-color: rgba(87,53,130,.34);
  box-shadow: 0 24px 60px rgba(55,53,130,.17), 0 0 0 4px rgba(249,163,85,.12);
  transform: translateY(-1px);
}

.help-search-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 24px;
  color: var(--spce-purple);
  font-size: 1.15rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.help-search-clear {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 17px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: rgba(87,53,130,.08);
  color: var(--spce-purple);
  transform: translateY(-50%);
}

.help-search-clear:hover {
  background: rgba(87,53,130,.14);
}

.help-search-hint {
  margin-top: 1rem;
  color: rgba(27,30,63,.55);
  font-size: .9rem;
}

.help-main {
  padding-top: 5.5rem;
  padding-bottom: 12rem;
}

.help-section-note {
  color: var(--spce-muted);
  font-size: .9rem;
  font-weight: 700;
}

.help-popular-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--spce-border);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 30px rgba(55,53,130,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.help-popular-card:hover {
  color: var(--spce-ink);
  border-color: rgba(87,53,130,.22);
  box-shadow: 0 18px 40px rgba(55,53,130,.11);
  transform: translateY(-3px);
}

.help-popular-icon,
.help-topic-icon,
.help-empty-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
  box-shadow: 0 12px 26px rgba(87,53,130,.18);
}

.help-popular-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.help-popular-copy {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.help-popular-copy strong {
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-size: 1rem;
  line-height: 1.25;
}

.help-popular-copy small {
  margin-top: 3px;
  color: var(--spce-muted);
}

.help-popular-arrow {
  color: rgba(87,53,130,.45);
  transition: transform .18s ease, color .18s ease;
}

.help-popular-card:hover .help-popular-arrow {
  color: var(--spce-purple);
  transform: translateX(3px);
}

.help-topic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--spce-border);
  border-radius: var(--spce-radius);
  background: rgba(255,255,255,.84);
  box-shadow: var(--spce-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.help-topic-card:hover {
  border-color: rgba(87,53,130,.18);
  box-shadow: 0 22px 50px rgba(55,53,130,.13);
  transform: translateY(-4px);
}

.help-topic-card-top {
  flex: 1 1 auto;
  padding: 28px 28px 22px;
}

.help-topic-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 17px;
  font-size: 1.15rem;
}

.help-topic-card:nth-child(4n+2) .help-topic-icon {
  background: linear-gradient(145deg, var(--spce-orange-2), var(--spce-orange));
}

.help-topic-card:nth-child(4n+3) .help-topic-icon {
  background: linear-gradient(145deg, var(--spce-blue), var(--spce-blue-2));
}

.help-topic-card:nth-child(4n+4) .help-topic-icon {
  background: linear-gradient(145deg, var(--spce-pink), var(--spce-purple-2));
}

.help-topic-card h3 {
  margin: 0 0 10px;
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.help-topic-card p {
  margin: 0;
  color: var(--spce-muted);
  line-height: 1.65;
}

.help-topic-links {
  border-top: 1px solid var(--spce-border);
  background: rgba(248,237,245,.48);
}

.help-topic-links li + li {
  border-top: 1px solid rgba(27,30,63,.07);
}

.help-topic-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 28px;
  color: var(--spce-ink);
  font-size: .93rem;
  font-weight: 700;
}

.help-topic-links a i {
  color: rgba(87,53,130,.40);
  font-size: .78rem;
  transition: transform .18s ease, color .18s ease;
}

.help-topic-links a:hover {
  color: var(--spce-purple);
  background: rgba(255,255,255,.72);
}

.help-topic-links a:hover i {
  color: var(--spce-purple);
  transform: translateX(3px);
}

.help-search-empty {
  max-width: 520px;
  margin: 0 auto 4rem;
  padding: 38px 28px;
  border: 1px solid var(--spce-border);
  border-radius: var(--spce-radius);
  background: rgba(255,255,255,.78);
}

.help-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 20px;
}

.help-search-empty h2 {
  font-family: var(--spce-font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.help-search-empty p {
  margin-bottom: 0;
  color: var(--spce-muted);
}

.help-page-content {
  max-width: 900px;
  margin-inline: auto;
  padding: 34px;
  border: 1px solid var(--spce-border);
  border-radius: var(--spce-radius);
  background: rgba(255,255,255,.76);
}

.help-contact-card {
  position: relative;
  overflow: hidden;
  padding: 38px 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 22%, rgba(249,163,85,.22), transparent 28%),
    radial-gradient(circle at 8% 100%, rgba(40,165,229,.20), transparent 34%),
    linear-gradient(135deg, #2c1450, #573582 58%, #7145aa);
  box-shadow: 0 24px 65px rgba(44,20,80,.24);
}

.help-contact-card::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 190px;
  right: -65px;
  bottom: -115px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.help-contact-card > .row {
  position: relative;
  z-index: 2;
}

.help-contact-card h2 {
  font-family: var(--spce-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.help-contact-card p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
}

.help-filter-item[hidden],
.help-filter-section[hidden] {
  display: none !important;
}

@media (max-width: 991.98px) {
  .help-hero {
    padding: 6rem 0 5rem;
  }

  .help-main {
    padding-top: 4.5rem;
    padding-bottom: 10rem;
  }

  .help-contact-card {
    padding: 34px;
  }
}

@media (max-width: 575.98px) {
  .help-hero {
    padding: 5rem 0 4.5rem;
  }

  .help-search-input {
    min-height: 64px;
    padding-left: 52px;
    padding-right: 54px;
    border-radius: 18px;
    font-size: .96rem;
  }

  .help-search-icon {
    left: 19px;
  }

  .help-topic-card-top {
    padding: 24px 22px 20px;
  }

  .help-topic-links a {
    padding-inline: 22px;
  }

  .help-contact-card {
    padding: 28px 24px;
    border-radius: 24px;
  }
}

/* --------------------------------------------------------------------------
   Tools Page
   -------------------------------------------------------------------------- */
.tools-page {
  overflow: hidden;
  background: var(--spce-cream);
}

.tools-page-hero {
  padding: 8.5rem 0 7rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(249,163,85,.22), transparent 25%),
    radial-gradient(circle at 10% 72%, rgba(40,165,229,.20), transparent 30%),
    linear-gradient(135deg, #24103f 0%, #43256c 48%, #7145aa 100%);
}

.tools-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.4) 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 75%, rgba(255,255,255,.35) 0 1px, transparent 1.5px);
  background-size: 170px 170px, 220px 220px, 140px 140px;
}

.tools-page-hero .container-xl {
  z-index: 2;
}

.tools-page-hero-copy {
  max-width: 670px;
  color: rgba(255,255,255,.76);
  font-size: 1.12rem;
  line-height: 1.72;
}

.tools-page-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  pointer-events: none;
}

.tools-page-orbit-one {
  width: 560px;
  height: 560px;
  right: -180px;
  top: -180px;
}

.tools-page-orbit-two {
  width: 260px;
  height: 260px;
  left: -95px;
  bottom: -90px;
}

.tools-page-hero-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 38px 90px rgba(16,6,35,.34);
  transform: rotate(1.25deg);
}

.tools-page-windowbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f6f2f8;
  border-bottom: 1px solid rgba(27,30,63,.08);
}

.tools-page-windowbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(87,53,130,.22);
}

.tools-page-hero-shot img {
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.tools-page-hero-note {
  width: fit-content;
  margin: 18px 34px 0 auto;
  color: rgba(255,255,255,.9);
  font-family: var(--spce-font-hand);
  font-size: 1.6rem;
  line-height: 1;
  transform: rotate(-3deg);
}

.tools-page-hero-note span {
  width: 76%;
  height: 7px;
  display: block;
  margin: 5px auto 0;
  border-bottom: 2px solid var(--spce-orange);
  border-radius: 50%;
}

.section-pad-sm {
  padding: 3.5rem 0;
}

.tools-page-quick {
  position: relative;
  z-index: 3;
  margin-top: -2.5rem;
}

.tools-page-quick-card {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid var(--spce-border);
  border-radius: var(--spce-radius);
  background: rgba(255,255,255,.96);
  box-shadow: var(--spce-shadow);
}

.tools-page-quick-copy h2 {
  margin: 7px 0 0;
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
}

.tools-page-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.tools-page-quick-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(87,53,130,.10);
  border-radius: 16px;
  background: rgba(248,237,245,.58);
  color: var(--spce-ink);
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.tools-page-quick-links a:hover {
  color: var(--spce-purple);
  border-color: rgba(87,53,130,.20);
  background: #fff;
  transform: translateY(-2px);
}

.tools-page-quick-links i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
  font-size: .78rem;
}

.tools-page-group {
  position: relative;
  background: #fff;
}

.tools-page-group-tint {
  background: linear-gradient(180deg, #fff 0%, rgba(248,237,245,.76) 100%);
}

.tools-page-group-copy {
  color: var(--spce-muted);
  line-height: 1.72;
}

.tools-page-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--spce-border);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--spce-shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tools-page-card:hover {
  border-color: rgba(87,53,130,.18);
  box-shadow: 0 24px 58px rgba(55,53,130,.14);
  transform: translateY(-5px);
}

.tools-page-card-shot {
  overflow: hidden;
  background: #ece5f2;
  border-bottom: 1px solid var(--spce-border);
}

.tools-page-card-shot img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  display: block;
  object-fit: cover;
  object-position: top left;
  transition: transform .35s ease;
}

.tools-page-card:hover .tools-page-card-shot img {
  transform: scale(1.018);
}

.tools-page-card-visual {
  min-height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 28%, rgba(249,163,85,.32), transparent 23%),
    linear-gradient(135deg, #2c1450, #573582 60%, #7145aa);
}

.tools-page-card-visual > i {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 26px;
  background: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(20,6,40,.22);
  font-size: 2rem;
  backdrop-filter: blur(10px);
}

.tools-page-card-planet {
  width: 90px;
  height: 90px;
  position: absolute;
  right: 11%;
  top: 16%;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--spce-orange), var(--spce-pink));
  filter: blur(.1px);
}

.tools-page-card-orbit {
  width: 290px;
  height: 110px;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transform: translate(-50%,-50%) rotate(-12deg);
}

.tools-page-card-body {
  flex: 1 1 auto;
  padding: 28px 30px 30px;
}

.tools-page-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tools-page-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
  box-shadow: 0 10px 24px rgba(87,53,130,.20);
}

.tools-page-card h3 {
  margin: 0;
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.tools-page-card-body > p {
  margin: 0 0 20px;
  color: var(--spce-muted);
  line-height: 1.66;
}

.tools-page-points {
  display: grid;
  gap: 10px;
}

.tools-page-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--spce-ink);
  font-size: .92rem;
  font-weight: 700;
}

.tools-page-points i {
  margin-top: 3px;
  color: var(--spce-green, #1aa873);
  font-size: .88rem;
}

.tools-page-connected {
  background: #fff;
}

.tools-page-connected-card {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(249,163,85,.20), transparent 28%),
    radial-gradient(circle at 20% 100%, rgba(40,165,229,.18), transparent 32%),
    linear-gradient(135deg, #24103f 0%, #4b2b77 55%, #7145aa 100%);
  box-shadow: 0 30px 80px rgba(44,20,80,.22);
}

.tools-page-connected-card .lead {
  color: rgba(255,255,255,.72);
  line-height: 1.72;
}

.tools-page-connection-map {
  min-height: 430px;
  position: relative;
}

.tools-page-connection-center {
  width: 110px;
  height: 110px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(15,5,30,.26);
  transform: translate(-50%,-50%);
}

.tools-page-connection-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tools-page-connection-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.tools-page-connection-ring.ring-one {
  width: 280px;
  height: 190px;
  transform: translate(-50%,-50%) rotate(-12deg);
}

.tools-page-connection-ring.ring-two {
  width: 420px;
  height: 300px;
  transform: translate(-50%,-50%) rotate(10deg);
}

.tools-page-connection-node {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(15,5,30,.14);
  backdrop-filter: blur(10px);
}

.tools-page-connection-node i {
  color: var(--spce-orange);
}

.tools-page-connection-node.node-one { left: 5%; top: 14%; }
.tools-page-connection-node.node-two { right: 4%; top: 16%; }
.tools-page-connection-node.node-three { right: 0; bottom: 16%; }
.tools-page-connection-node.node-four { left: 6%; bottom: 12%; }
.tools-page-connection-node.node-five { left: 50%; top: 3%; transform: translateX(-50%); }

.tools-page-final {
  background:
    radial-gradient(circle at 18% 20%, rgba(249,163,85,.14), transparent 20%),
    radial-gradient(circle at 85% 72%, rgba(40,165,229,.12), transparent 24%),
    var(--spce-cream);
}

.tools-page-final .lead {
  max-width: 720px;
  color: var(--spce-muted);
}

.tools-page-final-icon {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(87,53,130,.20);
}

@media (max-width: 1199.98px) {
  .tools-page-quick-card {
    grid-template-columns: 1fr;
  }

  .tools-page-quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .tools-page-hero {
    padding: 7rem 0 6rem;
  }

  .tools-page-hero-shot {
    max-width: 760px;
    margin-inline: auto;
    transform: none;
  }

  .tools-page-hero-note {
    margin-right: 8%;
  }

  .tools-page-connection-map {
    min-height: 390px;
  }
}

@media (max-width: 767.98px) {
  .tools-page-quick {
    margin-top: -1.5rem;
  }

  .tools-page-quick-card {
    padding: 26px;
  }

  .tools-page-quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tools-page-card-body {
    padding: 25px 24px 27px;
  }

  .tools-page-card-shot img {
    aspect-ratio: 16 / 9.6;
  }

  .tools-page-connection-map {
    min-height: 340px;
  }

  .tools-page-connection-ring.ring-two {
    width: 330px;
    height: 250px;
  }

  .tools-page-connection-node {
    font-size: .8rem;
    padding: 8px 11px;
  }
}

@media (max-width: 575.98px) {
  .tools-page-hero {
    padding: 6rem 0 5rem;
  }

  .tools-page-quick-links {
    grid-template-columns: 1fr;
  }

  .tools-page-card-visual {
    min-height: 190px;
  }

  .tools-page-connected-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .tools-page-connection-map {
    min-height: 320px;
    margin-inline: -12px;
  }

  .tools-page-connection-center {
    width: 84px;
    height: 84px;
    border-radius: 24px;
  }

  .tools-page-connection-ring.ring-one {
    width: 220px;
    height: 150px;
  }

  .tools-page-connection-ring.ring-two {
    width: 285px;
    height: 220px;
  }

  .tools-page-connection-node.node-one { left: 0; top: 16%; }
  .tools-page-connection-node.node-two { right: 0; top: 19%; }
  .tools-page-connection-node.node-three { right: 0; bottom: 14%; }
  .tools-page-connection-node.node-four { left: 0; bottom: 13%; }
}

/* --------------------------------------------------------------------------
   Product Page
   -------------------------------------------------------------------------- */
.product-page {
  background: #fff;
}

.product-page-hero {
  padding: 8.5rem 0 7.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 84% 20%, rgba(249,163,85,.24), transparent 24%),
    radial-gradient(circle at 16% 78%, rgba(40,165,229,.18), transparent 26%),
    linear-gradient(135deg, #261044 0%, #573582 58%, #7145aa 100%);
}

.product-page-hero-copy {
  max-width: 610px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

.product-page-hero-shot,
.product-page-story-shot,
.product-page-connect-shot,
.product-page-location-shot {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(22,7,42,.28);
}

.product-page-hero-shot {
  transform: rotate(1.2deg);
}

.product-page-hero-shot img,
.product-page-story-shot img,
.product-page-connect-shot img,
.product-page-location-shot img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.product-page-windowbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f3edf6;
  border-bottom: 1px solid rgba(27,30,63,.08);
}

.product-page-windowbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(87,53,130,.22);
}

.product-page-windowbar span:first-child { background: var(--spce-pink); }
.product-page-windowbar span:nth-child(2) { background: var(--spce-orange); }
.product-page-windowbar span:nth-child(3) { background: var(--spce-blue); }

.product-page-hero-note {
  width: max-content;
  max-width: 90%;
  margin: 24px 7% 0 auto;
  position: relative;
  color: #fff;
  font-family: var(--spce-font-hand);
  font-size: clamp(1.45rem, 2vw, 2rem);
  transform: rotate(-3deg);
}

.product-page-hero-note span {
  width: 86%;
  height: 10px;
  position: absolute;
  left: 7%;
  bottom: -7px;
  border-top: 3px solid var(--spce-orange);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.product-page-hero-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  pointer-events: none;
}

.product-page-hero-orbit.orbit-one {
  width: 480px;
  height: 180px;
  right: -110px;
  top: 12%;
  transform: rotate(-16deg);
}

.product-page-hero-orbit.orbit-two {
  width: 360px;
  height: 125px;
  left: -130px;
  bottom: 10%;
  transform: rotate(20deg);
}

.product-page-intro {
  background: var(--spce-cream);
}

.product-page-muted {
  color: var(--spce-muted);
  line-height: 1.72;
}

.product-page-step {
  min-height: 100%;
  position: relative;
  padding: 34px 32px 32px;
  overflow: hidden;
  border: 1px solid var(--spce-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--spce-shadow-soft);
}

.product-page-step-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(87,53,130,.08);
  font-family: var(--spce-font-display);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}

.product-page-step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
  box-shadow: 0 12px 28px rgba(87,53,130,.20);
}

.product-page-step h3,
.product-page-role h3 {
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-weight: 800;
}

.product-page-step h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.product-page-step p,
.product-page-role p {
  margin: 0;
  color: var(--spce-muted);
  line-height: 1.65;
}

.product-page-source {
  background: #fff;
}

.product-page-source-card,
.product-page-locations-card {
  overflow: hidden;
  padding: clamp(34px, 5vw, 66px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(249,163,85,.22), transparent 26%),
    radial-gradient(circle at 15% 88%, rgba(40,165,229,.18), transparent 28%),
    linear-gradient(135deg, #24103f 0%, #4c2a78 56%, #7145aa 100%);
  box-shadow: 0 30px 80px rgba(44,20,80,.20);
}

.product-page-source-card .lead,
.product-page-locations-card .lead {
  color: rgba(255,255,255,.76);
  line-height: 1.72;
}

.product-page-source-small {
  color: rgba(255,255,255,.62);
  line-height: 1.65;
}

.product-page-source-map {
  min-height: 430px;
  position: relative;
}

.product-page-source-center {
  width: 112px;
  height: 112px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(14,5,28,.25);
  transform: translate(-50%,-50%);
}

.product-page-source-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-source-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}

.product-page-source-ring.ring-one {
  width: 290px;
  height: 190px;
  transform: translate(-50%,-50%) rotate(-13deg);
}

.product-page-source-ring.ring-two {
  width: 440px;
  height: 300px;
  transform: translate(-50%,-50%) rotate(11deg);
}

.product-page-source-node {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  z-index: 4;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(15,5,30,.14);
  font-size: .88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.product-page-source-node i { color: var(--spce-orange); }
.product-page-source-node.node-one { left: 4%; top: 16%; }
.product-page-source-node.node-two { right: 4%; top: 14%; }
.product-page-source-node.node-three { right: 0; bottom: 17%; }
.product-page-source-node.node-four { left: 3%; bottom: 17%; }
.product-page-source-node.node-five { left: 50%; top: 2%; transform: translateX(-50%); }
.product-page-source-node.node-six { left: 50%; bottom: 1%; transform: translateX(-50%); }

.product-page-stories {
  background: linear-gradient(180deg, #fff 0%, rgba(248,237,245,.72) 100%);
}

.product-page-story.mb-6 {
  margin-bottom: clamp(4.5rem, 8vw, 7.5rem);
}

.product-page-story-shot,
.product-page-connect-shot,
.product-page-location-shot {
  border-color: var(--spce-border);
  box-shadow: 0 24px 60px rgba(55,53,130,.15);
}

.product-page-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-page-pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(87,53,130,.10);
  border-radius: 999px;
  color: var(--spce-ink);
  background: #fff;
  font-size: .9rem;
  font-weight: 700;
}

.product-page-pill-list i,
.product-page-checks i {
  color: var(--spce-green, #1aa873);
}

.product-page-connect {
  background: #fff;
}

.product-page-checks {
  display: grid;
  gap: 13px;
}

.product-page-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--spce-ink);
  font-weight: 700;
}

.product-page-checks i {
  margin-top: 4px;
}

.product-page-roles {
  background: var(--spce-cream);
}

.product-page-role {
  padding: 30px 28px;
  border: 1px solid var(--spce-border);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--spce-shadow-soft);
}

.product-page-role > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
}

.product-page-role h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-page-locations {
  background: #fff;
}

.product-page-locations-card {
  background:
    radial-gradient(circle at 20% 15%, rgba(40,165,229,.18), transparent 27%),
    radial-gradient(circle at 85% 82%, rgba(249,163,85,.20), transparent 29%),
    linear-gradient(135deg, #261044 0%, #573582 58%, #7145aa 100%);
}

.product-page-location-shot {
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 64px rgba(14,5,28,.25);
}

.product-page-final {
  background:
    radial-gradient(circle at 15% 20%, rgba(249,163,85,.14), transparent 20%),
    radial-gradient(circle at 85% 75%, rgba(40,165,229,.12), transparent 24%),
    var(--spce-cream);
}

.product-page-final .lead {
  max-width: 760px;
  color: var(--spce-muted);
}

.product-page-final-icon {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(87,53,130,.20);
}

@media (max-width: 991.98px) {
  .product-page-hero {
    padding: 7rem 0 6rem;
  }

  .product-page-hero-shot {
    max-width: 760px;
    margin-inline: auto;
    transform: none;
  }

  .product-page-source-map {
    min-height: 390px;
  }
}

@media (max-width: 767.98px) {
  .product-page-step {
    padding: 30px 26px;
  }

  .product-page-source-map {
    min-height: 350px;
  }

  .product-page-source-ring.ring-two {
    width: 340px;
    height: 250px;
  }

  .product-page-source-node {
    padding: 8px 11px;
    font-size: .78rem;
  }

  .product-page-story.mb-6 {
    margin-bottom: 4.5rem;
  }
}

@media (max-width: 575.98px) {
  .product-page-hero {
    padding: 6rem 0 5rem;
  }

  .product-page-source-card,
  .product-page-locations-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .product-page-source-map {
    min-height: 330px;
    margin-inline: -12px;
  }

  .product-page-source-center {
    width: 84px;
    height: 84px;
    border-radius: 24px;
  }

  .product-page-source-ring.ring-one {
    width: 220px;
    height: 150px;
  }

  .product-page-source-ring.ring-two {
    width: 285px;
    height: 220px;
  }

  .product-page-source-node.node-one { left: 0; top: 18%; }
  .product-page-source-node.node-two { right: 0; top: 18%; }
  .product-page-source-node.node-three { right: 0; bottom: 18%; }
  .product-page-source-node.node-four { left: 0; bottom: 18%; }
}

/* --------------------------------------------------------------------------
   Why COSMIC Page
   -------------------------------------------------------------------------- */
.why-cosmic-page {
  background: var(--spce-cream);
}

.why-cosmic-hero {
  padding: clamp(7.5rem, 11vw, 10rem) 0 clamp(6rem, 9vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(249,163,85,.22), transparent 24%),
    radial-gradient(circle at 12% 78%, rgba(40,165,229,.16), transparent 27%),
    linear-gradient(135deg, #211038 0%, #4b2878 52%, #7145aa 100%);
}

.why-cosmic-hero-copy {
  max-width: 650px;
  color: rgba(255,255,255,.74);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.why-cosmic-hero-glow {
  position: absolute;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  pointer-events: none;
}

.why-cosmic-hero-glow.glow-one {
  width: 520px;
  height: 210px;
  right: -130px;
  top: 10%;
  transform: rotate(-14deg);
}

.why-cosmic-hero-glow.glow-two {
  width: 390px;
  height: 150px;
  left: -160px;
  bottom: 7%;
  transform: rotate(17deg);
}

.why-cosmic-hero-shot,
.why-cosmic-workflow-shot {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(13,5,27,.34);
}

.why-cosmic-hero-shot {
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.why-cosmic-windowbar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: rgba(248,237,245,.96);
  border-bottom: 1px solid rgba(27,30,63,.08);
}

.why-cosmic-windowbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(87,53,130,.20);
}

.why-cosmic-windowbar span:first-child { background: var(--spce-pink); }
.why-cosmic-windowbar span:nth-child(2) { background: var(--spce-orange); }
.why-cosmic-windowbar span:nth-child(3) { background: var(--spce-blue); }

.why-cosmic-handnote {
  width: max-content;
  max-width: 90%;
  margin: 24px 5% 0 auto;
  position: relative;
  color: #fff;
  font-family: var(--spce-font-hand);
  font-size: clamp(1.45rem, 2vw, 2rem);
  transform: rotate(-3deg);
}

.why-cosmic-handnote span {
  width: 88%;
  height: 10px;
  position: absolute;
  left: 6%;
  bottom: -7px;
  border-top: 3px solid var(--spce-orange);
  border-radius: 50%;
}

.why-cosmic-reasons {
  background: var(--spce-cream);
}

.why-cosmic-muted,
.why-cosmic-side-copy {
  color: var(--spce-muted);
  line-height: 1.72;
}

.why-cosmic-side-copy {
  padding-left: 22px;
  border-left: 3px solid var(--spce-orange);
  font-weight: 600;
}

.why-cosmic-reason {
  padding: 32px 30px;
  border: 1px solid var(--spce-border);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--spce-shadow-soft);
}

.why-cosmic-reason-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, var(--spce-purple), var(--spce-pink));
  box-shadow: 0 12px 28px rgba(87,53,130,.20);
}

.why-cosmic-reason h3,
.why-cosmic-workflow h3 {
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-weight: 800;
}

.why-cosmic-reason h3 {
  margin-bottom: 11px;
  font-size: 1.3rem;
}

.why-cosmic-reason p,
.why-cosmic-workflow p {
  margin: 0;
  color: var(--spce-muted);
  line-height: 1.68;
}

.why-cosmic-compare {
  background: #fff;
}

.why-cosmic-compare-card {
  overflow: hidden;
  border: 1px solid var(--spce-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 65px rgba(55,53,130,.13);
}

.why-cosmic-compare-column {
  min-height: 100%;
  padding: 36px 32px;
}

.why-cosmic-compare-column.old-way {
  background: #fbf7fa;
}

.why-cosmic-compare-column.cosmic-way {
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(249,163,85,.18), transparent 26%),
    linear-gradient(145deg, #321751, #573582 60%, #7145aa);
}

.why-cosmic-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  font-family: var(--spce-font-display);
  font-weight: 800;
}

.old-way .why-cosmic-compare-label {
  color: var(--spce-ink);
}

.cosmic-way .why-cosmic-compare-label {
  color: #fff;
}

.why-cosmic-compare-column ul {
  display: grid;
  gap: 16px;
}

.why-cosmic-compare-column li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}

.old-way li {
  color: var(--spce-muted);
}

.old-way li i {
  color: var(--spce-pink);
  margin-top: 4px;
}

.cosmic-way li {
  color: rgba(255,255,255,.86);
}

.cosmic-way li i {
  color: var(--spce-orange);
  margin-top: 4px;
}

.why-cosmic-workflows {
  background: linear-gradient(180deg, var(--spce-cream) 0%, #fff 100%);
}

.why-cosmic-workflow {
  overflow: hidden;
  border: 1px solid var(--spce-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--spce-shadow-soft);
}

.why-cosmic-workflow-shot {
  border: 0;
  border-bottom: 1px solid var(--spce-border);
  border-radius: 0;
  box-shadow: none;
}

.why-cosmic-workflow-copy {
  padding: 30px 30px 32px;
}

.why-cosmic-workflow h3 {
  margin: 9px 0 11px;
  font-size: 1.45rem;
}

.why-cosmic-standalone {
  background: #fff;
}

.why-cosmic-standalone-card {
  overflow: hidden;
  padding: clamp(36px, 5vw, 68px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(40,165,229,.18), transparent 28%),
    radial-gradient(circle at 85% 82%, rgba(249,163,85,.22), transparent 30%),
    linear-gradient(135deg, #211039 0%, #573582 57%, #7145aa 100%);
  box-shadow: 0 30px 80px rgba(44,20,80,.20);
}

.why-cosmic-standalone-card .lead {
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}

.why-cosmic-standalone-small {
  color: rgba(255,255,255,.60);
  line-height: 1.65;
}

.why-cosmic-connection-list {
  display: grid;
  gap: 14px;
}

.why-cosmic-connection-list > div {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.why-cosmic-connection-list > div > span {
  width: 54px;
  height: 54px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--spce-ink);
  background: var(--spce-orange);
}

.why-cosmic-connection-list strong {
  align-self: end;
  font-family: var(--spce-font-display);
  font-size: 1.05rem;
}

.why-cosmic-connection-list small {
  align-self: start;
  color: rgba(255,255,255,.68);
  line-height: 1.45;
}

.why-cosmic-final {
  background:
    radial-gradient(circle at 12% 20%, rgba(249,163,85,.13), transparent 23%),
    radial-gradient(circle at 86% 78%, rgba(40,165,229,.11), transparent 25%),
    var(--spce-cream);
}

.why-cosmic-final .lead {
  max-width: 720px;
  color: var(--spce-muted);
}

.why-cosmic-final-icon {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(87,53,130,.20);
}

@media (max-width: 991.98px) {
  .why-cosmic-hero {
    padding: 7rem 0 6rem;
  }

  .why-cosmic-hero-shot {
    max-width: 760px;
    margin-inline: auto;
    transform: none;
  }

  .why-cosmic-side-copy {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .why-cosmic-compare-column {
    padding: 30px 26px;
  }

  .why-cosmic-compare-column.old-way {
    border-bottom: 1px solid var(--spce-border);
  }

  .why-cosmic-workflow-copy {
    padding: 26px;
  }
}

@media (max-width: 575.98px) {
  .why-cosmic-hero {
    padding: 6rem 0 5rem;
  }

  .why-cosmic-reason {
    padding: 28px 24px;
  }

  .why-cosmic-standalone-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .why-cosmic-connection-list > div {
    grid-template-columns: 46px 1fr;
    column-gap: 12px;
    padding: 15px;
  }

  .why-cosmic-connection-list > div > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* --------------------------------------------------------------------------
   COSMIC Contact Page
   -------------------------------------------------------------------------- */
.cosmic-contact-page {
  background: var(--spce-cream);
}

.cosmic-contact-hero {
  padding: clamp(7.5rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(40,165,229,.20), transparent 25%),
    radial-gradient(circle at 86% 82%, rgba(249,163,85,.20), transparent 28%),
    linear-gradient(135deg, #211039 0%, #3c1f63 46%, #573582 72%, #7145aa 100%);
}

.cosmic-contact-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  opacity: .9;
}

.cosmic-contact-glow-one {
  width: 290px;
  height: 290px;
  top: 5%;
  right: 8%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 0 70px rgba(40,165,229,.10);
}

.cosmic-contact-glow-two {
  width: 130px;
  height: 130px;
  bottom: 9%;
  left: 4%;
  background: rgba(249,163,85,.09);
}

.cosmic-contact-hero-copy {
  max-width: 620px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.cosmic-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cosmic-contact-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  font-size: .92rem;
  font-weight: 700;
}

.cosmic-contact-pills i {
  color: var(--spce-orange);
}

.cosmic-contact-note {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 460px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
}

.cosmic-contact-note > i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--spce-ink);
  background: var(--spce-orange);
}

.cosmic-contact-note strong,
.cosmic-contact-note span {
  display: block;
}

.cosmic-contact-note strong {
  margin-bottom: 2px;
  color: #fff;
  font-family: var(--spce-font-display);
  font-size: 1rem;
}

.cosmic-contact-note span {
  color: rgba(255,255,255,.58);
  font-size: .92rem;
}

.cosmic-contact-form-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 32px;
  color: var(--spce-ink);
  background: rgba(254,252,253,.97);
  box-shadow: 0 34px 90px rgba(17,8,36,.30);
}

.cosmic-contact-form-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--spce-border);
}

.cosmic-contact-form-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(87,53,130,.20);
}

.cosmic-contact-form-head h2 {
  margin: 6px 0 6px;
  font-family: var(--spce-font-display);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
}

.cosmic-contact-form-head p {
  margin: 0;
  color: var(--spce-muted);
  line-height: 1.6;
}

.cosmic-contact-form-wrap .wpcf7 form,
.cosmic-contact-form-wrap .wpcf7-form {
  margin: 0;
}

.cosmic-contact-form-wrap .wpcf7-form p {
  margin: 0 0 18px;
}

.cosmic-contact-form-wrap .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.cosmic-contact-form-wrap label {
  display: block;
  margin: 0;
  color: var(--spce-ink);
  font-family: var(--spce-font-display);
  font-size: .92rem;
  font-weight: 700;
}

.cosmic-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.cosmic-contact-form-wrap input[type="text"],
.cosmic-contact-form-wrap input[type="email"],
.cosmic-contact-form-wrap input[type="tel"],
.cosmic-contact-form-wrap input[type="url"],
.cosmic-contact-form-wrap input[type="number"],
.cosmic-contact-form-wrap select,
.cosmic-contact-form-wrap textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(27,30,63,.14);
  border-radius: 14px;
  outline: 0;
  color: var(--spce-ink);
  background: #fff;
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cosmic-contact-form-wrap textarea {
  min-height: 145px;
  resize: vertical;
}

.cosmic-contact-form-wrap input:focus,
.cosmic-contact-form-wrap select:focus,
.cosmic-contact-form-wrap textarea:focus {
  border-color: rgba(87,53,130,.55);
  box-shadow: 0 0 0 4px rgba(87,53,130,.09);
}

.cosmic-contact-form-wrap input[type="submit"],
.cosmic-contact-form-wrap button[type="submit"] {
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  color: var(--spce-ink);
  background: var(--spce-orange);
  font-family: var(--spce-font-display);
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cosmic-contact-form-wrap input[type="submit"]:hover,
.cosmic-contact-form-wrap button[type="submit"]:hover {
  transform: translateY(-2px);
  background: #ffb067;
  box-shadow: 0 12px 26px rgba(249,163,85,.25);
}

.cosmic-contact-form-wrap .wpcf7-spinner {
  vertical-align: middle;
}

.cosmic-contact-form-wrap .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b02a55;
  font-size: .84rem;
  font-weight: 700;
}

.cosmic-contact-form-wrap .wpcf7 form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 13px 15px;
  border-width: 1px;
  border-radius: 14px;
  font-size: .92rem;
}

.cosmic-contact-next {
  background: linear-gradient(180deg, var(--spce-cream) 0%, #fff 100%);
}

.cosmic-contact-muted,
.cosmic-contact-step p {
  color: var(--spce-muted);
}

.cosmic-contact-side-copy {
  padding-left: 22px;
  border-left: 3px solid var(--spce-orange);
  color: var(--spce-muted);
  line-height: 1.7;
}

.cosmic-contact-step {
  position: relative;
  overflow: hidden;
  padding: 32px 30px 34px;
  border: 1px solid var(--spce-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--spce-shadow-soft);
}

.cosmic-contact-step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(87,53,130,.10);
  font-family: var(--spce-font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.cosmic-contact-step-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #fff;
  background: var(--spce-purple);
  box-shadow: 0 14px 28px rgba(87,53,130,.18);
}

.cosmic-contact-step:nth-child(1) .cosmic-contact-step-icon {
  background: var(--spce-purple);
}

.cosmic-contact-step h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.cosmic-contact-step p {
  margin: 0;
  line-height: 1.68;
}

.cosmic-contact-help {
  background: #fff;
}

.cosmic-contact-help-card {
  padding: clamp(34px, 5vw, 60px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(249,163,85,.20), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(40,165,229,.15), transparent 30%),
    linear-gradient(135deg, #211039, #573582 62%, #7145aa);
  box-shadow: 0 28px 75px rgba(44,20,80,.20);
}

.cosmic-contact-help-card p {
  max-width: 760px;
  color: rgba(255,255,255,.70);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .cosmic-contact-hero {
    padding-top: 7rem;
  }

  .cosmic-contact-form-card {
    max-width: 780px;
  }

  .cosmic-contact-side-copy {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .cosmic-contact-hero {
    padding-top: 6rem;
  }

  .cosmic-contact-form-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .cosmic-contact-form-head {
    gap: 13px;
  }

  .cosmic-contact-form-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 15px;
  }

  .cosmic-contact-pills {
    gap: 8px;
  }

  .cosmic-contact-pills span {
    padding: 9px 12px;
    font-size: .86rem;
  }

  .cosmic-contact-step {
    padding: 28px 24px 30px;
  }

  .cosmic-contact-help-card {
    padding: 30px 22px;
    border-radius: 26px;
  }
}
