@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95); }
  to {
    opacity: 1;
    transform: scale(1); } }

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(123, 97, 255, 0.3); }
  50% {
    box-shadow: 0 0 40px rgba(123, 97, 255, 0.5); } }

@keyframes gradientShift {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0); }

.animate-fade-in {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-fade-in.is-visible {
    opacity: 1; }

.animate-scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-scale-in.is-visible {
    opacity: 1;
    transform: scale(1); }

.animate-from-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-from-left.is-visible {
    opacity: 1;
    transform: translateX(0); }

.animate-from-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .animate-from-right.is-visible {
    opacity: 1;
    transform: translateX(0); }

.animate-delay-1 {
  transition-delay: 0.1s; }

.animate-delay-2 {
  transition-delay: 0.2s; }

.animate-delay-3 {
  transition-delay: 0.3s; }

.animate-delay-4 {
  transition-delay: 0.4s; }

.animate-delay-5 {
  transition-delay: 0.5s; }

.animate-delay-6 {
  transition-delay: 0.6s; }

.animate-delay-7 {
  transition-delay: 0.7s; }

.animate-delay-8 {
  transition-delay: 0.8s; }

.animate-delay-9 {
  transition-delay: 0.9s; }

.animate-delay-10 {
  transition-delay: 1s; }

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.3); }

.hover-glow {
  transition: box-shadow 0.3s ease; }
  .hover-glow:hover {
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.4); }

.hover-scale {
  transition: transform 0.3s ease; }
  .hover-scale:hover {
    transform: scale(1.02); }

