@charset "UTF-8";
/* Slick carousel plugin */
/* @import 'slick-carousel/slick/slick.scss'; */
/* Glightbox plugin */
/* @import 'glightbox/dist/css/glightbox.min.css'; */
/* animations */
/*
@import 'animate.css/source/_vars';
@import 'animate.css/source/_base';
@import 'animate.css/source/fading_entrances/fadeIn';
@import 'animate.css/source/fading_entrances/fadeInDown';
@import 'animate.css/source/fading_entrances/fadeInLeft';
@import 'animate.css/source/fading_entrances/fadeInRight';
@import 'animate.css/source/fading_entrances/fadeInUp';
*/
/* custom vars and functions */
:root {
  --color-surface: #141313;
  --color-surface-dim: #141313;
  --color-surface-bright: #3a3939;
  --color-surface-container-low: #1c1b1b;
  --color-surface-container: #201f1f;
  --color-surface-container-high: #2b2a2a;
  --color-surface-container-highest: #353434;
  --color-surface-container-lowest: #0e0e0e;
  --color-surface-variant: #353434;
  --color-surface-tint: #c8c6c5;
  --color-on-surface: #e5e2e1;
  --color-on-surface-variant: #c4c7c7;
  --color-on-background: #e5e2e1;
  --color-primary: #c8c6c5;
  --color-on-primary: #313030;
  --color-primary-container: #121212;
  --color-on-primary-container: #7e7d7d;
  --color-primary-fixed: #e5e2e1;
  --color-primary-fixed-dim: #c8c6c5;
  --color-inverse-primary: #5f5e5e;
  --color-secondary: #c9c6c5;
  --color-on-secondary: #313030;
  --color-secondary-container: #4a4949;
  --color-on-secondary-container: #bab8b7;
  --color-secondary-fixed: #e5e2e1;
  --color-secondary-fixed-dim: #c9c6c5;
  --color-tertiary: #cac6c3;
  --color-on-tertiary: #32302f;
  --color-tertiary-container: #131211;
  --color-on-tertiary-container: #807d7b;
  --color-tertiary-fixed: #e6e1df;
  --color-tertiary-fixed-dim: #cac6c3;
  --color-background: #141313;
  --color-outline: #8e9192;
  --color-outline-variant: #444748;
  --color-inverse-surface: #e5e2e1;
  --color-inverse-on-surface: #313030;
  --color-error: #ffb4ab;
  --color-on-error: #690005;
  --color-error-container: #93000a;
  --color-on-error-container: #ffdad6;
  --gradient-primary: linear-gradient(90deg, #a855f7, #6366f1, #06b6d4);
  --gradient-btn: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #06b6d4 100%);
  --spacing-unit: 8px;
  --spacing-gutter: 24px;
  --spacing-margin-sm: 16px;
  --spacing-margin-md: 32px;
  --spacing-margin-lg: 64px;
  --container-max: 1280px;
  --nav-height: 80px;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
}

/**
	-----------------------------------------------------------------
	SVG Icons Encoder
  usage:
	#element {
		background-image: iconArrowRight( '#000');
	}
	-----------------------------------------------------------------
**/
/**
	-----------------------------------------------------------------
	Icons
	-----------------------------------------------------------------
**/
/* custom code */
@keyframes MoveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.appear {
  opacity: 0;
}

/*******************************************************************
	Helper classes
*******************************************************************/
.text-center {
  text-align: center;
}

/*******************************************************************
	Table of contents:

		1. Headers
		2. Typo tags
		3. Tables
		4. Embeds

*******************************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-on-surface);
  font-family: "Geist", sans-serif;
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--nav-height);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.h-100 {
  height: 100%;
}

.responsive-table {
  overflow-x: auto;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}

/**
	-----------------------------------------------------------------
	Headers
	-----------------------------------------------------------------
**/
/**
	-----------------------------------------------------------------
	Typo tags
	-----------------------------------------------------------------
**/
blockquote {
  margin: 0;
}

figure img + figcaption {
  margin-top: -20px;
  display: block;
}

p > img {
  margin-bottom: 0;
}

hr {
  border: 0;
  margin: 34px 0;
}

ul,
ol {
  list-style-position: inside;
}

/**
	-----------------------------------------------------------------
	Tables
	-----------------------------------------------------------------
**/
table {
  width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  padding: 10px 15px;
  text-align: left;
}

.responsive-table {
  overflow-x: auto;
}

/**
	-----------------------------------------------------------------
	Embeds
	-----------------------------------------------------------------
**/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  margin-bottom: 55px;
}

iframe {
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*******************************************************************
	Table of contents:

		1. System classes
		2. Gallery
		3. Captions

*******************************************************************/
/**
	-----------------------------------------------------------------
	System classes
	-----------------------------------------------------------------
**/
.alignleft {
  float: left;
  margin: 20px 30px 20px 0;
}

.alignright {
  float: right;
  margin: 20px 0 20px 30px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

/**
	-----------------------------------------------------------------
	Gallery
	-----------------------------------------------------------------
**/
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px 28px -15px;
}

.gallery-item {
  flex: 0 0 33%;
  padding: 0 15px;
  margin: 0 0 18px;
}
@media (max-width: 768px) {
  .gallery-item {
    flex: 0 0 50%;
  }
}

.gallery-icon img {
  margin-bottom: 0;
}

/**
	-----------------------------------------------------------------
	Captions
	-----------------------------------------------------------------
**/
figure.wp-caption.alignnone {
  margin-left: 0;
  margin-right: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

/* clears the ‘X’ from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

@media (max-width: 782px) {
  html.html {
    margin-top: 0 !important;
  }
  html.html #wpadminbar {
    display: none !important;
  }
}

body.admin-bar #site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar #site-header {
    top: 0;
  }
}
body.admin-bar #mobile-menu {
  padding-top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar #mobile-menu {
    padding-top: 0;
  }
}

/*******************************************************************
	Top Navigation Bar
*******************************************************************/
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  height: var(--nav-height);
  background: rgba(20, 19, 19, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
#site-header .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
#site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
#site-header .site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#site-header .site-header__brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
#site-header .site-header__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
#site-header .site-header__brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-on-surface);
  font-family: "Geist", sans-serif;
  white-space: nowrap;
}
#site-header .site-header__brand-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.5);
  font-family: "Geist", sans-serif;
}
#site-header .site-header__nav {
  display: none;
  align-items: center;
  gap: var(--spacing-margin-md);
  height: 100%;
}
@media (min-width: 1024px) {
  #site-header .site-header__nav {
    display: flex;
  }
}
#site-header .site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
#site-header .site-header__actions #header-cta {
  display: none;
}
@media (min-width: 640px) {
  #site-header .site-header__actions #header-cta {
    display: inline-flex;
  }
}
#site-header .site-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-on-surface-variant);
  transition: color 0.2s;
}
#site-header .site-header__hamburger:hover {
  color: var(--color-on-surface);
}
@media (min-width: 1024px) {
  #site-header .site-header__hamburger {
    display: none;
  }
}
#site-header .site-header__hamburger .material-symbols-outlined {
  font-size: 28px;
}

.nav-link, .nav-dropdown__trigger {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: color 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}
.nav-link--active {
  color: var(--color-primary);
  font-weight: 700;
}
.nav-link:hover, .nav-dropdown__trigger:hover {
  color: var(--color-on-surface);
}

.nav-container:hover .nav-link:not(:hover):not(.nav-link--active), .nav-container:hover .nav-dropdown__trigger:not(:hover):not(.nav-link--active) {
  opacity: 0.45;
  filter: blur(0.5px);
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-dropdown__trigger .material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dropdown__trigger .material-symbols-outlined {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 8px 0;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.25s cubic-bezier(0.23, 1, 0.32, 1), transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown__item {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown__item:hover {
  color: var(--color-on-surface);
  background: rgba(255, 255, 255, 0.04);
}

/*******************************************************************
	Primary Gradient Button
*******************************************************************/
.btn-primary-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-position 0.4s ease, box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-primary-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.btn-primary-gradient:hover {
  transform: translateY(-2px) scale(1.04);
  background-position: 100% 100%;
  box-shadow: 0 12px 32px -8px rgba(168, 85, 247, 0.55);
  color: #fff;
}
.btn-primary-gradient:hover::before {
  opacity: 1;
}
.btn-primary-gradient:active {
  transform: scale(0.96);
}
.btn-primary-gradient--sm {
  padding: 10px 24px;
  font-size: 10px;
}
.btn-primary-gradient--md {
  padding: 12px 28px;
}
.btn-primary-gradient--lg {
  padding: 16px 40px;
  font-size: 12px;
  border-radius: 14px;
}

/*******************************************************************
	Mobile Menu Overlay
*******************************************************************/
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14, 14, 14, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}
#mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: auto;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-on-surface-variant);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close:hover {
  color: var(--color-on-surface);
}
.mobile-menu__close .material-symbols-outlined {
  font-size: 36px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 0 var(--spacing-margin-md);
}
.mobile-menu__link {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--color-on-surface);
  transition: color 0.2s;
}
.mobile-menu__link:hover, .mobile-menu__link--active {
  color: var(--color-primary);
}
.mobile-menu__sub-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  margin: 0 0 8px;
}
.mobile-menu__sub-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu__sub-link {
  font-size: 15px;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: color 0.2s;
}
.mobile-menu__sub-link:hover {
  color: var(--color-on-surface);
}
.mobile-menu__cta {
  margin-top: 16px;
}

/*******************************************************************
	Footer
*******************************************************************/
#site-footer {
  background: var(--color-surface-container-lowest);
  width: 100%;
  padding: var(--spacing-margin-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}
