/* [project]/src/app/ui/marketing/sayrahs.css [app-client] (css) */
:root {
  --sy-accent: #7539ff;
  --sy-accent-hover: #6322f5;
  --sy-accent-soft: #f1ebff;
  --sy-accent-rgb: 117, 57, 255;
  --sy-bg: #fff;
  --sy-bg-soft: #f7f8f9;
  --sy-card: #fff;
  --sy-heading: #051321;
  --sy-text: #5d6772;
  --sy-muted: #90979f;
  --sy-border: #e2e4e6;
  --sy-footer-bg: #0a1019;
  --sy-footer-text: #aab0b6;
  --sy-placeholder: linear-gradient(135deg, #efeaff 0%, #f7f8f9 100%);
  --bs-primary: #7539ff;
  --bs-primary-rgb: 117, 57, 255;
  --sy-radius-sm: 10px;
  --sy-radius: 16px;
  --sy-radius-lg: 24px;
  --sy-radius-pill: 60px;
  --sy-shadow: 0 12px 40px #0513210f;
  --sy-shadow-soft: 0 6px 24px #0513210d;
}

[data-bs-theme="dark"] {
  --sy-accent-soft: #7539ff24;
  --sy-bg: #0b1220;
  --sy-bg-soft: #111a2b;
  --sy-card: #141e30;
  --sy-heading: #eef2f7;
  --sy-text: #9aa6b2;
  --sy-muted: #6c7a8a;
  --sy-border: #233044;
  --sy-footer-bg: #070c15;
  --sy-footer-text: #8794a3;
  --sy-placeholder: linear-gradient(135deg, #1c1640 0%, #131c2c 100%);
  --bs-body-bg: #0b1220;
  --sy-shadow: 0 12px 40px #00000059;
  --sy-shadow-soft: 0 6px 24px #0000004d;
}

body {
  font-family: var(--font-instrument-sans), "Instrument Sans", sans-serif;
  color: var(--sy-text);
  background-color: var(--sy-bg);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color .3s, color .3s;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-3 {
  font-family: var(--font-archivo), "Archivo", sans-serif;
  color: var(--sy-heading);
  font-weight: 700;
  line-height: 1.2;
}

.display-3 {
  font-size: 48px;
}

h2, .h2 {
  font-size: 32px;
}

@media (max-width: 991.98px) {
  .display-3 {
    font-size: 38px;
  }

  h2, .h2 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .display-3 {
    font-size: 30px;
  }

  h2, .h2 {
    font-size: 24px;
  }
}

p {
  color: var(--sy-text);
}

a {
  text-decoration: none;
}

.section {
  padding: 96px 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 60px 0;
  }
}

.bg-soft {
  background-color: var(--sy-bg-soft);
}

.text-accent {
  color: var(--sy-accent) !important;
}

.fw-medium {
  font-weight: 500;
}

.btn {
  border-radius: 6px;
  padding: .5rem .95rem;
  font-size: 14px;
  font-weight: 600;
  transition: all .25s;
}

.btn-lg {
  padding: .6rem 1.25rem;
  font-size: 15px;
}

.btn-accent {
  background-color: var(--sy-accent);
  border: 1px solid var(--sy-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: var(--sy-accent-hover);
  border-color: var(--sy-accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-soft {
  border: 1px solid var(--sy-border);
  color: var(--sy-heading);
  background: none;
}

.btn-outline-soft:hover {
  border-color: var(--sy-accent);
  color: var(--sy-accent);
}

.btn-white {
  color: var(--sy-accent);
  background: #fff;
  border: 1px solid #fff;
}

.btn-white:hover {
  color: var(--sy-accent-hover);
  background-color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px #0000002e;
}

@property --badge-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.pill-badge {
  color: var(--sy-heading);
  border-radius: var(--sy-radius-pill);
  background: var(--sy-card);
  align-items: center;
  gap: .5rem;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  position: relative;
  box-shadow: 0 4px 20px #5c5c5c14;
}

.pill-badge:before {
  content: "";
  border-radius: inherit;
  background: conic-gradient(from var(--badge-angle), var(--sy-border) 0deg 250deg, var(--sy-accent) 300deg, var(--sy-border) 350deg);
  -webkit-mask-composite: xor;
  pointer-events: none;
  padding: 1.5px;
  animation: 3s linear infinite badge-border-spin;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-origin: content-box, border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  -webkit-mask-source-type: auto, auto;
  mask-mode: match-source, match-source;
}

@keyframes badge-border-spin {
  to {
    --badge-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pill-badge:before {
    animation: none;
  }
}

.pill-badge i {
  color: var(--sy-accent);
}

.site-header {
  z-index: 1030;
  background: none;
  border-bottom: 1px solid #0000;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.site-header.fixed {
  background: var(--sy-bg);
  border-bottom-color: var(--sy-border);
  animation: .45s forwards headerSlideDown;
  position: fixed;
  box-shadow: 0 3px 28px #05132114;
}

@keyframes headerSlideDown {
  from {
    opacity: .3;
    transform: translateY(-100%);
  }

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

.navbar-brand-text {
  font-family: var(--font-archivo), "Archivo", sans-serif;
  color: var(--sy-heading);
  letter-spacing: -.5px;
  font-size: 22px;
  font-weight: 800;
}

.navbar-brand-text .dot {
  color: var(--sy-accent);
}

.nav-links a {
  color: var(--sy-text);
  border-radius: 8px;
  padding: .5rem .9rem;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--sy-accent);
}

.marketing-theme-toggle {
  border: 1px solid var(--sy-border);
  background: var(--sy-card);
  width: 42px;
  height: 42px;
  color: var(--sy-heading);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: inline-flex;
}

.marketing-theme-toggle:hover {
  border-color: var(--sy-accent);
  color: var(--sy-accent);
}

.marketing-theme-toggle .bi-sun-fill {
  display: none;
}

[data-bs-theme="dark"] .marketing-theme-toggle .bi-sun-fill {
  display: inline-block;
}

[data-bs-theme="dark"] .marketing-theme-toggle .bi-moon-stars-fill {
  display: none;
}

.mobile-toggle {
  border: 1px solid var(--sy-border);
  background: var(--sy-card);
  width: 42px;
  height: 42px;
  color: var(--sy-heading);
  border-radius: 10px;
  font-size: 20px;
}

.mobile-menu {
  background: var(--sy-bg);
  border-left: 1px solid var(--sy-border);
  z-index: 1050;
  width: 300px;
  max-width: 85vw;
  padding: 1.5rem;
  transition: transform .3s;
  position: fixed;
  inset: 0 0 0 auto;
  overflow-y: auto;
  transform: translateX(100%);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--sy-heading);
  border-bottom: 1px solid var(--sy-border);
  padding: .75rem 0;
  font-weight: 500;
  display: block;
}

.menu-overlay {
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  background: #0006;
  transition: all .3s;
  position: fixed;
  inset: 0;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  background: radial-gradient(60% 80% at 80% 0%, var(--sy-accent-soft) 0%, transparent 55%), radial-gradient(50% 70% at 0% 20%, var(--sy-accent-soft) 0%, transparent 50%);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}

.hero .rotate-word {
  color: var(--sy-accent);
  border-right: 2px solid var(--sy-accent);
  padding-right: 4px;
}

.hero-text {
  max-width: 620px;
  font-size: 19px;
}

.hero-shot {
  box-shadow: var(--sy-shadow);
  border-radius: 12px;
  max-width: 1040px;
  margin: 36px auto -110px;
  transform: rotate(-3deg);
}

@media (max-width: 767.98px) {
  .hero-shot {
    margin-bottom: -50px;
    transform: rotate(-2deg);
  }
}

.about-img-wrap {
  border-radius: var(--sy-radius-lg, 16px);
  --clip-start: inset(6% 0 6% 0 round var(--sy-radius-lg, 16px));
  --clip-end: inset(0% 0 0% 0 round var(--sy-radius-lg, 16px));
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px #00000024;
}

.about-img-wrap[data-aos="fade-left"], .about-img-wrap[data-aos="fade-right"] {
  opacity: 0;
  clip-path: var(--clip-start);
  transition: opacity .7s, transform .7s, clip-path .8s;
}

.about-img-wrap[data-aos="fade-left"] {
  transform: translateX(40px);
}

.about-img-wrap[data-aos="fade-right"] {
  transform: translateX(-40px);
}

.about-img-wrap.aos-animate {
  opacity: 1;
  clip-path: var(--clip-end);
  transform: translateX(0);
}

.about-img {
  object-fit: cover;
  aspect-ratio: 16 / 10;
  width: 100%;
  height: 100%;
  transition: transform .6s;
  display: block;
}

.about-img-wrap:hover .about-img {
  transform: scale(1.03);
}

.about-img--golden:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #ffc85014 0%, #0000 60%);
  position: absolute;
  inset: 0;
}

.about-img--warm:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 50%, #140a0038 100%);
  position: absolute;
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .about-img-wrap[data-aos], .about-img {
    clip-path: none;
    opacity: 1;
    transition: none;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .about-img {
    aspect-ratio: 16 / 9;
  }
}

.ph {
  background: var(--sy-placeholder);
  border: 1px dashed var(--sy-border);
  border-radius: var(--sy-radius);
  color: var(--sy-muted);
  text-align: center;
  letter-spacing: .3px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.ph-hero {
  aspect-ratio: 16 / 8;
  box-shadow: var(--sy-shadow);
}

.ph-logo {
  border-radius: 8px;
  width: 130px;
  height: 40px;
}

.ph-square {
  aspect-ratio: 1;
}

.ph-16x9 {
  aspect-ratio: 16 / 9;
}

.ph-avatar {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.ph-avatar-lg {
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  margin: 0 auto 1rem;
}

.sy-card {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  height: 100%;
  padding: 1.75rem;
  transition: transform .5s;
}

.sy-card:hover {
  transform: translateY(-10px);
}

.sy-glow {
  background: radial-gradient(42% 72% at 0% 0%, rgba(var(--sy-accent-rgb), .16) 0%, transparent 60%), radial-gradient(46% 76% at 100% 100%, rgba(var(--sy-accent-rgb), .12) 0%, transparent 60%), var(--sy-card);
}

.icon-chip {
  background: var(--sy-accent-soft);
  width: 56px;
  height: 56px;
  color: var(--sy-accent);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 26px;
  display: inline-flex;
}

.sy-card.centered {
  text-align: center;
}

.sy-card.centered .icon-chip {
  margin-left: auto;
  margin-right: auto;
}

.anim-card {
  position: relative;
  overflow: hidden;
}

.anim-card .line1:before, .anim-card .line1:after, .anim-card .line2:before, .anim-card .line2:after {
  content: "";
  background: var(--sy-accent);
  z-index: 2;
  transition: all .9s;
  position: absolute;
}

.anim-card .line1:before {
  width: 0;
  height: 2px;
  top: 0;
  left: 0;
}

.anim-card .line1:after {
  width: 2.5px;
  height: 0;
  top: 0;
  left: 0;
}

.anim-card .line2:before {
  width: 0;
  height: 2px;
  bottom: 0;
  right: 0;
}

.anim-card .line2:after {
  width: 2.5px;
  height: 0;
  bottom: 0;
  right: 0;
}

.anim-card:hover .line1:before, .anim-card:hover .line2:before {
  width: 100%;
}

.anim-card:hover .line1:after, .anim-card:hover .line2:after {
  height: 100%;
}

.path-card .corner-blob {
  background: var(--sy-accent-soft);
  opacity: .6;
  z-index: 0;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: -40px;
  right: -40px;
}

.path-card > :not(.corner-blob):not(.line1):not(.line2) {
  z-index: 1;
  position: relative;
}

.step-card {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  height: 100%;
  padding: 1.5rem;
  transition: transform .5s;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-head {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  display: flex;
}

.step-icon {
  background: var(--sy-accent-soft);
  width: 52px;
  height: 52px;
  color: var(--sy-accent);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  display: inline-flex;
}

.step-corner {
  font-family: var(--font-archivo), "Archivo", sans-serif;
  color: var(--sy-accent);
  border-radius: 0 var(--sy-radius) 0 18px;
  background: linear-gradient(200deg, #7539ff2e 0%, #7539ff0f 70%, #0000 100%);
  padding: 14px 18px 22px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}

.sy-tabs {
  background: var(--sy-bg-soft);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-pill);
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  display: inline-flex;
}

.sy-tabs button {
  color: var(--sy-text);
  border-radius: var(--sy-radius-pill);
  cursor: pointer;
  background: none;
  border: 0;
  padding: .55rem 1.4rem;
  font-weight: 600;
  transition: all .2s;
}

@media screen and (max-width: 491px) {
  .sy-tabs button {
    padding: .5rem 1rem;
    font-size: 10px;
  }
}

.sy-tabs button.active {
  background: var(--sy-accent);
  color: #fff;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  animation: .35s fade;
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.price-card {
  background: var(--sy-accent-soft);
  border-radius: var(--sy-radius);
  border: 2px solid #0000;
  height: 100%;
  padding: 1.75rem;
  transition: border-color .35s, transform .35s;
  position: relative;
  overflow: hidden;
}

.price-card:before {
  content: "";
  border-radius: var(--sy-radius) 0 0 0;
  z-index: 0;
  background: radial-gradient(circle at 0 0, #7539ff59 0%, #7539ff1a 45%, #0000 70%);
  width: 180px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}

.price-card > * {
  z-index: 1;
  position: relative;
}

.price-card:hover {
  border-color: var(--sy-accent);
  transform: translateY(-6px);
}

.price-card.featured {
  border-color: var(--sy-accent);
  box-shadow: var(--sy-shadow);
}

.price-card .price-inner {
  background: var(--sy-card);
  border-radius: var(--sy-radius-sm);
  margin-top: 1rem;
  padding: 1.25rem;
}

.price-amount {
  font-family: var(--font-archivo), "Archivo", sans-serif;
  color: var(--sy-heading);
  font-size: 34px;
  font-weight: 800;
}

.price-feat {
  align-items: center;
  gap: .6rem;
  padding: .3rem 0;
  font-size: 15px;
  display: flex;
}

.price-feat i {
  color: var(--sy-accent);
}

#stats {
  background: radial-gradient(42% 75% at 0% 0%, #7539ff29 0%, transparent 60%), radial-gradient(45% 80% at 100% 100%, #7539ff24 0%, transparent 60%), var(--sy-bg-soft);
}

.stat-num {
  font-family: var(--font-archivo), "Archivo", sans-serif;
  color: var(--sy-heading);
  font-size: 44px;
  font-weight: 800;
}

.trust-item i {
  color: var(--sy-accent);
  font-size: 28px;
}

.cta-band {
  background: var(--sy-accent);
  border-radius: var(--sy-radius-lg);
  position: relative;
  overflow: hidden;
}

.cta-band:before {
  content: "";
  background: radial-gradient(60% 130% at 100% 0, #fff3 0%, #0000 50%), radial-gradient(60% 130% at 0 100%, #ffffff1f 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.cta-float {
  z-index: 1;
  color: #ffffffbf;
  text-align: center;
  background: #ffffff29;
  border: 1px solid #ffffff40;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  position: absolute;
  top: 50%;
  box-shadow: 0 18px 50px #00000040;
}

.cta-float.left {
  aspect-ratio: 3 / 4;
  width: 210px;
  left: -70px;
  transform: translateY(-50%)rotate(-13deg);
}

.cta-float.right {
  aspect-ratio: 4 / 3;
  width: 270px;
  right: -80px;
  transform: translateY(-50%)rotate(7deg);
}

@media (max-width: 991.98px) {
  .cta-float {
    display: none;
  }
}

.site-footer {
  background: var(--sy-footer-bg);
  color: var(--sy-footer-text);
  border-radius: var(--sy-radius-lg);
  margin: 20px;
  overflow: hidden;
}

.site-footer h6 {
  color: #fff;
}

.site-footer a {
  color: var(--sy-footer-text);
  transition: color .2s;
}

.site-footer a:hover {
  color: #fff;
}

.footer-input {
  color: #fff;
  background: #ffffff0f;
  border: 1px solid #ffffff24;
}

.footer-input::placeholder {
  color: #ffffff80;
}

.newsletter-status--success {
  color: #4ade80;
}

.newsletter-status--error {
  color: #f87171;
}

.blog-wrap {
  align-items: stretch;
  gap: 28px;
  display: flex;
}

.blog-recent {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.blog-recent .pill-badge {
  align-self: flex-start;
}

.blog-recent .blog-feature-img {
  flex: auto;
  width: 100%;
  min-height: 280px;
  margin-bottom: 1.1rem;
}

.blog-oldest {
  flex-direction: column;
  flex: 1;
  gap: 28px;
  display: flex;
}

.blog-side-card {
  flex: 1;
  align-items: center;
  gap: 18px;
  display: flex;
}

.blog-side-img {
  flex-shrink: 0;
  align-self: stretch;
  width: 210px;
  min-height: 160px;
}

.blog-feature-img, .blog-side-img {
  border-radius: var(--sy-radius);
  overflow: hidden;
}

.blog-feature-img img, .blog-side-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 991.98px) {
  .blog-wrap {
    flex-direction: column;
  }

  .blog-recent .blog-feature-img {
    min-height: 240px;
  }

  .blog-side-img {
    width: 240px;
  }
}

@media (max-width: 575.98px) {
  .blog-side-card {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-side-img {
    width: 100%;
    min-height: 180px;
  }
}

.support-search {
  max-width: 560px;
  position: relative;
}

.support-search i {
  color: var(--sy-muted);
  z-index: 2;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.support-search .form-control {
  border-radius: var(--sy-radius-pill);
  height: 56px;
  padding-left: 50px;
}

.accordion-item {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--sy-radius) !important;
}

.accordion-button {
  background: var(--sy-card);
  color: var(--sy-heading);
  border-radius: var(--sy-radius);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--sy-accent-soft);
  color: var(--sy-accent);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(var(--sy-accent-rgb), .18);
  border-color: var(--sy-accent);
}

.accordion-body {
  color: var(--sy-text);
}

.guarantee-item i {
  color: var(--sy-accent);
  font-size: 28px;
}

.legal-body h2 {
  scroll-margin-top: 100px;
}

.legal-toc a {
  padding: .4rem .85rem;
  font-size: 14px;
}

.cookie-table th, .cookie-table td {
  border-bottom: 1px solid var(--sy-border);
  text-align: left;
  vertical-align: top;
  padding: .75rem 1rem;
}

.cookie-table th {
  color: var(--sy-heading);
  font-weight: 600;
}

.cookie-table {
  border-collapse: collapse;
  width: 100%;
}

.form-label {
  color: var(--sy-heading);
  margin-bottom: .35rem;
  font-size: 14px;
  font-weight: 500;
}

.form-control, .form-select {
  border-radius: var(--sy-radius-sm);
  border-color: var(--sy-border);
  background-color: var(--sy-bg);
  color: var(--sy-heading);
  padding: .7rem .9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--sy-accent);
  background-color: var(--sy-bg);
  color: var(--sy-heading);
  box-shadow: 0 0 0 .2rem rgba(var(--sy-accent-rgb), .18);
}

.form-control::placeholder {
  color: var(--sy-muted);
}

.field-error {
  color: #e5484d;
  min-height: 1px;
  margin-top: .3rem;
  font-size: 13px;
}

.contact-method {
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.contact-method .icon-chip {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  font-size: 22px;
}

.contact-method a {
  color: var(--sy-accent);
}

.social-row a {
  border: 1px solid var(--sy-border);
  width: 42px;
  height: 42px;
  color: var(--sy-heading);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: inline-flex;
}

.social-row a:hover {
  border-color: var(--sy-accent);
  color: var(--sy-accent);
  transform: translateY(-2px);
}

.sy-breadcrumb {
  color: var(--sy-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: 14px;
  display: flex;
}

.sy-breadcrumb a {
  color: var(--sy-text);
}

.sy-breadcrumb a:hover {
  color: var(--sy-accent);
}

.sy-breadcrumb .current {
  color: var(--sy-heading);
  font-weight: 500;
}

.help-sidebar {
  position: sticky;
  top: 100px;
}

.help-sidebar a {
  color: var(--sy-text);
  border-radius: 10px;
  align-items: center;
  gap: .6rem;
  padding: .6rem .85rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.help-sidebar a:hover {
  background: var(--sy-bg-soft);
  color: var(--sy-accent);
}

.help-sidebar a.active {
  background: var(--sy-accent-soft);
  color: var(--sy-accent);
}

.help-article-link {
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  background: var(--sy-card);
  color: var(--sy-heading);
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.25rem;
  transition: all .2s;
  display: flex;
}

.help-article-link:hover {
  border-color: var(--sy-accent);
  transform: translateX(4px);
}

.help-article-link .chev {
  color: var(--sy-accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem;
}

.article-body {
  overflow-wrap: break-word;
  min-width: 0;
  font-size: 16.5px;
}

.article-body img {
  border-radius: var(--sy-radius-sm);
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  display: block;
}

.article-body pre {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  overflow-x: auto;
}

.article-body h2 {
  margin: 2rem 0 .75rem;
  font-size: 24px;
}

.article-body h3 {
  margin: 1.5rem 0 .5rem;
  font-size: 19px;
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body ul {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.article-body li {
  margin-bottom: .4rem;
}

.article-callout {
  background: var(--sy-accent-soft);
  border-left: 3px solid var(--sy-accent);
  color: var(--sy-heading);
  border-radius: 10px;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
}

.helpful-widget {
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  text-align: center;
  padding: 1.5rem;
}

.helpful-widget .btn {
  min-width: 92px;
}

.blog-filter {
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  display: flex;
}

.blog-filter button, .blog-filter a {
  border: 1px solid var(--sy-border);
  background: var(--sy-card);
  color: var(--sy-text);
  border-radius: var(--sy-radius-pill);
  cursor: pointer;
  padding: .45rem 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.blog-filter button:hover, .blog-filter a:hover {
  border-color: var(--sy-accent);
  color: var(--sy-accent);
}

.blog-filter button.active, .blog-filter a.active {
  background: var(--sy-accent);
  border-color: var(--sy-accent);
  color: #fff;
}

.cat-chip {
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--sy-accent);
  font-size: 12px;
  font-weight: 600;
}

.blog-card-img {
  aspect-ratio: 16 / 10;
}

.blog-video-embed {
  border-radius: var(--sy-radius-sm);
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.blog-video-embed iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.share-btn {
  border: 1px solid var(--sy-border);
  background: var(--sy-bg-soft);
  width: 40px;
  height: 40px;
  color: var(--sy-text);
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  transition: background-color .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
  display: inline-flex;
}

.share-btn:hover, .share-btn:focus-visible {
  background: var(--sy-accent);
  border-color: var(--sy-accent);
  color: #fff;
  box-shadow: var(--sy-shadow-soft);
  transform: translateY(-2px);
}

.share-btn:active {
  transform: translateY(0);
}

.share-btn.share-btn-copied, .share-btn.share-btn-copied:hover {
  color: #fff;
  background: #16a34a;
  border-color: #16a34a;
}

.cookie-banner {
  z-index: 1080;
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  width: calc(100% - 40px);
  max-width: 420px;
  box-shadow: var(--sy-shadow);
  opacity: 0;
  padding: 1.25rem;
  transition: opacity .35s, transform .35s;
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateY(16px);
}

.cookie-banner.show {
  opacity: 1;
  transform: none;
}

.cookie-banner p {
  color: var(--sy-text);
  margin-bottom: 1rem;
  font-size: 14px;
}

.cookie-actions {
  gap: .5rem;
  display: flex;
}

.back-to-top {
  background: var(--sy-accent);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  z-index: 1020;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  transition: all .3s;
  display: flex;
  position: fixed;
  bottom: 22px;
  right: 22px;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.mouse-cursor {
  pointer-events: none;
  visibility: hidden;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateZ(0);
}

.cursor-inner {
  z-index: 100001;
  background: var(--sy-accent);
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  transition: width .3s ease-in-out, height .3s ease-in-out, margin .3s ease-in-out, opacity .3s ease-in-out;
}

.cursor-outer {
  box-sizing: border-box;
  z-index: 100000;
  opacity: .5;
  border: 2px solid var(--sy-accent);
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  transition: all 80ms ease-out;
}

.cursor-inner.cursor-hover {
  opacity: .12;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

@media (hover: none), (max-width: 991.98px) {
  .mouse-cursor {
    display: none !important;
  }
}

.pre-launch {
  position: relative;
}

.pre-launch-tag {
  color: var(--sy-accent);
  background: var(--sy-accent-soft);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  right: 12px;
}

.site-logo {
  width: auto;
  height: 34px;
  display: block;
}

.site-logo--footer {
  height: 40px;
}

.logo-on-dark, [data-bs-theme="dark"] .logo-on-light {
  display: none;
}

[data-bs-theme="dark"] .logo-on-dark {
  display: block;
}

@media (max-width: 575.98px) {
  .site-logo {
    height: 30px;
  }
}

@media (max-width: 991.98px) {
  .sp-page {
    padding-bottom: 78px;
  }
}

.sp-hero {
  color: #fff;
  background: linear-gradient(135deg, #7539ff 0%, #6326e0 48%, #2c0f63 100%);
  margin-top: 75px;
  padding: 36px 0 124px;
  position: relative;
  overflow: hidden;
}

.sp-hero:after {
  content: "";
  border: 46px solid #ffffff0f;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  top: -90px;
  right: -80px;
}

.sp-hero:before {
  content: "";
  border: 30px solid #ffffff0d;
  border-radius: 50%;
  width: 230px;
  height: 230px;
  position: absolute;
  top: 55%;
  left: 42%;
}

.sp-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: #ffffff24;
  border: 1px solid #ffffff38;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  font-family: Space Mono, monospace;
  font-size: 12px;
  display: inline-flex;
}

.sp-hero h1 {
  color: #fff;
  letter-spacing: -.02em;
  margin: 18px 0 6px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.sp-hero p {
  color: #ffffffd9;
  max-width: 560px;
  margin: 0;
}

.sp-idcard {
  z-index: 5;
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-lg);
  box-shadow: var(--sy-shadow);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: -92px;
  padding: 26px;
  display: grid;
  position: relative;
}

.sp-avatar {
  color: #fff;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #8e5cff, #6326e0);
  border-radius: 24px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 108px;
  height: 108px;
  font-family: Archivo, sans-serif;
  font-size: 40px;
  font-weight: 800;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 26px -10px #7539ffb3;
}

.sp-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.sp-name {
  letter-spacing: -.02em;
  color: var(--sy-heading);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 2px;
  font-family: Archivo, sans-serif;
  font-size: 26px;
  font-weight: 800;
  display: flex;
}

.sp-role {
  color: var(--sy-accent);
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.sp-meta {
  color: var(--sy-muted);
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  display: flex;
}

.sp-meta span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sp-verified {
  color: var(--sy-accent);
  background: var(--sy-accent-soft);
  border: 1px solid rgba(var(--sy-accent-rgb), .25);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
}

.sp-status {
  color: #16a34a;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.sp-pulse {
  background: #22c55e;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: relative;
}

.sp-pulse:after {
  content: "";
  opacity: .5;
  border: 2px solid #22c55e;
  border-radius: 50%;
  animation: 2s ease-out infinite sp-pulse;
  position: absolute;
  inset: -5px;
}

@keyframes sp-pulse {
  0% {
    opacity: .6;
    transform: scale(.6);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.sp-cred {
  text-align: right;
  border-left: 1px dashed var(--sy-border);
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 12px;
  min-width: 190px;
  padding-left: 24px;
  display: flex;
}

.sp-cred-label {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sy-muted);
  font-family: Space Mono, monospace;
  font-size: 10.5px;
}

.sp-cred-no {
  color: var(--sy-heading);
  letter-spacing: .04em;
  font-family: Space Mono, monospace;
  font-size: 18px;
  font-weight: 700;
}

.sp-seal {
  background: var(--sy-accent);
  color: #fff;
  border-radius: 12px;
  align-self: flex-end;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
}

.sp-card {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  box-shadow: var(--sy-shadow-soft);
  margin-bottom: 22px;
  padding: 24px;
}

.sp-card-h {
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sy-muted);
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-family: Archivo, sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.sp-card-h i {
  color: var(--sy-accent);
  font-size: 16px;
}

.sp-summary {
  color: var(--sy-text);
  white-space: pre-line;
  margin: 0;
  font-size: 16.5px;
}

.sp-title {
  border: 1px solid var(--sy-border);
  background: var(--sy-bg-soft);
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 16px 18px;
}

.sp-title:last-child {
  margin-bottom: 0;
}

.sp-title.is-primary {
  border-color: rgba(var(--sy-accent-rgb), .4);
  background: var(--sy-accent-soft);
}

.sp-title-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  display: flex;
}

.sp-title-name {
  color: var(--sy-heading);
  align-items: center;
  gap: 8px;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.sp-title-name i {
  color: var(--sy-accent);
}

.sp-tags {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sp-tag {
  border: 1px solid var(--sy-border);
  background: var(--sy-card);
  color: var(--sy-text);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.sp-tag-primary {
  background: var(--sy-accent);
  color: #fff;
  border-color: #0000;
}

.sp-tag-add {
  color: var(--sy-muted);
}

.sp-tag-avail {
  background: var(--sy-accent-soft);
  color: var(--sy-accent);
  border-color: rgba(var(--sy-accent-rgb), .25);
}

.sp-tag-work {
  color: #16a34a;
  background: #16a34a1a;
  border-color: #16a34a40;
}

.sp-loc {
  background: var(--sy-bg-soft);
  border: 1px solid var(--sy-border);
  color: var(--sy-text);
  border-radius: 11px;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.sp-loc.is-primary {
  background: var(--sy-accent);
  color: #fff;
  border-color: #0000;
}

.sp-edu {
  border-bottom: 1px solid var(--sy-border);
  gap: 14px;
  padding: 14px 0;
  display: flex;
}

.sp-edu:first-child {
  padding-top: 0;
}

.sp-edu:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sp-edu-ic {
  background: var(--sy-accent-soft);
  width: 42px;
  height: 42px;
  color: var(--sy-accent);
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 19px;
  display: flex;
}

.sp-edu-deg {
  color: var(--sy-heading);
  margin: 0;
  font-family: Archivo, sans-serif;
  font-size: 15.5px;
  font-weight: 700;
}

.sp-edu-sub {
  color: var(--sy-muted);
  margin: 0;
  font-size: 14px;
}

.sp-rail {
  position: sticky;
  top: 90px;
}

.sp-rail .sp-card {
  margin-bottom: 18px;
}

.sp-rail-status {
  color: #fff;
  background: linear-gradient(135deg, #7539ff, #5b21b6);
  border: 0;
}

.sp-rail-status .sp-card-h {
  color: #fffc;
}

.sp-rail-status .sp-card-h i {
  color: #fff;
}

.sp-big {
  align-items: center;
  gap: 9px;
  font-family: Archivo, sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
}

.sp-rail-status p {
  color: #ffffffd9;
  margin: 6px 0 0;
  font-size: 13.5px;
}

.sp-fact {
  border-bottom: 1px solid var(--sy-border);
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  display: flex;
}

.sp-fact:last-child {
  border-bottom: 0;
}

.sp-fact-k {
  color: var(--sy-muted);
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  display: inline-flex;
}

.sp-fact-k i {
  color: var(--sy-accent);
}

.sp-fact-v {
  color: var(--sy-heading);
  font-family: Archivo, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.sp-invite h4 {
  color: var(--sy-heading);
  margin: 0 0 6px;
  font-family: Archivo, sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.sp-invite p {
  color: var(--sy-muted);
  margin: 0 0 16px;
  font-size: 14px;
}

.sp-share-row {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.sp-share {
  background: var(--sy-bg-soft);
  width: 42px;
  height: 42px;
  color: var(--sy-text);
  border: 1px solid var(--sy-border);
  cursor: pointer;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  text-decoration: none;
  transition: all .12s;
  display: inline-flex;
}

.sp-share:hover {
  background: var(--sy-accent-soft);
  color: var(--sy-accent);
  border-color: rgba(var(--sy-accent-rgb), .3);
}

.sp-mobile-cta {
  z-index: 1030;
  background: var(--sy-card);
  border-top: 1px solid var(--sy-border);
  padding: 12px 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -8px 24px #0513211a;
}

@media (min-width: 992px) {
  .sp-mobile-cta {
    display: none;
  }
}

.sp-reveal {
  opacity: 0;
  animation: .6s forwards sp-rise;
  transform: translateY(14px);
}

@keyframes sp-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .sp-rail {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .sp-idcard {
    text-align: center;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sp-avatar {
    margin: 0 auto;
  }

  .sp-meta, .sp-name, .sp-title-row {
    justify-content: center;
  }

  .sp-cred {
    border-left: 0;
    border-top: 1px dashed var(--sy-border);
    text-align: center;
    align-items: center;
    padding-top: 18px;
    padding-left: 0;
  }

  .sp-seal {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-reveal {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .sp-pulse:after {
    animation: none;
  }
}

.sp-skel {
  background: var(--sy-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.sp-skel:after {
  content: "";
  background: linear-gradient(90deg, transparent, rgba(var(--sy-accent-rgb), .1), transparent);
  animation: 1.4s infinite sp-shimmer;
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@keyframes sp-shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sp-skel:after {
    animation: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root:not([data-bs-theme="light"]) {
    --sy-accent-soft: #7539ff24;
    --sy-bg: #0b1220;
    --sy-bg-soft: #111a2b;
    --sy-card: #141e30;
    --sy-heading: #eef2f7;
    --sy-text: #9aa6b2;
    --sy-muted: #6c7a8a;
    --sy-border: #233044;
    --sy-footer-bg: #070c15;
    --sy-footer-text: #8794a3;
    --sy-placeholder: linear-gradient(135deg, #1c1640 0%, #131c2c 100%);
    --bs-body-bg: #0b1220;
    --sy-shadow: 0 12px 40px #00000059;
    --sy-shadow-soft: 0 6px 24px #0000004d;
  }
}

.sg-card {
  flex-direction: column;
  height: 100%;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.sg-card .sg-cover {
  background: radial-gradient(120% 140% at 100% 0%, #ffffff42, transparent 52%), linear-gradient(135deg, var(--sg-c, #7539ff), color-mix(in srgb, var(--sg-c, #7539ff), #000 42%));
  align-items: flex-end;
  height: 132px;
  padding: 14px;
  display: flex;
  position: relative;
}

.sg-cover .sg-cover-ico {
  color: #ffffffe6;
  font-size: 30px;
  position: absolute;
  top: 14px;
  right: 16px;
}

.sg-cover .sg-cover-tag {
  color: #051321;
  letter-spacing: .02em;
  border-radius: var(--sy-radius-pill);
  background: #fffffff0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.sg-card .sg-body {
  flex-direction: column;
  flex: 1;
  gap: 13px;
  padding: 18px 20px 20px;
  display: flex;
}

.sg-card h3 {
  color: var(--sy-heading);
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.sg-meta {
  color: var(--sy-muted);
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  display: flex;
}

.sg-meta span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sg-chips {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.sg-chip {
  border-radius: var(--sy-radius-sm);
  background: var(--sy-bg-soft);
  color: var(--sy-text);
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.sg-free {
  color: #14b87a;
  border-radius: var(--sy-radius-pill);
  background: #14b87a1f;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
}

.sg-stage {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.sg-stage.is-open {
  border-color: rgba(var(--sy-accent-rgb), .45);
  box-shadow: var(--sy-shadow-soft);
}

.sg-stage-head {
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  display: flex;
}

.sg-stage-num {
  width: 42px;
  height: 42px;
  font-family: var(--font-space-mono), "Space Mono", monospace;
  background: var(--sy-accent-soft);
  color: var(--sy-accent);
  border-radius: 12px;
  flex-shrink: 0;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  display: grid;
}

.sg-stage.is-locked .sg-stage-num {
  background: var(--sy-bg-soft);
  color: var(--sy-muted);
}

.sg-stage-titles {
  flex: 1;
  min-width: 0;
}

.sg-stage-titles .lv {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--sy-muted);
  font-size: 11.5px;
  font-weight: 600;
}

.sg-stage-titles h4 {
  color: var(--sy-heading);
  margin: 2px 0 0;
  font-size: 18px;
}

.sg-stage-body {
  padding: 4px 20px 20px;
  position: relative;
}

.sg-res {
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-card);
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 13px 14px;
  display: flex;
}

.sg-res-ico {
  border-radius: 11px;
  flex-shrink: 0;
  place-items: center;
  width: 44px;
  height: 44px;
  font-size: 19px;
  display: grid;
}

.sg-res-ico.video {
  color: #ef4444;
  background: #ef44441a;
}

.sg-res-ico.article {
  color: #3b82f6;
  background: #3b82f61a;
}

.sg-res-ico.link {
  color: #14b87a;
  background: #14b87a1f;
}

.sg-res-main {
  flex: 1;
  min-width: 0;
}

.sg-res-main .t {
  color: var(--sy-heading);
  font-size: 15px;
  font-weight: 600;
}

.sg-res-main .s {
  color: var(--sy-muted);
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2px;
  font-size: 12.5px;
  display: flex;
}

.sg-video {
  aspect-ratio: 16 / 9;
  border-radius: var(--sy-radius-sm);
  background: linear-gradient(135deg, #2b1259, #120a2e);
  place-items: center;
  width: 100%;
  margin-top: 10px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.sg-video .play {
  color: #ef4444;
  background: #ffffffeb;
  border-radius: 50%;
  place-items: center;
  width: 60px;
  height: 60px;
  font-size: 27px;
  display: grid;
}

.sg-video .vlabel {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  bottom: 12px;
  left: 14px;
}

.sg-locked-content {
  filter: blur(6px);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: .85;
}

.sg-lock {
  z-index: 3;
  text-align: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--sy-card), transparent 45%), var(--sy-card) 92%);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 9px;
  padding: 24px;
  display: flex;
  position: absolute;
  inset: 0;
}

.sg-lock .lk {
  background: var(--sy-card);
  border: 1px solid var(--sy-border);
  width: 50px;
  height: 50px;
  color: var(--sy-accent);
  box-shadow: var(--sy-shadow-soft);
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
  display: grid;
}

.sg-lock h5 {
  color: var(--sy-heading);
  margin: 4px 0 0;
  font-size: 17px;
}

.sg-lock p {
  color: var(--sy-muted);
  max-width: 340px;
  margin: 0;
  font-size: 13.5px;
}

.sg-inst {
  border: 1px solid var(--sy-border);
  border-radius: var(--sy-radius-sm);
  background: var(--sy-card);
  align-items: center;
  gap: 14px;
  padding: 14px;
  display: flex;
}

.sg-inst-logo {
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  place-items: center;
  width: 48px;
  height: 48px;
  font-weight: 700;
  display: grid;
  overflow: hidden;
}

.sg-inst-main .nm {
  color: var(--sy-heading);
  align-items: center;
  gap: 5px;
  font-weight: 700;
  display: flex;
}

.sg-inst-main .nm i {
  color: var(--sy-accent);
  font-size: 14px;
}

.sg-inst-main .rl {
  color: var(--sy-muted);
  font-size: 12.5px;
}

.sg-hero-tag {
  color: #fff;
  border-radius: var(--sy-radius-pill);
  background: #ffffff29;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.sg-hero {
  background: radial-gradient(130% 120% at 100% -10%, #ffffff29, transparent 55%), linear-gradient(135deg, var(--sy-accent), color-mix(in srgb, var(--sy-accent), #000 38%));
  color: #fff;
  border-radius: var(--sy-radius-lg);
  padding: 40px;
}

.sg-hero h1 {
  color: #fff;
}

.sg-filter {
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  display: flex;
}

.sg-filter .field {
  flex: 1;
  min-width: 200px;
}

.sg-filter .field .form-control {
  height: 44px;
}

.sg-filter .field:last-child {
  max-width: 170px;
}

@media screen and (max-width: 435px) {
  .sg-filter .field:last-child {
    max-width: 100%;
  }
}

.sg-filter label {
  color: var(--sy-text);
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  display: block;
}