.gradient-text, .gradient-text-animated {
  background: linear-gradient(135deg, #7b61ff 0%, #00d4ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; }

.gradient-text-animated {
  animation: gradientShift 4s ease infinite; }

.glass-card {
  background: rgba(22, 22, 31, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px; }

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

main {
  display: block; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bold; }
  .font-fira-sans b, .font-fira-sans strong {
    font-weight: 600; }

pre,
code,
kbd,
samp {
  font-family: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none;
  vertical-align: middle; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

html {
  font-size: 112.5%;
  scroll-behavior: smooth; }

body {
  background: #0a0a0f;
  color: #9ca3af;
  line-height: 1.66667;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; }

::selection {
  background: rgba(123, 97, 255, 0.3);
  color: #ffffff; }

.font-nunito-sans {
  font-family: "Inter", sans-serif; }

.font-fira-sans {
  font-family: "Inter", sans-serif; }

.font-system-sans {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

a {
  color: #7b61ff;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease; }
  a:hover {
    color: #00d4ff; }

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #e5e7eb;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.25em 0 0.5em;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em; }
  h1:first-child,
  h2:first-child,
  h3:first-child,
  h4:first-child,
  h5:first-child,
  h6:first-child {
    margin-top: 0; }
  .font-fira-sans h1, .font-fira-sans h2, .font-fira-sans h3, .font-fira-sans h4, .font-fira-sans h5, .font-fira-sans h6 {
    font-weight: 600; }

h1 {
  font-size: 2.5em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.66667em; }

h4 {
  font-size: 1.33333em; }

h5 {
  font-size: 1.11111em; }

h6 {
  font-size: 1em; }

@media only screen and (min-width: 601px) {
  h1 {
    font-size: 3em; }
  h2 {
    font-size: 2.44444em; }
  h3 {
    font-size: 1.77778em; } }

p {
  margin: 0 0 1em; }

mark,
ins {
  background: rgba(251, 191, 36, 0.2);
  color: #e5e7eb;
  padding: 0 3px;
  text-decoration: none;
  border-radius: 3px; }

pre {
  background: #1a1a24;
  border: 1px solid #2a2a38;
  border-radius: 8px;
  color: #9ca3af;
  font-size: 0.88889em;
  font-family: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  margin: 0 0 2em;
  overflow: auto;
  padding: 1.5em;
  white-space: pre; }

code {
  font-family: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  background: #1a1a24;
  padding: 0.125em 0.375em;
  border-radius: 4px;
  font-size: 0.9em; }

blockquote {
  border-left: 3px solid #7b61ff;
  color: #9ca3af;
  font-size: 1.22222em;
  line-height: 1.5;
  margin: 1.25em 0;
  padding: 0 0 0 1.25em; }
  blockquote:first-child {
    margin-top: 0; }
  blockquote p {
    margin-bottom: 0.5em; }
  blockquote small,
  blockquote cite {
    color: #6b6b7d;
    display: block;
    font-size: 0.83333em;
    font-style: normal;
    font-weight: normal;
    margin-top: 0.6em; }

dl {
  margin: 0; }

dt {
  font-weight: bold; }
  .font-fira-sans dt {
    font-weight: 600; }

ul,
ol,
dd {
  margin: 0 0 1em; }

ul {
  list-style: disc;
  padding: 0 0 0 1.125em; }

ol {
  list-style: decimal;
  padding: 0 0 0 1.5em; }

li > ul,
li > ol {
  margin-bottom: 0; }

hr {
  background: linear-gradient(90deg, transparent, #3d3d4f, transparent);
  border: 0;
  height: 1px;
  margin: 2.5em 0; }
  hr:first-child {
    margin-top: 0; }

embed,
iframe,
object,
video {
  max-width: 100%; }

img {
  height: auto;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 8px; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.order-first {
  order: -1; }

.underline {
  position: relative; }
  .underline:after {
    border-left: 1.5em solid #7b61ff;
    display: block;
    content: "";
    height: 2px;
    margin-top: 0.5em; }

.js-reframe {
  margin: 0 0 1.66667em; }

.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem; }

.cell {
  box-sizing: border-box;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  width: 100%; }

@media only screen and (max-width: 750px) {
  .grid {
    margin-left: -2.5vw;
    margin-right: -2.5vw; }
  .cell {
    padding-left: 2.5vw;
    padding-right: 2.5vw; } }

.card {
  background: #fff;
  border: 1px solid #1a1a24;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  box-sizing: border-box; }
  .card.highlight {
    border-color: #7b61ff;
    border-width: 2px; }

table {
  border-bottom: 1px solid #1a1a24;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  text-align: left;
  width: 100%; }

caption {
  color: #6b6b7d;
  font-size: 0.83333em;
  font-style: normal;
  margin-bottom: 1em;
  text-align: left; }

th,
td {
  border-top: 1px solid #1a1a24;
  padding: 0.5em 5px; }

th {
  color: #e5e7eb;
  font-weight: bold; }
  .font-fira-sans th {
    font-weight: 600; }

:not(.responsive-table) > table {
  margin: 1.66667em 0; }
  :not(.responsive-table) > table:first-child {
    margin-top: 0; }

.responsive-table {
  display: block;
  margin: 1.66667em 0;
  overflow-x: auto;
  width: 100%; }
  .responsive-table:first-child {
    margin-top: 0; }

label {
  display: block;
  color: inherit;
  line-height: 1.5;
  margin-bottom: 0.25em; }

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
select,
textarea {
  background: #fff;
  border: 1px solid #1a1a24;
  border-radius: 8px;
  box-shadow: none;
  box-sizing: border-box;
  color: #e5e7eb;
  display: block;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5;
  max-width: 100%;
  padding: 0.5em;
  width: 100%; }
  input[type="text"]:focus,
  input[type="password"]:focus,
  input[type="email"]:focus,
  input[type="tel"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="url"]:focus,
  select:focus,
  textarea:focus {
    outline: 0; }

::placeholder {
  color: #3d3d4f;
  opacity: 1; }

.form-row {
  margin-bottom: 1em; }

.form-submit {
  margin-top: 1.66667em; }

.form-select {
  color: inherit;
  font-size: 1em;
  position: relative; }
  .form-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 25px; }
  .form-select:before, .form-select:after {
    border: solid transparent;
    border-width: 0.3125em;
    box-sizing: border-box;
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 1; }
  .form-select:before {
    border-top-color: currentColor;
    margin-top: 0.125em; }
  .form-select:after {
    border-bottom-color: currentColor;
    margin-top: -0.75em; }

.form-checkbox {
  padding-left: 1.5em;
  position: relative; }
  .form-checkbox input[type=checkbox] {
    height: 1.5em;
    left: 0;
    position: absolute;
    top: 0; }

.button {
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(135deg, #7b61ff 0%, #00d4ff 100%);
  border: none;
  border-radius: 9999px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.9em;
  font-weight: 600;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.5;
  padding: 0.75em 2em;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.15s ease;
  position: relative;
  overflow: hidden; }
  .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease; }
  .font-fira-sans .button {
    font-weight: 600; }
  .button:hover, .button:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(123, 97, 255, 0.4), 0 0 0 2px rgba(123, 97, 255, 0.2);
    outline: 0; }
    .button:hover::before, .button:focus::before {
      opacity: 1; }
  .button:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(123, 97, 255, 0.3); }
  .button.large {
    padding: 1em 3em;
    font-size: 1em; }
  .button.secondary {
    background: transparent;
    border: 2px solid #3d3d4f;
    color: #9ca3af; }
    .button.secondary:hover, .button.secondary:focus {
      border-color: #7b61ff;
      color: #7b61ff;
      box-shadow: 0 0 20px rgba(123, 97, 255, 0.2); }
  .button .icon {
    margin-right: 0.5em; }

.block-buttons {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5em 0 1em; }
  .block-buttons:first-child {
    margin-top: 0; }
  .block-buttons a {
    font-size: 0.9em;
    font-weight: 600; }
    .font-fira-sans .block-buttons a {
      font-weight: 600; }

.icon {
  color: inherit;
  fill: currentColor;
  flex-shrink: 0;
  height: 1em;
  line-height: 1;
  width: 1em; }

.has-icon {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: middle; }
  .has-icon .icon + .order-first {
    margin-right: 0.5em; }
  .has-icon .icon + :not(.order-first) {
    margin-left: 0.5em; }

.icon-menu,
.icon-close {
  background: currentColor;
  border-radius: 1px;
  color: inherit;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 28px; }
  .icon-menu:before, .icon-menu:after,
  .icon-close:before,
  .icon-close:after {
    background: currentColor;
    border-radius: 1px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%; }

.icon-menu:before {
  top: -8px; }

.icon-menu:after {
  bottom: -8px; }

.icon-close {
  background: 0;
  width: 30px; }
  .icon-close:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .icon-close:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }

.icon-plus {
  background: #7b61ff;
  border-radius: 50%;
  color: #fff;
  height: 24px;
  position: relative;
  width: 24px; }
  .icon-plus:before, .icon-plus:after {
    background: currentColor;
    border-radius: 1px;
    content: "";
    height: 2px;
    left: 50%;
    margin-top: -1px;
    margin-left: -8px;
    position: absolute;
    top: 50%;
    width: 16px; }
  .icon-plus:after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg); }

.menu {
  list-style: none;
  margin: 0;
  padding: 0; }

.menu-item {
  font-size: 0.88889rem;
  line-height: 1.5; }

body {
  background: #050508; }

#global-cosmic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; }

.site {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  background: transparent; }

.site-content {
  box-sizing: border-box;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%; }

.outer {
  padding: 4em 5vw 3em;
  position: relative; }
  .outer .block-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2em; }

@media only screen and (min-width: 601px) {
  .outer {
    padding-bottom: 5em;
    padding-top: 5em; } }

@media only screen and (min-width: 901px) {
  .outer {
    padding-bottom: 6em;
    padding-top: 6em; } }

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; }

.inner-large {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px; }

.inner-medium {
  margin-left: auto;
  margin-right: auto;
  max-width: 750px; }

.inner-small {
  margin-left: auto;
  margin-right: auto;
  max-width: 555px; }

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; }

.cell {
  flex: 1 1 100%;
  min-width: 0; }

@media only screen and (min-width: 601px) {
  .cell-half {
    flex: 0 0 calc(50% - 1rem); }
  .cell-third {
    flex: 0 0 calc(33.333% - 1.3333333333rem); } }

.card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .card:hover {
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.3);
    border-color: rgba(123, 97, 255, 0.3); }

.site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  color: #e5e7eb;
  padding-bottom: 1rem;
  padding-top: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100; }
  .site-header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none; }
  .site-header a {
    text-decoration: none; }