#site-footer .site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-gutter);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (min-width: 768px) {
  #site-footer .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr) minmax(0, 1fr);
    align-items: center;
  }
}
#site-footer .site-footer__brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-on-surface);
  font-family: "Geist", sans-serif;
  margin-bottom: 4px;
}
#site-footer .site-footer__copy {
  font-size: 14px;
  color: var(--color-on-surface-variant);
  opacity: 0.6;
  font-family: "Geist", sans-serif;
  margin: 0;
}
#site-footer .site-footer__plugins {
  display: grid;
  gap: 10px;
}
#site-footer .site-footer__plugins-label {
  font-family: "Geist", sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.54);
}
#site-footer .site-footer__plugins-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#site-footer .site-footer__plugin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  max-width: 100%;
  padding: 6px 11px 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
#site-footer .site-footer__plugin img {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  -o-object-fit: contain;
     object-fit: contain;
}
#site-footer .site-footer__plugin span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#site-footer .site-footer__plugin:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.07);
  color: var(--color-on-surface);
}
#site-footer .site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
}
@media (min-width: 768px) {
  #site-footer .site-footer__nav {
    justify-content: flex-end;
  }
}
#site-footer .site-footer__nav a {
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: color 0.2s;
}
#site-footer .site-footer__nav a:hover {
  color: var(--color-on-surface);
}

/* templates */
/*******************************************************************
	Home – Hero Section
*******************************************************************/
.mesh-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-surface-container-lowest);
  overflow: hidden;
}

.mesh-gradient {
  position: absolute;
  width: 140vmax;
  height: 140vmax;
  top: -20vmax;
  left: -20vmax;
  background-image: radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 40%), radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  filter: blur(80px);
  animation: mesh-move 30s infinite alternate ease-in-out;
}

@keyframes mesh-move {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(15deg) translate(5%, 5%);
  }
}
.hero {
  min-height: calc(80vh - var(--nav-height));
  display: flex;
  align-items: center;
  position: relative;
  padding: var(--spacing-margin-lg) 0;
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-gutter);
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    text-align: left;
  }
}

.hero__title {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-on-surface);
  margin: 0 0 var(--spacing-margin-md);
}
@media (min-width: 768px) {
  .hero__title {
    font-size: clamp(2.5rem, 6vw, 3rem);
  }
}

.hero__swapper {
  height: 1.2em;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .hero__swapper {
    height: auto;
    overflow: visible;
    display: inline;
  }
}

.hero__swapper-inner {
  display: block;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero__swapper-inner span {
  display: block;
  height: 1.2em;
}

.gradient-text {
  background: linear-gradient(90deg, #a855f7, #6366f1, #06b6d4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shine 3s linear infinite;
}

@keyframes gradient-shine {
  to {
    background-position: 200% center;
  }
}
.hero__desc {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
  margin: 0 0 var(--spacing-margin-lg);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .hero__desc {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-gutter);
  justify-content: center;
}
@media (max-width: 767px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
  }
}

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: color 0.3s, gap 0.3s;
}
.hero__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s;
}
.hero__link:hover {
  color: var(--color-on-surface);
}
.hero__link:hover .material-symbols-outlined {
  transform: translateX(6px);
}

.hero__link + .hero__link {
  position: relative;
  padding-left: var(--spacing-gutter);
}
.hero__link + .hero__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: var(--color-outline-variant);
}
@media (max-width: 767px) {
  .hero__link + .hero__link {
    padding-left: 0;
  }
  .hero__link + .hero__link::before {
    display: none;
  }
}

.hero__visual {
  display: none;
  position: relative;
  height: 500px;
}
@media (min-width: 1024px) {
  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

.hero__visual-inner {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__glow {
  position: absolute;
  width: 384px;
  height: 384px;
  background: rgba(200, 198, 197, 0.06);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
#hero-canvas {
  position: relative;
  z-index: 0;
  opacity: 0.6;
  width: 100%;
  height: 100%;
}

.hero__data-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 18vw, 210px);
  aspect-ratio: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%, rgba(34, 211, 238, 0.22), transparent 48%), linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)), rgba(18, 18, 18, 0.58);
  box-shadow: 0 0 36px rgba(168, 85, 247, 0.24), inset 0 0 30px rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
  animation: data-badge-float 8s ease-in-out infinite;
}
.hero__data-badge::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(34, 211, 238, 0.16);
  opacity: 0.8;
  animation: data-badge-ring 8s linear infinite;
}
.hero__data-badge > span,
.hero__data-badge strong {
  position: relative;
  z-index: 2;
  text-align: center;
  text-shadow: 0 0 22px rgba(34, 211, 238, 0.34);
}
.hero__data-badge > span {
  margin-bottom: 6px;
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.78);
}
.hero__data-badge strong {
  display: grid;
  gap: 2px;
  max-width: 8.6em;
  background: linear-gradient(135deg, #fff 0%, #22d3ee 42%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.62rem);
  font-weight: 900;
  line-height: 1.04;
  color: transparent;
}
.hero__data-badge strong span {
  display: block;
}

@keyframes data-badge-float {
  0%, 100% {
    transform: translate(-50%, -50%) rotateY(-8deg) scale(1);
  }
  50% {
    transform: translate(-50%, -52%) rotateY(8deg) scale(1.04);
  }
}
@keyframes data-badge-ring {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.02);
  }
}
.hero__site {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__site--source {
  left: 0;
}
.hero__site--target {
  right: 0;
}

.hero__site-icon {
  width: 72px;
  height: 72px;
  background: rgba(18, 18, 18, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__site-icon .material-symbols-outlined {
  font-size: 32px;
}
.hero__site-icon--source {
  border-color: rgba(200, 198, 197, 0.2);
  box-shadow: 0 0 40px -10px rgba(200, 198, 197, 0.25);
}
.hero__site-icon--source .material-symbols-outlined {
  color: var(--color-primary);
}
.hero__site-icon--target {
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.25);
}
.hero__site-icon--target .material-symbols-outlined {
  color: #22d3ee;
}

.hero__site-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
}

.hero__sync-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.sync-path {
  stroke-dasharray: 8;
  animation: dash-move 30s linear infinite;
}

@keyframes dash-move {
  to {
    stroke-dashoffset: -1000;
  }
}
#hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 30;
}

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-up-anim 0.8s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes reveal-up-anim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

/*******************************************************************
	Home – Features Section
*******************************************************************/
.features {
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden;
}

.features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
  position: relative;
  z-index: 10;
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}

.features__title {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--color-on-surface);
  margin: 0 0 24px;
}

.features__subtitle {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  max-width: 720px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-gutter);
}
@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s;
  cursor: default;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, #a855f7, #6366f1, #06b6d4, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  border-color: transparent;
}
.feature-card:hover::after {
  opacity: 1;
  animation: rotate-border 2.5s linear infinite;
}
.feature-card:hover .feature-card__inner {
  background: #1a1919;
}
.feature-card:hover .feature-card__glow {
  opacity: 1;
}
.feature-card:hover .feature-card__icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(168, 85, 247, 0.15);
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-border {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}
.feature-card__inner {
  background: var(--color-surface-container-low);
  transition: background 0.6s ease;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.05) 0%, rgba(99, 102, 241, 0.02) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.feature-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease, background 0.4s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.feature-card__icon-wrap .material-symbols-outlined {
  font-size: 24px;
}

.feature-card__title {
  font-family: "Geist", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-on-surface);
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}

.feature-card__desc {
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-on-surface-variant);
  opacity: 0.7;
  margin: 0 0 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.feature-card__link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}
.feature-card__link:hover {
  gap: 12px;
}
.feature-card__link .material-symbols-outlined {
  font-size: 14px;
}

.feature-card--purple .feature-card__icon-wrap {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
}
.feature-card--purple .feature-card__icon-wrap .material-symbols-outlined {
  color: #c084fc;
}
.feature-card--purple .feature-card__link {
  color: #c084fc;
}

.feature-card--cyan .feature-card__icon-wrap {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.feature-card--cyan .feature-card__icon-wrap .material-symbols-outlined {
  color: #22d3ee;
}
.feature-card--cyan .feature-card__link {
  color: #22d3ee;
}

.feature-card--violet .feature-card__icon-wrap {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.feature-card--violet .feature-card__icon-wrap .material-symbols-outlined {
  color: #a78bfa;
}
.feature-card--violet .feature-card__link {
  color: #a78bfa;
}

.feature-card--orange .feature-card__icon-wrap {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.feature-card--orange .feature-card__icon-wrap .material-symbols-outlined {
  color: #fb923c;
}
.feature-card--orange .feature-card__link {
  color: #fb923c;
}

.feature-card--blue .feature-card__icon-wrap {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.feature-card--blue .feature-card__icon-wrap .material-symbols-outlined {
  color: #60a5fa;
}
.feature-card--blue .feature-card__link {
  color: #60a5fa;
}

.feature-card--rose .feature-card__icon-wrap {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.2);
}
.feature-card--rose .feature-card__icon-wrap .material-symbols-outlined {
  color: #fb7185;
}
.feature-card--rose .feature-card__link {
  color: #fb7185;
}

.feature-card--emerald .feature-card__icon-wrap {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.feature-card--emerald .feature-card__icon-wrap .material-symbols-outlined {
  color: #34d399;
}
.feature-card--emerald .feature-card__link {
  color: #34d399;
}

.feature-card--amber .feature-card__icon-wrap {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.feature-card--amber .feature-card__icon-wrap .material-symbols-outlined {
  color: #fbbf24;
}
.feature-card--amber .feature-card__link {
  color: #fbbf24;
}

/*******************************************************************
	Home – Workflows Section
*******************************************************************/
.workflows {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.workflows__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .workflows__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.workflows__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
@media (max-width: 960px) {
  .workflows__grid {
    grid-template-columns: 1fr;
  }
}

.workflows__list-wrap {
  position: relative;
}

.workflows__list {
  padding: 0;
}

.workflow-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color 0.45s ease, border-color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.workflow-card + .workflow-card {
  margin-top: 18px;
}
.workflow-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateX(6px);
}
.workflow-card:hover .workflow-card__bar {
  transform: scaleY(1);
}
.workflow-card:hover .workflow-card__icon {
  box-shadow: 0 0 20px var(--workflow-glow);
}
@media (max-width: 640px) {
  .workflow-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
    border-radius: 0;
  }
  .workflow-card:hover {
    transform: none;
  }
}

.workflow-card__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--workflow-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}

.workflow-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--workflow-border);
  border-radius: 8px;
  background: var(--workflow-bg);
  transition: box-shadow 0.35s ease;
}
.workflow-card__icon .material-symbols-outlined {
  font-size: 30px;
  color: var(--workflow-color);
}
@media (max-width: 640px) {
  .workflow-card__icon {
    width: 48px;
    height: 48px;
  }
  .workflow-card__icon .material-symbols-outlined {
    font-size: 26px;
  }
}

.workflow-card__title {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-on-surface);
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.workflow-card__desc {
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.72;
  margin: 0;
}

.workflow-card:hover .workflow-card__title {
  color: var(--workflow-color);
}

.workflow-card--purple {
  --workflow-color: #c084fc;
  --workflow-bg: rgba(168, 85, 247, 0.1);
  --workflow-border: rgba(168, 85, 247, 0.2);
  --workflow-glow: rgba(168, 85, 247, 0.3);
}

.workflow-card--cyan {
  --workflow-color: #22d3ee;
  --workflow-bg: rgba(6, 182, 212, 0.1);
  --workflow-border: rgba(6, 182, 212, 0.2);
  --workflow-glow: rgba(6, 182, 212, 0.3);
}

.workflow-card--emerald {
  --workflow-color: #34d399;
  --workflow-bg: rgba(16, 185, 129, 0.1);
  --workflow-border: rgba(16, 185, 129, 0.2);
  --workflow-glow: rgba(16, 185, 129, 0.3);
}

.workflow-card--orange {
  --workflow-color: #fb923c;
  --workflow-bg: rgba(249, 115, 22, 0.1);
  --workflow-border: rgba(249, 115, 22, 0.2);
  --workflow-glow: rgba(249, 115, 22, 0.3);
}

.workflow-card--blue {
  --workflow-color: #60a5fa;
  --workflow-bg: rgba(59, 130, 246, 0.1);
  --workflow-border: rgba(59, 130, 246, 0.2);
  --workflow-glow: rgba(59, 130, 246, 0.3);
}

.workflow-card--rose {
  --workflow-color: #fb7185;
  --workflow-bg: rgba(244, 63, 94, 0.1);
  --workflow-border: rgba(244, 63, 94, 0.2);
  --workflow-glow: rgba(244, 63, 94, 0.3);
}

.workflows__copy {
  position: sticky;
  top: calc(var(--nav-height) + 56px);
  padding-top: 10px;
}
@media (max-width: 960px) {
  .workflows__copy {
    position: static;
    padding-top: 0;
  }
}

.workflows__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c084fc;
}

.workflows__title {
  max-width: 520px;
  margin: 0 0 24px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-on-surface);
}

.workflows__desc {
  max-width: 520px;
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.72;
}

.workflows__line {
  width: 96px;
  height: 1px;
  margin-top: 48px;
  background: linear-gradient(90deg, #a855f7, transparent);
}
@media (max-width: 960px) {
  .workflows__line {
    margin-top: 32px;
  }
}

/*******************************************************************
	Home – Data Architecture (snap-scroll slides)
*******************************************************************/
.data-arch {
  position: relative;
  min-height: calc((var(--data-arch-slides, 3) + 0.7) * 100vh);
  padding: clamp(40px, 5vw, 70px) 0 clamp(80px, 10vw, 140px);
}

.data-arch__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .data-arch__viewport {
    min-height: 560px;
  }
}

.data-arch__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.data-arch__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

.data-arch__stream {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
  height: 1px;
  width: 100%;
  animation: stream-move 10s linear infinite;
}
.data-arch__stream:nth-child(3) {
  top: 25%;
}
.data-arch__stream:nth-child(4) {
  top: 75%;
  animation-delay: -5s;
}

@keyframes stream-move {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.data-arch__slides {
  position: relative;
  z-index: 1;
  height: 100%;
}

.data-arch__slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(168px, 21vh, 240px) var(--spacing-margin-md) clamp(96px, 12vh, 150px);
  opacity: 0;
  transform: translateY(36px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  .data-arch__slide {
    padding: 140px var(--spacing-margin-sm) 88px;
  }
}
@media (max-height: 780px) and (min-width: 769px) {
  .data-arch__slide {
    padding-top: 140px;
  }
}

.data-arch__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.data-arch__slide.is-before {
  transform: translateY(-36px);
}

.data-arch__slide.is-after {
  transform: translateY(36px);
}

.data-arch__slide-inner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
}

.sentinel {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sentinel {
    width: 120px;
    height: 120px;
  }
}
@media (max-height: 780px) and (min-width: 769px) {
  .sentinel {
    width: 150px;
    height: 150px;
  }
}

.sentinel__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(30px);
  animation: sentinel-pulse 3s ease-in-out infinite alternate;
}

@keyframes sentinel-pulse {
  from {
    opacity: 0.3;
    transform: scale(0.8);
  }
  to {
    opacity: 0.6;
    transform: scale(1.2);
  }
}
.sentinel__body {
  position: relative;
  z-index: 10;
  width: 160px;
  height: 160px;
  border-width: 2px;
  border-style: solid;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-sentinel 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .sentinel__body {
    width: 110px;
    height: 110px;
  }
}
@media (max-height: 780px) and (min-width: 769px) {
  .sentinel__body {
    width: 140px;
    height: 140px;
  }
}
.sentinel__body .material-symbols-outlined {
  font-size: 60px;
}
@media (max-width: 768px) {
  .sentinel__body .material-symbols-outlined {
    font-size: 40px;
  }
}
@media (max-height: 780px) and (min-width: 769px) {
  .sentinel__body .material-symbols-outlined {
    font-size: 52px;
  }
}

@keyframes float-sentinel {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}
.sentinel--purple .sentinel__glow {
  background: rgba(168, 85, 247, 0.2);
}
.sentinel--purple .sentinel__body {
  border-color: rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}
.sentinel--purple .sentinel__body .material-symbols-outlined {
  color: #c084fc;
}

.sentinel--cyan .sentinel__glow {
  background: rgba(6, 182, 212, 0.2);
}
.sentinel--cyan .sentinel__body {
  border-color: rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
}
.sentinel--cyan .sentinel__body .material-symbols-outlined {
  color: #22d3ee;
}

.sentinel--orange .sentinel__glow {
  background: rgba(249, 115, 22, 0.2);
}
.sentinel--orange .sentinel__body {
  border-color: rgba(249, 115, 22, 0.3);
  border-radius: 12px;
  transform: rotate(45deg);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
  animation: float-sentinel-rotated 4s ease-in-out infinite;
}
.sentinel--orange .sentinel__body .material-symbols-outlined {
  color: #fb923c;
  transform: rotate(-45deg);
}

@keyframes float-sentinel-rotated {
  0%, 100% {
    transform: translateY(0px) rotate(45deg);
  }
  50% {
    transform: translateY(-16px) rotate(48deg);
  }
}
.data-arch__content {
  max-width: 720px;
}

.data-arch__eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.data-arch__title {
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-on-surface);
  margin: 0 0 24px;
}

.data-arch__desc {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  font-weight: 300;
  color: var(--color-on-surface-variant);
  margin: 0 0 32px;
}

.data-arch__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.data-arch__tag {
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--color-surface-container);
  font-family: "Geist", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.data-arch__eyebrow--purple {
  color: #c084fc;
}

.data-arch__eyebrow--cyan {
  color: #22d3ee;
}

.data-arch__eyebrow--orange {
  color: #fb923c;
}

.data-arch__nav {
  position: absolute;
  top: 50%;
  right: clamp(18px, 4vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .data-arch__nav {
    right: 14px;
  }
}

.data-arch__dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.data-arch__dot.is-active {
  background: #22d3ee;
  border-color: #22d3ee;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.55);
  transform: scale(1.35);
}

/*******************************************************************
	Home – Project Paths Vertical Carousel
*******************************************************************/
.project-paths {
  position: relative;
  padding: clamp(88px, 10vw, 140px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(14, 14, 14, 0.2);
}

.project-paths__header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md) 64px;
  text-align: center;
}
@media (max-width: 768px) {
  .project-paths__header {
    padding: 0 var(--spacing-margin-sm) 48px;
  }
}

.project-paths__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c084fc;
}

.project-paths__title {
  max-width: 760px;
  margin: 0 auto 22px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.project-paths__intro {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.project-paths__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md) clamp(80px, 10vw, 140px);
}
@media (max-width: 960px) {
  .project-paths__stage {
    grid-template-columns: 1fr;
    padding: 0 var(--spacing-margin-sm) clamp(80px, 12vw, 120px);
  }
}

.project-paths__visual {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 960px) {
  .project-paths__visual {
    display: none;
  }
}