.site-header-inside {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex; }

.site-branding {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }

.site-title {
  color: #e5e7eb;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em; }
  .font-fira-sans .site-title {
    font-weight: 600; }

.site-logo {
  margin: 0; }
  .site-logo img {
    max-height: 48px;
    transition: transform 0.3s ease; }
    .site-logo img:hover {
      transform: scale(1.05); }

.site-navigation .button {
  font-size: 1em;
  padding: 0.5em 1.25em;
  border-radius: 9999px; }

#masthead .site-branding a {
  color: inherit; }
  #masthead .site-branding a:hover {
    opacity: 0.8; }

#masthead .site-navigation .current-menu-item {
  color: #7b61ff; }

#masthead .site-navigation a:not(.button) {
  color: #9ca3af;
  font-weight: 500;
  transition: color 0.15s ease; }
  #masthead .site-navigation a:not(.button):hover {
    color: #e5e7eb; }

@media only screen and (min-width: 801px) {
  .menu-toggle {
    display: none; }
  .site-navigation {
    margin-left: auto; }
    .site-navigation .menu {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
    .site-navigation .menu-item {
      display: inline-block;
      margin: 0 0 0 1.5em; }
    .site-navigation .button {
      padding: 0.5em 1.25em;
      background: linear-gradient(135deg, #7b61ff 0%, #00d4ff 100%);
      border: none;
      color: white; }
      .site-navigation .button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(123, 97, 255, 0.4); }
    .site-navigation .menu-button + .menu-button {
      margin-left: 0.75em; }
  @supports (position: sticky) or (position: -webkit-sticky) {
    .site-header {
      background: rgba(22, 22, 31, 0.7);
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 999; }
      .has--scrolled .site-header {
        background: rgba(10, 10, 15, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); } } }

@media only screen and (max-width: 800px) {
  .site {
    overflow: hidden;
    position: relative; }
  .site-header:before {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    content: "";
    height: 100vh;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.3s ease-in-out, visibility 0s ease-in-out 0.3s;
    visibility: hidden;
    width: 100%;
    z-index: 998; }
  .menu-toggle {
    background: 0;
    border: 0;
    box-shadow: none;
    color: #e5e7eb;
    display: block;
    cursor: pointer;
    font-size: inherit;
    height: 1.66667rem;
    padding: 0;
    position: relative;
    width: 1.66667rem;
    transition: color 0.15s ease; }
    .menu-toggle:hover {
      color: #7b61ff; }
    .menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active {
      outline: 0; }
  #menu-open {
    margin-left: auto; }
  #menu-close {
    position: absolute;
    right: 1rem;
    top: 1rem; }
  .site-navigation {
    background: #12121a;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    height: 100vh;
    -webkit-overflow-scrolling: touch;
    position: absolute;
    right: -400px;
    top: 0;
    transition: right 0.3s ease-in-out, visibility 0s 0.3s ease-in-out;
    visibility: hidden;
    width: 400px;
    z-index: 999; }
    .site-navigation .menu {
      padding: 4em 5vw 2.5em; }
    .site-navigation .menu-item:not(.menu-button) {
      border-bottom: 1px solid #2a2a38; }
      .site-navigation .menu-item:not(.menu-button):first-child {
        border-top: 1px solid #2a2a38; }
    .site-navigation .menu-item.menu-button {
      margin-top: 1.66667em; }
    .site-navigation a:not(.button) {
      display: block;
      padding: 1em 0;
      color: #9ca3af; }
      .site-navigation a:not(.button):hover {
        color: #7b61ff; }
    .site-navigation .button {
      width: 100%;
      text-align: center; }
  .site-nav-inside {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: relative; }
  .menu--opened .site {
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transform: translate3d(0, 0, 0);
    width: 100%;
    z-index: 997; }
  .menu--opened .site-navigation {
    right: 0;
    transition: right 0.3s ease-in-out;
    visibility: visible; }
  .menu--opened .site-header:before {
    opacity: 1;
    transition-delay: 0s;
    visibility: visible; } }

@media only screen and (max-width: 400px) {
  .site-navigation {
    width: 100%; }
  #menu-close {
    right: 5vw;
    top: 5vw; } }

.post {
  margin-bottom: 2em; }

.post-title a {
  color: inherit !important;
  text-decoration: none;
  transition: color 0.15s ease; }
  .post-title a:hover {
    color: #7b61ff !important; }

.post-meta {
  color: #6b6b7d;
  line-height: 1.5;
  font-size: 0.88889em; }

.post-image img,
.post-content img {
  border-radius: 16px; }

.post-full .post-header {
  margin-bottom: 3em;
  text-align: center; }

.post-full .post-title {
  margin-bottom: 0.25em;
  color: #e5e7eb; }

.post-full .post-meta {
  margin-top: 1.5em; }

.post-subtitle {
  color: #6b6b7d;
  font-size: 1.11111em;
  line-height: 1.5; }

.post-image {
  display: block;
  margin-bottom: 2.5em; }
  .post-image img {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3); }

@media only screen and (min-width: 601px) {
  .post-full {
    margin-bottom: 4em; }
  .post-subtitle {
    font-size: 1.22222em; } }

.post-feed {
  margin-bottom: 2em; }
  .post-feed .card {
    height: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
    .post-feed .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 30px rgba(123, 97, 255, 0.3);
      border-color: rgba(123, 97, 255, 0.3); }
  .post-feed .post-title {
    font-size: 1.22222em;
    color: #e5e7eb;
    margin-bottom: 0.5em; }
  .post-feed .post-meta {
    font-size: 0.77778em;
    margin-bottom: 0; }

.post-thumbnail {
  border-radius: 16px 16px 0 0;
  display: block;
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden; }
  .post-thumbnail:before {
    content: "";
    display: block;
    padding-top: 56.25%; }
  .post-thumbnail img {
    border-radius: 0;
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
  .post-thumbnail:hover img {
    transform: scale(1.05); }

.post-body {
  padding: 1.5em; }

.post-excerpt {
  font-size: 0.88889em;
  color: #6b6b7d;
  margin-bottom: 1em;
  line-height: 1.6; }

.posts-block .grid {
  gap: 2rem; }

.posts-block .cell {
  flex: 1 1 100%; }

.posts-block .block-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem; }

@media only screen and (min-width: 601px) {
  .post-feed .grid {
    gap: 2rem; }
  .post-feed .cell {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 0;
    max-width: calc(50% - 1rem); } }

@media only screen and (min-width: 901px) {
  .post-feed .cell {
    flex: 0 0 calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem); } }

.block-title {
  font-size: 2em;
  color: #e5e7eb;
  letter-spacing: -0.02em; }
  @media only screen and (min-width: 601px) {
    .block-title {
      font-size: 2.66667em; } }
.block-header {
  text-align: center;
  margin-bottom: 3rem; }
  .block-header .block-title {
    font-size: 1.66667em;
    margin: 0 0 0.5em; }
    @media only screen and (min-width: 601px) {
      .block-header .block-title {
        font-size: 2.22222em; } }
    .block-header .block-title:last-child {
      margin-bottom: 1em; }
  .block-header .block-subtitle {
    color: #6b6b7d;
    line-height: 1.6;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; }
    .block-header .block-subtitle:last-child {
      margin-bottom: 0; }

.block-preview {
  margin-bottom: 2rem; }
  .block-preview img {
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
    .block-preview img:hover {
      transform: scale(1.02); }

.block-buttons {
  margin: 2em 0 1em; }
  .block-buttons:first-child {
    margin-top: 0; }

.hero-block {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #050508; }
  .hero-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050508;
    pointer-events: none;
    z-index: 0; }
  .hero-block .cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; }
  .hero-block .hero-planet {
    position: absolute;
    bottom: -62vh;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    height: 80vh;
    z-index: 2;
    pointer-events: none; }
  .hero-block .planet-glow {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 1200px;
    background: radial-gradient(ellipse 20% 30% at 50% 100%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 20%, rgba(255, 240, 230, 0.2) 40%, transparent 60%), radial-gradient(ellipse 40% 50% at 50% 100%, rgba(255, 200, 160, 0.3) 0%, rgba(255, 180, 140, 0.15) 30%, transparent 60%), radial-gradient(ellipse 60% 80% at 50% 100%, rgba(140, 100, 220, 0.2) 0%, rgba(100, 70, 200, 0.1) 40%, rgba(80, 60, 180, 0.05) 70%, transparent 100%), radial-gradient(ellipse 80% 100% at 50% 100%, rgba(60, 100, 220, 0.1) 0%, rgba(40, 80, 200, 0.05) 50%, transparent 100%);
    filter: blur(80px);
    /* Significant blur for smoothness */
    opacity: 0.9;
    pointer-events: none;
    animation: colorShiftGlow 25s ease-in-out infinite; }
  .hero-block .planet-surface {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 85vw;
    height: 70vh;
    border-radius: 50%;
    background: #050508;
    box-shadow: inset 0 30px 80px rgba(255, 255, 255, 0.015);
    z-index: 4; }
  .hero-block .planet-atmosphere {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 86vw;
    height: 71vh;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 -4px 25px rgba(255, 255, 255, 0.9), 0 -10px 50px rgba(255, 255, 255, 0.4), 0 -20px 80px rgba(140, 100, 255, 0.3), 0 -40px 120px rgba(100, 200, 255, 0.1);
    pointer-events: none;
    animation: atmosphereShift 25s ease-in-out infinite;
    z-index: 3; }
  .hero-block .inner {
    position: relative;
    z-index: 10;
    padding-bottom: 10vh; }
  .hero-block .grid {
    align-items: center;
    justify-content: center;
    gap: 2rem; }
  .hero-block .cell {
    text-align: center; }
  .hero-block .hero-title {
    font-size: 2.5em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0em;
    letter-spacing: -0.02em;
    line-height: 1.1; }
    @media only screen and (min-width: 601px) {
      .hero-block .hero-title {
        font-size: 3.5em; } }
    @media only screen and (min-width: 901px) {
      .hero-block .hero-title {
        font-size: 4.5em; } }
  .hero-block .hero-subtitle-cursive {
    font-family: 'Allura', cursive;
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 400;
    margin-top: 0em;
    margin-bottom: 0.5em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    line-height: 1; }
    @media only screen and (min-width: 601px) {
      .hero-block .hero-subtitle-cursive {
        font-size: 3.5em; } }
  .hero-block .hero-subtitle-nomal {
    color: #ffffff;
    font-size: 2.5em;
    font-weight: 500;
    margin-top: 0em;
    margin-bottom: 0.5em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    line-height: 1; }
    @media only screen and (min-width: 601px) {
      .hero-block .hero-subtitle-nomal {
        font-size: 3.5em; } }
  .hero-block .block-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem; }
    @media only screen and (min-width: 601px) {
      .hero-block .block-copy {
        font-size: 1.2em; } }
  .hero-block .block-buttons {
    justify-content: center;
    margin-top: 1.5em; }

@keyframes colorShiftGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
    filter: blur(25px) hue-rotate(0deg); }
  33% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.08);
    filter: blur(25px) hue-rotate(-20deg); }
  66% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1.04);
    filter: blur(25px) hue-rotate(20deg); } }