.project-paths__visual-box {
  position: relative;
  width: min(44vw, 360px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background: radial-gradient(circle at 50% 35%, rgba(168, 85, 247, 0.16), transparent 58%), rgba(20, 19, 19, 0.74);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.project-paths__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.16;
}

.project-paths__icon-view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-paths__icon-view.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-paths__svg {
  width: 52%;
  height: 52%;
  animation: project-paths-pulse 4s infinite alternate ease-in-out;
}

.project-paths__svg--purple {
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.65));
}

.project-paths__svg--cyan {
  filter: drop-shadow(0 0 18px rgba(6, 182, 212, 0.65));
}

.project-paths__svg--orange {
  filter: drop-shadow(0 0 18px rgba(251, 146, 60, 0.65));
}

@keyframes project-paths-pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
.project-paths__sync-loop {
  transform-origin: 50px 50px;
  animation: project-paths-spin 8s linear infinite;
}

@keyframes project-paths-spin {
  to {
    transform: rotate(360deg);
  }
}
.project-paths__dash {
  animation: project-paths-dash 1.6s infinite ease-in-out;
}

@keyframes project-paths-dash {
  0%, 100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}
.project-paths__slides {
  min-height: 640px;
}
@media (max-width: 960px) {
  .project-paths__slides {
    min-height: 0;
  }
}

.project-paths__slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
}
@media (max-width: 960px) {
  .project-paths__slide {
    min-height: 0;
    padding: 0;
  }
  .project-paths__slide + .project-paths__slide {
    margin-top: 24px;
  }
}

.project-paths__card {
  width: min(100%, 560px);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: var(--color-surface-container-low);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.project-paths__card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.project-paths__card-head h3 {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-on-surface);
}

.project-paths__card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--project-path-border);
  border-radius: 8px;
  background: var(--project-path-bg);
}
.project-paths__card-icon .material-symbols-outlined {
  font-size: 30px;
  color: var(--project-path-color);
}

.project-paths__card ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-paths__card li {
  display: flex;
  gap: 14px;
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-on-surface-variant);
  opacity: 0.82;
}
.project-paths__card li span {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--project-path-color);
}

.project-paths__card--purple {
  --project-path-color: #c084fc;
  --project-path-bg: rgba(168, 85, 247, 0.1);
  --project-path-border: rgba(168, 85, 247, 0.2);
}

.project-paths__card--cyan {
  --project-path-color: #22d3ee;
  --project-path-bg: rgba(6, 182, 212, 0.1);
  --project-path-border: rgba(6, 182, 212, 0.2);
}

.project-paths__card--orange {
  --project-path-color: #fb923c;
  --project-path-bg: rgba(249, 115, 22, 0.1);
  --project-path-border: rgba(249, 115, 22, 0.2);
}

/*******************************************************************
	Home – Pricing
*******************************************************************/
.pricing {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .pricing__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.pricing__header {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.pricing__title {
  margin: 0 0 22px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.pricing__subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-gutter);
  align-items: stretch;
}
@media (max-width: 960px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: var(--color-surface-container-low);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
}
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, #a855f7, #6366f1, #06b6d4, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: #1a1919;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}
.pricing-card:hover::after {
  opacity: 1;
  animation: rotate-border 2.5s linear infinite;
}
.pricing-card:hover .pricing-card__glow {
  opacity: 1;
}
@media (max-width: 480px) {
  .pricing-card {
    padding: 32px 24px;
  }
}

.pricing-card--featured {
  padding-top: 56px;
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}
.pricing-card--featured .pricing-card__glow {
  opacity: 0.1;
}

.pricing-card__badge {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 2;
  padding: 7px 16px;
  border-radius: 999px;
  background: #a855f7;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.22);
  font-family: "Geist", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transform: translateX(-50%);
  white-space: nowrap;
}

.pricing-card__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.05) 0%, rgba(99, 102, 241, 0.02) 40%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.pricing-card__head,
.pricing-card__features,
.pricing-card__button {
  position: relative;
  z-index: 1;
}

.pricing-card__head {
  margin-bottom: 32px;
}

.pricing-card__name {
  margin: 0 0 12px;
  font-family: "Geist", sans-serif;
  font-size: 20px;
  font-weight: 650;
  color: var(--color-on-surface-variant);
}

.pricing-card--featured .pricing-card__name {
  color: #c084fc;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__amount {
  font-family: "Geist", sans-serif;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-on-surface);
}

.pricing-card__period {
  font-family: "Geist", sans-serif;
  font-size: 15px;
  color: var(--color-on-surface-variant);
  opacity: 0.62;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-on-surface-variant);
  opacity: 0.82;
}

.pricing-card__features .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 20px;
  color: #c084fc;
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: transparent;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.pricing-card__button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.pricing-card__button--primary {
  border-color: transparent;
  background: var(--gradient-btn);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.pricing-card__button--primary:hover {
  background: var(--gradient-btn);
  box-shadow: 0 18px 44px rgba(168, 85, 247, 0.28);
}

/*******************************************************************
	Home – Free vs PRO Comparison
*******************************************************************/
.compare {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.compare__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .compare__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.compare__header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.compare__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c084fc;
}

.compare__title {
  margin: 0 0 22px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.compare__subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: var(--spacing-gutter);
  align-items: stretch;
}
@media (max-width: 860px) {
  .compare__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
}

.compare-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: var(--color-surface-container-low);
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.45s ease, box-shadow 0.45s ease, background-color 0.45s ease;
}
@media (max-width: 480px) {
  .compare-panel {
    padding: 32px 24px;
  }
}

.compare-panel__head {
  margin-bottom: 28px;
}

.compare-panel__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Geist", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
}

.compare-panel__name {
  margin: 0 0 12px;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-on-surface);
}

.compare-panel__desc {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-on-surface-variant);
  opacity: 0.75;
}

.compare-panel__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.compare-panel__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: transparent;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.compare-panel__button:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.compare-panel__button--primary {
  border-color: transparent;
  background: var(--gradient-btn);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
  color: #fff;
}
.compare-panel__button--primary:hover {
  background: var(--gradient-btn);
  box-shadow: 0 18px 44px rgba(168, 85, 247, 0.28);
}

/* ---------- Free panel ---------- */
.compare-panel--free .compare-panel__list--simple li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Geist", sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--color-on-surface-variant);
  opacity: 0.85;
}
.compare-panel--free .compare-panel__list--simple li:first-child {
  padding-top: 0;
}
.compare-panel--free .compare-panel__list--simple li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.compare-panel--free .compare-panel__list--simple .material-symbols-outlined {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 19px;
  color: #60a5fa;
}

/* ---------- PRO panel ---------- */
.compare-panel--pro {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}
.compare-panel--pro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, #a855f7, #6366f1, #06b6d4, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.compare-panel--pro:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background: #1a1919;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}
.compare-panel--pro:hover::after {
  opacity: 1;
  animation: rotate-border 2.5s linear infinite;
}
.compare-panel--pro:hover .compare-panel__glow {
  opacity: 1;
}
.compare-panel--pro .compare-panel__badge--pro {
  border-color: rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.12);
  color: #c084fc;
}
.compare-panel--pro .compare-panel__list--detailed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 32px;
}
@media (max-width: 640px) {
  .compare-panel--pro .compare-panel__list--detailed {
    grid-template-columns: 1fr;
  }
}
.compare-panel--pro .compare-panel__list--detailed li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-panel--pro .compare-panel__list--detailed .material-symbols-outlined {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 19px;
  color: #c084fc;
}

.compare-panel__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(168, 85, 247, 0.06) 0%, rgba(99, 102, 241, 0.02) 40%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.compare-panel__trial {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 8px;
  background: linear-gradient(rgba(20, 19, 19, 0.9), rgba(20, 19, 19, 0.9)) padding-box, linear-gradient(90deg, rgba(168, 85, 247, 0.5), rgba(6, 182, 212, 0.5)) border-box;
}
.compare-panel__trial .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 22px;
  background: linear-gradient(90deg, #a855f7, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare-panel__trial span:last-child {
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.45;
  color: var(--color-on-surface);
}
@media (max-width: 480px) {
  .compare-panel__trial {
    padding: 12px 16px;
  }
}

.compare-panel__item-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: "Geist", sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-on-surface-variant);
  opacity: 0.82;
}
.compare-panel__item-text strong {
  font-size: 15.5px;
  font-weight: 650;
  color: var(--color-on-surface);
  opacity: 1;
}
.compare-panel__item-text strong em {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  color: var(--color-on-surface-variant);
  opacity: 0.65;
}

/*******************************************************************
	Home – Risk Free CTA
*******************************************************************/
.risk-free {
  position: relative;
  padding: clamp(88px, 10vw, 132px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-surface-container-lowest);
}

.risk-free--single {
  padding: clamp(70px, 8vw, 108px) 0;
}

.risk-free__mesh {
  position: absolute;
  inset: -30%;
  opacity: 0.32;
  background-image: radial-gradient(circle at 25% 35%, rgba(168, 85, 247, 0.18) 0%, transparent 38%), radial-gradient(circle at 74% 66%, rgba(6, 182, 212, 0.15) 0%, transparent 36%), radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 48%);
  filter: blur(80px);
  animation: risk-free-mesh 24s infinite alternate ease-in-out;
}

@keyframes risk-free-mesh {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(12deg) translate3d(4%, 3%, 0);
  }
}
.risk-free__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
  text-align: center;
}
@media (max-width: 768px) {
  .risk-free__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.risk-free__title {
  margin: 0 0 24px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--color-on-surface);
}
.risk-free__title span {
  background: linear-gradient(90deg, #a855f7, #6366f1, #06b6d4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: risk-free-shine 3s linear infinite;
}

@keyframes risk-free-shine {
  to {
    background-position: 200% center;
  }
}
.risk-free__desc {
  max-width: 680px;
  margin: 0 auto 44px;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.risk-free__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 48px;
  border-radius: 8px;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
  font-family: "Geist", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-position 0.35s ease, box-shadow 0.35s ease;
}
.risk-free__button:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: 100% 100%;
  box-shadow: 0 0 70px rgba(168, 85, 247, 0.5);
}
.risk-free__button:active {
  transform: scale(0.98);
}

.risk-free__glow {
  position: absolute;
  left: 50%;
  bottom: -320px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.08);
  filter: blur(120px);
  transform: translateX(-50%);
  pointer-events: none;
}

/*******************************************************************
	Home – Affiliate
*******************************************************************/
.affiliate {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.affiliate__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .affiliate__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.affiliate__header {
  max-width: 840px;
  margin: 0 auto 64px;
  text-align: center;
}

.affiliate__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c084fc;
}

.affiliate__title {
  margin: 0 0 22px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}
.affiliate__title span {
  background: linear-gradient(90deg, #a855f7, #6366f1, #06b6d4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: affiliate-shine 3s linear infinite;
}

@keyframes affiliate-shine {
  to {
    background-position: 200% center;
  }
}
.affiliate__intro {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.affiliate__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: clamp(72px, 9vw, 112px);
}
@media (max-width: 900px) {
  .affiliate__stats {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

.affiliate-stat {
  padding: 40px 28px;
  border: 1px solid var(--affiliate-border);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.72);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  text-align: center;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}
.affiliate-stat:hover {
  border-color: var(--affiliate-color);
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}
.affiliate-stat:hover .affiliate-stat__value {
  transform: scale(1.08);
}

.affiliate-stat--purple {
  --affiliate-color: #c084fc;
  --affiliate-border: rgba(168, 85, 247, 0.22);
}

.affiliate-stat--cyan {
  --affiliate-color: #22d3ee;
  --affiliate-border: rgba(6, 182, 212, 0.22);
}

.affiliate-stat--violet {
  --affiliate-color: #a78bfa;
  --affiliate-border: rgba(139, 92, 246, 0.22);
}

.affiliate-stat__value {
  margin-bottom: 12px;
  font-family: "Geist", sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--affiliate-color);
  transition: transform 0.35s ease;
}

.affiliate-stat__value--text {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.affiliate-stat__label {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
  opacity: 0.62;
}

.affiliate__steps {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.affiliate__steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .affiliate__steps {
    gap: 28px;
  }
  .affiliate__steps::before {
    display: none;
  }
}

.affiliate-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
@media (min-width: 769px) {
  .affiliate-step--offset-sm {
    margin-left: 48px;
  }
  .affiliate-step--offset-lg {
    margin-left: 96px;
  }
}
@media (max-width: 768px) {
  .affiliate-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.affiliate-step__number {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 850;
  color: var(--color-surface);
}

.affiliate-step__number--cyan {
  background: #22d3ee;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.affiliate-step__number--violet {
  background: #a78bfa;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.affiliate-step__card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.72);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.affiliate-step__card h3 {
  margin: 0 0 14px;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 750;
  line-height: 1.15;
  color: var(--color-on-surface);
}
.affiliate-step__card p {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.72;
}
@media (max-width: 480px) {
  .affiliate-step__card {
    padding: 26px 22px;
  }
}

.affiliate__action {
  margin-top: 76px;
  text-align: center;
}

.affiliate__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 42px;
  border-radius: 8px;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.3);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-position 0.35s ease, box-shadow 0.35s ease;
}
.affiliate__button:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: 100% 100%;
  box-shadow: 0 0 70px rgba(168, 85, 247, 0.5);
}

/*******************************************************************
	Home – Latest Blog Posts
*******************************************************************/
.home-blog {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 16% 10%, rgba(168, 85, 247, 0.08), transparent 34%), radial-gradient(circle at 84% 80%, rgba(6, 182, 212, 0.06), transparent 34%), var(--color-surface);
}

.home-blog__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .home-blog__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.home-blog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 760px) {
  .home-blog__header {
    align-items: flex-start;
    flex-direction: column;
  }
}

.home-blog__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #22d3ee;
}

.home-blog__title {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.home-blog__intro {
  max-width: 680px;
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.home-blog__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-on-surface);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}
.home-blog__all .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.home-blog__all:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.34);
  background: rgba(34, 211, 238, 0.08);
}
.home-blog__all:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-gutter);
}
@media (max-width: 980px) {
  .home-blog__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .home-blog__grid {
    display: flex;
    gap: 16px;
    margin-right: calc(var(--spacing-margin-sm) * -1);
    margin-left: calc(var(--spacing-margin-sm) * -1);
    padding: 2px var(--spacing-margin-sm) 18px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-left: var(--spacing-margin-sm);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .home-blog__grid::-webkit-scrollbar {
    display: none;
  }
}

.home-blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(30px, 4vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.84);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
@media (max-width: 760px) {
  .home-blog-card {
    flex: 0 0 min(84vw, 360px);
    min-height: 350px;
    scroll-snap-align: start;
  }
}
.home-blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), transparent 46%), radial-gradient(circle at 90% 10%, rgba(34, 211, 238, 0.08), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.home-blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(32, 31, 31, 0.96);
}
.home-blog-card:hover::before {
  opacity: 1;
}

.home-blog-card__meta,
.home-blog-card__title,
.home-blog-card__excerpt,
.home-blog-card__link {
  position: relative;
  z-index: 1;
}

.home-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.76);
}
.home-blog-card__meta span,
.home-blog-card__meta time {
  display: inline-flex;
  align-items: center;
}
.home-blog-card__meta span:not(:first-child)::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: #a855f7;
}

.home-blog-card__title {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.home-blog-card__title a {
  color: var(--color-on-surface);
  text-decoration: none;
}

.home-blog-card__excerpt {
  margin: 18px 0 28px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.66;
  color: var(--color-on-surface-variant);
  opacity: 0.78;
}

.home-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #22d3ee;
}
.home-blog-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.home-blog-card__link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.home-blog__empty {
  max-width: 620px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.86);
}
.home-blog__empty span {
  display: block;
  margin-bottom: 10px;
  font-family: "Geist", sans-serif;
  font-size: 28px;
  font-weight: 820;
  color: var(--color-on-surface);
}
.home-blog__empty p {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
}

/*******************************************************************
	Home – FAQ
*******************************************************************/
.home-faq {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.06), transparent 32%), radial-gradient(circle at 18% 72%, rgba(168, 85, 247, 0.08), transparent 36%);
}

.home-faq__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .home-faq__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.home-faq__header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.home-faq__eyebrow {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #22d3ee;
}

.home-faq__title {
  margin: 0 0 22px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--color-on-surface);
}

.home-faq__intro {
  max-width: 680px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}

.home-faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-faq__item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.72);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.home-faq__item[open] {
  border-color: rgba(168, 85, 247, 0.28);
  background: rgba(26, 25, 25, 0.82);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.home-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  cursor: pointer;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 720;
  line-height: 1.35;
  color: var(--color-on-surface);
  list-style: none;
}
.home-faq__item summary::-webkit-details-marker {
  display: none;
}
.home-faq__item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #c084fc;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}
.home-faq__item summary:hover::after {
  border-color: rgba(168, 85, 247, 0.34);
  background: rgba(168, 85, 247, 0.1);
}
@media (max-width: 640px) {
  .home-faq__item summary {
    padding: 22px 20px;
  }
}

.home-faq__item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(168, 85, 247, 0.34);
  background: rgba(168, 85, 247, 0.12);
}

.home-faq__body {
  padding: 0 28px 28px;
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-on-surface-variant);
  opacity: 0.78;
}
.home-faq__body a {
  color: #22d3ee;
  text-decoration: none;
}
.home-faq__body a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .home-faq__body {
    padding: 0 20px 24px;
  }
}

/*******************************************************************
	Home – Final CTA
*******************************************************************/
.final-cta {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(6, 182, 212, 0.05)), var(--color-surface-container-lowest);
}

.final-cta__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
}
@media (max-width: 768px) {
  .final-cta__inner {
    padding: 0 var(--spacing-margin-sm);
  }
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 84px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.16), transparent 38%), radial-gradient(circle at 82% 76%, rgba(6, 182, 212, 0.12), transparent 40%), rgba(18, 18, 18, 0.78);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  text-align: center;
}

.final-cta__orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.08);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-cta__eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #22d3ee;
}

.final-cta__title {
  max-width: 820px;
  margin: 0 auto 24px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.25rem, 5.4vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--color-on-surface);
}

.final-cta__desc {
  max-width: 680px;
  margin: 0 auto 40px;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.82;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.final-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 36px;
  border-radius: 8px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, background-position 0.3s ease, box-shadow 0.3s ease;
}
.final-cta__button:hover {
  transform: translateY(-3px);
}

.final-cta__button--primary {
  border: 1px solid transparent;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  box-shadow: 0 0 42px rgba(168, 85, 247, 0.28);
  color: #fff;
}
.final-cta__button--primary:hover {
  background-position: 100% 100%;
  box-shadow: 0 0 62px rgba(168, 85, 247, 0.42);
}

.final-cta__button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-on-surface);
}
.final-cta__button--ghost:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.08);
}

/*******************************************************************
	404
*******************************************************************/
.not-found {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + clamp(56px, 8vw, 96px)) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}