@keyframes atmosphereShift {
  0%,
  100% {
    box-shadow: 0 -1px 15px rgba(180, 220, 200, 0.25), 0 -2px 35px rgba(150, 200, 180, 0.15), 0 -4px 70px rgba(120, 180, 160, 0.1), 0 -8px 120px rgba(100, 160, 140, 0.06); }
  50% {
    box-shadow: 0 -1px 15px rgba(200, 220, 180, 0.3), 0 -2px 35px rgba(180, 200, 150, 0.18), 0 -4px 70px rgba(160, 180, 120, 0.12), 0 -8px 120px rgba(140, 160, 100, 0.08); } }

@media only screen and (min-width: 801px) {
  .hero-block .hero-planet {
    bottom: -65vh;
    width: 75vw;
    height: 75vh; }
  .hero-block .planet-surface {
    width: 80vw;
    height: 75vh; }
  .hero-block .planet-atmosphere {
    width: 81vw;
    height: 76vh; }
  .hero-block .planet-glow {
    width: 180%;
    height: 900px;
    bottom: 35%; }
  .hero-block .inner {
    padding-bottom: 10vh; } }

.features-block .block-header .block-title:last-child {
  margin-bottom: 1.5em; }

.features-block .block-header .block-subtitle:last-child {
  margin-bottom: 3em; }

.features-block .block-item .block-content .block-buttons {
  justify-content: center !important; }

.block-item {
  margin-bottom: 4rem;
  padding: 2rem;
  padding: 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
  .block-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(123, 97, 255, 0.3);
    border-color: rgba(123, 97, 255, 0.3); }
  .block-item:last-child {
    margin-bottom: 0; }
  .block-item .grid {
    align-items: center;
    justify-content: center; }
  .block-item .cell {
    text-align: center; }
  .block-item .block-title {
    font-size: 1.5em;
    color: #e5e7eb;
    margin-bottom: 0.5em; }
    @media only screen and (min-width: 601px) {
      .block-item .block-title {
        font-size: 1.77778em; } }
  .block-item .block-copy {
    color: #9ca3af;
    line-height: 1.7; }
  .block-item .block-preview {
    margin-bottom: 1.5rem; }
    .block-item .block-preview img {
      max-width: 300px;
      margin: 0 auto;
      display: block; }

@media only screen and (min-width: 801px) {
  .block-item {
    padding: 3rem; }
    .block-item .cell:only-child {
      flex: 0 0 100%;
      max-width: 750px;
      text-align: center; }
    .block-item .block-preview {
      flex: 0 0 45%;
      max-width: 45%;
      margin-bottom: 0; }
      .block-item .block-preview img {
        max-width: 100%; }
    .block-item .block-content {
      flex: 0 0 55%;
      max-width: 55%;
      text-align: left; }
      .block-item .block-content:not(:only-child) .block-buttons {
        justify-content: flex-start; }
        .block-item .block-content:not(:only-child) .block-buttons a {
          margin-left: 0;
          margin-right: 1rem; }
  .block-item:nth-child(2n+1) .grid {
    flex-direction: row-reverse; }
  .block-item:nth-child(2n+1) .block-preview:not(:only-child) {
    padding-left: 2rem; }
  .block-item:nth-child(2n+2) .block-preview:not(:only-child) {
    padding-right: 2rem; } }