.not-found__mesh {
  position: absolute;
  inset: -25%;
  background-image: radial-gradient(circle at 18% 30%, rgba(168, 85, 247, 0.18) 0%, transparent 34%), radial-gradient(circle at 78% 68%, rgba(6, 182, 212, 0.16) 0%, transparent 36%), radial-gradient(circle at 52% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 48%);
  filter: blur(84px);
  animation: not-found-mesh 26s infinite alternate ease-in-out;
  pointer-events: none;
}

@keyframes not-found-mesh {
  from {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
  to {
    transform: rotate(14deg) translate3d(4%, 3%, 0);
  }
}
.not-found__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-margin-md);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
@media (max-width: 900px) {
  .not-found__inner {
    grid-template-columns: 1fr;
    padding: 0 var(--spacing-margin-sm);
  }
}

.not-found__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .not-found__visual {
    min-height: 360px;
    order: 2;
  }
}

.not-found__console {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(18, 18, 18, 0.78);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}

.not-found__console-top {
  display: flex;
  gap: 8px;
  padding-bottom: 22px;
}
.not-found__console-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.not-found__console-top span:nth-child(1) {
  background: rgba(251, 113, 133, 0.78);
}
.not-found__console-top span:nth-child(2) {
  background: rgba(251, 146, 60, 0.78);
}
.not-found__console-top span:nth-child(3) {
  background: rgba(34, 211, 238, 0.78);
}

.not-found__route {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Geist", sans-serif;
}

.not-found__route-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #22d3ee;
}

.not-found__route-path {
  font-size: 13px;
  color: var(--color-on-surface-variant);
  opacity: 0.76;
}

.not-found__code {
  display: grid;
  grid-template-columns: 1fr 0.86fr 1fr;
  gap: clamp(8px, 2vw, 18px);
  align-items: center;
  justify-items: center;
  margin-bottom: 28px;
  font-family: "Geist", sans-serif;
  font-size: clamp(6rem, 16vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
  color: var(--color-on-surface);
}

.not-found__zero {
  width: clamp(92px, 13vw, 140px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(168, 85, 247, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18), rgba(6, 182, 212, 0.06));
  box-shadow: 0 0 42px rgba(168, 85, 247, 0.28), inset 0 0 28px rgba(6, 182, 212, 0.12);
  animation: not-found-orbit 6s linear infinite;
}

.not-found__zero-mark {
  font-family: "Geist", sans-serif;
  font-size: clamp(4.2rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  color: #c084fc;
  transform: translateX(-0.04em);
}

@keyframes not-found-orbit {
  to {
    transform: rotate(360deg);
  }
}
.not-found__status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.not-found__status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fb7185;
  box-shadow: 0 0 18px rgba(251, 113, 133, 0.7);
  animation: not-found-blink 1.2s infinite ease-in-out;
}
.not-found__status p {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-on-surface-variant);
  opacity: 0.76;
}

@keyframes not-found-blink {
  0%, 100% {
    opacity: 0.38;
  }
  50% {
    opacity: 1;
  }
}
.not-found__packet {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  animation: not-found-float 5s infinite ease-in-out;
}
@media (max-width: 520px) {
  .not-found__packet {
    display: none;
  }
}

.not-found__packet-label {
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #22d3ee;
}

.not-found__packet--one {
  top: 8%;
  left: 6%;
}

.not-found__packet--two {
  right: 2%;
  top: 20%;
  animation-delay: -1.6s;
}
.not-found__packet--two .not-found__packet-label {
  color: #c084fc;
}

.not-found__packet--three {
  left: 10%;
  bottom: 8%;
  animation-delay: -3s;
}
.not-found__packet--three .not-found__packet-label {
  color: #fb923c;
}

@keyframes not-found-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
}
.not-found__content {
  max-width: 660px;
}
@media (max-width: 900px) {
  .not-found__content {
    order: 1;
    text-align: center;
    margin: 0 auto;
  }
}

.not-found__eyebrow {
  display: block;
  margin-bottom: 18px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #22d3ee;
}

.not-found__title {
  margin: 0 0 24px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.4rem, 5.7vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.03;
  color: var(--color-on-surface);
}

.not-found__desc {
  max-width: 560px;
  margin: 0 0 40px;
  font-family: "Geist", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
  opacity: 0.8;
}
@media (max-width: 900px) {
  .not-found__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 900px) {
  .not-found__actions {
    justify-content: center;
  }
}

.not-found__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 8px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, background-position 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.not-found__button:hover {
  transform: translateY(-3px);
}

.not-found__button--primary {
  border: 1px solid transparent;
  background: var(--gradient-btn);
  background-size: 200% 200%;
  box-shadow: 0 0 42px rgba(168, 85, 247, 0.28);
  color: #fff;
}
.not-found__button--primary:hover {
  background-position: 100% 100%;
  box-shadow: 0 0 62px rgba(168, 85, 247, 0.42);
}

.not-found__button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-on-surface);
}
.not-found__button--ghost:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(34, 211, 238, 0.08);
}

/*******************************************************************
	Blog
*******************************************************************/
.blog-index,
.blog-single {
  position: relative;
  background: radial-gradient(circle at 12% 8%, rgba(168, 85, 247, 0.12), transparent 30%), radial-gradient(circle at 88% 18%, rgba(6, 182, 212, 0.08), transparent 34%), var(--color-surface);
}

.blog-index {
  overflow: hidden;
  padding: clamp(116px, 13vw, 176px) 0 clamp(96px, 11vw, 150px);
}

.blog-single {
  overflow: visible;
}

.blog-index__shell,
.blog-single__shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--container-max));
  margin: 0 auto;
}

.blog-index__hero {
  max-width: 860px;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.blog-index__eyebrow,
.blog-single__rail-label {
  display: block;
  margin-bottom: 16px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #22d3ee;
}

.blog-index__title,
.blog-single__title {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.75rem, 7vw, 6rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: var(--color-on-surface);
}

.blog-index__intro,
.blog-single__excerpt {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.72;
  color: var(--color-on-surface-variant);
  opacity: 0.82;
}

.blog-index__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
@media (max-width: 1120px) {
  .blog-index__layout {
    grid-template-columns: 1fr;
  }
}

.blog-index__main {
  min-width: 0;
}

.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-gutter);
}
@media (max-width: 1040px) {
  .blog-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .blog-index__grid {
    grid-template-columns: 1fr;
  }
}

.blog-index__main .blog-index__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .blog-index__main .blog-index__grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(32, 31, 31, 0.96);
}

.blog-card--featured {
  grid-column: span 2;
}
.blog-card--featured .blog-card__body {
  padding: clamp(34px, 4vw, 48px);
}
.blog-card--featured .blog-card__title {
  max-width: 760px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.08;
}
@media (max-width: 1040px) {
  .blog-card--featured {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .blog-card--featured {
    grid-column: span 1;
  }
}

.blog-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 32px;
}

.blog-card__meta,
.blog-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.76);
}
.blog-card__meta span,
.blog-card__meta time,
.blog-single__meta span,
.blog-single__meta time {
  display: inline-flex;
  align-items: center;
}
.blog-card__meta span:not(:first-child)::before,
.blog-single__meta span:not(:first-child)::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 50%;
  background: #a855f7;
}

.blog-card__title {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.blog-card__title a {
  color: var(--color-on-surface);
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 18px 0 28px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.66;
  color: var(--color-on-surface-variant);
  opacity: 0.78;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #22d3ee;
}
.blog-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.blog-card__link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.blog-index .navigation.pagination {
  margin-top: 56px;
  clear: both;
}

.blog-index .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.blog-index .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  color: var(--color-on-surface-variant);
}
.blog-index .page-numbers.current, .blog-index .page-numbers:hover {
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(34, 211, 238, 0.1);
  color: var(--color-on-surface);
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 1120px) {
  .blog-sidebar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }
}

.blog-sidebar__panel {
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(28, 27, 27, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}

.blog-sidebar__panel--search {
  background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 46%), rgba(28, 27, 27, 0.88);
}

.blog-sidebar__title {
  margin: 0 0 16px;
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-on-surface);
}

.blog-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-sidebar__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.blog-sidebar__list a span {
  min-width: 0;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
}
.blog-sidebar__list a em {
  flex-shrink: 0;
  min-width: 28px;
  height: 24px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  line-height: 24px;
  text-align: center;
  color: #22d3ee;
}
.blog-sidebar__list a:hover, .blog-sidebar__list a[aria-current=page] {
  transform: translateX(3px);
  border-color: rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
  color: var(--color-on-surface);
}

.blog-sidebar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-sidebar__tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  color: var(--color-on-surface-variant);
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.blog-sidebar__tags a:hover, .blog-sidebar__tags a[aria-current=page] {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.34);
  background: rgba(168, 85, 247, 0.11);
  color: var(--color-on-surface);
}

.blog-sidebar__empty {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(196, 199, 199, 0.7);
}

.site-search-form {
  margin: 0;
}

.site-search-form__field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.site-search-form__field .material-symbols-outlined {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 2;
  font-size: 20px;
  color: rgba(196, 199, 199, 0.64);
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 430px) {
  .site-search-form__field {
    grid-template-columns: 1fr;
  }
  .site-search-form__field .material-symbols-outlined {
    top: 24px;
  }
}

.site-search-form__input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.58);
  font-family: "Geist", sans-serif;
  font-size: 14px;
  color: var(--color-on-surface);
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-search-form__input::-moz-placeholder {
  color: rgba(196, 199, 199, 0.54);
}
.site-search-form__input::placeholder {
  color: rgba(196, 199, 199, 0.54);
}
.site-search-form__input:focus {
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(14, 14, 14, 0.76);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.site-search-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--gradient-btn);
  background-size: 180% 180%;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: background-position 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.site-search-form__submit:hover {
  background-position: 100% 100%;
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.28);
  transform: translateY(-2px);
}