.underline {
  position: relative; }
  .underline:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #7b61ff 0%, #00d4ff 100%);
    border-radius: 2px; }

@media only screen and (max-width: 800px) {
  .hero-block .underline:after,
  .text-block .underline:after,
  .features-block .underline:after {
    left: 50%;
    transform: translateX(-50%); } }

.cta-block {
  background: #1a1a24;
  position: relative;
  overflow: hidden; }
  .cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff4757 0%, #AC78D3 50%, #ff6b9d 100%);
    opacity: 0.8;
    pointer-events: none; }
  .cta-block .inner {
    position: relative;
    z-index: 1; }
  .cta-block .grid {
    align-items: center;
    justify-content: center;
    text-align: center; }
  .cta-block .block-title {
    margin-bottom: 0.25em;
    color: #fff; }
  .cta-block .block-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    line-height: 1.6; }
  .cta-block .block-buttons {
    margin-top: 1.5em;
    justify-content: center; }

@media only screen and (min-width: 801px) {
  .cta-block .grid {
    text-align: left;
    flex-wrap: nowrap; }
  .cta-block .block-content {
    flex: 1 1 auto;
    max-width: 70%;
    text-align: left;
    padding-right: 2rem; }
  .cta-block .block-buttons {
    flex: 0 0 auto;
    width: auto;
    max-width: 30%;
    margin-top: 0;
    justify-content: flex-end;
    white-space: nowrap; } }

.posts-block .grid {
  gap: 2rem; }

.posts-block .cell {
  flex: 1 1 100%; }

@media only screen and (min-width: 601px) {
  .posts-block .cell {
    flex: 0 0 calc(50% - 1rem); } }

@media only screen and (min-width: 901px) {
  .posts-block .cell {
    flex: 0 0 calc(33.333% - 1.333rem); } }

.team-block .grid {
  justify-content: center;
  gap: 2rem; }

.team-block .team-profile {
  text-align: center;
  padding: 1.5rem; }

.team-block .team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(123, 97, 255, 0.3);
  box-shadow: 0 0 15px rgba(123, 97, 255, 0.2); }

.team-block .team-alias {
  font-size: 1.25em;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 0.25em; }

.team-block .team-role {
  font-size: 0.9em;
  color: #7b61ff; }

@media only screen and (min-width: 801px) {
  .team-block .cell {
    flex: 0 0 calc(33.333% - 1.333rem);
    max-width: calc(33.333% - 1.333rem); } }

.block.bg-white + .block.bg-white, .block.bg-gray + .block.bg-gray, .block.bg-accent + .block.bg-accent {
  padding-top: 0; }

.block.bg-white {
  background: transparent; }

.block.bg-gray {
  background: transparent; }

.block.bg-accent {
  background: linear-gradient(135deg, #7b61ff 0%, #00d4ff 100%);
  color: #fff; }
  .block.bg-accent a:not(.button) {
    color: rgba(255, 255, 255, 0.9); }
    .block.bg-accent a:not(.button):hover {
      color: #fff; }
  .block.bg-accent h1,
  .block.bg-accent h2,
  .block.bg-accent h3,
  .block.bg-accent h4,
  .block.bg-accent h5,
  .block.bg-accent h6,
  .block.bg-accent blockquote,
  .block.bg-accent caption,
  .block.bg-accent th {
    color: #fff; }
  .block.bg-accent .block-subtitle {
    color: rgba(255, 255, 255, 0.7); }
  .block.bg-accent .underline:after {
    background: rgba(255, 255, 255, 0.5); }
  .block.bg-accent .button {
    background: #fff;
    color: #7b61ff; }
    .block.bg-accent .button:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
    .block.bg-accent .button.secondary {
      background: transparent;
      border-color: rgba(255, 255, 255, 0.5);
      color: #fff; }
      .block.bg-accent .button.secondary:hover {
        border-color: #fff; }

#colophon {
  background: #12121a;
  color: #6b6b7d;
  border-top: 1px solid rgba(255, 255, 255, 0.1); }
  #colophon h1,
  #colophon h2,
  #colophon h3,
  #colophon h4,
  #colophon h5,
  #colophon h6 {
    color: #e5e7eb; }
  #colophon a:not(.button) {
    color: inherit;
    transition: color 0.15s ease; }
    #colophon a:not(.button):hover {
      color: #7b61ff; }

.footer-top {
  border-bottom: 1px solid #2a2a38;
  padding-bottom: 2em;
  padding-top: 4em; }

.footer-bottom {
  padding-bottom: 2em;
  padding-top: 2em;
  text-align: center; }

.widget {
  font-size: 0.88889em;
  line-height: 1.6;
  margin-bottom: 2.5em; }

.widget-image {
  display: block;
  margin-right: 4.5em;
  margin-bottom: 1em; }
  .widget-image img {
    opacity: 0.8;
    transition: opacity 0.3s ease; }
    .widget-image img:hover {
      opacity: 1; }

.widget-title {
  font-size: 1.125em;
  margin: 0 0 1.25em;
  color: #9ca3af; }

.widget-nav a:not(.button),
.footer-nav a:not(.button) {
  text-decoration: none; }

.widget-nav .menu-item {
  margin-bottom: 0.75em; }

.widget-nav .icon + :not(.order-first) {
  margin-left: 0.75em; }

.footer-nav .menu-item {
  display: inline-block;
  margin: 0 0.75em 0.25em; }

.site-info {
  font-size: 0.77778em;
  line-height: 1.5;
  color: #6b6b7d; }
  .site-info:not(:first-child) {
    margin-top: 1em; }

.widget-nav .menu-item a {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 0; }
  .widget-nav .menu-item a .icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    transition: opacity 0.15s ease; }
  .widget-nav .menu-item a:hover .icon {
    opacity: 1; }

@media only screen and (min-width: 481px) {
  .footer-top .cell {
    flex: 0 0 50%;
    max-width: 50%; }
  .footer-top .widget-text:first-child {
    flex: 0 0 100%;
    max-width: 100%; } }

@media only screen and (min-width: 701px) {
  .footer-top .widget-text:first-child ~ .cell {
    flex: 0 0 33.333%;
    max-width: 33.333%; } }

@media only screen and (min-width: 901px) {
  .footer-top .grid {
    justify-content: center; }
  .footer-top .cell,
  .footer-top .widget-text:first-child,
  .footer-top .widget-text:first-child ~ .cell {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem); } }

.palette-cyan a:not(.button) {
  color: #00d4ff; }
  .palette-cyan a:not(.button):hover {
    color: #9ca3af; }

.palette-cyan blockquote,
.palette-cyan .underline:after,
.palette-cyan .card.highlight {
  border-color: #00d4ff; }

.palette-cyan .button {
  background: #00d4ff;
  border-color: #00d4ff; }
  .palette-cyan .button.secondary {
    background: transparent;
    color: #00d4ff; }

.palette-cyan .icon-plus {
  background: #00d4ff; }

.palette-cyan .review-text:before {
  color: #00d4ff; }

.palette-cyan .bg-accent {
  background: #00d4ff;
  background: -webkit-gradient(linear, left top, right top, from(#00d4ff), to(#7b61ff));
  background: linear-gradient(to right, #00d4ff, #7b61ff); }
  .palette-cyan .bg-accent .button {
    color: #00d4ff; }

.palette-green a:not(.button) {
  color: #10b981; }
  .palette-green a:not(.button):hover {
    color: #9ca3af; }

.palette-green blockquote,
.palette-green .underline:after,
.palette-green .card.highlight {
  border-color: #10b981; }

.palette-green .button {
  background: #10b981;
  border-color: #10b981; }
  .palette-green .button.secondary {
    background: transparent;
    color: #10b981; }

.palette-green .icon-plus {
  background: #10b981; }

.palette-green .review-text:before {
  color: #10b981; }

.palette-green .bg-accent {
  background: #10b981;
  background: -webkit-gradient(linear, left top, right top, from(#10b981), to(#34d399));
  background: linear-gradient(to right, #10b981, #34d399); }
  .palette-green .bg-accent .button {
    color: #10b981; }

.palette-orange a:not(.button) {
  color: #f59e0b; }
  .palette-orange a:not(.button):hover {
    color: #9ca3af; }

.palette-orange blockquote,
.palette-orange .underline:after,
.palette-orange .card.highlight {
  border-color: #f59e0b; }

.palette-orange .button {
  background: #f59e0b;
  border-color: #f59e0b; }
  .palette-orange .button.secondary {
    background: transparent;
    color: #f59e0b; }

.palette-orange .icon-plus {
  background: #f59e0b; }

.palette-orange .review-text:before {
  color: #f59e0b; }

.palette-orange .bg-accent {
  background: #f59e0b;
  background: -webkit-gradient(linear, left top, right top, from(#f59e0b), to(#fbbf24));
  background: linear-gradient(to right, #f59e0b, #fbbf24); }
  .palette-orange .bg-accent .button {
    color: #f59e0b; }

.palette-purple a:not(.button) {
  color: #7b61ff; }
  .palette-purple a:not(.button):hover {
    color: #9ca3af; }

.palette-purple blockquote,
.palette-purple .underline:after,
.palette-purple .card.highlight {
  border-color: #7b61ff; }

.palette-purple .button {
  background: #7b61ff;
  border-color: #7b61ff; }
  .palette-purple .button.secondary {
    background: transparent;
    color: #7b61ff; }

.palette-purple .icon-plus {
  background: #7b61ff; }

.palette-purple .review-text:before {
  color: #7b61ff; }

.palette-purple .bg-accent {
  background: #7b61ff;
  background: -webkit-gradient(linear, left top, right top, from(#7b61ff), to(#a78bfa));
  background: linear-gradient(to right, #7b61ff, #a78bfa); }
  .palette-purple .bg-accent .button {
    color: #7b61ff; }

body.has-theme-bar #page {
  top: 60px; }
  @media only screen and (min-width: 801px) {
    body.has-theme-bar #page .site-header {
      top: 60px; } }