.blog-index__empty {
  max-width: 620px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.86);
}
.blog-index__empty span {
  display: block;
  margin-bottom: 10px;
  font-family: "Geist", sans-serif;
  font-size: 28px;
  font-weight: 820;
  color: var(--color-on-surface);
}
.blog-index__empty p {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-on-surface-variant);
}

.blog-index__empty--search .site-search-form {
  margin-top: 24px;
}

/*******************************************************************
	Single Blog Post
*******************************************************************/
.blog-single__hero {
  padding: clamp(118px, 13vw, 184px) 0 clamp(58px, 8vw, 100px);
}

.blog-single__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 38px;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #22d3ee;
}
.blog-single__back .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.blog-single__back:hover .material-symbols-outlined {
  transform: translateX(-4px);
}

.blog-single__title {
  max-width: 1040px;
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.blog-index__title {
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.blog-single__cover {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1120px);
  margin: 0 auto clamp(58px, 8vw, 100px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: var(--color-surface-container-lowest);
}
.blog-single__cover img {
  display: block;
  width: 100%;
  max-height: 620px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-single__layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 790px);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 128px);
}
@media (max-width: 920px) {
  .blog-single__layout {
    grid-template-columns: 1fr;
  }
}

.blog-single__layout--with-cta {
  padding-bottom: clamp(44px, 5vw, 70px);
}

.default-page__hero {
  padding-bottom: clamp(44px, 6vw, 76px);
  text-align: center;
}

.default-page__title {
  width: min(100%, 780px);
  margin-right: auto;
  margin-left: auto;
}

.default-page__content-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: clamp(44px, 5vw, 70px);
}

.default-page__content {
  width: min(100%, 720px);
  margin-right: auto;
  margin-left: auto;
}

.blog-single__rail {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  display: grid;
  gap: 16px;
  max-height: calc(100vh - var(--nav-height) - 64px);
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.36) transparent;
}
.blog-single__rail strong {
  display: block;
  margin-bottom: 18px;
  font-family: "Geist", sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--color-on-surface);
}
@media (max-width: 920px) {
  .blog-single__rail {
    display: none;
  }
}

body.admin-bar .blog-single__rail {
  top: calc(var(--nav-height) + 64px);
  max-height: calc(100vh - var(--nav-height) - 96px);
}

.blog-single__rail-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.72);
}

.blog-single__rail-panel--toc {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(28, 27, 27, 0.78);
}

.blog-single__toc-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-single__toc-item {
  margin: 0;
}
.blog-single__toc-item a {
  display: block;
  padding: 10px 0 10px 14px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  font-family: "Geist", sans-serif;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
  text-decoration: none;
  color: rgba(196, 199, 199, 0.78);
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.blog-single__toc-item a:hover {
  border-color: rgba(34, 211, 238, 0.7);
  color: var(--color-on-surface);
  transform: translateX(3px);
}

.blog-single__toc-item--h3 a {
  padding-left: 24px;
  font-size: 12px;
  color: rgba(196, 199, 199, 0.68);
}

.blog-single__toc-item--h4 a {
  padding-left: 34px;
  font-size: 12px;
  color: rgba(196, 199, 199, 0.58);
}

.blog-single__rail-list,
.blog-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-single__rail-list a,
.blog-single__tags a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  color: var(--color-on-surface-variant);
}
.blog-single__rail-list a:hover,
.blog-single__tags a:hover {
  border-color: rgba(34, 211, 238, 0.34);
  color: var(--color-on-surface);
}

.blog-single__content {
  min-width: 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.04rem, 1.5vw, 1.16rem);
  line-height: 1.82;
  color: rgba(229, 226, 225, 0.86);
  overflow-wrap: break-word;
  word-break: normal;
}
.blog-single__content > *:first-child {
  margin-top: 0;
}
.blog-single__content p,
.blog-single__content ul,
.blog-single__content ol,
.blog-single__content dl,
.blog-single__content address,
.blog-single__content pre,
.blog-single__content table,
.blog-single__content figure,
.blog-single__content .wp-caption,
.blog-single__content .gallery,
.blog-single__content .embed-container,
.blog-single__content iframe,
.blog-single__content video,
.blog-single__content audio,
.blog-single__content blockquote,
.blog-single__content .wp-block-image,
.blog-single__content .wp-block-table {
  margin-top: 0;
  margin-bottom: 1.45em;
}
.blog-single__content p:empty {
  display: none;
}
.blog-single__content h1,
.blog-single__content h2,
.blog-single__content h3,
.blog-single__content h4,
.blog-single__content h5,
.blog-single__content h6 {
  scroll-margin-top: calc(var(--nav-height) + 28px);
  margin: 1.7em 0 0.65em;
  font-family: "Geist", sans-serif;
  font-weight: 830;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--color-on-surface);
}
.blog-single__content h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
}
.blog-single__content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.blog-single__content h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}
.blog-single__content h4 {
  font-size: clamp(1.22rem, 1.8vw, 1.55rem);
}
.blog-single__content h5,
.blog-single__content h6 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, 0.74);
}
.blog-single__content a {
  color: #22d3ee;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.blog-single__content a:hover {
  color: #67e8f9;
}
.blog-single__content strong,
.blog-single__content b {
  font-weight: 820;
  color: var(--color-on-surface);
}
.blog-single__content em,
.blog-single__content i,
.blog-single__content cite {
  color: rgba(229, 226, 225, 0.92);
}
.blog-single__content small {
  font-size: 0.82em;
  color: rgba(196, 199, 199, 0.78);
}
.blog-single__content mark,
.blog-single__content ins {
  padding: 0.08em 0.24em;
  border-radius: 4px;
  background: rgba(34, 211, 238, 0.18);
  color: var(--color-on-surface);
  text-decoration: none;
}
.blog-single__content del,
.blog-single__content s {
  color: rgba(196, 199, 199, 0.58);
  text-decoration-color: rgba(255, 180, 171, 0.72);
}
.blog-single__content abbr,
.blog-single__content acronym {
  border-bottom: 1px dotted rgba(34, 211, 238, 0.6);
  text-decoration: none;
  cursor: help;
}
.blog-single__content sub,
.blog-single__content sup {
  position: relative;
  font-size: 0.72em;
  line-height: 0;
  vertical-align: baseline;
}
.blog-single__content sup {
  top: -0.48em;
}
.blog-single__content sub {
  bottom: -0.22em;
}
.blog-single__content kbd {
  display: inline-flex;
  align-items: center;
  min-height: 1.8em;
  padding: 0 0.45em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom-color: rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.82em;
  color: var(--color-on-surface);
}
.blog-single__content .content-faq,
.blog-single__content .content-recommended-links {
  position: relative;
  margin-block: clamp(28px, 5vw, 46px);
  padding: clamp(24px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(28, 27, 27, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
}
.blog-single__content .content-faq > :first-child,
.blog-single__content .content-recommended-links > :first-child {
  margin-top: 0;
}
.blog-single__content .content-faq > :last-child,
.blog-single__content .content-recommended-links > :last-child {
  margin-bottom: 0;
}
.blog-single__content .content-faq h2,
.blog-single__content .content-faq h3,
.blog-single__content .content-recommended-links h2,
.blog-single__content .content-recommended-links h3 {
  margin-top: 0;
}
.blog-single__content .content-faq {
  background: radial-gradient(circle at 100% 0%, rgba(34, 211, 238, 0.12), transparent 46%), linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(28, 27, 27, 0.84);
}
.blog-single__content .content-faq h3 {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.24;
}
.blog-single__content .content-faq h3:first-of-type {
  padding-top: 0;
  border-top: 0;
}
.blog-single__content .content-recommended-links {
  background: radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.13), transparent 44%), linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)), rgba(28, 27, 27, 0.84);
}
.blog-single__content .content-recommended-links ul,
.blog-single__content .content-recommended-links ol {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.blog-single__content .content-recommended-links li {
  margin: 0;
}
.blog-single__content .content-recommended-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.blog-single__content .content-recommended-links a:hover {
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(34, 211, 238, 0.08);
  color: var(--color-on-surface);
  transform: translateX(3px);
}
.blog-single__content hr {
  height: 1px;
  margin: clamp(38px, 6vw, 64px) 0;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}
.blog-single__content ul,
.blog-single__content ol {
  padding-left: 1.35em;
  list-style-position: outside;
}
.blog-single__content li {
  margin-bottom: 0.52em;
}
.blog-single__content li::marker {
  color: #22d3ee;
}
.blog-single__content ul ul,
.blog-single__content ul ol,
.blog-single__content ol ul,
.blog-single__content ol ol {
  margin-top: 0.52em;
  margin-bottom: 0.52em;
}
.blog-single__content dl {
  display: grid;
  gap: 8px 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.blog-single__content dt {
  font-weight: 820;
  color: var(--color-on-surface);
}
.blog-single__content dd {
  margin: 0 0 12px;
  color: rgba(196, 199, 199, 0.84);
}
.blog-single__content address {
  padding: 22px 24px;
  border-left: 3px solid #22d3ee;
  border-radius: 0 8px 8px 0;
  background: rgba(34, 211, 238, 0.06);
  font-style: normal;
}
.blog-single__content blockquote {
  position: relative;
  padding: 10px 0 10px 28px;
  border-left: 3px solid #a855f7;
  font-size: 1.18em;
  line-height: 1.7;
  color: var(--color-on-surface);
}
.blog-single__content blockquote p:last-child {
  margin-bottom: 0;
}
.blog-single__content blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.82em;
  font-style: normal;
  color: rgba(196, 199, 199, 0.7);
}
.blog-single__content q {
  color: var(--color-on-surface);
}
.blog-single__content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(14, 14, 14, 0.44);
  -webkit-overflow-scrolling: touch;
}
.blog-single__content caption {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.86em;
  font-weight: 760;
  color: rgba(196, 199, 199, 0.78);
}
.blog-single__content thead,
.blog-single__content tbody,
.blog-single__content tfoot {
  min-width: 620px;
}
.blog-single__content th,
.blog-single__content td {
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}
.blog-single__content th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 820;
  color: var(--color-on-surface);
}
.blog-single__content tr:last-child td {
  border-bottom: 0;
}
.blog-single__content th:last-child,
.blog-single__content td:last-child {
  border-right: 0;
}
.blog-single__content img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.blog-single__content a img {
  transition: transform 0.35s ease, filter 0.35s ease;
}
.blog-single__content a img:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.blog-single__content figure {
  max-width: 100%;
}
.blog-single__content figcaption,
.blog-single__content .wp-caption-text,
.blog-single__content .gallery-caption {
  margin-top: 10px;
  font-size: 0.84em;
  line-height: 1.55;
  text-align: center;
  color: rgba(196, 199, 199, 0.68);
}
.blog-single__content .wp-caption {
  max-width: 100%;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.blog-single__content .wp-caption img {
  width: 100%;
}
.blog-single__content .alignnone,
.blog-single__content .aligncenter {
  max-width: 100%;
}
.blog-single__content .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.blog-single__content .alignleft,
.blog-single__content .alignright {
  max-width: min(48%, 360px);
  margin-top: 8px;
  margin-bottom: 18px;
}
.blog-single__content .alignleft {
  float: left;
  margin-right: 28px;
}
.blog-single__content .alignright {
  float: right;
  margin-left: 28px;
}
.blog-single__content .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 720px) {
  .blog-single__content .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 460px) {
  .blog-single__content .gallery {
    grid-template-columns: 1fr;
  }
}
.blog-single__content .gallery-item {
  width: auto !important;
  max-width: none;
  margin: 0;
  padding: 0;
}
.blog-single__content .gallery-icon {
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-container-lowest);
}
.blog-single__content .gallery-icon img {
  width: 100%;
  aspect-ratio: 1/0.78;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.blog-single__content iframe,
.blog-single__content object,
.blog-single__content embed,
.blog-single__content video {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--color-surface-container-lowest);
}
.blog-single__content iframe {
  min-height: 320px;
}
.blog-single__content iframe[src*=youtube],
.blog-single__content iframe[src*="youtu.be"],
.blog-single__content iframe[src*=vimeo],
.blog-single__content iframe[src*=video] {
  aspect-ratio: 16/9;
  height: auto;
  min-height: 0;
}
.blog-single__content video {
  height: auto;
}
.blog-single__content audio {
  width: 100%;
}
.blog-single__content .embed-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-surface-container-lowest);
}
.blog-single__content .embed-container iframe,
.blog-single__content .embed-container object,
.blog-single__content .embed-container embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blog-single__content pre,
.blog-single__content code {
  border-radius: 6px;
  background: rgba(14, 14, 14, 0.86);
  color: var(--color-on-surface);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
.blog-single__content code {
  padding: 0.16em 0.34em;
  font-size: 0.88em;
}
.blog-single__content pre {
  overflow-x: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.68;
  -webkit-overflow-scrolling: touch;
}
.blog-single__content pre code {
  padding: 0;
  background: transparent;
}
.blog-single__content .code-copy {
  position: relative;
  margin-bottom: 1.45em;
}
.blog-single__content .code-copy pre {
  margin-bottom: 0;
  padding-top: 58px;
}
.blog-single__content .code-copy__button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-family: "Geist", sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(229, 226, 225, 0.78);
  cursor: pointer;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.blog-single__content .code-copy__button:hover, .blog-single__content .code-copy__button.is-copied {
  border-color: rgba(34, 211, 238, 0.38);
  background: rgba(34, 211, 238, 0.12);
  color: var(--color-on-surface);
  transform: translateY(-1px);
}
.blog-single__content .hljs {
  background: transparent;
  color: #d9e0e0;
}
.blog-single__content .hljs-comment,
.blog-single__content .hljs-quote {
  color: rgba(196, 199, 199, 0.55);
  font-style: italic;
}
.blog-single__content .hljs-keyword,
.blog-single__content .hljs-selector-tag,
.blog-single__content .hljs-subst {
  color: #a78bfa;
}
.blog-single__content .hljs-built_in,
.blog-single__content .hljs-name,
.blog-single__content .hljs-tag {
  color: #22d3ee;
}
.blog-single__content .hljs-attr,
.blog-single__content .hljs-attribute,
.blog-single__content .hljs-property,
.blog-single__content .hljs-variable {
  color: #67e8f9;
}
.blog-single__content .hljs-string,
.blog-single__content .hljs-regexp,
.blog-single__content .hljs-template-variable {
  color: #86efac;
}
.blog-single__content .hljs-number,
.blog-single__content .hljs-literal,
.blog-single__content .hljs-symbol,
.blog-single__content .hljs-bullet {
  color: #fbbf24;
}
.blog-single__content .hljs-title,
.blog-single__content .hljs-section,
.blog-single__content .hljs-selector-id,
.blog-single__content .hljs-selector-class {
  color: #f0abfc;
}
.blog-single__content .hljs-doctag,
.blog-single__content .hljs-meta {
  color: #93c5fd;
}
.blog-single__content .hljs-emphasis {
  font-style: italic;
}
.blog-single__content .hljs-strong {
  font-weight: 820;
}
.blog-single__content input,
.blog-single__content select,
.blog-single__content textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  color: var(--color-on-surface);
}
.blog-single__content textarea {
  min-height: 140px;
  resize: vertical;
}
.blog-single__content input[type=checkbox],
.blog-single__content input[type=radio] {
  width: auto;
  min-height: 0;
  margin-right: 8px;
}
.blog-single__content input[type=submit],
.blog-single__content button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--gradient-btn);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 640px) {
  .blog-single__content .alignleft,
  .blog-single__content .alignright {
    float: none;
    display: block;
    max-width: 100%;
    margin: 0 0 1.45em;
  }
  .blog-single__content iframe {
    min-height: 220px;
  }
}

.blog-single__page-links {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}

.blog-single__footer {
  padding: clamp(54px, 7vw, 88px) 0 clamp(54px, 7vw, 88px);
}

.blog-single__tags {
  margin-bottom: 32px;
}

.blog-single__post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--spacing-gutter);
}
@media (max-width: 720px) {
  .blog-single__post-nav {
    grid-template-columns: 1fr;
  }
}

.blog-single__post-link {
  min-height: 120px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(28, 27, 27, 0.78);
}
.blog-single__post-link span {
  display: block;
  margin-bottom: 10px;
  font-family: "Geist", sans-serif;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196, 199, 199, 0.6);
}
.blog-single__post-link a {
  font-family: "Geist", sans-serif;
  font-size: 20px;
  font-weight: 790;
  line-height: 1.25;
  text-decoration: none;
  color: var(--color-on-surface);
}

.blog-single__post-link--next {
  text-align: right;
}

/*******************************************************************
	Coming Soon
*******************************************************************/
body.coming-soon-page {
  padding-top: 0;
  background: var(--color-surface-container-lowest);
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: clamp(38px, 7vw, 80px) var(--spacing-margin-md);
  background: radial-gradient(circle at 18% 18%, rgba(168, 85, 247, 0.22), transparent 34%), radial-gradient(circle at 86% 72%, rgba(6, 182, 212, 0.18), transparent 36%), linear-gradient(145deg, #0e0e0e 0%, #141313 52%, #201f1f 100%);
}
@media (max-width: 640px) {
  .coming-soon {
    padding-right: var(--spacing-margin-sm);
    padding-left: var(--spacing-margin-sm);
  }
}

.coming-soon__mesh {
  position: absolute;
  inset: -22%;
  opacity: 0.36;
  background-image: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.22), transparent 34%), radial-gradient(circle at 62% 54%, rgba(34, 211, 238, 0.16), transparent 38%);
  filter: blur(86px);
  animation: coming-soon-drift 22s ease-in-out infinite alternate;
}

@keyframes coming-soon-drift {
  from {
    transform: rotate(-4deg) translate3d(-2%, -1%, 0);
  }
  to {
    transform: rotate(8deg) translate3d(3%, 2%, 0);
  }
}
.coming-soon__grid {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 38vh;
  opacity: 0.26;
  pointer-events: none;
}
.coming-soon__grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
}

.coming-soon__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  text-align: center;
}

.coming-soon__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(34px, 6vw, 58px);
  font-family: "Geist", sans-serif;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--color-on-surface);
}
.coming-soon__brand img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.coming-soon__eyebrow {
  margin: 0 0 18px;
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #22d3ee;
}

.coming-soon__title {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Geist", sans-serif;
  font-size: clamp(2.45rem, 5.7vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.042em;
  line-height: 1.02;
  color: var(--color-on-surface);
}
@media (max-width: 640px) {
  .coming-soon__title {
    letter-spacing: -0.032em;
  }
}

.coming-soon__text {
  max-width: 680px;
  margin: clamp(24px, 4vw, 34px) auto 0;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.72;
  color: var(--color-on-surface-variant);
  opacity: 0.84;
}

.coming-soon__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: clamp(34px, 5vw, 52px);
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Geist", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-on-surface-variant);
}

.coming-soon__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.46);
  animation: coming-soon-pulse 1.8s infinite;
}

@keyframes coming-soon-pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}

/*# sourceMappingURL=app.css.map*/